/* ============================================================
   THE GATHERING SPACE — Shared Stylesheet
   Design system derived from approved mockup:
   near-black ink, warm cream, institutional gold,
   script + serif + letterspaced sans
   ============================================================ */

:root {
  --ink: #16120e;
  --ink-soft: #221c16;
  --cream: #f2efe8;
  --cream-card: #ece8df;
  --white: #fdfcf9;
  --gold: #c9a45c;
  --gold-light: #e0c68c;
  --gold-deep: #a98740;
  --text-on-dark: #efe9de;
  --muted-on-dark: #b9b0a2;
  --muted-on-light: #5d564c;
  --rule: rgba(201, 164, 92, 0.45);

  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1180px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Typography helpers ---------- */
.script { font-family: var(--font-script); font-weight: 400; color: var(--gold); }
.serif { font-family: var(--font-serif); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* gold heart divider — signature element from mockup */
.heart-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; color: var(--gold); margin: 14px auto;
}
.heart-divider::before, .heart-divider::after {
  content: ""; height: 1px; width: 46px; background: var(--rule);
}
.heart-divider svg { width: 14px; height: 14px; fill: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,164,92,0.35); }
.btn-outline-light { background: transparent; color: var(--text-on-dark); border-color: rgba(239,233,222,0.6); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(22,18,14,0.45); }
.btn-outline-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 18, 14, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,164,92,0.18);
}
.nav-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 28px;
  height: 84px;
}
.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand .brand-the {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
}
.brand .brand-name {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin: 4px 0 2px;
}
.brand .brand-space {
  font-family: var(--font-script); font-size: 19px; color: var(--gold-light);
  display: flex; align-items: center; gap: 8px;
}
.brand .brand-space::before, .brand .brand-space::after {
  content: ""; height: 1px; width: 18px; background: var(--rule);
}

.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-on-dark);
  padding: 6px 0; position: relative; transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a.active { color: var(--gold-light); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-ctas { display: flex; gap: 12px; align-items: center; }
.nav-ctas .btn { padding: 12px 20px; font-size: 11px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  margin: 5px auto; transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  position: relative; background: var(--ink); color: var(--text-on-dark);
  overflow: hidden; min-height: 620px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center right;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(22,18,14,0.97) 0%, rgba(22,18,14,0.92) 32%,
    rgba(22,18,14,0.55) 58%, rgba(22,18,14,0.12) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 90px 28px; width: 100%; }
.hero-content { max-width: 560px; }
.hero .script-lead { font-size: clamp(44px, 6vw, 64px); line-height: 0.9; display: block; }
.hero h1 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(44px, 6.4vw, 72px); line-height: 1.05;
  color: var(--white); margin: 4px 0 0;
}
.hero .heart-divider { justify-content: flex-start; margin: 18px 0; }
.hero .heart-divider::before { display: none; }
.hero .tagline {
  font-size: 15px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.hero p.lede { color: var(--muted-on-dark); font-size: 16px; max-width: 420px; margin-bottom: 30px; }
.hero p.lede strong { color: var(--text-on-dark); font-weight: 500; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink); color: var(--text-on-dark);
  text-align: center; padding: 84px 28px 70px;
  position: relative; overflow: hidden;
}
.page-hero .script-lead { font-size: clamp(38px, 5vw, 54px); display: block; line-height: 1; }
.page-hero h1 {
  font-family: var(--font-serif); font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 600; color: var(--white); margin-top: 2px;
}
.page-hero p { color: var(--muted-on-dark); max-width: 560px; margin: 14px auto 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .eyebrow { color: var(--ink); opacity: 0.75; }
.section-head .script-title {
  font-family: var(--font-script); font-size: clamp(44px, 5.4vw, 60px);
  color: var(--ink); line-height: 1.05; display: block; margin-top: 6px;
}
.section-head .script-title .dot { color: var(--ink); }

/* ---------- Event cards (homepage 5-up) ---------- */
.event-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
.event-card { text-align: center; }
.event-card .photo {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 0.92;
  box-shadow: 0 10px 26px rgba(22,18,14,0.14);
  position: relative;
}
.event-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.event-card:hover .photo img { transform: scale(1.045); }
.event-card .icon-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: -28px auto 14px; position: relative; z-index: 2;
  border: 3px solid var(--cream);
  color: var(--ink);
}
.event-card .icon-badge svg { width: 24px; height: 24px; }
.event-card h3 {
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.45;
}
.event-card p { font-size: 13.5px; color: var(--muted-on-light); margin-top: 6px; }

