/* ==========================================================================
   Fun4Two — Elevated Date Nights & Hosted Experiences
   Modern Dark / editorial luxe. Playfair Display + Inter, warm gold accent.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0B0A09;   /* page background (never pure black) */
  --ink-2:      #100E0D;
  --surface:    #1A1715;
  --surface-2:  #221E1A;
  --line:       rgba(212, 175, 106, 0.16);
  --line-soft:  rgba(245, 241, 234, 0.09);

  --text:       #F5F1EA;
  --muted:      #B9B2A7;
  --gold:       #D4AF6A;   /* accent text on dark — 8.9:1 on --ink */
  --gold-deep:  #C9A227;   /* solid CTA fill, paired with --ink text */
  --gold-glow:  rgba(212, 175, 106, 0.28);

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacious scale (density 3/10) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --radius:    14px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       260ms;

  --shadow:    0 24px 60px rgba(0, 0, 0, 0.5);
  --maxw:      1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.15; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: #E8CD94; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-deep); color: var(--ink);
  padding: 12px 20px; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 820px); }
.section { padding-block: var(--space-6); position: relative; }
.section-alt { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-5); }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4.2vw, 3.1rem); }
.serif-accent { font-family: var(--font-serif); color: var(--gold); font-style: italic; font-weight: 400; }

.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: var(--space-2);
}
.lede { font-size: 1.14rem; color: var(--text); margin-top: var(--space-3); }
.body { color: var(--muted); margin-top: var(--space-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  border-radius: 999px; border: 1px solid transparent;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; text-align: center;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-primary {
  background: linear-gradient(135deg, #E0BE7C 0%, var(--gold-deep) 100%);
  color: #1A1614;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.22);
}
.btn-primary:hover { color: #1A1614; box-shadow: 0 16px 40px rgba(201, 162, 39, 0.32); }

.btn-outline {
  background: rgba(245, 241, 234, 0.03);
  border-color: rgba(212, 175, 106, 0.42);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 175, 106, 0.08); }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { min-height: 44px; padding: 0 22px; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: var(--space-3); min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { width: 26px; height: 26px; color: var(--gold); flex: none; }
.brand-text { font-family: var(--font-serif); font-size: 1.35rem; letter-spacing: 0.01em; }
.brand-accent { color: var(--gold); }

.nav { display: flex; gap: var(--space-3); margin-left: auto; }
.nav a {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  padding: 8px 2px; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--gold); transition: right var(--dur) var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { right: 0; }

.header-cta { margin-left: var(--space-2); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; padding: 12px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3) 20px var(--space-4);
  background: rgba(11, 10, 9, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:not(.btn) { color: var(--text); font-size: 1.05rem; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: brightness(1.5) saturate(1.08); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11, 10, 9, 0.78) 0%, rgba(11, 10, 9, 0.5) 45%, rgba(11, 10, 9, 0.12) 80%, rgba(11, 10, 9, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.6) 0%, rgba(11, 10, 9, 0.04) 32%, rgba(11, 10, 9, 0.12) 62%, rgba(11, 10, 9, 0.88) 100%);
}
.hero-fade {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 160px; z-index: -1;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0) 0%, var(--ink) 92%);
}
.hero-inner { padding-block: 140px var(--space-6); max-width: 900px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: var(--space-3);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.hero-sub { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: #E4DED4; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.hero-marks {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3);
  margin-top: var(--space-4); padding-top: var(--space-3);
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.hero-marks li { display: flex; align-items: center; gap: 10px; }
.hero-marks li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- Cards (shared) ---------- */
.card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 106, 0.4); box-shadow: var(--shadow); }

/* ---------- Section 2: Experience ---------- */
.experience-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-5);
  align-items: center;
}
.experience-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; }
.experience-figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0) 55%, rgba(11, 10, 9, 0.5) 100%);
}
/* Eases the neon cast so the rooftop shot sits with the gold palette. */
.experience-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(0.82) sepia(0.1); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
.pillar { padding: var(--space-4) var(--space-3) var(--space-4); }
.pillar-icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 25%, rgba(212, 175, 106, 0.18), rgba(212, 175, 106, 0.03));
  color: var(--gold); margin-bottom: var(--space-3);
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-kicker { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.pillar-title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; }
.pillar-copy { color: var(--muted); font-size: 0.98rem; }

