/* ═══════════════════════════════════════════
   OAKEN EVENTS — Brand System v2
   Forest Green #1A4A2E · Gold #B09A6B · Ink #0C0C0A
═══════════════════════════════════════════ */
:root {
    --ink: #0C0C0A;
    --ink-soft: #161612;
    --ink-mid: #1e1e1a;
    --forest: #1A4A2E;
    --forest-deep: #112e1c;
    --forest-mid: #254d35;
    --gold: #B09A6B;
    --gold-light: #C8B48A;
    --gold-pale: #e8dcc8;
    --ivory: #F4EFE4;
    --ivory-soft: #EDE7D8;
    --warm-mid: #9a9080;
    --social: #7a9e7e;
    --r: 0px;
    /* border-radius zero = sharp luxury */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body {
    background: var(--ink);
    color: var(--ivory);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* ── Custom Cursor ── */
#cur {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
}

#cur-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(176, 154, 107, .45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

body:has(a:hover) #cur,
body:has(button:hover) #cur {
    width: 12px;
    height: 12px;
}

body:has(a:hover) #cur-ring,
body:has(button:hover) #cur-ring {
    width: 48px;
    height: 48px;
    border-color: rgba(176, 154, 107, .8);
}

/* ── NAVIGATION ── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    transition: background .4s, border-color .4s, height .3s;
}

#nav.scrolled {
    background: rgba(12, 12, 10, .96);
    border-bottom: 1px solid rgba(176, 154, 107, .15);
    backdrop-filter: blur(12px);
    height: 64px;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .5);
    text-decoration: none;
    transition: color .3s;
}

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

.nav-cta {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 11px 28px;
    text-decoration: none;
    cursor: none;
    transition: background .3s, transform .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: none;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-bg-reel {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.hero-slice {
    position: relative;
    overflow: hidden;
    transition: flex .6s ease;
}

.hero-slice-img {
    position: absolute;
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-slice:nth-child(2) .hero-slice-img {
    animation-delay: -6s;
}

.hero-slice:nth-child(3) .hero-slice-img {
    animation-delay: -12s;
}

@keyframes heroZoom {
    from { transform: scale(1) }
    to   { transform: scale(1.08) }
}

.hs1 {
    background-image: url('https://oakenevents.com/cms/uploads/backgrounds/background-1.jpg');
    background-size: cover;
    background-position: center;
}

.hs2 {
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1400&q=80&fit=crop');
    background-size: cover;
    background-position: center top;
}

.hs3 {
    background-image: url('https://oakenevents.com/cms/uploads/backgrounds/background-2.jpg');
    background-size: cover;
    background-position: center;
}

/* Vertical dividers between slices */
.hero-slice::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(176, 154, 107, .3), transparent);
}

.hero-slice:last-child::after {
    display: none;
}

/* Category labels on hero slices */
.hero-slice-label {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .5);
    opacity: 0;
    animation: fadeUp .8s ease forwards;
}

.hero-slice:nth-child(1) .hero-slice-label { animation-delay: 1.2s; }
.hero-slice:nth-child(2) .hero-slice-label { animation-delay: 1.5s; }
.hero-slice:nth-child(3) .hero-slice-label { animation-delay: 1.8s; }

.hero-slice-label::before {
    content: '';
    display: block;
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, rgba(176, 154, 107, .4));
    margin: 0 auto 8px;
}

