/* ================================================================
   Tarrywoods — Landing Page
   Aesthetic: misty forest green + champagne gold + classical serif
   Type: Cinzel (brand) + Cormorant Garamond (display) + Inter (body)
   ================================================================ */

:root {
    --bg-deep:  #0a120e;
    --bg-mid:   #111c16;
    --bg-soft:  #182921;
    --forest:   #1d3329;
    --forest-mist: rgba(70, 110, 90, 0.08);

    --gold-100: rgba(232, 210, 152, 0.96);
    --gold-80:  rgba(214, 184, 120, 0.85);
    --gold-60:  rgba(214, 184, 120, 0.6);
    --gold-40:  rgba(214, 184, 120, 0.4);
    --gold-20:  rgba(214, 184, 120, 0.2);
    --gold-10:  rgba(214, 184, 120, 0.1);
    --gold-soft: rgba(214, 184, 120, 0.04);

    --mote-glow: rgba(220, 200, 150, 0.7);
    --live-green: rgba(170, 220, 180, 0.9);

    --serif-display: 'Cormorant Garamond', 'Georgia', serif;
    --serif-caps: 'Cinzel', 'Trajan Pro', 'Cormorant Garamond', serif;
    --sans: 'Inter', 'Segoe UI', sans-serif;
}

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

html, body {
    background: var(--bg-deep);
    color: var(--gold-80);
    font-family: var(--sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    animation: page-fade-in 1.6s ease-out;
}

@keyframes page-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

::selection {
    background: rgba(214, 184, 120, 0.25);
    color: rgba(245, 230, 195, 1);
}

a {
    color: inherit;
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Background layers ===== */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse 70% 55% at 20% 100%, rgba(40, 70, 55, 0.55), transparent 65%),
        radial-gradient(ellipse 55% 45% at 85% 0%, rgba(30, 55, 45, 0.40), transparent 60%),
        radial-gradient(ellipse 40% 35% at 50% 45%, rgba(45, 80, 60, 0.18), transparent 70%),
        linear-gradient(180deg, #0a120e 0%, #0d1814 45%, #0a120e 100%);
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
}

.bg-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ===== Drifting motes (forest pollen / dust) ===== */
.embers-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    bottom: -20px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mote-glow), rgba(214, 184, 120, 0.2) 60%, transparent 75%);
    box-shadow: 0 0 6px rgba(220, 200, 150, 0.35);
    opacity: 0;
    animation: mote-drift 32s linear infinite;
}

.ember:nth-child(1)  { left:  6%; animation-delay:  0s;  animation-duration: 40s; }
.ember:nth-child(2)  { left: 14%; animation-delay:  6s;  animation-duration: 34s; }
.ember:nth-child(3)  { left: 22%; animation-delay: 12s;  animation-duration: 44s; }
.ember:nth-child(4)  { left: 30%; animation-delay:  3s;  animation-duration: 36s; }
.ember:nth-child(5)  { left: 41%; animation-delay: 17s;  animation-duration: 42s; }
.ember:nth-child(6)  { left: 50%; animation-delay:  9s;  animation-duration: 38s; }
.ember:nth-child(7)  { left: 59%; animation-delay: 22s;  animation-duration: 40s; }
.ember:nth-child(8)  { left: 68%; animation-delay:  2s;  animation-duration: 35s; }
.ember:nth-child(9)  { left: 76%; animation-delay: 14s;  animation-duration: 43s; }
.ember:nth-child(10) { left: 84%; animation-delay:  7s;  animation-duration: 33s; }
.ember:nth-child(11) { left: 91%; animation-delay: 19s;  animation-duration: 39s; }
.ember:nth-child(12) { left: 96%; animation-delay:  4s;  animation-duration: 37s; }

@keyframes mote-drift {
    0%   { transform: translate(0, 0) scale(0.5);   opacity: 0; }
    8%   { opacity: 0.7; }
    50%  { transform: translate(30px, -55vh) scale(1); opacity: 0.5; }
    92%  { opacity: 0.3; }
    100% { transform: translate(-20px, -115vh) scale(0.4); opacity: 0; }
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(24px, 5vw, 64px);
    border-bottom: 1px solid rgba(214, 184, 120, 0.08);
    background: rgba(10, 18, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--serif-caps);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-100);
    padding-left: 0.22em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 32px);
    font-family: var(--serif-caps);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.site-nav a {
    color: var(--gold-60);
    transition: color 0.3s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold-80);
    transition: width 0.3s ease;
}

