/* Self-hosted fonts (Fontsource) — replaces Google Fonts CDN */
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/bodoni-moda-400.woff2') format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/bodoni-moda-500.woff2') format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/bodoni-moda-600.woff2') format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/bodoni-moda-700.woff2') format('woff2'); }
@font-face { font-family: 'Bodoni Moda'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/bodoni-moda-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/jost-300.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/jost-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/jost-500.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/jost-600.woff2') format('woff2'); }
/* =========================
   1. CUSTOM PROPERTIES
   ========================= */
:root {
  --obsidian: #0B0C10;
  --obsidian-mid: #14151A;
  --obsidian-light: #1A1B20;
  --gold: #C8B48C;
  --gold-light: #D8C8A0;
  --gold-dim: rgba(200,180,140,0.15);
  --ivory: #F0EDE6;
  --ivory-dark: #E4E0D8;
  --text-dark: #0B0C10;
  --text-dark-body: #3A3832;
  --text-dark-muted: #7A7868;
  --text-light: #F0EDE6;
  --text-light-body: rgba(240,237,230,0.6);
  --text-light-muted: rgba(240,237,230,0.55);
  --border-gold: rgba(200,180,140,0.2);
  --serif: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --nav-h: 88px;
  --container: 1200px;
}

/* =========================
   2. RESET & BASE
   ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* =========================
   3. TYPOGRAPHY
   ========================= */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 500; }
