/* ============================================
   DGM Events — Premium Website Stylesheet
   OKLCH Color System | Luxury Wedding Production
   ============================================ */

@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,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold:           oklch(78% 0.130 75);
  --gold-light:     oklch(88% 0.100 80);
  --gold-dark:      oklch(60% 0.100 70);
  --gold-subtle:    oklch(93% 0.045 82);
  --gold-glow:      oklch(78% 0.130 75 / 0.15);

  --dark:           oklch(9%  0.015 260);
  --dark-mid:       oklch(13% 0.012 260);
  --dark-card:      oklch(17% 0.012 260);
  --dark-border:    oklch(24% 0.010 260);
  --dark-hover:     oklch(20% 0.012 260);

  --light:          oklch(97% 0.008 85);
  --light-warm:     oklch(94% 0.016 82);
  --light-card:     oklch(91% 0.012 85);
  --light-border:   oklch(88% 0.010 85);

  --text-on-dark:   oklch(96% 0.005 90);
  --muted-on-dark:  oklch(68% 0.012 90);
  --text-on-light:  oklch(12% 0.010 260);
  --muted-on-light: oklch(44% 0.010 260);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  --max-width:  1280px;
  --pad-x:      clamp(1.25rem, 5vw, 2.5rem);
  --section-y:  clamp(5rem, 9vw, 9rem);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-on-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section-pad { padding-block: var(--section-y); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.5rem;
}
.gold-line.centered { margin-inline: auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.78;
  max-width: 65ch;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.72;
  max-width: 55ch;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid oklch(96% 0.005 90 / 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-on-light);
  border: 1.5px solid var(--light-border);
}
.btn-outline-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.3rem;
  transition: background 0.4s var(--ease-smooth), padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: oklch(9% 0.015 260 / 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: 0.9rem;
  border-color: var(--dark-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-on-dark); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text-on-dark);
  font-weight: 300;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-gold { font-family: var(--font-body); font-size: 0.9rem; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: 6rem;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(9% 0.015 260 / 0.95) 0%,
    oklch(9% 0.015 260 / 0.65) 45%,
    oklch(9% 0.015 260 / 0.30) 100%
  );
  z-index: 1;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 65% 25%, oklch(18% 0.04 290) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 75%, oklch(14% 0.025 55) 0%, transparent 50%),
    var(--dark);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--text-on-dark);
  max-width: 14ch;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  color: var(--muted-on-dark);
  max-width: 52ch;
  margin-bottom: 3rem;
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-on-dark);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--light-warm);
  border-bottom: 1px solid var(--light-border);
  padding-block: 2.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  align-items: center;
}
.trust-item-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}
.trust-divider { width: 1px; height: 48px; background: var(--light-border); margin: 0 auto; }

@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-divider { display: none; }
}

/* === PROOF SECTION === */
.proof-section {
  background: var(--dark-mid);
  padding-block: var(--section-y);
}
.proof-header { text-align: center; margin-bottom: 4rem; }
.proof-header h2 { color: var(--text-on-dark); }
.proof-header p { color: var(--muted-on-dark); margin-inline: auto; }

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card);
  aspect-ratio: 16/9;
  max-width: 880px;
  margin: 0 auto 3.5rem;
  border: 1px solid var(--dark-border);
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--dark-card), var(--dark-mid));
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: oklch(78% 0.13 75 / 0.1);
}
.play-btn:hover { background: var(--gold); transform: scale(1.1); }
.play-btn svg { transform: translateX(2px); }
.play-btn svg path { fill: var(--gold); transition: fill var(--transition); }
.play-btn:hover svg path { fill: var(--dark); }
.video-caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted-on-dark);
  font-style: italic;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}
.proof-gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}
.proof-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-smooth); }
.proof-gallery-item:hover img { transform: scale(1.05); }
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-card), var(--dark-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-on-dark);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 700px) { .proof-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .proof-gallery { grid-template-columns: 1fr; } }

/* === PROBLEM SECTION === */
.problem-section { background: var(--light); padding-block: var(--section-y); }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.problem-left { position: sticky; top: 8rem; }
.problem-right { display: flex; flex-direction: column; gap: 2.5rem; }
.problem-scenario {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-left: 3px solid var(--gold-dark);
}
.problem-scenario h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-on-light);
  margin-bottom: 0.6rem;
}
.problem-scenario p { font-size: 0.95rem; color: var(--muted-on-light); max-width: none; margin: 0; }

.energy-gap-callout {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--dark);
  border: 1px solid var(--dark-border);
}
.energy-gap-callout h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.energy-gap-callout p { color: var(--muted-on-dark); max-width: none; margin: 0; font-size: 0.95rem; }

@media (max-width: 800px) {
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .problem-left { position: static; }
}