.site-nav a:hover {
    color: var(--gold-100);
}

.site-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 18px;
    border: 1px solid var(--gold-20);
    border-radius: 999px;
    color: var(--gold-80) !important;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--gold-10);
    border-color: var(--gold-40);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(88vh, 820px);
    padding: clamp(56px, 12vh, 140px) clamp(24px, 5vw, 64px) clamp(64px, 10vh, 120px);
    overflow: hidden;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(10, 18, 14, 0.3) 0%, rgba(10, 18, 14, 0.85) 100%),
        linear-gradient(180deg, rgba(10, 18, 14, 0.4) 0%, rgba(10, 18, 14, 0.2) 50%, rgba(10, 18, 14, 0.5) 100%);
    pointer-events: none;
}

.hero-atmosphere {
    position: absolute;
    inset: -20% -10% 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 55% at 50% 15%, rgba(55, 95, 72, 0.45), transparent 68%),
        radial-gradient(ellipse 40% 30% at 50% 25%, rgba(214, 184, 120, 0.07), transparent 70%);
    mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 15%, transparent 75%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    width: 100%;
}

.hero-mark {
    display: block;
    width: clamp(320px, 50vw, 500px);
    height: auto;
    margin: 0 auto 24px;
    object-fit: contain;
    opacity: 0;
    animation: fade-up 1.4s ease-out 0.1s forwards;
    filter: 
        drop-shadow(0 0 50px rgba(201, 169, 98, 0.45))
        drop-shadow(0 0 100px rgba(201, 169, 98, 0.25));
}

.hero-title {
    font-family: var(--serif-caps);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-100);
    margin: 0 0 20px;
    padding-left: 0.28em;
    opacity: 0;
    animation: fade-up 1.2s ease-out 0.25s forwards;
}

.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    opacity: 0;
    animation: fade-up 1.4s ease-out 0.4s forwards;
}

.hero-rule-line {
    width: 90px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-40));
}

.hero-rule-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold-40));
}

.hero-rule-pinecone {
    font-size: 0.5rem;
    line-height: 1;
    color: var(--gold-60);
}

.hero-tagline {
    font-family: var(--serif-caps);
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-60);
    margin-bottom: 40px;
    padding-left: 0.35em;
    opacity: 0;
    animation: fade-up 1.2s ease-out 0.45s forwards;
}

.hero-sub {
    font-family: var(--serif-display);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(232, 210, 152, 0.5);
    max-width: 440px;
    margin: 0 auto 32px;
    line-height: 1.7;
    opacity: 0;
    animation: fade-up 1.2s ease-out 0.55s forwards;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 1.2s ease-out 0.7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--serif-caps);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.hero-cta.primary {
    background: linear-gradient(135deg, rgba(214, 184, 120, 0.22), rgba(180, 150, 90, 0.10));
    border-color: rgba(232, 210, 152, 0.5);
    color: var(--gold-100);
    box-shadow:
        0 8px 32px rgba(80, 60, 30, 0.25),
        inset 0 1px 0 rgba(232, 210, 152, 0.18);
}

.hero-cta.primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(232, 210, 152, 0.32), rgba(200, 170, 110, 0.18));
    border-color: rgba(232, 210, 152, 0.75);
    box-shadow:
        0 12px 40px rgba(100, 80, 40, 0.35),
        inset 0 1px 0 rgba(232, 210, 152, 0.28);
}

.hero-cta.ghost {
    color: var(--gold-60);
    border-color: var(--gold-20);
    background: rgba(255, 255, 255, 0.015);
}

.hero-cta.ghost:hover {
    color: var(--gold-100);
    border-color: var(--gold-40);
    background: var(--gold-10);
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-family: var(--sans);
    letter-spacing: 0;
}

.hero-cta.primary:hover .cta-arrow {
    transform: translateX(4px);
}

/* ===== Scenes ===== */
.scenes {
    position: relative;
    z-index: 5;
    padding: 80px clamp(24px, 5vw, 64px) 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.scenes-header {
    text-align: center;
    margin-bottom: 48px;
}

.scenes-eyebrow {
    font-family: var(--serif-caps);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-40);
    margin-bottom: 14px;
}

.scenes-title {
    font-family: var(--serif-display);
    font-style: italic;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--gold-100);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