/* ---------- Pricing band (homepage) ---------- */
.pricing-band { display: grid; grid-template-columns: 320px 1fr 1.15fr; gap: 30px; align-items: stretch; }
.price-card {
  background: var(--ink); color: var(--text-on-dark);
  border-radius: 22px; padding: 44px 34px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.price-card .kicker {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted-on-dark);
}
.price-card h2 { font-family: var(--font-serif); font-size: 38px; font-weight: 500; color: var(--white); margin-top: 10px; }
.price-card .amount {
  font-family: var(--font-serif); font-size: 64px; font-weight: 600;
  color: var(--gold); line-height: 1; margin-top: 18px;
}
.price-card .amount-label {
  font-size: 15px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); margin-top: 8px;
}
.price-card .amount-sub { font-size: 13.5px; color: var(--muted-on-dark); }
.price-card .price-rule { height: 1px; background: var(--rule); margin: 26px 30px; }
.price-card .deposit {
  font-family: var(--font-serif); font-size: 40px; font-weight: 600;
  color: var(--gold); line-height: 1;
}

.included-panel {
  background: var(--cream-card); border-radius: 22px;
  padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
}
.included-panel h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.included-panel h4 svg { width: 18px; height: 18px; color: var(--gold-deep); }
.included-panel ul { margin: 16px 0 0; }
.included-panel li {
  position: relative; padding-left: 20px; font-size: 14.5px;
  color: var(--ink); margin-bottom: 10px;
}
.included-panel li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--ink);
}
.included-panel .panel-rule { height: 1px; background: var(--rule); margin: 24px 0; }

