/* ============================================
   MAISON DE FÊTE — Elevated Style Sheet
   Dark editorial luxury · Intentional details
   ============================================ */

/* --- Variables --- */
:root {
  --black: #090909;
  --charcoal: #121212;
  --charcoal-light: #1a1a1a;
  --charcoal-mid: #222222;
  --gold: #c9a96e;
  --gold-light: #d4b87d;
  --gold-muted: #a8935f;
  --gold-dim: rgba(201, 169, 110, 0.35);
  --ivory: #f5f0e8;
  --ivory-dim: #d8d2c6;
  --olive: #6b7c4e;
  --olive-deep: #3d4a2a;
  --champagne: #d4c5a0;
  --text-primary: #f5f0e8;
  --text-secondary: #9e998f;
  --text-muted: #6b6760;
  --border: rgba(201, 169, 110, 0.12);
  --border-light: rgba(245, 240, 232, 0.06);
  --border-gold: rgba(201, 169, 110, 0.2);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Manrope', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1200px;
  --gutter: 24px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--gold);
  color: var(--black);
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}


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


/* ============================================
   ORNAMENTAL ELEMENTS
   ============================================ */

/* Diamond divider used between sections */
.section-ornament,
.hero-ornament,
.footer-ornament,
.success-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.ornament-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
}

.ornament-diamond {
  font-size: 8px;
  color: var(--gold-muted);
  line-height: 1;
}

.hero-ornament {
  justify-content: flex-start;
  margin-bottom: 28px;
}

.hero-ornament .ornament-line {
  width: 36px;
}

/* Decorative corner accents */
.hero-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.hero-corner--tl {
  top: 100px;
  left: 40px;
  border-top: 1px solid var(--gold-dim);
  border-left: 1px solid var(--gold-dim);
}

.hero-corner--br {
  bottom: 80px;
  right: 40px;
  border-bottom: 1px solid var(--gold-dim);
  border-right: 1px solid var(--gold-dim);
}

@media (max-width: 768px) {
  .hero-corner { display: none; }
}

/* Image frame corners */
.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.frame-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.frame-corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* Pull-quote / promise styling */
.about-promise {
  position: relative;
  padding-left: 28px;
  margin-top: 36px;
}

.promise-mark {
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
}

.about-signature,
.offer-promise {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}


/* --- Utilities --- */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px; width: 1px;
  margin: -1px; padding: 0; border: 0;
}


/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 40px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(201, 169, 110, 0.06);
  transform: translateY(-2px);
}


/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }


/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(9, 9, 9, 0.95);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo { display: flex; align-items: center; }

.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(1.05);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 900px) { .main-nav { display: flex; } }

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 8px 22px;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

@media (min-width: 900px) { .mobile-toggle { display: none; } }

.toggle-bar {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.mobile-toggle.active .toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-toggle.active .toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--ivory);
  padding: 10px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s ease;
}

.mobile-nav-overlay.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav-overlay.open .mobile-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav-overlay.open .mobile-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav-overlay.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.open .mobile-link:nth-child(5) { transition-delay: 0.24s; }
.mobile-nav-overlay.open .mobile-link:nth-child(6) { transition-delay: 0.28s; }

.mobile-link:hover { color: var(--gold); }

.mobile-link-cta {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 14px 40px;
}

.mobile-nav-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.4s;
}

.mobile-nav-overlay.open .mobile-nav-tagline {
  opacity: 1;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.035) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle vertical gold accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content { max-width: 680px; }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 74px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 44px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-logo-mark { display: none; }

@media (min-width: 1024px) {
  .hero-logo-mark {
    display: block;
    opacity: 0.06;
    flex-shrink: 0;
  }
  .hero-logo-img { width: 300px; height: auto; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.15); }
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 160px 0;
  position: relative;
  background: #0e0e0c;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Gold left bar accent */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 15%, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent 85%);
  pointer-events: none;
}

/* Warm ambient glow */
.about::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at right, rgba(201, 169, 110, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 200px 1fr;
    gap: 80px;
  }
}

.about-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 32px;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 600px;
}


/* ============================================
   WHY US — Differentiators
   ============================================ */
.why-us {
  padding: 160px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Double gold line at top */
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.25), transparent);
  pointer-events: none;
}

.why-us-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 64px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.why-us-item {
  background: var(--black);
  padding: 36px 32px;
  position: relative;
  transition: background 0.4s var(--ease-out);
}

.why-us-item:hover {
  background: #0e0e0c;
}

.why-us-number {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 16px;
}

.why-us-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}

.why-us-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}


/* ============================================
   AESTHETICS
   ============================================ */
