/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(255,255,255,0.03);
  --text-primary: #f0f0f0;
  --text-secondary: #999999;
  --text-muted: #555555;
  --accent: #c8a97e;
  --accent-light: #e0c9a6;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --shadow-3d: 0 25px 50px -12px rgba(0,0,0,0.8);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

::selection { background: rgba(200,169,126,0.3); color: var(--text-primary); }

a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.grain-canvas {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.04;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 12px; height: 12px;
  background: white; border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo),
              background 0.3s, opacity 0.3s, transform 0.15s ease-out;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor.hovering {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  mix-blend-mode: normal;
}
.cursor.magnetic {
  width: 64px; height: 64px;
  background: rgba(200,169,126,0.15);
  border: 1px solid rgba(200,169,126,0.3);
  mix-blend-mode: normal;
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo),
              background 0.4s, border 0.4s;
}

@media (pointer: coarse) {
  .cursor { display: none !important; }
  body { cursor: auto; }
}

/* NAVIGATION */
.nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 100;
  width: calc(100% - 48px); max-width: 1100px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.nav.scrolled {
  top: 16px;
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.nav .container { padding: 0 8px 0 32px; max-width: none; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text-primary); letter-spacing: -0.02em;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 13px; font-weight: 400;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.3s;
  position: relative; overflow: hidden;
}
.nav-link::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  color: var(--text-primary);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s var(--ease-out-expo);
}
.nav-link:hover::after { clip-path: inset(0 0% 0 0); }
.nav-link:hover { color: var(--text-secondary); }
.nav-link.active { color: var(--text-primary); }
.nav-link.active::after { color: var(--text-primary); }
.nav-link.active::before {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.nav-clock {
  font-size: 12px; color: var(--text-muted); font-weight: 400;
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.03);
}
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--text-primary); border: 1px solid var(--text-primary);
  color: var(--bg-primary); padding: 12px 32px; border-radius: 50px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

/* HERO SECTION */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  perspective: 1000px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  will-change: transform; transform: scale(1.1);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.95) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 150px 60px rgba(10,10,10,0.5);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 120px; transform-style: preserve-3d;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px; overflow: hidden;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--accent); transform-origin: left; }
.hero-eyebrow-text {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--accent); font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400; line-height: 0.95;
  letter-spacing: -0.03em; margin-bottom: 24px;
  overflow: hidden;
}
.hero-headline .char {
  display: inline-block;
  transform: translateY(120%) rotateX(-90deg);
  transform-origin: center bottom; opacity: 0;
}
.hero-headline .char.revealed {
  animation: charReveal 1.2s var(--ease-out-expo) forwards;
}
@keyframes charReveal {
  to { transform: translateY(0) rotateX(0deg); opacity: 1; }
}
.hero-headline .word { display: inline-block; margin-right: 0.3em; }
.hero-headline .line { display: block; overflow: hidden; }

.hero-subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary); max-width: 480px;
  line-height: 1.6; font-weight: 300; margin-bottom: 40px;
  opacity: 0; transform: translateY(30px);
}
.hero-subhead.revealed { animation: fadeSlideUp 1s var(--ease-out-expo) 0.6s forwards; }
.hero-cta-group {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; transform: translateY(30px);
}
.hero-cta-group.revealed { animation: fadeSlideUp 1s var(--ease-out-expo) 0.8s forwards; }
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  background: var(--text-primary); color: var(--bg-primary);
  font-size: 14px; font-weight: 500;
  transition: all 0.4s var(--ease-out-expo);
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,255,255,0.15);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  font-size: 14px; font-weight: 400;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