.pricing-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 14px 34px rgba(22,18,14,0.18); }
.pricing-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--text-on-dark); padding: 72px 0; }
.cta-band .container { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.cta-band .cta-title .script-lead { font-family: var(--font-script); font-size: clamp(34px, 4vw, 44px); color: var(--gold); display: block; line-height: 0.95; }
.cta-band .cta-title h2 { font-family: var(--font-serif); font-size: clamp(30px, 3.8vw, 42px); font-weight: 600; color: var(--white); }
.cta-band .cta-title .heart-divider { justify-content: flex-start; margin-top: 12px; }
.cta-band .cta-title .heart-divider::before { display: none; }
.cta-band .cta-copy { max-width: 280px; color: var(--muted-on-dark); font-size: 15.5px; }
.cta-band .cta-buttons { display: flex; gap: 16px; margin-left: auto; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink); color: var(--text-on-dark);
  border-top: 1px solid rgba(201,164,92,0.25);
}
.footer-strip {
  max-width: 1320px; margin: 0 auto; padding: 30px 28px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center;
}
.footer-strip .f-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-strip .f-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-strip .f-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.footer-strip .f-gold-caps {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.footer-strip .f-sub { font-size: 13.5px; color: var(--muted-on-dark); }
.footer-strip .f-serif { font-family: var(--font-serif); font-size: 16px; color: var(--text-on-dark); display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.footer-strip .f-serif svg { width: 16px; height: 16px; fill: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(239,233,222,0.08);
  padding: 18px 28px; text-align: center;
  font-size: 12px; color: var(--muted-on-dark); letter-spacing: 0.08em;
}
.footer-bottom a { color: var(--gold-light); }

/* ============================================================
   INTERIOR PAGE COMPONENTS
   ============================================================ */

/* two-column feature rows (About / Events) */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center;
  margin-bottom: 84px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-photo { order: 2; }
.feature-photo { border-radius: 22px; overflow: hidden; box-shadow: 0 14px 34px rgba(22,18,14,0.16); aspect-ratio: 4/3.4; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy .script { font-size: 38px; display: block; line-height: 1; }
.feature-copy h2 { font-family: var(--font-serif); font-size: 32px; font-weight: 600; margin: 2px 0 14px; }
.feature-copy p { color: var(--muted-on-light); margin-bottom: 14px; font-size: 15.5px; }
.feature-copy .btn { margin-top: 8px; }

/* stat / value chips */
.chip-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  background: var(--cream-card); border: 1px solid var(--rule);
  border-radius: 999px; padding: 9px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: 0 10px 24px rgba(22,18,14,0.13);
  aspect-ratio: 1; position: relative; border: none; padding: 0; background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .g-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(22,18,14,0.85));
  color: var(--text-on-dark); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 28px 16px 14px; text-align: left;
}
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(22,18,14,0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(960px, 92vw); max-height: 86vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; background: none; border: none;
  color: var(--gold-light); font-size: 38px; cursor: pointer; line-height: 1;
}

/* ---------- Pricing page ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.addon-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 30px 26px; text-align: center;
}
.addon-card .icon-badge {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.addon-card .icon-badge svg { width: 22px; height: 22px; }
.addon-card h3 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.addon-card p { font-size: 13.5px; color: var(--muted-on-light); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq-q .faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 18px; font-weight: 400;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--muted-on-light); font-size: 15px; max-width: 660px; }

/* ---------- Contact / Booking ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--ink); color: var(--text-on-dark); border-radius: 22px; padding: 40px 36px; }
.contact-info-card h3 { font-family: var(--font-serif); font-size: 26px; color: var(--white); margin-bottom: 6px; }
.contact-info-card .script { font-size: 32px; display: block; }
.contact-info-card ul { margin-top: 24px; }
.contact-info-card li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; font-size: 14.5px; color: var(--muted-on-dark); }
.contact-info-card li svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-card li strong { display: block; color: var(--text-on-dark); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }

.inquiry-form { background: var(--white); border: 1px solid var(--rule); border-radius: 22px; padding: 40px 36px; }
.inquiry-form h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 4px; }
.inquiry-form .form-sub { font-size: 14px; color: var(--muted-on-light); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--rule); border-radius: 8px;
  padding: 13px 14px; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 0; border-color: var(--gold);
}
.form-note { font-size: 12.5px; color: var(--muted-on-light); margin-top: 14px; }

/* GHL calendar embed shell */
.calendar-shell {
  background: var(--white); border: 1px solid var(--rule); border-radius: 22px;
  padding: 28px; margin-top: 50px;
}
.calendar-shell h3 { font-family: var(--font-serif); font-size: 24px; text-align: center; }
.calendar-shell .cal-sub { text-align: center; font-size: 14px; color: var(--muted-on-light); margin: 6px 0 20px; }
.calendar-embed { border-radius: 12px; overflow: hidden; background: var(--cream); display: flex; flex-direction: column; }
.calendar-embed iframe { width: 100%; min-height: 640px; border: none; }
.calendar-placeholder {
  flex: 1; min-height: 400px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center; padding: 40px;
  border: 2px dashed var(--rule); border-radius: 12px; color: var(--muted-on-light);
}
.calendar-placeholder svg { width: 44px; height: 44px; color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .event-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .pricing-band { grid-template-columns: 1fr 1fr; }
  .pricing-photo { grid-column: 1 / -1; aspect-ratio: 16/8; }
  .nav-ctas .btn-outline-light { display: none; }
}
@media (max-width: 900px) {
  .main-nav, .nav-ctas { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-wrap { flex-wrap: wrap; height: auto; min-height: 84px; padding-top: 16px; padding-bottom: 22px; }
  .site-header.menu-open .main-nav {
    display: flex; flex-direction: column; gap: 0;
    width: 100%; order: 5; margin: 14px 0 0;
  }
  .site-header.menu-open .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(239,233,222,0.07); }
  .site-header.menu-open .nav-ctas {
    display: flex; flex-direction: column; align-items: stretch;
    width: 100%; order: 6; margin-top: 18px; gap: 12px;
  }
  .site-header.menu-open .nav-ctas .btn-outline-light { display: inline-flex; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 26px; }
  .feature-row.reverse .feature-photo { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-strip { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .footer-strip .f-serif { justify-content: flex-start; }
  .cta-band .cta-buttons { margin-left: 0; }
}
@media (max-width: 640px) {
  .event-grid { grid-template-columns: 1fr 1fr; }
  .pricing-band { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-bg { background-position: 72% center; }
}
@media (max-width: 440px) {
  .event-grid, .gallery-grid { grid-template-columns: 1fr; }
}