/* Dark overlay on hero */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(12, 12, 10, .92) 0%, rgba(12, 12, 10, .4) 45%, rgba(12, 12, 10, .15) 100%),
        linear-gradient(to right, rgba(12, 12, 10, .3) 0%, transparent 30%, transparent 70%, rgba(12, 12, 10, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp .8s ease .2s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 48px;
    height: 1px;
    background: var(--gold);
    opacity: .6;
}

.hero-logo-lockup {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 1s ease .4s forwards;
}

.hero-logo-lockup img {
    height: 72px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-wordmark {
    font-family: 'Syne', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .45);
    margin-top: 12px;
    text-align: center;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: rgba(244, 239, 228, .7);
    line-height: 1.4;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp .9s ease .7s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .9s ease .9s forwards;
}

.btn-gold {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 15px 36px;
    text-decoration: none;
    cursor: none;
    transition: background .3s, transform .2s;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-iv {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid rgba(244, 239, 228, .3);
    color: rgba(244, 239, 228, .7);
    padding: 15px 36px;
    text-decoration: none;
    cursor: none;
    transition: border-color .3s, color .3s;
    display: inline-block;
}

.btn-outline-iv:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll-text {
    font-family: 'Syne', sans-serif;
    font-size: .52rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .3);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(176, 154, 107, .5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .3 }
    50%       { opacity: 1  }
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--forest);
    overflow: hidden;
    padding: 13px 0;
    border-top: 1px solid rgba(176, 154, 107, .2);
    border-bottom: 1px solid rgba(176, 154, 107, .2);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeRoll 30s linear infinite;
}

.marquee-item {
    font-family: 'Syne', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .75);
    padding: 0 36px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 36px;
}

.marquee-item::after {
    content: '◆';
    font-size: .45rem;
    color: var(--gold);
}

@keyframes marqueeRoll {
    from { transform: translateX(0)    }
    to   { transform: translateX(-50%) }
}

/* ── METRICS ── */
#metrics {
    background: var(--forest);
    padding: 80px 48px;
    text-align: center;
}

.metrics-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .45);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.metrics-eyebrow::before,
.metrics-eyebrow::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(176, 154, 107, .4);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.metric-item {
    padding: 40px 24px;
    border-right: 1px solid rgba(176, 154, 107, .15);
    position: relative;
}

.metric-item:last-child {
    border-right: none;
}

.metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .9;
    color: var(--gold-light);
    letter-spacing: -.02em;
    display: block;
}

.metric-num sup {
    font-size: 40%;
    vertical-align: super;
}

.metric-label {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .45);
    margin-top: 12px;
    display: block;
    line-height: 1.5;
}

/* ── PARALLAX BANNER ── */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-inner {
    display: flex;
    flex-direction: column;
}

.parallax-panel {
    position: relative;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.parallax-bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    will-change: transform;
}

.parallax-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 10, .85) 0%, rgba(12, 12, 10, .3) 50%, rgba(12, 12, 10, .1) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 48px 64px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.parallax-content-left {
    max-width: 560px;
}

.parallax-tag {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid;
    display: inline-block;
    margin-bottom: 20px;
}

.parallax-tag.corp {
    border-color: rgba(176, 154, 107, .6);
    color: var(--gold);
}

.parallax-tag.soc {
    border-color: rgba(122, 158, 126, .6);
    color: #9ec4a2;
}

.parallax-tag.cel {
    border-color: rgba(176, 154, 107, .4);
    color: var(--gold-light);
}

.parallax-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1;
    color: var(--ivory);
    margin-bottom: 16px;
}

.parallax-title em {
    font-style: italic;
    color: var(--gold-light);
}

.parallax-desc {
    font-size: .9rem;
    color: rgba(244, 239, 228, .55);
    line-height: 1.75;
    max-width: 420px;
}

.parallax-num {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 1;
    color: rgba(176, 154, 107, .12);
    pointer-events: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.pp1 {
    background-image: url('https://oakenevents.com/images/Oaken-G24-Site-Level.jpg');
    background-size: cover;
    background-position: center;
}

.pp2 {
    background-image: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1800&q=80&fit=crop');
    background-size: cover;
    background-position: center 30%;
}

.pp3 {
    background-image: url('https://oakenevents.com/images/Atinuda-Oaken.jpg');
    background-size: cover;
    background-position: center;
}

/* ── WHAT WE DO (SERVICES) ── */
#services {
    background: var(--ink);
    padding: 100px 48px;
}

.section-header {
    margin-bottom: 64px;
}

.eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.0;
}

.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.services-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.svc-pillar {
    background: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, .05);
    transition: border-color .4s;
    overflow: hidden;
    position: relative;
}

.svc-pillar:hover {
    border-color: rgba(176, 154, 107, .25);
}