.aesthetics {
  padding: 160px 0;
  position: relative;
  background: #0f0f0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Diagonal ambient glow */
.aesthetics::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(107, 124, 78, 0.03) 0%, transparent 65%);
  pointer-events: none;
}

.aesthetics-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 20px;
}

.aesthetics-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 72px;
}

/* Grid */
.aesthetics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .aesthetics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .aesthetics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.aesthetic-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.aesthetic-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 169, 110, 0.08);
}

.aesthetic-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}

.aesthetic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: brightness(0.82) saturate(0.9);
}

.aesthetic-card:hover .aesthetic-img {
  transform: scale(1.04);
  filter: brightness(0.92) saturate(1);
}

/* Gold gradient overlay on hover */
.aesthetic-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 9, 0.6) 0%, transparent 50%);
  opacity: 0.5;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.aesthetic-card:hover .aesthetic-image-overlay {
  opacity: 0.3;
}

.aesthetic-number {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.aesthetic-info {
  padding: 24px 22px 28px;
  border-top: 1px solid var(--border);
}

.aesthetic-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
}

.aesthetic-mood {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.aesthetic-best {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}


/* ============================================
   FEATURED OFFER — GARDEN PARTY
   ============================================ */
.featured-offer {
  padding: 160px 0;
  background: #111310;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(107, 124, 78, 0.12);
  border-bottom: 1px solid rgba(107, 124, 78, 0.12);
}

/* Olive ambient glow from left */
.featured-offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 500px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(107, 124, 78, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Gold line accent at bottom right */
.featured-offer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  pointer-events: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.offer-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-light);
}

.offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88);
  transition: filter 0.6s var(--ease-out);
}

.offer-image-frame:hover .offer-image {
  filter: brightness(0.95);
}

.offer-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}

.offer-detail-line {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.offer-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 480px;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.process {
  padding: 160px 0;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

/* Right-side gold accent bar */
.process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 20%, var(--gold-dim) 45%, var(--gold-dim) 55%, transparent 80%);
  pointer-events: none;
}

/* Subtle bottom-left glow */
.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.025) 0%, transparent 65%);
  pointer-events: none;
}

.process-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 72px;
}

.process-steps {
  max-width: 720px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
}

.process-step:first-child {
  border-top: 1px solid var(--border);
}

/* Gold dot accent on each step */
.process-step::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 52px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--gold-muted);
  line-height: 1.2;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}


/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry {
  padding: 160px 0;
  background: #0d0c0a;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* Centered warm glow behind the form */
.inquiry::before {
  content: '';
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.025) 0%, transparent 60%);
  pointer-events: none;
}

.inquiry-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.inquiry-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 20px;
}

.inquiry-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Form Sections */
.form-section { margin-bottom: 48px; }

.form-section-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.optional-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
}

/* Form Layout */
.form-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row-2 { grid-template-columns: 1fr; }
.form-row-3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; }
.form-group-full { margin-bottom: 20px; }

.form-group label,
.checkbox-group-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 10px;
}

.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ivory);
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-muted);
  background: rgba(201, 169, 110, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.06);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239e998f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--ivory);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 640px) { .checkbox-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .checkbox-grid { grid-template-columns: repeat(4, 1fr); } }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--charcoal-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.checkbox-item:hover {
  border-color: var(--border-gold);
}

.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Submit */
.form-submit {
  margin-top: 48px;
  text-align: center;
}

.btn-submit {
  min-width: 260px;
  font-size: 12px;
  padding: 18px 48px;
}

.form-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Success */
.form-success {
  display: none;
  text-align: center;
  padding: 80px 20px;
}

.form-success.show { display: block; }

.success-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}

.success-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 24px;
}

.success-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 160px 0;
  position: relative;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

/* Centered gold accent at top */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  pointer-events: none;
}

.faq-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 56px;
}

.faq-list { max-width: 720px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ivory);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-muted);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s var(--ease-out);
}

details[open] .faq-question::after { content: '−'; }
.faq-question:hover { color: var(--gold); }

.faq-answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  padding: 0 0 28px;
  max-width: 600px;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 80px 0 48px;
  text-align: center;
  background: #060606;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-ornament {
  margin-bottom: 40px;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin: 0 auto 12px;
  opacity: 0.6;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-link:hover { color: var(--gold); }

.footer-divider {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  :root { --gutter: 20px; }

  .hero { padding-top: 100px; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about,
  .why-us,
  .aesthetics,
  .featured-offer,
  .process,
  .inquiry,
  .faq {
    padding: 100px 0;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-step::before { display: none; }

  .offer-image-frame {
    aspect-ratio: 3 / 4;
  }

  .about::before { display: none; }
}