p { max-width: 65ch; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* =========================
   4. CUSTOM CURSOR
   ========================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 50px; height: 50px;
  background: rgba(200,180,140,0.1);
  border-color: var(--gold-light);
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* =========================
   5. LOADING SCREEN
   ========================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: loaderFade 1.2s var(--ease) 0.2s forwards;
}
@keyframes loaderFade {
  0% { opacity: 0; transform: translateY(8px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================
   6. NOISE OVERLAY
   ========================= */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* =========================
   7. NAVIGATION
   ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(11,12,16,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-gold);
}
.nav__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__link {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-light-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  min-height: 44px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  border-radius: 3px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,180,140,0.25);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11,12,16,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* =========================
   8. SECTIONS SHARED
   ========================= */
.section { padding: clamp(5rem, 10vw, 8rem) 2rem; position: relative; overflow: hidden; }
.section__inner { max-width: var(--container); margin: 0 auto; }
.section--dark {
  background: var(--obsidian);
  color: var(--text-light);
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200,180,140,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200,180,140,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(200,180,140,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.section--light { background: var(--ivory); color: var(--text-dark); }
.section--alt {
  background: var(--ivory-dark);
  color: var(--text-dark);
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200,180,140,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,180,140,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.section__label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section--dark .section__label { color: var(--gold); }
.section--light .section__label, .section--alt .section__label { color: var(--gold); }
.section__headline { margin-bottom: 1.25rem; }
.section--dark .section__headline { color: var(--text-light); }
.section__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}
.section--dark .section__sub { color: var(--text-light-body); }
.section--light .section__sub { color: var(--text-dark-body); }

/* =========================
   9. HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, var(--obsidian) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,180,140,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(180,160,120,0.10) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,12,16,0.2) 0%, rgba(11,12,16,0.05) 40%, rgba(11,12,16,0.6) 100%);
}
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 40% 45%, rgba(200,180,140,0.07), transparent 60%),
    radial-gradient(ellipse at 65% 55%, rgba(180,160,120,0.04), transparent 55%);
  animation: ambientPulse 8s ease-in-out infinite alternate;
}
@keyframes ambientPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero__eyebrow {
  color: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(20px);
  font-size: clamp(0.64rem, 1.28vw, 0.9rem);
  letter-spacing: 0.35em;
  max-width: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 4px 24px rgba(0,0,0,0.4);
}
.hero__headline {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.65), 0 4px 28px rgba(0,0,0,0.5);
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-light-body);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 4px 20px rgba(0,0,0,0.4);
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.btn--primary {
  background: var(--gold);
  color: var(--obsidian);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,180,140,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--text-light-body);
  border: 1.5px solid rgba(240,237,230,0.2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

/* Hero entrance — triggered by .hero--ready (added via JS after DOM ready) */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero--ready .hero__eyebrow  { animation: hero-rise 0.8s var(--ease) both 0.2s; }
.hero--ready .hero__headline { animation: hero-rise 0.8s var(--ease) both 0.5s; }
.hero--ready .hero__sub      { animation: hero-rise 0.8s var(--ease) both 0.8s; }
.hero--ready .hero__buttons  { animation: hero-rise 0.8s var(--ease) both 1.1s; }
.hero--ready .hero__scroll   { animation: hero-fade 1s var(--ease) both 1.6s; }
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =========================
   10. SERVICES
   ========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: linear-gradient(145deg, var(--obsidian-light), rgba(26,27,32,0.8));
  border: 1px solid rgba(200,180,140,0.08);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s;
  background: linear-gradient(135deg, rgba(200,180,140,0.3), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3), 0 0 40px rgba(200,180,140,0.06);
  border-color: rgba(200,180,140,0.25);
}
.service-card:hover::after { opacity: 1; }
.service-card__num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200,180,140,0.05);
  position: absolute;
  top: -8px;
  right: 12px;
  line-height: 1;
  z-index: 0;
  transition: color 0.4s;
}
.service-card:hover .service-card__num { color: rgba(200,180,140,0.1); }
.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.service-card__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}
.service-card:hover .service-card__title { color: var(--gold); }
.service-card__text {
  font-size: 0.88rem;
  color: var(--text-light-body);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* =========================
   11. PHILOSOPHY
   ========================= */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
}
.philosophy__quote-author {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  color: var(--text-dark-muted);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}
.philosophy__content {}
.philosophy__text {
  font-size: 1.05rem;
  color: var(--text-dark-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* =========================
   12. SOCIAL PROOF
   ========================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.proof-card {
  background: linear-gradient(145deg, var(--obsidian-light), rgba(26,27,32,0.8));
  border: 1px solid rgba(200,180,140,0.08);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.proof-card:hover {
  border-color: rgba(200,180,140,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 0 30px rgba(200,180,140,0.04);
}
.proof-card__quote-mark {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.proof-card__author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}
.proof-card__role {
  font-size: 0.72rem;
  color: var(--text-light-muted);
  margin-top: 0.15rem;
}

/* =========================
   13. CTA
   ========================= */
.cta-section {
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(200,180,140,0.06) 0%, transparent 50%),
    var(--obsidian);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(200,180,140,0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(200,180,140,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.cta-section::after { display: none; }
.cta-section .section__headline { max-width: 700px; margin: 0 auto 1.25rem; }
.cta-section .section__sub { max-width: 550px; margin: 0 auto 2.5rem; }

/* =========================
   14. FAQ
   ========================= */
#faq {
  background: var(--obsidian);
  color: var(--text-light);
}
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,180,140,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 14px 14px;
  pointer-events: none;
}
#faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--obsidian) 100%);
  pointer-events: none;
  z-index: 1;
}
#faq .section__headline { color: var(--text-light); }
.faq-list { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(200,180,140,0.1);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 1rem;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item:first-child { border-top: 1px solid rgba(200,180,140,0.1); }
.faq-item:hover {
  border-color: rgba(200,180,140,0.25);
  box-shadow: 0 4px 24px rgba(200,180,140,0.06);
}
.faq-item.open {
  border-color: rgba(200,180,140,0.3);
  box-shadow: 0 8px 32px rgba(200,180,140,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer__inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light-body);
  line-height: 1.7;
}

/* =========================
   15. CONTACT
   ========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact__info {}
.contact__info-item { margin-bottom: 2rem; }
.contact__info-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact__info-value {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact__form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { margin-bottom: 1rem; }
.form-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light-muted);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.form-input, .form-textarea {
  padding: 0.75rem 1rem;
  min-height: 44px;
  border: 1.5px solid rgba(200,180,140,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-light-muted);
  opacity: 0.6;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  min-height: 44px;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,180,140,0.25);
}
.form-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* Status text under submit button */
.form-status {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light-body);
  font-style: italic;
}
.form-status--error {
  color: #E8B89A;
  font-style: normal;
}

/* Inline success message */
.form-success {
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(200,180,140,0.04), transparent 70%);
}
.form-success__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.form-success__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.form-success__text {
  font-size: 0.95rem;
  color: var(--text-light-body);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================
   16. FOOTER
   ========================= */
.footer {
  background: #06070A;
  padding: 3.5rem 2rem 1.5rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.footer__link {
  font-size: 0.85rem;
  color: var(--text-light-body);
  text-decoration: underline;
  text-decoration-color: rgba(200,180,140,0.28);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.3s, text-decoration-color 0.3s, text-decoration-thickness 0.3s;
}
.footer__link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(240,237,230,0.55);
  margin-top: 0.5rem;
}

/* =========================
   17. REVEAL ANIMATIONS
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =========================
   18a. SECTION BACKGROUNDS & WARMTH
   ========================= */
/* Content above pseudo-element backgrounds */
.section__inner { position: relative; z-index: 2; }

/* --- Services: top fade from obsidian for seamless hero transition --- */
#services::before {
  background:
    linear-gradient(180deg, var(--obsidian) 0%, transparent 30%),
    radial-gradient(ellipse at 20% 30%, rgba(200,180,140,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200,180,140,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(200,180,140,0.02) 0%, transparent 70%);
}

/* --- Services: bottom fade to pure obsidian for seamless transition --- */
#services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, var(--obsidian) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Philosophy: dark atmospheric with marble columns --- */
#philosophy {
  background: var(--obsidian);
  color: var(--text-light);
}
#philosophy::before {
  background: url('bg-philosophy.webp') center/cover no-repeat;
  background-size: cover;
  opacity: 0.38;
  -webkit-mask-image:
    linear-gradient(90deg, black 5%, transparent 40%),
    linear-gradient(180deg, transparent 0%, black 18%, black 50%, transparent 75%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, black 5%, transparent 40%),
    linear-gradient(180deg, transparent 0%, black 18%, black 50%, transparent 75%);
  mask-composite: intersect;
}
#philosophy::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, var(--obsidian) 100%),
    radial-gradient(ellipse at 30% 55%, rgba(200,180,140,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
#philosophy .philosophy__quote { color: var(--ivory); }
#philosophy .philosophy__quote-author { color: var(--text-light-muted); }
#philosophy .section__headline { color: var(--text-light); }
#philosophy .philosophy__text { color: var(--text-light-body); }

/* --- Social Proof: top + bottom fade for seamless transitions --- */
#proof::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--obsidian) 0%, transparent 30%, transparent 70%, var(--obsidian) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- CTA: intensified warm center + top/bottom fade --- */
.cta-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,180,140,0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(200,180,140,0.05) 0%, transparent 40%),
    var(--obsidian);
}
.cta-section::before {
  background:
    linear-gradient(180deg, var(--obsidian) 0%, transparent 30%, transparent 70%, var(--obsidian) 100%),
    radial-gradient(circle at 30% 60%, rgba(200,180,140,0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(200,180,140,0.03) 0%, transparent 40%);
}

/* --- Contact: ocean dawn backdrop --- */
#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-contact.webp') center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%);
}
#contact::before {
  background:
    linear-gradient(180deg, var(--obsidian) 0%, transparent 30%),
    radial-gradient(ellipse at 30% 40%, rgba(200,180,140,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 70%, rgba(200,180,140,0.05) 0%, transparent 45%);
}


/* =========================
   18. RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 10rem 1.5rem 5rem; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  /* A11y: prevent eyebrow / labels from becoming too small + sparse on narrow screens */
  .eyebrow, .section__label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }
  .hero__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
  }
}
/* Skip-to-content link (visually hidden until focused) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
}

/* Global focus-visible ring for keyboard navigation — consistent offset everywhere */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Form inputs use only the keyboard ring when :focus-visible —
   drop the always-on box-shadow so it's not confused with the focus indicator. */