.svc-pillar-header {
    padding: 48px 48px 0;
}

.svc-pillar-tag {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid;
    display: inline-block;
    margin-bottom: 20px;
}

.svc-pillar-tag.corp {
    border-color: rgba(176, 154, 107, .5);
    color: var(--gold);
}

.svc-pillar-tag.soc {
    border-color: rgba(122, 158, 126, .5);
    color: var(--social);
}

.svc-pillar-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: var(--ivory);
}

.svc-pillar-desc {
    font-size: .88rem;
    color: rgba(244, 239, 228, .45);
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 36px;
}

.svc-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .04);
    margin-top: 0;
}

.svc-item {
    padding: 22px 28px;
    background: var(--ink-soft);
    border-top: 1px solid rgba(255, 255, 255, .04);
    transition: background .3s;
}

.svc-item:hover {
    background: rgba(176, 154, 107, .04);
}

.svc-item-icon {
    font-size: .95rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.svc-item-name {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 5px;
}

.svc-item-desc {
    font-size: .78rem;
    color: rgba(244, 239, 228, .38);
    line-height: 1.55;
}

/* Social version */
.svc-item.social-item .svc-item-icon {
    color: var(--social);
}

/* ── PORTFOLIO PREVIEW ── */
#portfolio-preview {
    background: var(--ink-soft);
    padding: 100px 48px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
    flex-wrap: wrap;
}

.port-link {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: gap .3s;
}

.port-link:hover {
    gap: 16px;
}

.portfolio-cinema-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 3px;
}

.cinema-card {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: var(--ink);
}

.cinema-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.cinema-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
}

.cinema-inner {
    position: relative;
    padding-bottom: 65%;
}

.cinema-card:nth-child(1) .cinema-inner {
    padding-bottom: 48%;
}

.cinema-card:nth-child(4) .cinema-inner {
    padding-bottom: 140%;
    height: 0;
}

.cinema-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.cinema-card:hover .cinema-bg {
    transform: scale(1.06);
}

.cinema-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 10, .9) 0%, rgba(12, 12, 10, .15) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 28px 32px;
    transition: background .4s;
}

.cinema-card:hover .cinema-overlay {
    background: linear-gradient(to top, rgba(12, 12, 10, .95) 0%, rgba(12, 12, 10, .4) 60%, rgba(12, 12, 10, .1) 100%);
}

.cinema-cat {
    font-family: 'Syne', sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cinema-cat::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.cinema-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 6px;
}

.cinema-sub {
    font-size: .75rem;
    color: rgba(244, 239, 228, .4);
}

/* Gallery expand hint */
.cinema-gallery-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
}

.cgd {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(244, 239, 228, .25);
}

.cgd.active {
    background: var(--gold);
}

.cc1 {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center;
}

.cc2 {
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center top;
}

.cc3 {
    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center;
}

.cc4 {
    background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center;
}

.cc5 {
    background-image: url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center;
}

.cc6 {
    background-image: url('https://images.unsplash.com/photo-1587825140708-dfaf72ae4b04?w=1200&q=80&fit=crop');
    background-size: cover;
    background-position: center;
}

/* ── SOCIAL PROOF / TRUST ── */
#trust {
    background: var(--ink);
    padding: 80px 48px;
    border-top: 1px solid rgba(176, 154, 107, .1);
    border-bottom: 1px solid rgba(176, 154, 107, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-quote {
    flex: 1;
    min-width: 260px;
    max-width: 560px;
}

.trust-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--ivory-soft);
}

.trust-quote cite {
    display: block;
    margin-top: 20px;
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.trust-logos-label {
    font-family: 'Syne', sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .25);
    text-align: right;
    margin-bottom: 8px;
}

.trust-client-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.trust-client {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(244, 239, 228, .3);
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: border-color .3s, color .3s;
}

.trust-client:hover {
    border-color: rgba(176, 154, 107, .3);
    color: var(--gold);
}

/* ── BRAND STORY ── */
#story {
    background: var(--forest-deep);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