/* Featured live scene */
.scene-featured {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 56px;
    min-height: 340px;
    border: 1px solid var(--gold-10);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.scene-featured:hover {
    border-color: rgba(214, 184, 120, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.scene-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.03);
    transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scene-featured:hover .scene-featured-bg {
    transform: scale(1.08);
}

.scene-featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 18, 14, 0.94) 0%, rgba(10, 18, 14, 0.72) 42%, rgba(10, 18, 14, 0.2) 100%);
}

.scene-featured-content {
    position: relative;
    z-index: 1;
    padding: clamp(36px, 6vw, 52px) clamp(32px, 5vw, 48px);
    max-width: 480px;
}

.scene-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--serif-caps);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--live-green);
    margin-bottom: 14px;
}

.scene-featured-title {
    font-family: var(--serif-display);
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: var(--gold-100);
    margin-bottom: 10px;
    line-height: 1.15;
}

.scene-featured-desc {
    font-size: 0.95rem;
    color: rgba(245, 230, 195, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

.scene-featured-cta {
    font-family: var(--serif-caps);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-60);
    transition: color 0.3s ease;
}

.scene-featured:hover .scene-featured-cta {
    color: var(--gold-100);
}

.scenes-grid-label {
    font-family: var(--serif-caps);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-40);
    margin-bottom: 28px;
    text-align: center;
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ===== Scene Card ===== */
.scene-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-mid);
    border: 1px solid var(--gold-10);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.5s ease;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(232, 210, 152, 0.05);
    isolation: isolate;
    outline: none;
}

.scene-card:focus-visible {
    border-color: var(--gold-60);
    box-shadow:
        0 0 0 3px rgba(232, 210, 152, 0.18),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.scene-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--scene-img);
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    z-index: 1;
}

.scene-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(10, 18, 14, 0.25) 0%, rgba(10, 18, 14, 0.5) 45%, rgba(10, 18, 14, 0.95) 100%);
    transition: background 0.5s ease;
}

.scene-card-body {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    gap: 6px;
}

.scene-card-status {
    align-self: flex-start;
    position: absolute;
    top: 20px;
    left: 22px;
    font-family: var(--serif-caps);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-live {
    color: var(--live-green);
    background: rgba(70, 160, 100, 0.13);
    border: 1px solid rgba(140, 220, 160, 0.25);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(140, 240, 160, 0.9);
    box-shadow: 0 0 8px rgba(140, 240, 160, 0.7);
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.2); }
}

.status-soon {
    color: var(--gold-60);
    background: rgba(214, 184, 120, 0.06);
    border: 1px solid var(--gold-20);
}

.scene-card-title {
    font-family: var(--serif-display);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold-100);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
    margin-bottom: 4px;
}

.scene-card-desc {
    font-size: 0.85rem;
    color: rgba(245, 230, 195, 0.58);
    line-height: 1.5;
    max-width: 100%;
}

.scene-card-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.meta-tag {
    font-family: var(--serif-caps);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(214, 184, 120, 0.06);
    border: 1px solid rgba(214, 184, 120, 0.12);
    color: var(--gold-40);
}

.scene-card-arrow {
    margin-top: 10px;
    font-family: var(--serif-caps);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(214, 184, 120, 0.5);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.scene-card-live:hover {
    transform: translateY(-6px);
    border-color: var(--gold-40);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(214, 184, 120, 0.12),
        inset 0 1px 0 rgba(232, 210, 152, 0.1);
}

.scene-card-live:hover .scene-card-image {
    transform: scale(1.12);
    filter: brightness(1.08) saturate(1.05);
}

.scene-card-live:hover .scene-card-overlay {
    background:
        linear-gradient(180deg, rgba(10, 18, 14, 0.15) 0%, rgba(10, 18, 14, 0.4) 45%, rgba(10, 18, 14, 0.92) 100%);
}

.scene-card-live:hover .scene-card-arrow {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold-100);
}

/* Scene cards as links */
a.scene-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.scene-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-40);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(214, 184, 120, 0.12),
        inset 0 1px 0 rgba(232, 210, 152, 0.1);
}

a.scene-card:hover .scene-card-image {
    transform: scale(1.12);
    filter: brightness(1.08) saturate(1.05);
}

a.scene-card:hover .scene-card-overlay {
    background:
        linear-gradient(180deg, rgba(10, 18, 14, 0.15) 0%, rgba(10, 18, 14, 0.4) 45%, rgba(10, 18, 14, 0.92) 100%);
}

