/*
Theme Name:  Skillet Creek Media
Theme URI:   https://skilletcreekmedia.com
Author:      Skillet Creek Media
Author URI:  https://skilletcreekmedia.com
Description: Single-page business site for Skillet Creek Media — regional publishing, visual storytelling, and advertising in the Baraboo Hills, Wisconsin.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skillet-creek-media
Tags:        one-page, custom-header, custom-logo, full-width-template
*/

/* ─────────────────────────────────────────────
   CSS Custom Properties
───────────────────────────────────────────── */
:root {
    --ink:       #1a1812;
    --bark:      #2c2318;
    --moss:      #2e3d2a;
    --fern:      #3d5436;
    --lichen:    #5c7052;
    --sage:      #8a9e7e;
    --mist:      #c4cdb8;
    --parchment: #f2ede3;
    --cream:     #f8f5ee;
    --stone:     #e4ddd0;
    --amber:     #7a5230;
    --sky-top:   #1c2a1e;
    --sky-mid:   #2e3d2a;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'DM Sans', system-ui, sans-serif;
}

/* ─────────────────────────────────────────────
   Reset & Base
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Strip default WordPress body padding/margins that themes add */
.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

/* Hide default WP page title on this template */
.page-header,
.entry-header,
h1.page-title,
h1.entry-title {
    display: none !important;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ─────────────────────────────────────────────
   Top bar
───────────────────────────────────────────── */
.topbar {
    background: var(--bark);
    color: var(--mist);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--mist); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--cream); }
.topbar-contact { display: flex; gap: 1.25rem; align-items: center; }
.topbar-sep { opacity: 0.25; }

/* ─────────────────────────────────────────────
   Nav
───────────────────────────────────────────── */
.scm-nav {
    background: var(--moss);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }
.logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.logo img { height: 2.4rem; }
.logo-name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; color: var(--cream); letter-spacing: 0.01em; line-height: 1.2; }
.logo-sub { font-size: 0.67rem; font-weight: 400; color: var(--mist); letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(244,241,234,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--mist); transition: all 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--moss);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 0.5rem 0 1rem;
        z-index: 99;
    }
    .nav-links.open li a { padding: 0.75rem 2rem; display: block; font-size: 0.85rem; }
    .scm-nav { position: sticky; top: 0; }
}

/* ─────────────────────────────────────────────
   Hero
───────────────────────────────────────────── */
.scm-hero {
    position: relative;
    background: var(--sky-top);
    overflow: hidden;
    padding: 0;
    min-height: 620px;
    display: flex;
    flex-direction: column;
}
.hero-landscape {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}
.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 55%;
    pointer-events: none;
}
.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding: 5rem 0 3rem;
    flex: 1;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 860px) { .hero-layout { grid-template-columns: 1fr; gap: 3rem; } }

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--lichen); }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.06;
    color: var(--cream);
    margin-bottom: 1.75rem;
}
.hero-title em { font-style: italic; color: var(--sage); }
.hero-body {
    font-size: 1.02rem;
    font-weight: 400;
    color: rgba(196,205,184,0.9);
    line-height: 1.8;
    max-width: 38rem;
    margin-bottom: 2.5rem;
}
.hero-body a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.hero-body a:hover { color: var(--cream); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats card */
.hero-stats {
    background: rgba(26,24,18,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.stats-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.stats-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}
.stat-cell { background: rgba(26,24,18,0.7); padding: 1.4rem 1.25rem; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.stat-desc { font-size: 0.72rem; font-weight: 400; color: var(--sage); line-height: 1.45; }
.stats-note {
    font-size: 0.76rem;
    font-weight: 400;
    color: rgba(196,205,184,0.5);
    line-height: 1.65;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
}

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.22s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--amber); color: var(--cream); }
.btn-primary:hover { background: #8a5e38; }
.btn-ghost { background: transparent; color: var(--mist); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--cream); }
.btn-photo {
    background: var(--amber);
    color: var(--cream);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.3s ease, box-shadow 0.4s ease;
}
.btn-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse 180% 280% at 50% 50%, #f0d898 0%, #c8893a 30%, var(--amber) 65%, var(--amber) 100%);
    opacity: 0;
    transform: scale(0.15);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-photo:hover::before { opacity: 1; transform: scale(1); }
.btn-photo:hover { color: var(--bark); box-shadow: 0 0 28px 6px rgba(240,200,120,0.28), 0 0 8px 2px rgba(240,200,120,0.18); }
.btn-cream { background: var(--cream); color: var(--moss); }
.btn-cream:hover { background: var(--parchment); }
.btn-ghost-light { background: transparent; color: var(--mist); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.5); color: var(--cream); }