#story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 74, 46, .4) 0%, transparent 100%);
    pointer-events: none;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
}

.story-portrait {
    position: relative;
}

.story-portrait-frame {
    aspect-ratio: 3/4;
    background: var(--forest-mid);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(176, 154, 107, .2);
}

.story-portrait-grad {
    position: absolute;
    inset: 0;
    background-image: url('founder.jpeg');
    background-size: cover;
    background-position: center top;
}

.story-portrait-grad::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 12, .8) 0%, rgba(10, 18, 12, .2) 50%, transparent 100%);
}

.story-portrait-text {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .45);
}

.story-portrait-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(176, 154, 107, .3);
}

.story-portrait-year {
    position: absolute;
    top: 24px;
    left: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(176, 154, 107, .15);
    line-height: 1;
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.4rem;
    margin-bottom: 4px;
    color: var(--ivory);
}

.story-title-sub {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.story-body p {
    font-size: .93rem;
    color: rgba(244, 239, 228, .55);
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-philosophy {
    margin-top: 36px;
    padding: 28px 32px;
    border-left: 3px solid var(--gold);
    background: rgba(176, 154, 107, .05);
}

.story-philosophy p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold-pale);
    line-height: 1.5;
    margin: 0;
}

/* ── CTA SECTION ── */
#cta {
    background: var(--ink-mid);
    padding: 110px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: 'OAKEN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(8rem, 20vw, 22rem);
    line-height: 1;
    color: rgba(176, 154, 107, .03);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: .1em;
}

.cta-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(176, 154, 107, .4);
}

.cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
}

.cta-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-sub {
    font-size: .95rem;
    color: rgba(244, 239, 228, .4);
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto 48px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-forest {
    font-family: 'Syne', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    background: var(--forest);
    color: var(--ivory);
    border: 1px solid rgba(176, 154, 107, .2);
    padding: 15px 36px;
    text-decoration: none;
    cursor: none;
    transition: background .3s, border-color .3s;
    display: inline-block;
}

.btn-forest:hover {
    background: var(--forest-mid);
    border-color: rgba(176, 154, 107, .4);
}

/* ── PARTNERS ── */
/* ── CLIENTS ── */
#clients {
    background: var(--ink-soft);
    padding: 96px 48px;
    border-top: 1px solid rgba(176, 154, 107, .08);
    border-bottom: 1px solid rgba(176, 154, 107, .08);
    position: relative;
    overflow: hidden;
}

#clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(176, 154, 107, .3), transparent);
}

/* ── Clients header ── */
.clients-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.clients-intro {
    font-size: .93rem;
    color: rgba(244, 239, 228, .4);
    line-height: 1.8;
    max-width: 400px;
}

.client-count-badge {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.client-count-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: -.01em;
}

/* ── Filter bar ── */
.clients-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.clients-filter-btn {
    font-family: 'Syne', sans-serif;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 7px 18px;
    border: 1px solid rgba(176, 154, 107, .2);
    border-radius: 100px;
    background: transparent;
    color: rgba(244, 239, 228, .35);
    cursor: none;
    transition: background .2s, color .2s, border-color .2s;
}

.clients-filter-btn:hover,
.clients-filter-btn.active {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

/* ── Logo grid ── */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: rgba(176, 154, 107, .08);
    border: 1px solid rgba(176, 154, 107, .1);
    overflow: hidden;
}

.logo-cell {
    position: relative;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    min-height: 108px;
    cursor: none;
    transition: background .25s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    animation: logoFadeUp .5s ease forwards;
    animation-play-state: paused;
}

@keyframes logoFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.logo-cell::after {
    content: attr(data-name);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest);
    color: var(--ivory);
    font-family: 'DM Sans', sans-serif;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-align: center;
    padding: 7px 8px;
    transform: translateY(100%);
    transition: transform .22s ease;
    line-height: 1.3;
}

.logo-cell:hover {
    background: rgba(176, 154, 107, .06);
    z-index: 2;
}

.logo-cell:hover::after {
    transform: translateY(0);
}

