  :root {
    --black: #080808;
    --deep: #0f0e0d;
    --card: #141210;
    --border: #2a2520;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201,168,76,0.15);
    --gold-line: rgba(201,168,76,0.3);
    --white: #f5f0e8;
    --muted: #8a8070;
    --warm: #d4c9b5;
  }

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

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

body {
background: var(--black);
color: var(--white);
font-family: 'Jost', sans-serif;
font-weight: 300;
overflow-x: hidden;
cursor: none;
}

img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  /* Shifts focus to 50% horizontally, 20% vertically (top/face area) */
  object-position: 50% 20%; 
}

video {
  width: 100%;
  height: auto;
}
/* ─── Custom Cursor ─── */
.cursor {
position: fixed; top: 0; left: 0; z-index: 9999;
pointer-events: none;
}
.cursor-dot {
width: 6px; height: 6px;
background: var(--gold);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: transform 0.1s;
}
.cursor-ring {
position: fixed; top: 0; left: 0;
width: 36px; height: 36px;
border: 1px solid var(--gold-line);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
pointer-events: none;
z-index: 9998;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
transform: translate(-50%, -50%) scale(1.8);
background: var(--gold-dim);
border-color: var(--gold);
}

/* ─── Navigation ─── */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
padding: 1.5rem 4rem;
display: flex; align-items: center; justify-content: space-between;
transition: all 0.5s ease;
}
nav.scrolled {
background: rgba(8,8,8,0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 1rem 4rem;
}
.nav-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.25rem;
font-weight: 500;
letter-spacing: 0.12em;
color: var(--white);
text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
font-size: 0.7rem;
font-weight: 400;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
font-size: 0.68rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--black);
background: var(--gold);
padding: 0.65rem 1.6rem;
text-decoration: none;
transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold-light); }

/* ─── Hero ─── */
#hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
position: relative;
overflow: hidden;
}
.hero-left {
display: flex;
flex-direction: column;
justify-content: center;
padding: 10rem 4rem 6rem 4rem;
position: relative;
z-index: 2;
}
.hero-eyebrow {
display: flex; align-items: center; gap: 1rem;
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow-line {
width: 2rem; height: 1px;
background: var(--gold);
}
.hero-eyebrow-text {
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
}
.hero-headline {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(3.2rem, 6vw, 5.5rem);
font-weight: 300;
line-height: 1.08;
letter-spacing: -0.01em;
margin-bottom: 2rem;
opacity: 0;
animation: fadeUp 1s 0.5s forwards;
}
.hero-headline em {
font-style: italic;
color: var(--gold);
}
.hero-sub {
font-size: 1rem;
font-weight: 300;
line-height: 1.75;
color: var(--warm);
max-width: 38ch;
margin-bottom: 3rem;
opacity: 0;
animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
display: flex; gap: 1.2rem; flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1s 0.9s forwards;
}
.btn-primary {
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--black);
background: var(--gold);
padding: 1rem 2.2rem;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
font-size: 0.7rem;
font-weight: 400;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--white);
background: transparent;
border: 1px solid var(--border);
padding: 1rem 2.2rem;
text-decoration: none;
transition: all 0.3s;
display: inline-flex;
align-items: center;
gap: 0.6rem;
}
.btn-outline:hover {
border-color: var(--gold);
color: var(--gold);
transform: translateY(-2px);
}
.btn-outline svg { width: 14px; height: 14px; }

.hero-stats {
display: flex; gap: 3rem;
margin-top: 4rem;
padding-top: 3rem;
border-top: 1px solid var(--border);
opacity: 0;
animation: fadeUp 1s 1.1s forwards;
}
.stat-num {
font-family: 'Cormorant Garamond', serif;
font-size: 2.2rem;
font-weight: 300;
color: var(--gold);
line-height: 1;
}
.stat-label {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
margin-top: 0.3rem;
}

