*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #1a2e20;
    --bg-deep: #142218;
    --bg-alt: #1e3524;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-strong: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    --glass-highlight: rgba(196, 148, 74, 0.08);
    --glass-highlight-border: rgba(196, 148, 74, 0.22);
    --text: #f0ebe3;
    --text-dim: rgba(240, 235, 227, 0.65);
    --text-muted: rgba(240, 235, 227, 0.4);
    --amber: #d4a853;
    --amber-glow: #e0b860;
    --sage: #7da96e;
    --sage-dim: rgba(125, 169, 110, 0.6);
    --moss: #3d5a3a;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-sm: 14px;
    --radius-btn: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background atmosphere — fixed */
.bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 700px 700px at 20% 10%, rgba(80, 160, 90, 0.1), transparent),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(196, 148, 74, 0.06), transparent),
        radial-gradient(ellipse 600px 600px at 50% 80%, rgba(60, 130, 80, 0.08), transparent);
}

/* Grain */
.bg-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(20, 34, 24, 0.7);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.anchored .nav-inner {
    background: rgba(20, 34, 24, 0.85);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-brand {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-btn);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/cottage-hero.jpg') center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 0%,
            transparent 65%,
            rgba(26, 46, 32, 0.6) 85%,
            rgba(26, 46, 32, 0.95) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 2.5rem 3rem;
    max-width: 750px;
    background: rgba(20, 34, 24, 0.55);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Uncial Antiqua', cursive;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.4s forwards;
}

.hero-title .accent {
    display: block;
    background: linear-gradient(135deg, var(--text) 30%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line-2 {
    font-size: 0.5em;
    display: block;
    margin-top: 0.1em;
    -webkit-text-fill-color: var(--text-dim);
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--text-dim);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bg-deep);
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-btn);
    background: var(--amber);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
    transition: all 0.35s ease;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta:hover {
    background: var(--amber-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 83, 0.35);
}

.hero-cta svg { width: 16px; height: 16px; }

.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 2s forwards;
}

.scroll-cue span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-cue .tick {
    width: 2px;
    height: 36px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

.scroll-cue .tick::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(180deg, transparent, var(--amber), transparent);
    animation: tickFall 2.5s ease-in-out infinite;
}

@keyframes tickFall { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── Sections ── */
.section {
    position: relative;
    z-index: 1;
    padding: 7rem 2rem;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--sage);
}

.section-heading {
    font-family: 'Uncial Antiqua', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 2rem;
}

.section-heading .hl {
    color: var(--amber);
}

/* ── Story ── */
.story { background: transparent; }

.story-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 4rem;
    align-items: start;
}

.story-text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.story-text:last-child { margin-bottom: 0; }

.story-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.wall {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 42px, rgba(255,255,255,0.03) 42px, rgba(255,255,255,0.03) 44px),
        repeating-linear-gradient(90deg, transparent, transparent 70px, rgba(255,255,255,0.02) 70px, rgba(255,255,255,0.02) 72px);
}

.wall::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55px 32px at 18% 8%, rgba(100, 88, 72, 0.25), transparent 80%),
        radial-gradient(ellipse 70px 35px at 65% 12%, rgba(80, 72, 60, 0.2), transparent 80%),
        radial-gradient(ellipse 48px 28px at 38% 22%, rgba(110, 95, 75, 0.25), transparent 80%),
        radial-gradient(ellipse 60px 30px at 82% 28%, rgba(90, 80, 65, 0.2), transparent 80%),
        radial-gradient(ellipse 72px 38px at 12% 35%, rgba(85, 75, 62, 0.2), transparent 80%),
        radial-gradient(ellipse 55px 30px at 55% 40%, rgba(100, 88, 72, 0.25), transparent 80%),
        radial-gradient(ellipse 65px 34px at 88% 45%, rgba(95, 82, 68, 0.2), transparent 80%),
        radial-gradient(ellipse 50px 28px at 30% 52%, rgba(80, 72, 60, 0.25), transparent 80%),
        radial-gradient(ellipse 68px 36px at 70% 58%, rgba(110, 95, 75, 0.2), transparent 80%),
        radial-gradient(ellipse 58px 32px at 15% 65%, rgba(90, 80, 65, 0.25), transparent 80%);
}

.wall::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,46,32,0.2) 0%, transparent 30%, transparent 70%, rgba(26,46,32,0.4) 100%);
}

.story-frame-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
}

.story-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse at 20% 100%, rgba(196, 148, 74, 0.05), transparent 70%);
    z-index: 2;
    border-radius: 0 0 0 var(--radius-lg);
}

/* ── Timeline ── */
.timeline { background: transparent; }

.timeline-intro {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 550px;
}

.tl {
    position: relative;
    padding-left: 3rem;
}

/* Vertical line */
.tl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 11px;
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.tl-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.tl-item:last-child { padding-bottom: 0; }