/* ---------- Section 3: Events ---------- */
/* Two event types — keep the cards at a comfortable reading width rather than
   letting them stretch across the full container. */
.events {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
  max-width: 860px; margin-inline: auto;
}
.event { display: flex; flex-direction: column; overflow: hidden; }
.event-media { overflow: hidden; }
.event-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.event:hover .event-media img { transform: scale(1.05); }
.event-body { padding: var(--space-3) var(--space-3) var(--space-4); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.event-title { font-family: var(--font-serif); font-size: 1.4rem; }
.event-copy { color: var(--muted); font-size: 0.96rem; flex: 1; }
.event-body .btn { align-self: flex-start; margin-top: 6px; }
.events-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: var(--space-4); }

/* ---------- Section 4: Hosts ---------- */
.section-hosts { background: linear-gradient(180deg, var(--ink) 0%, #14100E 45%, var(--ink) 100%); }
.hosts-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: var(--space-5); align-items: center; }
.hosts-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; }
.hosts-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hosts-figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.1) 0%, rgba(11, 10, 9, 0.45) 100%);
}
.hosts-lists { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-top: var(--space-4); }
.host-list-title { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-2); }
.ticks { display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 7px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.hosts-actions { margin-top: var(--space-4); }
.hosts-hint { color: var(--muted); font-size: 0.85rem; margin-top: var(--space-2); }

/* ---------- Section 5: FAQ ---------- */
.faq { display: grid; gap: var(--space-2); }
.faq-item {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: rgba(212, 175, 106, 0.34); background: var(--surface-2); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-3); cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 500; color: var(--text);
  min-height: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 1.6px; }
.faq-icon::after  { left: 8px; top: 0; width: 1.6px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 var(--space-3) var(--space-3); color: var(--muted); max-width: 68ch; }
.faq-cta {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2); flex-wrap: wrap;
  margin-top: var(--space-4); color: var(--muted); font-size: 0.95rem;
}