.hero-right {
position: relative;
overflow: hidden;
}
.hero-img-wrap {
position: absolute; inset: 0;
}
.hero-img-bg {
width: 100%; height: 100%;
background:
linear-gradient(to right, var(--black) 0%, transparent 30%),
linear-gradient(135deg, #1a1508 0%, #2d1f0a 40%, #0a0806 100%);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-portrait-placeholder {
width: 100%; height: 100%;
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
}
.hero-media-card {
width: min(26rem, 72%);
aspect-ratio: 4 / 5;
margin-bottom: 5rem;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 0.9rem;
position: relative;
z-index: 1;
overflow: hidden;
text-decoration: none;
color: var(--white);
border: 1px solid var(--gold-line);
background:
linear-gradient(180deg, rgba(8,8,8,0.08) 0%, rgba(8,8,8,0.86) 78%),
radial-gradient(circle at 18% 18%, rgba(232,201,122,0.18) 0%, transparent 38%),
linear-gradient(145deg, #3c2b13 0%, #18130d 48%, #090806 100%);
box-shadow: 0 24px 64px rgba(0,0,0,0.35);
transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-media-card::before {
content: '';
position: absolute;
inset: 1rem;
border: 1px solid rgba(232,201,122,0.16);
pointer-events: none;
}
.hero-media-card:hover {
transform: translateY(-6px);
border-color: var(--gold);
box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.hero-media-kicker {
font-size: 0.62rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--gold-light);
}
.hero-media-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 300;
line-height: 1.02;
max-width: 8ch;
}
.hero-media-copy {
max-width: 26ch;
font-size: 0.9rem;
font-weight: 300;
line-height: 1.75;
color: var(--warm);
}
.hero-media-cta {
font-size: 0.68rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold);
}
/* Decorative frame */
.hero-frame {
position: absolute;
top: 15%; right: 8%;
width: 55%; height: 70%;
border: 1px solid var(--gold-line);
opacity: 0;
animation: fadeIn 1.5s 1s forwards;
}
.hero-frame::before {
content: '';
position: absolute;
top: -1px; left: -1px;
width: 3rem; height: 3rem;
border-top: 2px solid var(--gold);
border-left: 2px solid var(--gold);
}
.hero-frame::after {
content: '';
position: absolute;
bottom: -1px; right: -1px;
width: 3rem; height: 3rem;
border-bottom: 2px solid var(--gold);
border-right: 2px solid var(--gold);
}
/* Silhouette figure */
.hero-figure {
position: absolute;
bottom: 0;
right: 15%;
width: 45%;
height: 90%;
background: linear-gradient(to top, #2a1e0a 0%, #1a1206 50%, transparent 100%);
clip-path: polygon(20% 100%, 50% 0%, 80% 100%);
opacity: 0.15;
}
.hero-glow {
position: absolute;
bottom: 0; right: 20%;
width: 60%; height: 60%;
background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.12) 0%, transparent 70%);
}

/* Large decorative text */
.hero-bg-text {
position: absolute;
bottom: 2rem;
right: -2rem;
font-family: 'Cormorant Garamond', serif;
font-size: 8rem;
font-weight: 700;
color: transparent;
-webkit-text-stroke: 1px rgba(201,168,76,0.07);
line-height: 1;
white-space: nowrap;
user-select: none;
pointer-events: none;
}

/* Vertical text */
.hero-vertical {
position: absolute;
left: 1.5rem;
top: 50%;
transform: translateY(-50%) rotate(-90deg);
font-size: 0.6rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--muted);
white-space: nowrap;
}

/* ─── Marquee ─── */
.marquee-wrap {
overflow: hidden;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--deep);
padding: 1.2rem 0;
}
.marquee-track {
display: flex;
white-space: nowrap;
animation: marquee 25s linear infinite;
}
.marquee-item {
display: flex; align-items: center; gap: 1.5rem;
padding: 0 2rem;
font-size: 0.68rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--muted);
}
.marquee-dot {
width: 4px; height: 4px;
background: var(--gold);
border-radius: 50%;
flex-shrink: 0;
}