.form-input:focus-visible,
.form-textarea:focus-visible {
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__eyebrow, .hero__headline, .hero__sub, .hero__buttons, .hero__scroll { opacity: 1; transform: none; animation: none; }
  .loader { display: none; }
  .hero__scroll-line { animation: none; }
  .noise { display: none; }
  .cursor, .cursor-dot { display: none !important; }
  body, a, button, .nav__link, .nav__cta, .nav__logo { cursor: auto !important; }
  .hero__video { display: none; }
}
/* =========================
   404 PAGE
   ========================= */
.page-404 {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.page-404::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 45%, rgba(200,180,140,0.05), transparent 55%),
    radial-gradient(ellipse at 65% 60%, rgba(200,180,140,0.03), transparent 50%);
  pointer-events: none;
}
.page-404::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(200,180,140,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 14px 14px;
  pointer-events: none;
}
.error { position: relative; z-index: 1; }
.error__code {
  font-family: var(--serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: rgba(200,180,140,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
}
.error__mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1.5rem auto 2rem;
  position: relative;
}
.error__mark::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(200,180,140,0.08);
}
.error__initials {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.error__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.error__text {
  font-size: 1rem;
  color: var(--text-light-body);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.error__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.error__btn:hover {
  background: var(--gold-light);
  color: var(--obsidian);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,180,140,0.3);
}