/* CSS-gradient thumbnails for coming-soon scenes (forest-palette) */
.scene-gradient-forest .scene-card-image {
    background-image:
        radial-gradient(ellipse 65% 55% at 50% 90%, rgba(120, 165, 100, 0.18), transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 30%, rgba(50, 90, 65, 0.4), transparent 70%),
        linear-gradient(180deg, #0b1610 0%, #14241c 50%, #1d3329 100%);
}

.scene-gradient-rain .scene-card-image {
    background-image:
        radial-gradient(ellipse 45% 50% at 70% 25%, rgba(140, 170, 200, 0.16), transparent 60%),
        radial-gradient(ellipse 50% 40% at 30% 85%, rgba(214, 184, 120, 0.12), transparent 60%),
        linear-gradient(180deg, #0a1416 0%, #16242a 50%, #0e1a1c 100%);
}

.scene-gradient-snow .scene-card-image {
    background-image:
        radial-gradient(ellipse 55% 45% at 50% 90%, rgba(214, 184, 120, 0.18), transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 30%, rgba(80, 100, 110, 0.25), transparent 65%),
        linear-gradient(180deg, #161e24 0%, #232f38 50%, #2e3d45 100%);
}

.scene-gradient-train .scene-card-image {
    background-image:
        radial-gradient(ellipse 30% 30% at 80% 60%, rgba(214, 184, 120, 0.20), transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 30%, rgba(50, 80, 70, 0.18), transparent 60%),
        linear-gradient(180deg, #0a120e 0%, #131e18 60%, #0a120e 100%);
}

.scene-gradient-coffee .scene-card-image {
    background-image:
        radial-gradient(ellipse 55% 60% at 50% 55%, rgba(214, 184, 120, 0.28), transparent 70%),
        linear-gradient(180deg, #1c1610 0%, #2a2117 50%, #1c1610 100%);
}

/* ===== About ===== */
.about {
    position: relative;
    z-index: 5;
    padding: 40px clamp(24px, 5vw, 64px) 100px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-inner {
    padding: 64px clamp(32px, 6vw, 72px);
    border: 1px solid var(--gold-10);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(214, 184, 120, 0.04), rgba(214, 184, 120, 0.01));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-eyebrow {
    font-family: var(--serif-caps);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-40);
    margin-bottom: 18px;
}

.about-title {
    font-family: var(--serif-display);
    font-style: italic;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--gold-100);
    margin-bottom: 24px;
    letter-spacing: 0.005em;
    line-height: 1.25;
}

.about-body {
    font-family: var(--serif-display);
    color: var(--gold-60);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 40px;
}

.about-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 56px);
    flex-wrap: wrap;
}

.about-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about-meta-num {
    font-family: var(--serif-caps);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gold-100);
    letter-spacing: 0.05em;
}

.about-meta-label {
    font-family: var(--serif-caps);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-40);
}

.about-meta-divider {
    width: 1px;
    height: 32px;
    background: var(--gold-10);
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
    z-index: 5;
    padding: 36px clamp(24px, 5vw, 64px) 48px;
    border-top: 1px solid var(--gold-10);
    margin-top: 0;
    background: rgba(10, 18, 14, 0.5);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-mark {
    display: block;
    height: 22px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.footer-name {
    font-family: var(--serif-caps);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-60);
    padding-left: 0.22em;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-40);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.footer-meta a {
    color: var(--gold-60);
    transition: color 0.3s ease;
}

.footer-meta a:hover {
    color: var(--gold-100);
}

.footer-sep {
    opacity: 0.5;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
    .site-header {
        padding: 20px 20px;
    }

    .brand-mark {
        height: 26px;
    }

    .brand-name {
        font-size: 0.82rem;
        letter-spacing: 0.18em;
        padding-left: 0.18em;
    }

    .site-nav {
        gap: 14px;
    }

    .site-nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: clamp(40px, 8vh, 80px);
        padding-bottom: clamp(48px, 8vh, 80px);
    }

    .hero-title {
        letter-spacing: 0.16em;
        padding-left: 0.16em;
    }

    .hero-tagline {
        letter-spacing: 0.24em;
        padding-left: 0.24em;
    }

    .scene-featured {
        min-height: 260px;
    }

    .scene-featured-overlay {
        background: linear-gradient(180deg, rgba(10, 18, 14, 0.92) 0%, rgba(10, 18, 14, 0.5) 100%);
    }

    .scene-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .scene-card {
        aspect-ratio: 4 / 5;
    }

    .about-meta-divider {
        display: none;
    }
}

@media (max-width: 520px) {
    .scene-grid {
        grid-template-columns: 1fr;
    }

    .site-nav a:not(.nav-cta) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ember { display: none; }
}