/* ─── Section Scaffolding ─── */
section { padding: 8rem 4rem; }
.section-eyebrow {
display: flex; align-items: center; gap: 1rem;
margin-bottom: 1.5rem;
}
.section-eyebrow-line {
width: 1.5rem; height: 1px; background: var(--gold);
}
.section-eyebrow-text {
font-size: 0.65rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--gold);
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.2rem, 4vw, 3.8rem);
font-weight: 300;
line-height: 1.1;
letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── About ─── */
#about {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8rem;
align-items: center;
background: var(--deep);
}
.about-visual {
position: relative;
}
.about-img-box {
aspect-ratio: 4/5;
background: linear-gradient(135deg, #1a1508 0%, #231908 60%, #0d0b07 100%);
border: 1px solid var(--border);
position: relative;
overflow: hidden;
}
.about-img-box::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.about-img-inner {
position: absolute; inset: 0;
display: flex; align-items: center; justify-content: center;
flex-direction: column;
gap: 1rem;
}
.about-img-icon {
width: 3rem; height: 3rem;
border: 1px solid var(--gold-line);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
}
.about-img-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.about-img-label {
font-size: 0.65rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--muted);
}
.about-corner {
position: absolute;
width: 3.5rem; height: 3.5rem;
}
.about-corner.tl { top: -0.5rem; left: -0.5rem; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.about-corner.br { bottom: -0.5rem; right: -0.5rem; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.about-badge {
position: absolute;
bottom: 2.5rem; right: -2rem;
width: 7rem; height: 7rem;
border: 1px solid var(--gold-line);
border-radius: 50%;
background: var(--card);
display: flex; flex-direction: column;
align-items: center; justify-content: center;
gap: 0.2rem;
}
.about-badge-num {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 300;
color: var(--gold);
line-height: 1;
}
.about-badge-text {
font-size: 0.55rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
text-align: center;
line-height: 1.4;
}

.about-text { }
.about-desc {
font-size: 1.05rem;
font-weight: 300;
line-height: 1.8;
color: var(--warm);
margin-top: 2rem;
margin-bottom: 2.5rem;
}
.about-tags {
display: flex; flex-wrap: wrap; gap: 0.6rem;
margin-top: 2rem;
}
.about-tag {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
border: 1px solid var(--border);
padding: 0.4rem 0.9rem;
transition: all 0.3s;
}
.about-tag:hover { border-color: var(--gold-line); color: var(--gold); }
.about-quote {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-style: italic;
font-weight: 300;
color: var(--warm);
line-height: 1.6;
border-left: 2px solid var(--gold);
padding-left: 1.5rem;
margin: 2.5rem 0;
}
.about-building {
margin-top: 3.5rem;
padding: 2.5rem;
border: 1px solid var(--border);
background:
linear-gradient(180deg, rgba(201,168,76,0.08) 0%, rgba(20,18,16,0.96) 16%, var(--card) 100%);
position: relative;
overflow: hidden;
}
.about-building::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.about-building-kicker {
font-size: 0.62rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 1rem;
}
.about-building-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 300;
line-height: 1.08;
margin-bottom: 1rem;
}
.about-building-title em { font-style: italic; color: var(--gold); }
.about-building-intro {
max-width: 52ch;
font-size: 0.95rem;
font-weight: 300;
line-height: 1.85;
color: var(--warm);
margin-bottom: 2rem;
}
.about-building-quote {
max-width: 42ch;
font-family: 'Cormorant Garamond', serif;
font-size: 1.05rem;
font-style: italic;
font-weight: 300;
line-height: 1.7;
color: var(--gold-light);
margin-bottom: 2rem;
}
.magic-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}
.magic-card {
background: rgba(8,8,8,0.5);
border: 1px solid var(--border);
padding: 1.6rem 1.4rem;
position: relative;
transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.magic-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 1px;
background: linear-gradient(to right, transparent, var(--gold-line), transparent);
opacity: 0.7;
}
.magic-card:hover {
transform: translateY(-4px);
border-color: var(--gold-line);
background: rgba(15,14,13,0.85);
}
.magic-card-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.35rem;
font-weight: 400;
line-height: 1.2;
color: var(--white);
margin-bottom: 0.75rem;
}
.magic-card-text {
font-size: 0.82rem;
font-weight: 300;
line-height: 1.75;
color: var(--muted);
}