/* ─────────────────────────────────────────────
   Divider & Section scaffolding
───────────────────────────────────────────── */
.hero-divider { height: 5px; background: linear-gradient(90deg, var(--bark) 0%, var(--amber) 40%, var(--fern) 100%); }
section { padding: 5.5rem 0; }
.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lichen);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--lichen); opacity: 0.6; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; color: var(--moss); line-height: 1.15; margin-bottom: 1.25rem; }
.section-body { font-size: 1rem; font-weight: 400; color: #5a5040; line-height: 1.8; max-width: 44rem; }
.section-header { margin-bottom: 3.5rem; }

/* ─────────────────────────────────────────────
   Advertising
───────────────────────────────────────────── */
.scm-advertising { background: var(--cream); }
.ad-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
@media (max-width: 860px) { .ad-layout { grid-template-columns: 1fr; } }
.ad-proof { display: flex; flex-direction: column; gap: 1.5rem; }

.proof-card { border-left: 3px solid var(--fern); padding: 1.6rem 1.75rem; background: var(--parchment); position: relative; }
.proof-card::after { content: ''; position: absolute; top: 0; left: -3px; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--amber), var(--fern)); }
.proof-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--moss); margin-bottom: 0.7rem; }
.proof-card p { font-size: 0.88rem; font-weight: 400; color: #5a5040; line-height: 1.7; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.9rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; font-weight: 400; color: #5a5040; line-height: 1.5; }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--fern); }

.audience-card { background: var(--moss); padding: 2.5rem; border-radius: 2px; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.audience-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.audience-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 1rem; }
.audience-card p { font-size: 0.9rem; font-weight: 400; color: var(--mist); line-height: 1.75; margin-bottom: 1.5rem; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.35rem 0.85rem; border: 1px solid rgba(255,255,255,0.15); color: var(--sage); border-radius: 1px; transition: all 0.2s; }
.tag:hover { border-color: rgba(255,255,255,0.35); color: var(--cream); }

.rate-note { background: var(--parchment); border: 1px solid var(--stone); padding: 1.5rem 1.75rem; display: flex; align-items: flex-start; gap: 1rem; }
.rate-icon { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.rate-note p { font-size: 0.85rem; font-weight: 400; color: #5a5040; line-height: 1.65; }
.rate-note strong { font-weight: 500; color: var(--bark); }

.renewal-proof { margin-top: 1.25rem; background: var(--bark); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.75rem; border-radius: 2px; }
.renewal-number { font-family: var(--font-serif); font-size: 3.8rem; font-weight: 300; color: var(--sage); line-height: 1; flex-shrink: 0; letter-spacing: -0.02em; }
.renewal-text { font-size: 0.86rem; font-weight: 400; color: var(--mist); line-height: 1.65; }
.renewal-text strong { display: block; color: var(--cream); font-weight: 500; font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 0.3rem; }
.renewal-text span { color: rgba(196,205,184,0.65); }

/* ─────────────────────────────────────────────
   Live feed widget
───────────────────────────────────────────── */
.live-feed { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid var(--stone); }
.live-feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.live-feed-label { display: flex; align-items: center; gap: 0.6rem; }
.live-dot { width: 7px; height: 7px; background: var(--fern); border-radius: 50%; animation: scm-pulse 2.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes scm-pulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }
.live-feed-label span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lichen); }
.live-feed-link { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lichen); text-decoration: none; border-bottom: 1px solid var(--stone); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.live-feed-link:hover { color: var(--moss); border-color: var(--moss); }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone); }
.feed-grid .feed-error { background: var(--cream); grid-column: 1 / -1; }
@media (max-width: 720px) { .feed-grid { grid-template-columns: 1fr; } }
.feed-card { background: var(--cream); padding: 1.5rem; text-decoration: none; display: block; transition: background 0.2s; }
.feed-card:hover { background: var(--parchment); }
.feed-date { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lichen); margin-bottom: 0.6rem; display: block; }
.feed-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--moss); line-height: 1.35; margin-bottom: 0.5rem; }
.feed-excerpt { font-size: 0.8rem; font-weight: 400; color: #5a5040; line-height: 1.6; }
.feed-loading { text-align: center; padding: 2rem; font-size: 0.82rem; color: var(--lichen); font-style: italic; }
.feed-error { font-size: 1rem; color: var(--lichen); font-style: italic; padding: 1.5rem 0; text-align: center; width: 100%; }

/* ─────────────────────────────────────────────
   Social section
───────────────────────────────────────────── */
.scm-social {
    background: var(--parchment);
    border-top: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
    position: relative;
}
.scm-social::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e3d2a' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.social-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 1; }
@media (max-width: 860px) { .social-layout { grid-template-columns: 1fr; } }
.social-cards { display: flex; flex-direction: column; gap: 1px; background: var(--stone); }
.social-card { background: var(--cream); padding: 1.75rem 2rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: background 0.2s; }
.social-card:hover { background: white; }
.social-card-icon { width: 38px; height: 38px; background: var(--moss); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.social-card:hover .social-card-icon { background: var(--fern); }
.social-card-icon svg { width: 16px; height: 16px; color: var(--sage); }
.social-card h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--moss); margin-bottom: 0.4rem; }
.social-card p { font-size: 0.85rem; font-weight: 400; color: #5a5040; line-height: 1.65; }
.client-types { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.client-type { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; font-weight: 400; color: #5a5040; padding: 0.6rem 0; border-bottom: 1px solid var(--stone); }
.client-type:last-child { border-bottom: none; }
.dot { width: 5px; height: 5px; background: var(--lichen); border-radius: 50%; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   Photography
───────────────────────────────────────────── */
.scm-photo { background: var(--cream); padding: 0; }
.photo-slot-wrap { width: 100%; background: var(--stone); overflow: hidden; }
.photo-slot-inner { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.photo-slot { width: 100%; aspect-ratio: 21 / 9; background: linear-gradient(160deg, var(--moss) 0%, var(--bark) 100%); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-content { padding: 4rem 0 5rem; }
.photo-credit { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lichen); padding: 0.6rem 0 0; opacity: 0.7; }
.photo-banner { background: var(--bark); padding: 3rem 3.5rem; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.photo-banner::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--amber), var(--fern)); }
.photo-banner-left h3 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; color: var(--cream); margin-bottom: 0.5rem; }
.photo-banner-left p { font-size: 0.88rem; font-weight: 400; color: var(--mist); line-height: 1.6; max-width: 36rem; }

/* ─────────────────────────────────────────────
   CTA / Contact
───────────────────────────────────────────── */
.scm-contact { background: var(--cream); }
.cta-banner { background: var(--moss); padding: 4rem; position: relative; overflow: hidden; }
.cta-banner::before { content: '"'; font-family: var(--font-serif); font-size: 18rem; line-height: 1; color: rgba(255,255,255,0.04); position: absolute; top: -2rem; right: 3rem; pointer-events: none; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (max-width: 720px) { .cta-inner { grid-template-columns: 1fr; } .cta-banner { padding: 2.5rem; } }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.15; }
.cta-banner p { font-size: 0.95rem; font-weight: 400; color: var(--mist); line-height: 1.7; max-width: 36rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; min-width: 200px; }
.cta-footer { text-align: center; font-size: 0.78rem; font-weight: 400; color: #8a8070; margin-top: 1.5rem; letter-spacing: 0.04em; }

/* ─────────────────────────────────────────────
   Technical support
───────────────────────────────────────────── */
.scm-support { background: var(--parchment); border-top: 1px solid var(--stone); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--stone); border: 1px solid var(--stone); }
@media (max-width: 720px) { .support-grid { grid-template-columns: 1fr; } }
.support-card { padding: 2rem 1.75rem; background: var(--cream); position: relative; transition: background 0.2s; }
.support-card:hover { background: white; }
.support-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.3s; }
.support-card:hover::before { background: linear-gradient(90deg, var(--amber), var(--fern)); }
.support-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--moss); margin-bottom: 0.6rem; }
.support-card p { font-size: 0.85rem; font-weight: 400; color: #5a5040; line-height: 1.65; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
.scm-footer { background: var(--bark); color: var(--mist); padding: 2.5rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo img { height: 1.8rem; }
.footer-logo span { font-family: var(--font-serif); font-size: 1rem; color: rgba(244,241,234,0.5); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.05em; color: rgba(196,205,184,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--mist); }
.footer-copy { font-size: 0.75rem; color: rgba(196,205,184,0.35); letter-spacing: 0.04em; }

/* ─────────────────────────────────────────────
   Animations
───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ─────────────────────────────────────────────
   Cursor shadow
───────────────────────────────────────────── */
#cursor-shadow {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 280px; height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.07) 45%, transparent 75%);
    transform: translate(-50%, 8px);
    transition: opacity 0.3s ease;
    filter: blur(4px);
    mix-blend-mode: multiply;
}
