/* ============================================================
   Event-type pages (team-events / events-up-to-50 / wrap-party /
   bachelorette-party). Shared look, tokens identical to index.html.
   Content pages only - no hero video, no booking engine.
============================================================ */
:root {
  --bg:        #0f0d0b;
  --bg-soft:   #15110d;
  --cream:     #f0ebe0;
  --cream-dim: rgba(240, 235, 224, 0.7);
  --cream-faint: rgba(240, 235, 224, 0.45);
  --gold:      #c49a3c;
  --gold-light: #f5d98a;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Heebo', sans-serif;
  --num: 'Pliant', 'Heebo', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- nav (solid variant of the home nav) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 235, 224, 0.08);
}
.nav__logo img { height: 34px; }
.nav__links { display: flex; gap: 26px; font-size: 15px; }
.nav__links a { text-decoration: none; color: var(--cream-dim); transition: color .2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold-light); }
.nav__cta {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--bg); background: var(--gold);
  padding: 9px 20px; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 820px) { .nav__links { display: none; } }

/* ---------- page hero ---------- */
.phero { padding: 84px 24px 56px; text-align: center; max-width: 860px; margin: 0 auto; }
.phero__kicker {
  color: var(--gold); font-size: 14px; letter-spacing: .22em; font-weight: 400;
  margin-bottom: 18px;
}
.phero h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 700; line-height: 1.25; }
.phero__sub { color: var(--cream-dim); font-size: 19px; max-width: 640px; margin: 22px auto 0; }
.phero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.btn-gold {
  text-decoration: none; background: var(--gold); color: var(--bg);
  font-weight: 500; font-size: 16px; padding: 14px 34px; border-radius: 999px;
}
.btn-line {
  text-decoration: none; color: var(--cream); font-size: 16px;
  padding: 13px 30px; border-radius: 999px;
  border: 1px solid rgba(240, 235, 224, 0.28);
}

/* ---------- facts strip ---------- */
.facts { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; padding: 26px 24px 10px; }
.facts div { text-align: center; }
.facts b { font-family: var(--num); font-size: 34px; font-weight: 700; color: var(--gold-light); display: block; direction: ltr; }
.facts span { font-size: 13.5px; color: var(--cream-faint); }

/* ---------- sections ---------- */
section { padding: 64px 24px; max-width: 980px; margin: 0 auto; }
section h2 {
  font-size: clamp(26px, 3.6vw, 36px); font-weight: 700;
  margin-bottom: 14px; text-align: center;
}
section h2::after {
  content: ""; display: block; width: 56px; height: 2px;
  background: var(--gold); margin: 18px auto 0;
}
.lead { text-align: center; color: var(--cream-dim); max-width: 660px; margin: 0 auto 40px; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 38px; }
.card {
  background: var(--bg-soft); border: 1px solid rgba(240, 235, 224, 0.09);
  border-radius: 16px; padding: 26px 24px;
}
.card h3 { font-size: 19px; font-weight: 500; color: var(--gold-light); margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--cream-dim); }
.card .num { font-family: var(--num); font-weight: 700; direction: ltr; unicode-bidi: embed; }

/* ---------- practical facts table ---------- */
.practical { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2px; margin-top: 38px; border-radius: 16px; overflow: hidden; }
.practical div { background: var(--bg-soft); padding: 20px 24px; }
.practical dt { color: var(--cream-faint); font-size: 13.5px; letter-spacing: .06em; margin-bottom: 4px; }
.practical dd { font-size: 16.5px; }
.practical .num { font-family: var(--num); font-weight: 700; direction: ltr; unicode-bidi: embed; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--bg-soft); border: 1px solid rgba(240, 235, 224, 0.09);
  border-radius: 14px; margin-top: 12px; padding: 4px 22px;
}
.faq summary {
  cursor: pointer; font-size: 17px; font-weight: 400; padding: 16px 0;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; left: 0; color: var(--gold); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--cream-dim); font-size: 15.5px; padding: 0 0 18px; }

/* ---------- cross links ---------- */
.xlinks { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.xlinks a {
  text-decoration: none; font-size: 14.5px; color: var(--cream-dim);
  border: 1px solid rgba(240, 235, 224, 0.18); border-radius: 999px; padding: 9px 20px;
  transition: color .2s, border-color .2s;
}
.xlinks a:hover { color: var(--gold-light); border-color: var(--gold); }

/* ---------- CTA block ---------- */
.ctaband { text-align: center; padding: 74px 24px 90px; }
.ctaband h2::after { display: none; }
.ctaband p { color: var(--cream-dim); max-width: 560px; margin: 14px auto 30px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid rgba(240, 235, 224, 0.08);
  padding: 34px 24px; text-align: center;
  color: var(--cream-faint); font-size: 13.5px;
}
.footer__legal { display: flex; gap: 22px; justify-content: center; margin-bottom: 14px; }
.footer__legal a { color: var(--cream-dim); text-decoration: none; font-size: 13.5px; }