/* ─── Services ─── */
#services { background: var(--black); }
.services-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-bottom: 5rem;
align-items: end;
}
.services-desc {
font-size: 0.95rem;
font-weight: 300;
line-height: 1.8;
color: var(--muted);
align-self: flex-end;
padding-bottom: 0.3rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--border);
}
.service-card {
background: var(--black);
padding: 2.8rem 2.5rem;
transition: background 0.4s;
position: relative;
overflow: hidden;
cursor: default;
}
.service-card::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 100%; height: 2px;
background: var(--gold);
transform: scaleX(0);
transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
transform-origin: left;
}
.service-card:hover { background: var(--card); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
font-family: 'Cormorant Garamond', serif;
font-size: 0.85rem;
color: var(--gold);
font-weight: 400;
letter-spacing: 0.1em;
margin-bottom: 1.5rem;
opacity: 0.7;
}
.service-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 400;
line-height: 1.25;
margin-bottom: 1rem;
color: var(--white);
}
.service-desc {
font-size: 0.82rem;
font-weight: 300;
line-height: 1.75;
color: var(--muted);
}
.service-arrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 1.5rem;
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
opacity: 0;
transform: translateX(-8px);
transition: all 0.3s;
}
.service-card:hover .service-arrow {
opacity: 1;
transform: translateX(0);
}

/* ─── Proof / Numbers ─── */
#proof {
background: var(--deep);
text-align: center;
padding: 7rem 4rem;
}
.proof-intro {
max-width: 54ch;
margin: 2rem auto 6rem;
font-size: 1rem;
font-weight: 300;
line-height: 1.8;
color: var(--muted);
}
.proof-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
background: var(--border);
max-width: 900px;
margin: 0 auto 6rem;
}
.proof-item {
background: var(--deep);
padding: 3rem 1.5rem;
}
.proof-num {
font-family: 'Cormorant Garamond', serif;
font-size: 3.5rem;
font-weight: 300;
color: var(--gold);
line-height: 1;
display: block;
}
.proof-unit {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
color: var(--gold);
opacity: 0.7;
}
.proof-label {
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
margin-top: 0.6rem;
line-height: 1.5;
}
.proof-brands {
margin-top: 5rem;
}
.proof-brands-label {
font-size: 0.6rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 2rem;
}
.brand-list {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem 3rem;
}
.brand-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-weight: 300;
letter-spacing: 0.1em;
color: var(--border);
transition: color 0.3s;
}
.brand-name:hover { color: var(--muted); }

/* ─── Media ─── */
#media { background: var(--black); }
.media-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 4rem;
}
.showreel-box {
aspect-ratio: 16/9;
background: var(--card);
border: 1px solid var(--border);
position: relative;
overflow: hidden;
margin-bottom: 2rem;
cursor: pointer;
display: block;
text-decoration: none;
color: var(--white);
transition: transform 0.3s ease, border-color 0.3s ease;
}
.showreel-box::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.showreel-box:hover {
border-color: var(--gold-line);
transform: translateY(-3px);
}
.showreel-inner {
position: absolute; inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.2rem;
}
.play-btn {
width: 5rem; height: 5rem;
border: 1px solid var(--gold-line);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: all 0.4s;
background: rgba(201,168,76,0.05);
}
.play-btn:hover {
background: var(--gold-dim);
border-color: var(--gold);
transform: scale(1.05);
}
.play-btn svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; }
.showreel-label {
font-size: 0.7rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--muted);
}
.showreel-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1.5rem;
align-items: start;
}
.photo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.8rem;
}
.photo-item {
aspect-ratio: 3/4;
background: var(--card);
border: 1px solid var(--border);
position: relative;
overflow: hidden;
transition: all 0.4s;
display: block;
text-decoration: none;
color: var(--white);
}
.photo-item:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.photo-item:nth-child(2) { aspect-ratio: 3/4; margin-top: 1.5rem; }
.photo-item-inner {
position: absolute; inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.6rem;
}
.photo-icon {
width: 2px; height: 2.5rem;
background: linear-gradient(to bottom, var(--gold), transparent);
margin-bottom: 0.4rem;
}
.photo-item-label {
font-size: 0.55rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
text-align: center;
padding: 0 0.8rem;
}
.photo-item-action {
font-size: 0.52rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
text-align: center;
padding: 0 0.8rem;
}
.media-aside-title {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
font-weight: 300;
line-height: 1.3;
margin-bottom: 1.5rem;
}
.media-live-accent { color: var(--gold); font-style: italic; }
.media-aside-text {
font-size: 0.85rem;
font-weight: 300;
line-height: 1.8;
color: var(--muted);
margin-bottom: 2rem;
}
.media-aside-reel {
aspect-ratio: 9/16;
background: var(--card);
border: 1px solid var(--border);
position: relative;
overflow: hidden;
display: block;
text-decoration: none;
color: var(--white);
transition: transform 0.3s ease, border-color 0.3s ease;
}
.media-aside-reel:hover {
border-color: var(--gold-line);
transform: translateY(-3px);
}
.media-aside-reel-inner {
position: absolute; inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.8rem;
}
.showreel-box:hover .play-btn,
.media-aside-reel:hover .play-btn {
background: var(--gold-dim);
border-color: var(--gold);
transform: scale(1.05);
}