/* accent left border every 7th+1 */
.logo-cell:nth-child(7n+1) {
    border-left: 2px solid rgba(176, 154, 107, .2);
}

.logo-cell img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.8);
    opacity: .85;
    transition: filter .3s, opacity .3s;
}

.logo-cell:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* placeholder for missing logos */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
}

.logo-placeholder .initials {
    font-family: 'Syne', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    color: rgba(176, 154, 107, .6);
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.2;
}

.logo-placeholder .org-name {
    font-family: 'DM Sans', sans-serif;
    font-size: .6rem;
    font-weight: 400;
    color: rgba(244, 239, 228, .2);
    text-align: center;
    letter-spacing: .03em;
    line-height: 1.3;
    max-width: 80px;
}

/* ── Clients bottom note ── */
.clients-bottom-note {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.clients-divider {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(176, 154, 107, .25));
}

.clients-divider.right {
    background: linear-gradient(to left, transparent, rgba(176, 154, 107, .25));
}

.clients-note-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(244, 239, 228, .4);
    text-align: center;
}

.clients-note-text strong {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-light);
}

/* staggered animation delays */
.logo-cell:nth-child(1)  { animation-delay: 0.02s; }
.logo-cell:nth-child(2)  { animation-delay: 0.04s; }
.logo-cell:nth-child(3)  { animation-delay: 0.06s; }
.logo-cell:nth-child(4)  { animation-delay: 0.08s; }
.logo-cell:nth-child(5)  { animation-delay: 0.10s; }
.logo-cell:nth-child(6)  { animation-delay: 0.12s; }
.logo-cell:nth-child(7)  { animation-delay: 0.14s; }
.logo-cell:nth-child(8)  { animation-delay: 0.16s; }
.logo-cell:nth-child(9)  { animation-delay: 0.18s; }
.logo-cell:nth-child(10) { animation-delay: 0.20s; }
.logo-cell:nth-child(11) { animation-delay: 0.22s; }
.logo-cell:nth-child(12) { animation-delay: 0.24s; }
.logo-cell:nth-child(13) { animation-delay: 0.26s; }
.logo-cell:nth-child(14) { animation-delay: 0.28s; }
.logo-cell:nth-child(15) { animation-delay: 0.30s; }
.logo-cell:nth-child(16) { animation-delay: 0.32s; }
.logo-cell:nth-child(17) { animation-delay: 0.34s; }
.logo-cell:nth-child(18) { animation-delay: 0.36s; }
.logo-cell:nth-child(19) { animation-delay: 0.38s; }
.logo-cell:nth-child(20) { animation-delay: 0.40s; }
.logo-cell:nth-child(21) { animation-delay: 0.42s; }
.logo-cell:nth-child(22) { animation-delay: 0.44s; }
.logo-cell:nth-child(23) { animation-delay: 0.46s; }
.logo-cell:nth-child(24) { animation-delay: 0.48s; }
.logo-cell:nth-child(25) { animation-delay: 0.50s; }
.logo-cell:nth-child(26) { animation-delay: 0.52s; }
.logo-cell:nth-child(27) { animation-delay: 0.54s; }
.logo-cell:nth-child(28) { animation-delay: 0.56s; }
.logo-cell:nth-child(29) { animation-delay: 0.58s; }
.logo-cell:nth-child(30) { animation-delay: 0.60s; }
.logo-cell:nth-child(31) { animation-delay: 0.62s; }
.logo-cell:nth-child(32) { animation-delay: 0.64s; }
.logo-cell:nth-child(33) { animation-delay: 0.66s; }
.logo-cell:nth-child(34) { animation-delay: 0.68s; }
.logo-cell:nth-child(35) { animation-delay: 0.70s; }
.logo-cell:nth-child(36) { animation-delay: 0.72s; }
.logo-cell:nth-child(37) { animation-delay: 0.74s; }
.logo-cell:nth-child(38) { animation-delay: 0.76s; }

/* ── FOOTER ── */
footer {
    background: #080806;
    padding: 64px 48px 36px;
    border-top: 1px solid rgba(176, 154, 107, .15);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 32px;
}