/* Dot */
.tl-dot {
    position: absolute;
    left: -3rem;
    top: 0.15rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

/* Active / current state */
.tl-item.active .tl-dot {
    border-color: var(--amber);
    background: rgba(212, 168, 83, 0.1);
    box-shadow: 0 0 16px rgba(212, 168, 83, 0.2);
}

.tl-item.active .tl-dot::after {
    background: var(--amber);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.75); }
}

/* Done state */
.tl-item.done .tl-dot {
    border-color: var(--sage);
    background: rgba(125, 169, 110, 0.1);
}

.tl-item.done .tl-dot::after {
    background: var(--sage);
}

/* Future state */
.tl-item.future .tl-dot {
    border-color: rgba(255, 255, 255, 0.08);
}

.tl-item.future .tl-dot::after {
    background: rgba(255, 255, 255, 0.1);
}

.tl-item.future .tl-content {
    opacity: 0.45;
}

.tl-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.tl-item.active .tl-label {
    color: var(--amber);
}

.tl-item.done .tl-label {
    color: var(--sage);
}

.tl-title {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.tl-desc {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 480px;
}

/* ── Journey ── */
.journey { background: transparent; }

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.journey-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.journey-num {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 2rem;
    color: rgba(212, 168, 83, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.journey-card h3 {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.journey-card p {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-dim);
}

/* ── Watch ── */
.watch {
    background: linear-gradient(180deg, transparent, rgba(42, 66, 40, 0.15), transparent);
}

.watch-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.watch-text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-btn);
    border: 1px solid var(--amber);
    color: var(--text);
    background: rgba(212, 168, 83, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.btn:hover {
    background: var(--amber);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.25);
}

.btn svg { width: 16px; height: 16px; }

.watch-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-frame:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

.watch-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 66, 40, 0.6), rgba(26, 46, 32, 0.8));
    transition: opacity 0.5s ease;
}

.watch-frame:hover::before { opacity: 0.7; }

.play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.watch-frame:hover .play-circle {
    border-color: var(--amber);
    background: rgba(212, 168, 83, 0.15);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-circle svg { width: 22px; height: 22px; fill: var(--text); margin-left: 3px; }

.watch-frame-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
}

/* ── Support ── */
.support { background: transparent; }

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.support-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support-card.featured {
    border-color: var(--glass-highlight-border);
    background: var(--glass-highlight);
}

.support-card.featured:hover {
    border-color: rgba(196, 148, 74, 0.35);
}

.support-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--amber);
    color: var(--bg-deep);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}

.support-icon {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.support-card h3 {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.support-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 0.75rem;
}

.support-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.support-card p {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 1.75rem;
    flex: 1;
}

.support-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-btn);
    border: 1px solid var(--glass-border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.35s ease;
}

.support-btn:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--bg-deep);
}

.support-perks {
    list-style: none;
    margin-bottom: 1.75rem;
    flex: 1;
}

.support-perks li {
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dim);
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
}

.support-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
}

.support-card.featured .support-btn {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--bg-deep);
}

.support-card.featured .support-btn:hover {
    background: var(--amber-glow);
    border-color: var(--amber-glow);
}

.support-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Other ways to help */
.support-other {
    margin-top: 5rem;
}

.support-other-heading {
    font-family: 'Uncial Antiqua', cursive;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.support-other-intro {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.free-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.free-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.free-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.free-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.free-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.free-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.free-card p {
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dim);
}

@media (max-width: 900px) {
    .free-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ── Footer ── */
.foot {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem 2rem;
}

.foot-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.foot-brand {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.3;
}

.foot-brand small {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.foot-cols { display: flex; gap: 3.5rem; }

.foot-col h4 {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.5rem; }

.foot-col a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-col a:hover { color: var(--text); }

.foot-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-copy { font-size: 0.72rem; color: var(--text-muted); }

.foot-social a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    margin-left: 0.75rem;
}

.foot-social a:hover { color: var(--amber); }
.foot-social svg { width: 18px; height: 18px; }

/* ── Scroll reveal ── */
.r {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.r.v { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        background: rgba(20, 34, 24, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius);
        border: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); }

    .section { padding: 4.5rem 1.25rem; }
    .hero-content { padding: 1.5rem; }

    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-frame { aspect-ratio: 4/3; order: -1; }

    .journey-grid { grid-template-columns: 1fr; }

    .watch-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .watch-frame { order: -1; }

    .support-grid { grid-template-columns: 1fr; max-width: 400px; }

    .foot-inner { padding: 2rem 1.5rem; }
    .foot-top { flex-direction: column; gap: 2rem; }
    .foot-cols { flex-direction: column; gap: 1.5rem; }
    .foot-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .foot-social a:first-child { margin-left: 0; }

    .nav { padding: 0.75rem 1rem; }
}

@media (max-width: 600px) {
    .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
}