/* ─── Why Deepali ─── */
#why {
background: var(--deep);
}
.why-grid {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 8rem;
align-items: center;
margin-top: 5rem;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
display: flex;
align-items: flex-start;
gap: 1.5rem;
padding: 2rem 0;
border-bottom: 1px solid var(--border);
cursor: default;
transition: all 0.3s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: 0.5rem; }
.why-num {
font-family: 'Cormorant Garamond', serif;
font-size: 0.85rem;
color: var(--gold);
opacity: 0.5;
flex-shrink: 0;
margin-top: 0.15rem;
}
.why-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 400;
margin-bottom: 0.4rem;
transition: color 0.3s;
}
.why-item:hover .why-name { color: var(--gold); }
.why-text {
font-size: 0.82rem;
font-weight: 300;
line-height: 1.7;
color: var(--muted);
}
.why-visual {
position: relative;
}
.why-big-text {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(4rem, 8vw, 7rem);
font-weight: 300;
line-height: 1.05;
letter-spacing: -0.02em;
color: var(--white);
}
.why-big-text em {
font-style: italic;
color: var(--gold);
display: block;
}
.why-pullquote {
font-size: 0.85rem;
font-weight: 300;
line-height: 1.8;
color: var(--muted);
margin-top: 2.5rem;
max-width: 38ch;
}
.why-points {
display: grid;
gap: 1rem;
margin-top: 2.5rem;
max-width: 28rem;
}
.why-point {
display: flex;
align-items: center;
gap: 0.9rem;
font-size: 0.68rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--warm);
}
.why-point-line {
width: 2rem;
height: 1px;
background: var(--gold);
flex-shrink: 0;
}
.why-deco {
position: absolute;
right: -1rem; top: -1rem;
width: 6rem; height: 6rem;
border-right: 1px solid var(--gold-line);
border-top: 1px solid var(--gold-line);
}

/* ─── Booking ─── */
#booking {
background: var(--black);
}
.booking-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8rem;
margin-top: 5rem;
align-items: start;
}
.booking-info { }
.booking-info-text {
font-size: 0.95rem;
font-weight: 300;
line-height: 1.85;
color: var(--muted);
margin-top: 1.5rem;
margin-bottom: 3rem;
}
.booking-detail {
display: flex;
align-items: flex-start;
gap: 1.2rem;
padding: 1.5rem 0;
border-bottom: 1px solid var(--border);
}
.booking-detail:first-of-type { border-top: 1px solid var(--border); }
.booking-detail-icon {
width: 2rem; height: 2rem;
border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
margin-top: 0.1rem;
}
.booking-detail-icon svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; }
.booking-detail-label {
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 0.25rem;
}
.booking-detail-value {
font-size: 0.9rem;
font-weight: 300;
color: var(--white);
}

