/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-void:       #0D0B09;
  --color-deep:       #161210;
  --color-graphite:   #1F1C19;
  --color-charcoal:   #2C2825;
  --color-brass:      #B8922A;
  --color-gold-light: #D4AA55;
  --color-cream:      #F5EDD8;
  --color-ivory:      #DDD0B8;
  --color-warm-gray:  #8A7D6C;
  --color-muted:      #4A4035;
  --color-error:      #B8453A;

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

  --type-hero:    clamp(56px, 8vw, 108px);
  --type-display: clamp(38px, 5vw, 66px);
  --type-title:   clamp(22px, 3vw, 34px);
  --type-sub:     clamp(16px, 2vw, 21px);
  --type-body:    16px;
  --type-small:   13px;

  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--color-void);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.75;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── EYEBROW ──────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 12px;
}

/* ── SECTION HEADERS ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--color-warm-gray);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ── BRASS RULE ───────────────────────────────── */
.brass-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-brass);
  margin: 20px auto;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-brass);
  color: var(--color-brass);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover {
  background: rgba(184, 146, 42, 0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ── REVEAL ANIMATIONS ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  background: rgba(13, 11, 9, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--color-charcoal);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-cream);
  letter-spacing: 0.05em;
}
.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-brass);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ivory);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-brass); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-ivory);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--color-brass); }
.nav-tg {
  display: flex;
  align-items: center;
  color: var(--color-brass);
  transition: color 0.2s;
}
.nav-tg:hover { color: var(--color-gold-light); }
.nav-tg svg { width: 20px; height: 20px; fill: currentColor; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-brass);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 11, 9, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-cream);
  padding: 10px 0;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--color-brass); }
.nav-overlay-close {
  position: absolute;
  top: 24px; right: var(--pad-x);
  font-size: 28px;
  color: var(--color-warm-gray);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

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

/* ════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-jose.jpg');
  background-size: cover;
  background-position: 38% center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 25%, rgba(13,11,9,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 640px;
  opacity: 0;
  animation: heroFadeIn 1s ease-out 0.3s forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 20px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: var(--type-hero);
  font-weight: 300;
  line-height: 1.0;
  color: var(--color-cream);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}
.hero-sub {
  font-size: var(--type-sub);
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-secondary {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-warm-gray);
}
.hero-secondary a { color: var(--color-warm-gray); transition: color 0.2s; }
.hero-secondary a:hover { color: var(--color-brass); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--color-brass);
  animation: scrollPulse 2s ease-in-out 2.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.hero-scroll-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-brass);
}

@media (max-width: 600px) {
  .hero-bg { background-position: 30% center; }
}

/* ════════════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════════ */
#statement {
  background: var(--color-deep);
  padding: 100px 0;
  text-align: center;
}
.statement-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.statement-quote {
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 300;
  font-style: italic;
  color: var(--color-cream);
  line-height: 1.2;
  margin: 24px 0;
}
.statement-body {
  font-weight: 300;
  color: var(--color-ivory);
  max-width: 580px;
  margin: 0 auto 60px;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--color-brass);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-top: 6px;
}

/* ════════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════ */
#events {
  background: var(--color-void);
  padding: 100px 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}
.event-card {
  background: var(--color-deep);
  border: 1px solid var(--color-charcoal);
  padding: 32px 28px;
  transition: border-color 0.25s;
}
@media (hover: hover) {
  .event-card:hover { border-color: rgba(184,146,42,0.5); }
}
.event-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--color-brass);
}
.event-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.event-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.event-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.65;
}
.events-note {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-warm-gray);
}

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

/* ════════════════════════════════════════════════
   SHOW PROGRAM
═══════════════════════════════════════════════ */
#show {
  background: var(--color-graphite);
  padding: 100px 0;
}
.show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}
.show-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.show-item-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-brass);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  margin-top: 2px;
}
.show-item-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 8px;
}
.show-item-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .show-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════════════════════════════════════════════
   FORMATS
═══════════════════════════════════════════════ */
#formats {
  background: var(--color-deep);
  padding: 100px 0;
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.format-card {
  background: var(--color-void);
  border-left: 3px solid var(--color-brass);
  padding: 32px 28px;
}
.format-duration {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brass);
  margin-bottom: 12px;
}
.format-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 16px;
}
.format-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.7;
}
.formats-note {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-warm-gray);
  margin-top: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .formats-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
#process {
  background: var(--color-void);
  padding: 100px 0;
}
.process-steps {
  max-width: 720px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: var(--color-charcoal);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-brass);
  line-height: 1;
  flex-shrink: 0;
  width: 46px;
  text-align: center;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 8px;
  padding-top: 4px;
}
.step-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
}

/* Accordion */
.accordion {
  max-width: 720px;
  margin: 48px auto 0;
  border-top: 1px solid var(--color-charcoal);
}
.accordion-item {
  border-bottom: 1px solid var(--color-charcoal);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.accordion-trigger .chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-brass);
  transition: transform 0.3s;
}
.accordion-trigger .chevron svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; }
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content-inner {
  padding-bottom: 20px;
}
.accordion-content ul {
  list-style: none;
  padding: 0;
}
.accordion-content li {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.accordion-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-brass);
}