/* === MECHANISM SECTION === */
.mechanism-section { background: var(--dark); padding-block: var(--section-y); }
.mechanism-header { text-align: center; margin-bottom: 5rem; }
.mechanism-header h2 { color: var(--text-on-dark); }
.mechanism-header .lead { color: var(--muted-on-dark); margin-inline: auto; }

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mechanism-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s, transform 0.3s;
}
.mechanism-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.mechanism-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: oklch(78% 0.130 75 / 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.mechanism-card h3 { font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.75rem; font-weight: 500; }
.mechanism-card p { color: var(--muted-on-dark); font-size: 0.93rem; line-height: 1.72; max-width: none; margin: 0; }

@media (max-width: 900px) { .mechanism-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mechanism-grid { grid-template-columns: 1fr; } }

/* === COLLECTIONS SECTION === */
.collections-section { background: var(--light-warm); padding-block: var(--section-y); }
.collections-header { text-align: center; margin-bottom: 1.5rem; }
.collections-sub { text-align: center; color: var(--muted-on-light); margin-bottom: 4rem; margin-inline: auto; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.collection-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--light);
  border: 1px solid var(--light-border);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.collection-card:hover {
  box-shadow: 0 20px 60px oklch(12% 0.01 260 / 0.1);
  transform: translateY(-6px);
}
.collection-card.featured {
  background: var(--dark);
  border-color: var(--gold-dark);
  transform: scale(1.02);
}
.collection-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.collection-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.collection-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.collection-card h3 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.collection-card.featured h3 { color: var(--text-on-dark); }
.collection-outcome {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted-on-light);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.collection-card.featured .collection-outcome { color: var(--muted-on-dark); }
.collection-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.collection-features li {
  font-size: 0.88rem;
  color: var(--muted-on-light);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.collection-card.featured .collection-features li { color: var(--muted-on-dark); }
.collection-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: 1px;
}
.collection-starting {
  font-size: 0.78rem;
  color: var(--muted-on-light);
  text-align: center;
  margin-top: 1.25rem;
}
.collection-card.featured .collection-starting { color: var(--muted-on-dark); }

@media (max-width: 900px) {
  .collections-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .collection-card.featured { transform: none; }
  .collection-card.featured:hover { transform: translateY(-6px); }
}

/* === AI TEASER === */
.ai-teaser {
  background: var(--dark-mid);
  padding-block: var(--section-y);
  border-top: 1px solid var(--dark-border);
}
.ai-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ai-teaser-content h2 { color: var(--text-on-dark); }
.ai-teaser-content .lead { color: var(--muted-on-dark); margin-top: 1.25rem; }
.ai-teaser-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.ai-teaser-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-on-dark);
  font-size: 0.95rem;
}
.ai-dot { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--gold); }

.ai-teaser-visual {
  border-radius: var(--radius-xl);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ai-widget {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px solid var(--dark-border);
}
.ai-widget-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ai-widget-text { font-size: 0.88rem; color: var(--muted-on-dark); line-height: 1.6; }

@media (max-width: 800px) { .ai-teaser-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--light-warm); padding-block: var(--section-y); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--light);
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px oklch(12% 0.01 260 / 0.08); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-on-light);
  font-style: italic;
  flex: 1;
  max-width: none;
}
.testimonial-author { border-top: 1px solid var(--light-border); padding-top: 1.25rem; }
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--text-on-light); margin-bottom: 0.2rem; }
.testimonial-wedding { font-size: 0.78rem; color: var(--muted-on-light); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* === FAQ === */
.faq-section { background: var(--light); padding-block: var(--section-y); }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--light-border); }
.faq-item:first-child { border-top: 1px solid var(--light-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-on-light);
  font-weight: 400;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--muted-on-light);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-smooth); }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--muted-on-light);
  font-size: 0.98rem;
  line-height: 1.82;
  max-width: none;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--dark);
  padding-block: var(--section-y);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, oklch(78% 0.13 75 / 0.07) 0%, transparent 65%);
}
.cta-section h2 { color: var(--text-on-dark); position: relative; }
.cta-section .lead { color: var(--muted-on-dark); margin-inline: auto; margin-block: 1.25rem 2.5rem; position: relative; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }
.cta-note { margin-top: 1.75rem; font-size: 0.78rem; color: var(--muted-on-dark); letter-spacing: 0.06em; position: relative; }

/* === FOOTER === */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--dark-border);
  padding-block: 5rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--gold); }