/* SECTION LABELS & HEADINGS */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 11px; font-weight: 500;
  color: var(--accent); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--text-primary);
}
.section-sub {
  color: var(--text-secondary);
  font-size: 16px; max-width: 520px;
  line-height: 1.7; font-weight: 300; margin-top: 20px;
}
.section-padding { padding: 140px 0; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-3d {
  opacity: 0;
  transform: perspective(1000px) rotateX(15deg) translateY(60px);
  transform-origin: center bottom;
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}
.reveal-3d.revealed { opacity: 1; transform: perspective(1000px) rotateX(0deg) translateY(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9) translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1) translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding: 100px 0 60px;
}
.footer-col h4 {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary); margin-bottom: 24px; font-weight: 500;
}
.footer-col p, .footer-col a {
  font-size: 14px; color: var(--text-muted);
  line-height: 2.2; display: block;
  transition: color 0.3s, transform 0.3s;
}
.footer-col a:hover { color: var(--text-primary); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 28px 0;
  display: flex; justify-content: space-between;
  align-items: center; font-size: 12px; color: var(--text-muted);
}
.footer-marquee {
  overflow: hidden; padding: 30px 0;
  border-top: 1px solid var(--border);
}
.footer-marquee-track {
  display: flex; white-space: nowrap;
  animation: footerMarqueeScroll 20s linear infinite;
}
.footer-marquee-item {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  padding: 0 60px; user-select: none;
  transition: -webkit-text-stroke 0.5s;
}
.footer-marquee:hover .footer-marquee-item {
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
}
@keyframes footerMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HAMBURGER */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  width: 48px; height: 48px; cursor: pointer;
  z-index: 201; position: relative;
  background: rgba(255,255,255,0.03); border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08); padding: 0;
  margin-right: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo); position: absolute;
}
.nav-hamburger span:nth-child(1) { transform: translateY(-5px); }
.nav-hamburger span:nth-child(2) { transform: translateY(0); }
.nav-hamburger span:nth-child(3) { transform: translateY(5px); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* MOBILE OVERLAY */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  z-index: 200; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 48px); font-weight: 400;
  color: var(--text-primary); text-decoration: none;
  padding: 12px 24px; transition: color 0.3s, transform 0.3s;
  transform: translateY(20px); opacity: 0;
}
.mobile-menu.open .mobile-menu-links a { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-links a:hover { color: var(--accent); }
.mobile-menu-cta {
  margin-top: 40px; opacity: 0; transform: translateY(20px);
  transition: all 0.5s var(--ease-out-expo) 0.35s;
}
.mobile-menu.open .mobile-menu-cta { opacity: 1; transform: translateY(0); }
.mobile-menu-cta .btn-primary { font-size: 16px; padding: 16px 40px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; margin-top: 60px; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; cursor: pointer; gap: 16px; width: 100%;
  font-size: 16px; font-weight: 400; text-align: left;
  color: var(--text-primary); transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300;
  color: var(--text-secondary); flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg); border-color: var(--accent); color: var(--accent);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out-expo); }
.faq-answer-inner {
  padding: 0 0 24px; font-size: 14px; color: var(--text-secondary);
  line-height: 1.8; font-weight: 300;
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-clock { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  .hero { min-height: 100svh; }
  .hero-headline { font-size: clamp(36px, 10vw, 60px); }
  .hero-subhead { font-size: 15px; max-width: 100%; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary { width: 100%; justify-content: center; }
  .hero-content { padding-top: 100px; }
  .hero-eyebrow-text { font-size: 10px; }
  .section-heading { font-size: clamp(28px, 7vw, 48px); }
  .section-sub { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 60px 0 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-marquee-item { padding: 0 30px; }
  .faq-question { font-size: 15px; padding: 20px 0; }
}

/* RESPONSIVE SMALL */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: clamp(32px, 11vw, 48px); }
  .hero-eyebrow { margin-bottom: 20px; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 13px; }
  .section-heading { font-size: clamp(24px, 8vw, 36px); }
  .section-sub { font-size: 14px; }
  .nav .container { padding: 0 8px 0 24px; }
  .nav-inner { height: 60px; }
  .nav-logo { font-size: 19px; }
  .footer-marquee-item { font-size: clamp(48px, 14vw, 80px); padding: 0 20px; }
}