/* ════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  background: var(--color-graphite);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 16px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.1;
  margin-bottom: 10px;
}
.about-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--color-brass);
  margin-bottom: 24px;
}
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-credential {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin: 28px 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-charcoal);
}
.about-image-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05) saturate(0.95);
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    height: 380px;
    clip-path: none;
    order: -1;
  }
}

/* ════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
#gallery {
  background: var(--color-void);
  padding: 100px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05) saturate(0.88);
  transition: filter 0.35s ease;
}
@media (hover: hover) {
  .gallery-item:hover img { filter: brightness(1.0) contrast(1.05) saturate(0.95); }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 11, 9, 0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 32px;
  color: var(--color-warm-gray);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--color-cream); }

/* ════════════════════════════════════════════════
   VIDEO
═══════════════════════════════════════════════ */
#video {
  background: var(--color-deep);
  padding: 100px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  background: var(--color-graphite);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--color-brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--color-brass);
  margin-left: 3px;
}
@media (hover: hover) {
  .video-thumb:hover img { filter: brightness(0.85); }
  .video-thumb:hover .video-play-btn {
    background: rgba(184,146,42,0.15);
    transform: scale(1.08);
  }
}
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
#pricing {
  position: relative;
  background: var(--color-graphite);
  padding: 100px 0;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG_4735.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) blur(3px);
  z-index: 0;
}
#pricing .container { position: relative; z-index: 1; }

.pricing-includes-line {
  max-width: 800px;
  margin: 0 auto 36px;
  padding: 14px 24px;
  background: rgba(212, 175, 108, 0.06);
  border: 1px solid rgba(212, 175, 108, 0.25);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-warm-gray);
}
.pricing-includes-label {
  color: var(--color-brass);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--color-deep);
  border-left: 3px solid var(--color-brass);
  padding: 16px 20px;
}
.pricing-location {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 4px;
}
.pricing-time {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-brass);
  line-height: 1;
}

.pricing-notes {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pricing-notes p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-warm-gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.pricing-accordion {
  max-width: 720px;
  margin: 36px auto 0;
}
.pricing-accordion .accordion-subhead {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brass);
  margin: 14px 0 4px;
}

.pricing-cta {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}
.pricing-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--color-ivory);
  margin: 0 0 20px;
  line-height: 1.5;
}

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

/* ════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
#faq {
  background: var(--color-deep);
  padding: 100px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--color-charcoal);
}

/* ════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact {
  background: var(--color-void);
  padding: 100px 0;
  border-top: 1px solid var(--color-brass);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--type-title);
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.contact-info > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  margin-bottom: 8px;
}
.contact-age-note {
  font-size: 13px;
  color: var(--color-warm-gray);
  margin: 20px 0 32px;
  padding: 12px 16px;
  border-left: 2px solid var(--color-brass);
}
.contact-items { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--color-brass);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.contact-item a, .contact-item span {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--color-brass); }

.social-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.social-row a {
  color: var(--color-warm-gray);
  transition: color 0.2s;
  display: flex;
}
.social-row a:hover { color: var(--color-brass); }
.social-row svg { width: 22px; height: 22px; fill: currentColor; }
.social-row svg.icon-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Form */
.contact-form-wrap .section-header {
  text-align: left;
  margin-bottom: 32px;
}
.contact-form-wrap .section-header h2 {
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-charcoal);
  padding: 10px 0;
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-brass);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-error);
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-bottom-color: var(--color-error);
}
.form-group.has-error .field-error {
  display: block;
}
.form-consent.has-error label {
  color: var(--color-error);
}

/* Honeypot hidden */
.form-honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--color-brass);
  cursor: pointer;
}
.form-consent label {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-warm-gray);
  cursor: pointer;
  line-height: 1.6;
}
.form-consent a {
  color: var(--color-brass);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-consent a:hover { color: var(--color-gold-light); }

.form-submit {
  background: var(--color-brass);
  color: var(--color-void);
  border: none;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
}
.form-submit:hover { background: var(--color-gold-light); }
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { color: var(--color-gold-light); }
.form-status.error { color: var(--color-error); }

.form-fallback {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-warm-gray);
  text-align: center;
}
.form-fallback-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--color-void);
  border-top: 1px solid var(--color-charcoal);
  padding: 40px var(--pad-x);
  text-align: center;
}
.footer-main {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-warm-gray);
  margin-bottom: 10px;
}
.footer-main a { color: var(--color-warm-gray); transition: color 0.2s; }
.footer-main a:hover { color: var(--color-brass); }
.footer-legal {
  font-size: 11px;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.footer-legal a { color: var(--color-muted); }
.footer-legal a:hover { color: var(--color-warm-gray); }
.footer-credit {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-top: 18px;
}
.footer-credit a { color: var(--color-muted); text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.footer-credit a:hover { color: var(--color-warm-gray); border-color: var(--color-warm-gray); }

/* ════════════════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════════════ */
.privacy-content {
  padding: 140px var(--pad-x) 100px;
  max-width: 760px;
  margin: 0 auto;
}
.privacy-content h1 {
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 300;
  color: var(--color-cream);
  margin-bottom: 48px;
}
.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-cream);
  margin: 36px 0 12px;
}
.privacy-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-ivory);
  line-height: 1.8;
  margin-bottom: 16px;
}
.privacy-content a { color: var(--color-brass); }