.footer-brand p {
  color: var(--muted-on-dark);
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.78;
  max-width: 30ch;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-on-dark);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: 0.88rem; color: var(--muted-on-dark); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: 0.78rem; color: var(--muted-on-dark); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--muted-on-dark); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  background: var(--dark);
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, oklch(78% 0.13 75 / 0.05), transparent 65%);
}
.page-header h1 { color: var(--text-on-dark); position: relative; margin-bottom: 1rem; }
.page-header .lead { color: var(--muted-on-dark); margin-inline: auto; position: relative; }

/* === FORM STYLES === */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.form-label { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-on-light); }
.form-input, .form-select, .form-textarea {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--light-border);
  background: var(--light);
  color: var(--text-on-light);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(78% 0.13 75 / 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--muted-on-light); margin-top: 0.25rem; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

/* === AI SOLUTIONS PAGE === */
.ai-page-hero {
  background: var(--dark);
  padding-top: 10rem;
  padding-bottom: var(--section-y);
}
.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ai-service-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s, transform 0.3s;
}
.ai-service-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.ai-service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: oklch(78% 0.13 75 / 0.1);
  border: 1px solid oklch(78% 0.13 75 / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.ai-service-card h3 { color: var(--text-on-dark); font-size: 1.35rem; margin-bottom: 0.75rem; }
.ai-service-card p { color: var(--muted-on-dark); font-size: 0.93rem; max-width: none; margin: 0; }
.ai-service-features {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ai-service-features li {
  font-size: 0.83rem;
  color: var(--muted-on-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ai-service-features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 700px) { .ai-services-grid { grid-template-columns: 1fr; } }

.ai-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ai-package-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: border-color 0.3s;
}
.ai-package-card.featured {
  border-color: var(--gold-dark);
  background: var(--dark);
  position: relative;
}
.ai-package-card h3 { color: var(--text-on-dark); font-size: 1.5rem; margin-bottom: 0.5rem; }
.ai-package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-block: 1rem;
  line-height: 1;
}
.ai-package-price span { font-size: 1rem; color: var(--muted-on-dark); font-family: var(--font-body); font-weight: 400; }
.ai-package-desc { font-size: 0.88rem; color: var(--muted-on-dark); margin-bottom: 2rem; max-width: none; }
.ai-package-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.ai-package-features li {
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.ai-package-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='black' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: 1px;
}
@media (max-width: 900px) { .ai-packages-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* === FINANCING BANNER === */
.financing-banner {
  background: linear-gradient(135deg, var(--dark-mid), var(--dark-card));
  border: 1px solid var(--dark-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.financing-banner-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 0.1rem; }
.financing-banner h4 {
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.financing-banner p { font-size: 0.88rem; color: var(--muted-on-dark); margin: 0; max-width: none; }

/* === BOOKING PAGE === */
.booking-section { background: var(--light); padding-block: var(--section-y); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.booking-sidebar { position: sticky; top: 8rem; }
.booking-sidebar h2 { margin-bottom: 1rem; }
.booking-sidebar > p { color: var(--muted-on-light); max-width: none; margin-bottom: 2rem; }
.booking-trust { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-trust-item { display: flex; align-items: flex-start; gap: 0.875rem; }
.booking-trust-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.booking-trust-item strong { display: block; font-size: 0.875rem; color: var(--text-on-light); margin-bottom: 0.2rem; }
.booking-trust-item p { font-size: 0.85rem; color: var(--muted-on-light); margin: 0; max-width: none; }
.booking-form-card {
  background: var(--light);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 4px 40px oklch(12% 0.01 260 / 0.06);
}
.booking-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-on-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}
.booking-form-section { margin-bottom: 2.5rem; }
.checkboxes { display: flex; flex-direction: column; gap: 0.75rem; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--muted-on-light);
}
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--gold-dark); cursor: pointer; }

@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking-sidebar { position: static; }
  .booking-form-card { padding: 2rem; }
}

/* === LEGAL PAGES === */
.legal-section { background: var(--light); padding-block: var(--section-y); }
.legal-content { max-width: 800px; margin-inline: auto; }
.legal-meta {
  margin-bottom: 3rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--light-warm);
  border: 1px solid var(--light-border);
  font-size: 0.85rem;
  color: var(--muted-on-light);
}
.legal-content h2 {
  font-size: 1.75rem;
  color: var(--text-on-light);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p { color: var(--muted-on-light); margin-bottom: 1rem; max-width: none; font-size: 0.95rem; }
.legal-content ul { color: var(--muted-on-light); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.legal-content strong { color: var(--text-on-light); }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }

/* === MISC === */
.venue-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.venue-chip {
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--light-border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-on-light);
  letter-spacing: 0.04em;
  background: var(--light);
}
.venues-section { background: var(--light-warm); padding-block: 4rem; text-align: center; }
.venues-section h3 { color: var(--text-on-light); margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 500; }
.venues-section p { color: var(--muted-on-light); margin-inline: auto; font-size: 0.9rem; }

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
