@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   rgba(201,168,76,0.10);
  --gold-border: rgba(201,168,76,0.22);
  --black:       #06080A;
  --ink:         #0C0F12;
  --dark:        #131720;
  --mid:         #1C2130;
  --steel:       #2A3040;
  --muted:       #5A6070;
  --silver:      #9AA0AE;
  --off-white:   #E8E4DC;
  --white:       #F5F2EC;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --serif2: 'DM Serif Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 72px;
  transition: padding .4s var(--ease), background .4s;
}
nav.scrolled {
  padding: 16px 72px;
  background: rgba(6,8,10,0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img { height: 44px; width: 44px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(201,168,76,0.4)); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(232,228,220,0.6);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
  color: var(--black); background: var(--gold);
  padding: 11px 26px;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--off-white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--black); flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--white); text-decoration: none; letter-spacing: 2px;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none; cursor: pointer;
  color: var(--silver); font-size: 24px; font-family: var(--sans);
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  min-height: 52vh;
  padding: 160px 72px 80px;
  background: var(--black);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 100px 100px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}
.page-hero-label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  position: relative;
}
.page-hero-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -1px;
  color: var(--white);
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: 16px; font-weight: 300; color: var(--silver);
  max-width: 580px; margin-top: 24px; line-height: 1.75;
  position: relative;
}
.page-hero-watermark {
  position: absolute; right: -20px; bottom: -50px;
  font-family: var(--serif); font-size: 260px; font-weight: 700;
  color: rgba(255,255,255,0.018); pointer-events: none; line-height: 1;
  letter-spacing: -8px;
}

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
section { padding: 120px 72px; }
.s-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.s-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.s-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.5px;
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title strong { font-weight: 600; }
.s-body {
  font-size: 16px; font-weight: 300; color: var(--silver);
  line-height: 1.8; max-width: 560px;
}
.s-header { margin-bottom: 72px; }
.s-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-family: var(--sans);
  font-size: 10px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; transition: all .3s var(--ease);
  cursor: pointer; border: none; background: none;
}
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 16px 36px; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0; background: var(--black);
  transform: translateX(-101%); transition: transform .4s var(--ease);
}
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover { color: var(--gold); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-outline {
  border: 1px solid var(--gold-border); color: var(--off-white);
  padding: 16px 36px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { border: 1.5px solid rgba(0,0,0,0.3); color: var(--black); padding: 18px 40px; }
.btn-ghost-dark:hover { background: var(--black); color: var(--gold); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-strip { background: var(--gold); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
  white-space: nowrap; padding: 0 40px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--black);
  display: flex; align-items: center; gap: 20px;
}
.marquee-item::after { content: '✦'; font-size: 6px; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   DIVIDER
══════════════════════════════════════ */
.rule { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }
.rule-full { width: 100%; height: 1px; background: var(--gold-border); }

/* ══════════════════════════════════════
   NUMBERS BAR
══════════════════════════════════════ */
.numbers-bar { background: var(--gold); padding: 80px 72px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.num-item { text-align: center; padding: 24px; border-right: 1px solid rgba(0,0,0,0.12); }
.num-item:last-child { border-right: none; }
.num-big { font-family: var(--serif); font-size: 80px; font-weight: 300; color: var(--black); line-height: 1; }
.num-label { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-top: 8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 90px 72px 40px;
  border-top: 1px solid var(--gold-border);
}
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-img { height: 36px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(201,168,76,0.3)); }
.footer-brand { font-family: var(--serif); font-size: 17px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--white); }
.footer-tagline { font-family: var(--sans); font-size: 8px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 300px; margin-bottom: 24px; }
.footer-contact-line { font-size: 13px; color: var(--silver); margin-bottom: 8px; display: flex; gap: 10px; }
.footer-contact-line a { color: var(--silver); text-decoration: none; transition: color .2s; }
.footer-contact-line a:hover { color: var(--gold); }
.footer-col-head { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { text-decoration: none; font-size: 13px; font-weight: 300; color: var(--muted); transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-nav a:hover { color: var(--off-white); }
.footer-nav a::before { content: '—'; font-size: 9px; color: var(--gold-border); }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-stat { font-family: var(--sans); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band { background: var(--gold); padding: 110px 72px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: 'BUILD'; position: absolute; font-family: var(--serif); font-size: 300px; font-weight: 700; color: rgba(0,0,0,0.05); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; white-space:nowrap; }
.cta-band .s-label { justify-content: center; color: rgba(0,0,0,0.45); position: relative; }
.cta-band .s-label::before { background: rgba(0,0,0,0.3); }
.cta-band .s-title { color: var(--black); position: relative; }
.cta-band-desc { font-size: 17px; font-weight: 300; color: rgba(0,0,0,0.55); max-width: 480px; margin: 20px auto 44px; line-height: 1.7; position: relative; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px){
  nav,section,.page-hero,.numbers-bar,.cta-band,footer{padding-left:36px;padding-right:36px;}
  nav.scrolled{padding-left:36px;padding-right:36px;}
  .nav-links,.nav-cta{display:none;}
  .hamburger{display:flex;}
  .footer-top{grid-template-columns:1fr 1fr;gap:40px;}
  .numbers-grid{grid-template-columns:repeat(2,1fr);}
  .num-item:nth-child(2){border-right:none;}
}
@media(max-width:640px){
  nav,section,.page-hero,.numbers-bar,.cta-band,footer{padding-left:22px;padding-right:22px;}
  nav.scrolled{padding-left:22px;padding-right:22px;}
  .footer-top{grid-template-columns:1fr;}
  .page-hero{padding:130px 22px 60px;}
}