.footer-logo-area img {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-tagline {
    font-size: .83rem;
    color: rgba(244, 239, 228, .3);
    line-height: 1.7;
    max-width: 220px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: .83rem;
    color: rgba(244, 239, 228, .35);
    text-decoration: none;
    transition: color .3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: .72rem;
    color: rgba(244, 239, 228, .2);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-social {
    font-family: 'Syne', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, .3);
    text-decoration: none;
    transition: color .3s;
}

.footer-social:hover {
    color: var(--gold);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px) }
    to   { opacity: 1; transform: none             }
}

@keyframes fadeIn {
    from { opacity: 0 }
    to   { opacity: 1 }
}

/* ── MOBILE NAV DRAWER ── */
#mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(12, 12, 10, .98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

#mobile-nav.open {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

#mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--ivory);
    text-decoration: none;
    transition: color .3s;
}

#mobile-nav a:hover {
    color: var(--gold);
}

#mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: none;
    color: var(--gold);
    font-size: 1.4rem;
}

/* ── RESPONSIVE ── */
@media(max-width:960px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metric-item {
        border-right: none;
        border-bottom: 1px solid rgba(176, 154, 107, .12);
        padding: 28px 16px;
    }

    .metric-item:nth-child(odd) {
        border-right: 1px solid rgba(176, 154, 107, .12);
    }

    .metric-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .services-two-col {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-portrait {
        max-width: 340px;
    }

    .portfolio-cinema-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cinema-card:nth-child(1) {
        grid-column: span 2;
    }

    .cinema-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cinema-card:nth-child(4) .cinema-inner {
        padding-bottom: 65%;
        height: auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media(max-width:700px) {
    :root {
        font-size: 15px;
    }

    #nav {
        padding: 0 20px;
        height: 60px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-mobile-btn {
        display: flex;
        align-items: center;
    }

    .nav-hamburger {
        width: 22px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .nav-hamburger span {
        display: block;
        height: 1.5px;
        background: var(--ivory);
        border-radius: 2px;
    }

    #hero {
        height: 100svh;
        min-height: 580px;
    }

    .hero-bg-reel {
        grid-template-columns: 1fr;
    }

    .hero-slice:nth-child(2),
    .hero-slice:nth-child(3) {
        display: none;
    }

    .hero-slice-label {
        display: none;
    }

    .hero-content {
        padding: 0 24px 56px;
    }

    .hero-logo-lockup img {
        height: 48px;
    }

    .hero-scroll {
        display: none;
    }

    .marquee-strip {
        display: none;
    }

    #metrics {
        padding: 56px 20px;
    }

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

    .metric-num {
        font-size: clamp(3rem, 12vw, 5.5rem);
    }

    .parallax-panel {
        height: 60vh;
        min-height: 420px;
        background-attachment: scroll;
    }

    .parallax-content {
        padding: 28px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .parallax-num {
        display: none;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    #services {
        padding: 64px 20px;
    }

    .svc-pillar-header {
        padding: 32px 24px 0;
    }

    .svc-items {
        grid-template-columns: 1fr;
    }

    #portfolio-preview {
        padding: 64px 20px;
    }

    .portfolio-cinema-grid {
        grid-template-columns: 1fr;
    }

    .cinema-card:nth-child(1),
    .cinema-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cinema-card:nth-child(4) .cinema-inner {
        padding-bottom: 65%;
    }

    .cinema-card:nth-child(1) .cinema-inner {
        padding-bottom: 65%;
    }

    #trust {
        padding: 56px 20px;
        flex-direction: column;
    }

    .trust-logos {
        align-items: flex-start;
    }

    .trust-client-row {
        justify-content: flex-start;
    }

    .trust-logos-label {
        text-align: left;
    }

    #story {
        padding: 64px 20px;
    }

    .story-portrait {
        max-width: 260px;
    }

    #cta {
        padding: 80px 20px;
    }

    footer {
        padding: 48px 20px 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    #clients {
        padding: 72px 20px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-header {
        flex-direction: column;
    }
}