/* ---------- Closing band ---------- */
.closing { position: relative; padding-block: var(--space-7); text-align: center; isolation: isolate; overflow: hidden; }
.closing-media { position: absolute; inset: 0; z-index: -1; }
.closing-media img { width: 100%; height: 100%; object-fit: cover; }
.closing-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11, 10, 9, 0.72) 40%, rgba(11, 10, 9, 0.86) 70%, var(--ink) 100%);
}
.closing-title { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
.closing-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-4); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--ink-2); padding-top: var(--space-5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-4); }
.footer-blurb { color: var(--muted); font-size: 0.94rem; margin-top: var(--space-2); max-width: 40ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.footer-col a { color: var(--muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bar {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3);
  align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  padding-block: var(--space-3) var(--space-4);
  color: var(--muted); font-size: 0.86rem;
}
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.footer-legal span { color: rgba(245, 241, 234, 0.25); }
.footer-credit { color: rgba(185, 178, 167, 0.75); }

/* ---------- Modal + form ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5, 4, 4, 0.78); backdrop-filter: blur(6px); animation: fade 220ms var(--ease); }
.modal-panel {
  position: relative; width: min(100%, 640px); max-height: 90svh; overflow-y: auto;
  background: linear-gradient(165deg, var(--surface) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-4); box-shadow: var(--shadow);
  animation: pop 300ms var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; padding: 11px;
  background: transparent; border: 1px solid var(--line-soft); border-radius: 50%;
  color: var(--muted); cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.modal-close:hover { color: var(--gold); border-color: var(--gold); }
.modal-title { font-family: var(--font-serif); font-size: 1.85rem; }
.modal-sub { color: var(--muted); font-size: 0.95rem; margin-top: 10px; }

.apply-form { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.field-optional { color: var(--muted); font-weight: 400; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea, .field input[type="file"] {
  width: 100%; min-height: 48px; padding: 12px 14px;
  background: rgba(11, 10, 9, 0.6); color: var(--text);
  border: 1px solid var(--line-soft); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: rgba(11, 10, 9, 0.85); outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(185, 178, 167, 0.6); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.field select option { background: var(--surface); color: var(--text); }
.field input[type="file"] { padding: 11px 14px; color: var(--muted); }
.field input[type="file"]::file-selector-button {
  margin-right: 12px; padding: 7px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: transparent; color: var(--gold); font: inherit; font-size: 0.85rem;
}

.field-check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.field-check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--gold-deep); flex: none; }
.field-check label { font-size: 0.88rem; color: var(--muted); font-weight: 400; line-height: 1.5; }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status { font-size: 0.9rem; min-height: 1.2em; text-align: center; }
.form-status.is-error { color: #F1948A; }
.form-status.is-success { color: var(--gold); }
.form-done { text-align: center; padding: var(--space-4) 0; display: grid; gap: 12px; justify-items: center; }
.form-done h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); }
.form-done p { color: var(--muted); max-width: 44ch; }

body.is-locked { overflow: hidden; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .experience-grid, .hosts-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .hosts-figure { order: 2; }
  .hosts-figure img { aspect-ratio: 16 / 10; }
  .pillars, .events { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  :root { --space-6: 72px; --space-7: 88px; }
  .wrap, .wrap-narrow { width: min(100% - 32px, var(--maxw)); }
  .hero { min-height: 92svh; }
  .hero-inner { padding-block: 120px var(--space-5); }
  .pillars, .events, .hosts-lists, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .footer-bar { justify-content: flex-start; }
  .modal { padding: 0; }
  .modal-panel { max-height: 100svh; height: 100%; border-radius: 0; border: 0; padding: var(--space-4) 20px; }
  .btn { width: 100%; }
  .hero-actions .btn, .closing-actions .btn, .faq-cta .btn, .event-body .btn { width: auto; }
}

@media (max-width: 420px) {
  .hero-actions .btn, .closing-actions .btn { width: 100%; }
}

/* ---------- Touch targets ----------
   Standalone links get a 44px hit area on touch devices without loosening
   the desktop layout. Inline links inside prose are exempt (WCAG 2.5.8). */
@media (pointer: coarse) {
  .nav a, .footer-col a, .footer-legal a, .mobile-nav a:not(.btn) {
    min-height: 44px; display: inline-flex; align-items: center;
  }
  .brand { min-height: 44px; }
  .footer-col { gap: 4px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .event:hover .event-media img, .btn:hover, .card:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .modal, .hero-media, .closing-media { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ==========================================================================
   Sub-pages (privacy, terms, contact, thanks, 404)
   ========================================================================== */
.page-hero {
  padding: 160px 0 var(--space-4);
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(90% 120% at 50% -20%, rgba(212, 175, 106, 0.09), transparent 65%);
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.1rem, 5vw, 3.2rem); }
.page-hero .updated { color: var(--muted); font-size: 0.88rem; margin-top: var(--space-2); }

.legal { padding-block: var(--space-5) var(--space-6); }
.legal h2 {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold);
  margin-top: var(--space-4); margin-bottom: var(--space-2);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: var(--space-3); margin-bottom: 8px; }
.legal p, .legal li { color: var(--muted); }
.legal p + p { margin-top: var(--space-2); }
.legal ul { display: grid; gap: 10px; margin-top: var(--space-2); }
.legal ul li { position: relative; padding-left: 22px; }
.legal ul li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.legal .callout {
  margin-top: var(--space-4); padding: var(--space-3);
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); background: var(--surface);
  font-size: 0.92rem;
}
.legal .callout strong { color: var(--text); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-4); }
.contact-card { padding: var(--space-3); }
.contact-card h2 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 0.94rem; }

.centered-note { text-align: center; display: grid; gap: var(--space-3); justify-items: center; padding-block: var(--space-6) var(--space-7); }
.centered-note h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); }
.centered-note p { color: var(--muted); max-width: 52ch; }

@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 130px; }
}
