/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── TOKENS ── */
:root {
  --bg:    #080706;
  --bg2:   #0E0D0A;
  --bg3:   #161410;
  --bg4:   #1E1B16;
  --gold:  #C9A96E;
  --gl:    #DFC99A;
  --gd:    rgba(201,169,110,0.45);
  --gb:    rgba(201,169,110,0.11);
  --text:  #EDE9E3;
  --t2:    #978F84;
  --t3:    #5A5048;
  --ease:  cubic-bezier(0.16,1,0.3,1);
}

/* ── BASE ── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.028;
}

/* ── CURSOR ── */
.cdot, .cring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  display: none;
}
.cdot  { width:7px; height:7px; background:var(--gold); transition:width .25s var(--ease),height .25s var(--ease); }
.cring { width:34px; height:34px; border:1px solid var(--gd); z-index:9998; transition:width .3s var(--ease),height .3s var(--ease),border-color .3s; }

/* ── TYPE UTILS ── */
.eyebrow {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule { width:36px; height:1px; background:var(--gold); margin:18px 0 28px; }
.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.94;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width:13px; height:13px; flex-shrink:0; transition:transform .35s var(--ease); }
.btn:hover svg { transform:translateX(4px); }

.btn-fill { background:var(--gold); color:var(--bg); padding:15px 30px; }
.btn-fill:hover { background:var(--gl); }

.btn-line { color:var(--t2); border-bottom:1px solid var(--t3); padding-bottom:3px; }
.btn-line:hover { color:var(--text); border-color:var(--t2); }

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  padding: 26px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 18px 6%;
  background: rgba(8,7,6,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gb);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { width:5px; height:5px; background:var(--gold); border-radius:50%; flex-shrink:0; }
.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links a { font-size:10px; font-weight:400; letter-spacing:0.22em; text-transform:uppercase; color:var(--t2); transition:color .25s; }
.nav-links a:hover { color:var(--text); }
.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 10px 22px;
  transition: .3s;
}
.nav-cta:hover { background:var(--gold); color:var(--bg); border-color:var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6% 10vh;
  overflow: hidden;
  background:
    radial-gradient(circle 800px at var(--mx,40%) var(--my,65%), rgba(201,169,110,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 110% 80% at 22% 110%, rgba(100,58,18,0.1) 0%, transparent 55%),
    var(--bg);
}

/* Hero entrance: elements start invisible, gain .show via JS */
.h-ey, .h-ti, .h-sb, .h-de {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.h-de { transform: none; transition: opacity 1.5s var(--ease); }
.h-ey.show { opacity:1; transform:none; transition-delay:.2s; }
.h-ti.show { opacity:1; transform:none; transition-delay:.45s; }
.h-sb.show { opacity:1; transform:none; transition-delay:.75s; }
.h-de.show { opacity:.17; transition-delay:.9s; }

/* Decorative wireframe */
.hero-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.h-ey-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.h-ey-inner::after { content:''; width:50px; height:1px; background:var(--gd); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 9.8vw, 152px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.022em;
  max-width: min(840px, 62vw);
  margin-bottom: 44px;
}
.hero-title em { font-style:italic; color:var(--gl); }

.hero-sub {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 48px;
}
.hero-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--t2);
  max-width: 360px;
}
.hero-actions { display:flex; flex-direction:column; gap:14px; align-items:flex-end; }

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  right: 5.5%;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-ind span { font-size:8.5px; letter-spacing:0.3em; text-transform:uppercase; color:var(--t3); writing-mode:vertical-rl; }
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gd), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { clip-path: inset(0 0 100% 0); }
  45%  { clip-path: inset(0 0 0% 0);   }
  55%  { clip-path: inset(0 0 0% 0);   }
  100% { clip-path: inset(100% 0 0 0); }
}

/* ── MARQUEE ── */
.marquee {
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  background: var(--bg2);
  overflow: hidden;
  padding: 16px 0;
}
.marq-inner {
  display: flex;
  width: max-content;
  animation: marq 42s linear infinite;
}
.m-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
.m-item span { font-size:9.5px; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--t3); white-space:nowrap; }
.m-dot { color:var(--gold); }
@keyframes marq { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--gb);
}
.stat { background:var(--bg); padding:72px 40px; text-align:center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7.5vw, 100px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}
.stat-n sup { font-size:.3em; margin-top:.18em; color:var(--gold); }
.stat-l { font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:var(--t2); }

/* ── SECTION BASE ── */
.section { padding: 112px 6%; }

.sec-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.sec-hd h2 { font-size: clamp(36px, 4.5vw, 64px); }

/* ── COLLECTIONS ── */
.col-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--gb);
}
.col-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.col-bg { position:absolute; inset:0; transition:transform .85s var(--ease); }
.col-card:hover .col-bg { transform:scale(1.05); }

/* Each card: a distinct atmospheric room mood */
.cb1 {
  background:
    radial-gradient(ellipse 80% 60% at 58% 78%, rgba(95,62,22,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 18% 12%, rgba(42,32,14,0.45) 0%, transparent 55%),
    #09080501;
}
.cb2 {
  background:
    radial-gradient(ellipse 72% 58% at 32% 42%, rgba(28,42,68,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 58% 52% at 82% 88%, rgba(14,22,44,0.45) 0%, transparent 55%),
    #060810;
}
.cb3 {
  background:
    radial-gradient(ellipse 76% 66% at 52% 82%, rgba(115,56,16,0.52) 0%, transparent 56%),
    radial-gradient(ellipse 52% 40% at 76% 14%, rgba(72,40,10,0.35) 0%, transparent 50%),
    #0C0804;
}

/* Subtle grid pattern */
.col-pat {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image:
    linear-gradient(rgba(201,169,110,1) .5px, transparent .5px),
    linear-gradient(90deg, rgba(201,169,110,1) .5px, transparent .5px);
  background-size: 44px 44px;
}
.col-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,7,6,0.94) 0%, rgba(8,7,6,0.15) 45%, transparent 65%);
}
.col-reveal {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.32);
  opacity: 0;
  transition: opacity .5s;
}
.col-card:hover .col-reveal { opacity: 1; }