.booking-form { }
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
display: block;
font-size: 0.6rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
background: var(--card);
border: 1px solid var(--border);
color: var(--white);
font-family: 'Jost', sans-serif;
font-size: 0.88rem;
font-weight: 300;
padding: 0.85rem 1rem;
outline: none;
transition: border-color 0.3s;
appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-line); }
.form-group textarea { resize: vertical; min-height: 5rem; }
.form-group select { cursor: pointer; color: var(--muted); }
.form-group select option { background: var(--card); }
.form-submit {
width: 100%;
background: var(--gold);
color: var(--black);
border: none;
font-family: 'Jost', sans-serif;
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
padding: 1.1rem;
cursor: pointer;
transition: all 0.3s;
margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-note {
font-size: 0.7rem;
color: var(--muted);
margin-top: 1rem;
line-height: 1.6;
}

/* ─── Contact ─── */
#contact {
background: var(--deep);
text-align: center;
padding: 7rem 4rem;
}
.contact-big {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.5rem, 5vw, 5rem);
font-weight: 300;
line-height: 1.1;
letter-spacing: -0.01em;
max-width: 20ch;
margin: 0 auto 3rem;
}
.contact-big em { font-style: italic; color: var(--gold); }
.contact-links {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
margin-bottom: 5rem;
}
.contact-link {
display: flex;
align-items: center;
gap: 0.7rem;
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
transition: color 0.3s;
padding: 0.9rem 1.8rem;
border: 1px solid var(--border);
}
.contact-link:hover { color: var(--gold); border-color: var(--gold-line); }
.contact-link svg { width: 14px; height: 14px; }
.wa-link {
background: rgba(37,211,102,0.06);
border-color: rgba(37,211,102,0.2);
color: #25d166;
}
.wa-link:hover { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.4); color: #25d166; }

/* ─── Footer ─── */
footer {
background: var(--black);
border-top: 1px solid var(--border);
padding: 2.5rem 4rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
font-weight: 500;
letter-spacing: 0.1em;
color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-links {
display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--muted);
text-decoration: none;
transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
font-size: 0.65rem;
color: var(--muted);
letter-spacing: 0.05em;
}

/* ─── Animations ─── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
@keyframes goldPulse {
0%, 100% { opacity: 0.4; }
50% { opacity: 0.8; }
}
@keyframes counterUp {
from { opacity: 0; transform: translateY(15px); }
to { opacity: 1; transform: translateY(0); }
}

.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gold shimmer line */
.gold-divider {
width: 3rem; height: 1px;
background: linear-gradient(to right, transparent, var(--gold), transparent);
margin: 0 auto;
animation: goldPulse 2.5s ease-in-out infinite;
}

/* Mobile hamburger placeholder */
.nav-burger { display: none; }

@media (max-width: 1024px) {
nav { padding: 1.5rem 2rem; }
nav.scrolled { padding: 1rem 2rem; }
.nav-links { display: none; }
section { padding: 6rem 2rem; }
#hero { grid-template-columns: 1fr; }
.hero-right { display: none; }
.hero-left { padding: 10rem 2rem 5rem; }
#about { grid-template-columns: 1fr; gap: 4rem; padding: 6rem 2rem; }
.about-badge { right: 1rem; }
.about-building { padding: 2rem; }
.magic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.services-header { grid-template-columns: 1fr; gap: 1.5rem; }
.services-grid { grid-template-columns: 1fr 1fr; }
.proof-grid { grid-template-columns: repeat(2, 1fr); }
.showreel-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; gap: 4rem; }
.booking-grid { grid-template-columns: 1fr; gap: 4rem; }
#proof, #contact { padding: 6rem 2rem; }
footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
.footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
.about-building { padding: 1.5rem; }
.magic-grid { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.proof-grid { grid-template-columns: 1fr 1fr; }
.form-row { grid-template-columns: 1fr; }
.hero-stats { gap: 1.5rem; }
.contact-links { gap: 1rem; }
}