.col-body {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.col-tag { margin-bottom: 8px; }
.col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.col-text {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--t2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .55s var(--ease), opacity .4s .05s;
}
.col-card:hover .col-text { max-height: 90px; opacity: 1; }

.col-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s .1s, transform .4s .1s var(--ease);
}
.col-card:hover .col-arrow { opacity:1; transform:translateX(0); }

/* Touch: always show */
@media (hover:none) {
  .col-text { max-height:80px; opacity:1; }
  .col-arrow { opacity:1; transform:none; }
  .col-reveal { opacity:1; }
}

/* ── FEATURED / SPLIT ── */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.feat-vis {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 88% 68% at 50% 80%, rgba(118,68,20,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 58% 48% at 14% 24%, rgba(48,36,16,0.22) 0%, transparent 55%),
    #0F0C08;
}
.feat-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201,169,110,0.08);
  pointer-events: none;
}
.feat-label {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 70px);
  font-weight: 300;
  letter-spacing: 0.55em;
  color: rgba(201,169,110,0.055);
  white-space: nowrap;
  user-select: none;
}
.feat-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.feat-content {
  background: var(--bg2);
  padding: clamp(44px,8%,88px) clamp(36px,6%,72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-content h2 { font-size:clamp(34px,3.2vw,54px); margin-bottom:28px; }
.feat-content h2 em { font-style:italic; color:var(--gl); }
.feat-body { font-size:13.5px; font-weight:300; line-height:1.85; color:var(--t2); margin-bottom:18px; }
.feat-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  margin: 10px 0 34px;
}
.meta-l { font-size:9px; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:var(--t3); margin-bottom:6px; }
.meta-v { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300; }

/* ── TESTIMONIAL ── */
.testi {
  padding: 112px 6%;
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 28vw, 390px);
  font-weight: 300;
  color: rgba(201,169,110,0.032);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-gold { margin: 18px auto 38px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.47;
  color: var(--text);
  max-width: 820px;
  margin: 0 auto 34px;
  position: relative;
}
.testi-auth { font-size:10.5px; letter-spacing:0.24em; text-transform:uppercase; color:var(--t3); }
.testi-auth em { font-style:normal; color:var(--gold); }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--gb);
  margin-top: 56px;
}
.proc-step { background:var(--bg); padding:48px 40px; }
.proc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  font-weight: 300;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  margin-bottom: 20px;
}
.proc-title { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:400; margin-bottom:14px; }
.proc-body { font-size:13px; font-weight:300; line-height:1.82; color:var(--t2); }

/* ── CTA ── */
.cta-section {
  padding: 112px 6%;
  background: var(--bg3);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.cta-section h2 { font-size:clamp(34px,4vw,60px); }
.cta-section h2 em { font-style:italic; color:var(--gl); }
.cta-actions { display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
.cta-email { font-size:11.5px; font-weight:300; color:var(--t3); text-align:right; margin-top:4px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--gb);
  padding: 78px 6% 46px;
}
.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--gb);
  margin-bottom: 36px;
}
.ft-brand { font-family:'Cormorant Garamond',serif; font-size:27px; font-weight:300; letter-spacing:0.22em; text-transform:uppercase; margin-bottom:14px; }
.ft-tagline { font-size:13px; font-weight:300; line-height:1.72; color:var(--t2); max-width:240px; }
.ft-col-h { font-size:9.5px; font-weight:500; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; }
.ft-links { list-style:none; display:flex; flex-direction:column; gap:11px; }
.ft-links a { font-size:13px; font-weight:300; color:var(--t2); transition:color .25s; }
.ft-links a:hover { color:var(--text); }
.ft-bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.ft-bottom p { font-size:11px; font-weight:300; color:var(--t3); }

/* ── SCROLL REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.r.vis { opacity:1; transform:none; }
.r1 { transition-delay:.1s; }
.r2 { transition-delay:.2s; }
.r3 { transition-delay:.32s; }
.r4 { transition-delay:.44s; }

/* ── RESPONSIVE ── */
@media (min-width:600px) and (max-width:1024px) {
  .col-grid { grid-template-columns:1fr 1fr; }
  .col-card:last-child { grid-column:1/-1; aspect-ratio:16/7; }
}
@media (max-width:900px) {
  .featured { grid-template-columns:1fr; }
  .feat-vis { min-height:55vw; }
  .nav-links { display:none; }
  .hero-title { max-width:100%; font-size:clamp(44px,12vw,100px); }
  .hero-sub { grid-template-columns:1fr; gap:28px; }
  .hero-actions { flex-direction:row; align-items:flex-start; flex-wrap:wrap; }
  .stats { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .cta-section { grid-template-columns:1fr; }
  .cta-actions { align-items:flex-start; }
  .ft-top { grid-template-columns:1fr 1fr; gap:32px; }
  .sec-hd { flex-direction:column; align-items:flex-start; }
}
@media (max-width:599px) {
  .col-grid { grid-template-columns:1fr; }
  .col-card { aspect-ratio:4/5; }
  .hero-deco { display:none; }
  .scroll-ind { display:none; }
}
@media (max-width:480px) {
  .ft-top { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
