/* ==========================================================================
   Lexden Wood — "web iteration two" (wi2) — the middle ground
   --------------------------------------------------------------------------
   Brief: between the calm v2 redesign and the editorial wi1, but built for a
   GOLF CLUB whose visitors come to BOOK. So:
     - Club colours: deep green, sand, one gold accent, warm paper. (kept)
     - Clean system sans for everything — NO display serif. (the "trying too
       hard" Fraunces is gone)
     - Bold, filled, obvious call-to-action buttons. Booking and membership
       are never more than a glance away: sticky header CTA + a quick-action
       booking bar under the hero + clear buttons in every section.
     - Clean cards and a clear 3-step membership explainer (restored from v2).
   No theme CSS, no Bootstrap. Font Awesome (from /assets) for the action icons.
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --green: #324241;
  --green-dark: #273534;
  --sand: #d2caaf;
  --sand-soft: #e7e2d2;
  --cream: #f4efe6;       /* the logo wordmark colour — used for text/buttons on green */
  --gold: #c79a2b;        /* retired from buttons/accents; kept only as a token */
  --gold-dark: #ad831f;
  --ink: #1d2625;
  --muted: rgba(29, 38, 37, 0.66);
  --paper: #f6f4ee;
  --white: #ffffff;
  --line: rgba(29, 38, 37, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);

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

  --radius: 8px;
  --radius-sm: 6px;
  --wrap: 1180px;
  --gap: 24px;
  --shadow: 0 1px 2px rgba(29, 38, 37, 0.05), 0 8px 24px rgba(29, 38, 37, 0.07);
  --shadow-lg: 0 2px 6px rgba(29, 38, 37, 0.06), 0 16px 40px rgba(29, 38, 37, 0.12);
}

/* 2. Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 0.4em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
strong { font-weight: 600; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--green); color: var(--cream); padding: 12px 20px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* 3. Buttons — bold, filled, obviously clickable ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 1.05em; }

/* Primary = deep green, cream text — mirrors the logo (cream wordmark on green).
   The main CTA on light backgrounds. */
.btn--primary { background: var(--green); color: var(--cream); border-color: var(--green); box-shadow: 0 6px 18px rgba(39,53,52,.22); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 10px 26px rgba(39,53,52,.30); }
/* Cream = the inverse — the main CTA on dark/green/hero backgrounds (cream button, green text). */
.btn--cream { background: var(--cream); color: var(--green); border-color: var(--cream); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn--cream:hover { background: #fff; color: var(--green-dark); border-color: #fff; }
/* Dark = green filled (alias of primary, for in-card actions) */
.btn--dark { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn--dark:hover { background: var(--green-dark); box-shadow: var(--shadow); }
/* Outline on light */
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--cream); }
/* Ghost on dark/hero imagery */
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
/* WhatsApp — keep its recognisable brand green */
.btn--wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn--wa:hover { background: #1eb858; box-shadow: var(--shadow); }
/* Big hero size */
.btn--lg { padding: 18px 38px; font-size: 17px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

/* Quiet inline "view details" link with arrow */
.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 15px; text-decoration: none; color: var(--green);
}
.link-more::after { content: "\2192"; transition: transform .18s ease; }
.link-more:hover { color: var(--green-dark); }
.link-more:hover::after { transform: translateX(5px); }

/* 4. Header — sticky, with an always-visible Book button --------------------- */
.hd { position: sticky; top: 0; z-index: 60; background: var(--green); color: #fff; }
.hd .bar { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hd .logo img { height: 46px; width: auto; }
.hd nav > ul { list-style: none; display: flex; margin: 0; padding: 0; }
.hd nav li { position: relative; }
.hd nav a { display: block; padding: 28px 13px; color: rgba(255,255,255,.9); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .15s ease; }
.hd nav a:hover { color: var(--sand); }
.hd nav .sub { list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: 0; min-width: 230px; background: var(--green-dark); border-top: 3px solid var(--sand); display: none; box-shadow: var(--shadow-lg); }
.hd nav li:hover > .sub, .hd nav li:focus-within > .sub { display: block; }
.hd nav .sub a { padding: 11px 20px; font-size: 14px; }
.hd nav .sub a.sub__cta { color: var(--gold); font-weight: 800; }
.hd nav .sub a.sub__cta i { margin-right: 7px; }
.hd nav .sub a.sub__cta:hover { color: var(--green-dark); background: var(--gold); }
/* Right-side contact cluster — "Contact & FAQs" + call / email / WhatsApp as a
   row of icon-only buttons. */
.hd .actions { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.hd-contact { color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; transition: color .15s ease; }
.hd-contact:hover { color: var(--sand); }
.hd .cbox {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  color: #fff; text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hd .cbox:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); transform: translateY(-1px); }
.hd .cbox i { font-size: 16px; color: var(--sand); }
/* WhatsApp keeps its recognisable brand green */
.hd .cbox--wa { border-color: rgba(37,211,102,.55); }
.hd .cbox--wa i { color: #25d366; }
.hd .cbox--wa:hover { background: #25d366; border-color: #25d366; }
.hd .cbox--wa:hover i { color: #fff; }
.hd nav li.only-mobile { display: none; }
.hd .menu-btn { display: none; background: none; border: 1px solid var(--line-dark); color: #fff; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; }

/* Below the desktop nav width: collapse nav to a menu and lay the contact boxes out
   as a row of icon-only tap targets beside the menu button (kept on tablet & mobile). */
@media (max-width: 1000px) {
  .hd .menu-btn { display: block; }
  .hd-contact { display: none; }            /* Contact & FAQs lives in the mobile menu instead */
  .hd nav li.only-mobile { display: block; }
  .hd nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); border-bottom: 1px solid var(--line-dark); max-height: calc(100vh - 78px); overflow-y: auto; }
  body.nav-open .hd nav { display: block; }
  .hd nav > ul { flex-direction: column; padding: 8px 0; }
  .hd nav a { padding: 13px 24px; }
  .hd nav .sub { position: static; display: none; box-shadow: none; border-top: 0; border-left: 3px solid var(--sand); margin: 0 0 6px 24px; }
  .hd nav li.open > .sub { display: block; }
  .hd nav li.has-sub > a::after { content: "  +"; color: var(--sand); }
  .hd nav li.has-sub.open > a::after { content: "  \2212"; }
}

/* Narrow phones: tighten the bar so logo + 3 contact icons + menu fit comfortably */
@media (max-width: 480px) {
  .hd .bar { gap: 12px; padding: 0 14px; }
  .hd .logo img { height: 38px; }
  .hd .actions { gap: 7px; }
  .hd .cbox { width: 38px; height: 38px; }
}

/* 5. Hero — image, headline, and LOUD booking CTAs --------------------------- */
.hero { position: relative; background-size: cover; background-position: center; color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,30,29,.5), rgba(24,30,29,.74)); }
.hero .wrap { position: relative; padding: clamp(72px, 12vw, 150px) 24px clamp(64px, 9vw, 120px); }
.hero .eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; }
.hero h1 { max-width: 16ch; margin-bottom: 18px; }
.hero .sub { max-width: 52ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.92); margin-bottom: 30px; }
.hero--inner .wrap { padding-top: clamp(56px, 8vw, 92px); padding-bottom: clamp(48px, 7vw, 80px); }
.hero--inner h1 { max-width: 20ch; }
/* Events title banners: dark gradient (no photo), matching the live site */
.hero--grad { background:
  radial-gradient(900px 420px at 15% 10%, rgba(199, 154, 43, 0.32), transparent 60%),
  linear-gradient(180deg, #0a1412, #16241f); }
.hero--grad::before { display: none; }

/* 6. Booking bar — the always-obvious row of primary actions ----------------- */
.bookbar { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); position: relative; z-index: 5; }
.bookbar .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 0 24px; }
.bookbar a { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 20px 12px; text-decoration: none; color: var(--ink); border-left: 1px solid var(--line); transition: background .15s ease; }
.bookbar a:first-child { border-left: 0; }
.bookbar a:hover { background: var(--paper); }
.bookbar a i { font-size: 22px; color: var(--green); }
.bookbar a .t { font-weight: 700; font-size: 15px; }
.bookbar a .s { font-size: 12.5px; color: var(--muted); }
.bookbar a.is-primary { background: var(--green); }
.bookbar a.is-primary i, .bookbar a.is-primary .t { color: var(--cream); }
.bookbar a.is-primary .s { color: rgba(246,244,238,.82); }
.bookbar a.is-primary:hover { background: var(--green-dark); }
.bookbar a.is-wa i { color: #25d366; } /* keep WhatsApp recognisable */
@media (max-width: 860px) {
  .bookbar .wrap { grid-template-columns: 1fr 1fr; }
  .bookbar a { border-left: 0; border-top: 1px solid var(--line); }
  .bookbar a:nth-child(-n+2) { border-top: 0; }
  .bookbar a:nth-child(odd) { border-left: 0; }
}
@media (max-width: 460px) { .bookbar .wrap { grid-template-columns: 1fr; } }

/* 7. Sections & headings ----------------------------------------------------- */
.section { padding: clamp(42px, 5.5vw, 66px) 0; }
.section--tint { background: var(--sand-soft); }
.section--green { background: var(--green); color: #fff; }
.sec-head { max-width: 720px; margin: 0 0 26px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section--green .sec-head .eyebrow { color: var(--sand); }
.sec-head p { color: var(--muted); margin: 10px 0 0; font-size: 1.08rem; }
.section--green .sec-head p { color: rgba(255,255,255,.82); }

/* 8. Cards ------------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: transform .16s ease, box-shadow .16s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .media { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card .body h3 { margin-bottom: 8px; }
.card .body p { color: var(--muted); margin-bottom: 18px; flex: 1; }
.card .body .btn, .card .body .link-more { margin-top: auto; align-self: flex-start; }

/* Plain panel */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); height: 100%; }
.section--green .panel { background: var(--green-dark); border-color: var(--line-dark); }

/* 9. Membership explainer — clean 3 steps + clear buttons (restored from v2) -- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin: 8px 0 32px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 24px; }
.step .n { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--green); font-weight: 700; margin-bottom: 14px; }
.step h3 { margin-bottom: 6px; font-size: 1.15rem; }
.step p { color: rgba(255,255,255,.78); margin: 0; font-size: 15px; }

/* Membership tier cards (clean, with a clear button each) */
.tier { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tier.is-featured { border: 2px solid var(--green); box-shadow: var(--shadow-lg); }
.tier .badge { align-self: flex-start; background: var(--green); color: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.tier h3 { margin-bottom: 4px; }
.tier .price { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1.1; margin: 8px 0 2px; }
.tier .price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.tier ul { list-style: none; margin: 16px 0 24px; padding: 0; display: grid; gap: 10px; }
.tier li { position: relative; padding-left: 26px; color: var(--muted); }
.tier li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.tier .btn { margin-top: auto; }

/* 10. Feature split (text + image) ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--rev .media { order: -1; }
.split .media img { width: 100%; border-radius: var(--radius); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .media { order: 0; } }

/* Bullet list */
.ticks { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 28px; }
.ticks li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }

/* 11. Price strip (activity prices) ------------------------------------------ */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 760px) { .prices { grid-template-columns: 1fr 1fr; } }
.price-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow); }
.price-card .for { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.price-card .amount { font-size: 2.2rem; font-weight: 800; color: var(--green); margin: 8px 0 2px; }
.price-card .note { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.price-card .btn { width: 100%; }
.join-band { display: flex; align-items: center; justify-content: space-between; gap: 14px 18px; flex-wrap: wrap; background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; }
.join-band strong { font-weight: 800; }
.join-band .btn { flex: none; }

/* Venue photo gallery grid */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 640px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
.gal-grid a, .gal-grid .gal-item { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gal-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .3s ease; }
.gal-grid a:hover img, .gal-grid .gal-item:hover img { transform: scale(1.05); }
.prices--tight .price-card { padding: 18px 16px; }
.prices--tight .amount { font-size: 1.75rem; margin: 6px 0 2px; }
.prices--tight .note { font-size: 12.5px; margin-bottom: 12px; }
.prices--3 { grid-template-columns: repeat(3, 1fr); max-width: 840px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) { .prices--3 { grid-template-columns: 1fr 1fr; max-width: none; } }

/* 12. Events / news rows ----------------------------------------------------- */
.rows { border-top: 1px solid var(--line); }
.row-item { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; }
.row-item .date { font-weight: 700; color: var(--green); font-size: 14px; white-space: nowrap; }
.row-item h3 { margin: 0; font-size: 1.2rem; }
.row-item .meta { color: var(--muted); font-size: 14px; text-align: right; }
.row-item:hover h3 { color: var(--green-dark); }
@media (max-width: 640px) { .row-item { grid-template-columns: 1fr; gap: 4px; } .row-item .meta { text-align: left; } }

/* 13. Opening times ---------------------------------------------------------- */
.times { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.times th, .times td { padding: 16px 20px; text-align: left; border-top: 1px solid var(--line); }
.times tr:first-child th, .times tr:first-child td { border-top: 0; }
.times th { background: var(--green); color: #fff; font-weight: 600; font-size: 14px; }
.times td small { color: var(--muted); }

/* 14. Notice ----------------------------------------------------------------- */
.notice { background: var(--sand); color: var(--green-dark); }
.notice .wrap { padding: 12px 24px; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; font-size: 14.5px; }
.notice b { font-weight: 700; }

/* Live course-status banner */
.coursebar { border-bottom: 1px solid rgba(29, 38, 37, 0.10); }
.coursebar--open { background: #e9f4ec; color: #173a26; }
.coursebar--closed { background: #fbeae5; color: #7a2718; }
.coursebar__inner { padding: 11px 24px; display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 780px) { .coursebar__inner { flex-wrap: nowrap; } }
.coursebar__status { margin: 0; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 14.5px; font-family: var(--sans); }
.coursebar__dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.coursebar--open .coursebar__dot { background: #1f9d55; box-shadow: 0 0 0 4px rgba(31, 157, 85, .18); animation: cbPulse 2.2s ease-in-out infinite; }
.coursebar--closed .coursebar__dot { background: #d23b22; box-shadow: 0 0 0 4px rgba(210, 59, 34, .18); }
@keyframes cbPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31, 157, 85, .40); } 50% { box-shadow: 0 0 0 7px rgba(31, 157, 85, 0); } }
@media (prefers-reduced-motion: reduce) { .coursebar--open .coursebar__dot { animation: none; } }
.coursebar__lead { font-weight: 800; }
.coursebar__desc { opacity: .92; }
.coursebar__upd { font-size: 12.5px; opacity: .72; }
.coursebar__upd::before { content: "·"; margin-right: 8px; }
.coursebar__wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; font-family: var(--sans); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; text-decoration: none; white-space: nowrap; flex: none; transition: transform .15s ease, filter .15s ease; }
.coursebar__wa:hover { filter: brightness(1.04); transform: translateY(-1px); }
.coursebar__wa i { font-size: 17px; }

/* 15. Contact strip ---------------------------------------------------------- */
.contact-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); text-align: center; }
.contact-cols i { font-size: 24px; color: var(--green); margin-bottom: 10px; }
.contact-cols a { text-decoration: none; }
.contact-cols a:hover { color: var(--green-dark); }
@media (max-width: 700px) { .contact-cols { grid-template-columns: 1fr; } }
.map { width: 100%; height: 340px; border: 1px solid var(--line); border-radius: var(--radius); display: block; }

/* 16. CTA band — a final loud conversion strip ------------------------------- */
.cta-band { background: var(--green); color: #fff; border-radius: var(--radius); padding: clamp(36px, 5vw, 56px); text-align: center; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0 auto 24px; }

/* 17. Footer ----------------------------------------------------------------- */
.ft { background: var(--green-dark); color: rgba(255,255,255,.8); font-size: 14.5px; }
.ft .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 44px; }
.ft .logo img { height: 50px; width: auto; margin-bottom: 16px; }
.ft h5 { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); margin: 0 0 16px; }
.ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ft a { color: inherit; text-decoration: none; }
.ft a:hover { color: #fff; }
.ft .social a { font-size: 18px; margin-right: 14px; }
.ft .legal { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }
.ft .legal ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
@media (max-width: 860px) { .ft .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ft .top { grid-template-columns: 1fr; } }

/* 18. Reveal ----------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

.mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .muted { color: var(--muted); } .center { text-align: center; }
/* 19. Homepage front panel — hero that blends into the green header ------------ */
.hero--home::before {
  /* fade from the header green at the top into the photo, so the nav melts into the hero */
  background: linear-gradient(180deg, rgba(39,53,52,.96) 0%, rgba(39,53,52,.45) 32%, rgba(24,30,29,.55) 70%, rgba(24,30,29,.82) 100%);
}
.hero--home .wrap { padding-bottom: clamp(120px, 14vw, 168px); }

/* Three feature highlights, overlapping the bottom of the hero (like the original) */
.feature-row { position: relative; z-index: 6; margin-top: clamp(-96px, -9vw, -72px); }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card .media { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.feature-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.feature-card .body h3 { margin-bottom: 6px; }
.feature-card .body p { color: var(--muted); margin-bottom: 16px; flex: 1; }
.feature-card .body .btn { align-self: flex-start; }
@media (max-width: 600px) { .feature-row { margin-top: 28px; } }

/* "How can we help?" — enquiry cards (kept front and centre) reuse .card/.panel */

/* Large contact icons + the phone number (replaces the small phone/email/WhatsApp stack) */
.contact-quick {
  display: flex; flex-direction: column; align-items: center; gap: 13px; margin-top: 28px;
}
.contact-quick .ics { display: flex; gap: 18px; align-items: center; justify-content: center; }
.contact-quick .ic {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid var(--green); color: var(--green); font-size: 22px; text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.contact-quick .ic:hover { transform: translateY(-2px); background: var(--green); color: var(--cream); }
.contact-quick .ic.em { border-color: var(--green); color: var(--green); }
/* WhatsApp — the primary, fastest contact: bigger, filled green, glowing */
.contact-quick .ic.wa {
  width: 70px; height: 70px; font-size: 30px;
  border-color: #25d366; background: #25d366; color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .38);
}
.contact-quick .ic.wa:hover { background: #1fbe5a; color: #fff; transform: translateY(-2px) scale(1.04); }
/* hover tooltip (phone number / email) */
.contact-quick .ic[data-tip]::after {
  content: attr(data-tip); position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--green-dark); color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 600;
  white-space: nowrap; padding: 6px 10px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.contact-quick .ic[data-tip]:hover::after { opacity: 1; }
.wa-note { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 14.5px; color: #0e6b34; margin: 0; }
.wa-note i { color: #25d366; font-size: 17px; }
.wa-note strong { font-weight: 800; }

/* Golf professionals — equal side-by-side cards (no ranking) */
.pro-grid { align-items: stretch; }
.pro-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pro-card__media { display: block; aspect-ratio: 4 / 3; background: var(--paper); overflow: hidden; }
.pro-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; transition: transform .3s ease; }
.pro-card__media:hover img { transform: scale(1.03); }
.pro-card__body { padding: 20px 22px; display: flex; flex-direction: column; }
.pro-card__body h3 { margin: 0 0 2px; }
.pro-card__bio { margin: 14px 0 0; }
.pro-card__cta { flex-wrap: wrap; margin: 14px 0 0; }

/* 20. Rotating hero — the three-panel "starter" carousel (homepage) ------------ */
.hero-rotator { position: relative; overflow: hidden; min-height: clamp(460px, 66vh, 660px); }
.hero-rotator .slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease;
}
.hero-rotator .slide.is-active { opacity: 1; visibility: visible; }
.hero-rotator .slide::before {
  content: ""; position: absolute; inset: 0;
  /* blends from the header green at the top into the photo */
  background: linear-gradient(180deg, rgba(39,53,52,.94) 0%, rgba(39,53,52,.42) 34%, rgba(24,30,29,.5) 70%, rgba(24,30,29,.82) 100%);
}
.hero-rotator .wrap { position: relative; z-index: 2; width: 100%; color: #fff;
  padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(76px, 10vw, 120px); }
.hero-rotator .eyebrow { color: var(--sand); }
.hero-rotator .hero-title { font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.16; letter-spacing: -.005em; max-width: 17ch; margin: 0 0 16px; }
.hero-rotator .sub { max-width: 54ch; color: rgba(255,255,255,.92);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin-bottom: 28px; }

.hero-rotator .dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 4;
  display: flex; gap: 11px; justify-content: center; }
.hero-rotator .dots button { width: 11px; height: 11px; border-radius: 50%; padding: 0;
  border: 2px solid rgba(255,255,255,.7); background: transparent; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s; }
.hero-rotator .dots button:hover { transform: scale(1.15); }
.hero-rotator .dots button.is-active { background: var(--sand); border-color: var(--sand); }

.hero-rotator .arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.55);
  background: rgba(24,30,29,.32); color: #fff; font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s; }
.hero-rotator .arrow:hover { background: rgba(24,30,29,.62); }
.hero-rotator .arrow.prev { left: 16px; }
.hero-rotator .arrow.next { right: 16px; }
@media (max-width: 720px) { .hero-rotator .arrow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-rotator .slide { transition: none; }
}

/* 21. Membership quick-nav dock (membership-packages.php) --------------------- */
.quickdock { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 340px; max-width: calc(100vw - 36px); pointer-events: none; }
.quickdock * { pointer-events: auto; }
.quickdock-panel { background: rgba(255,255,255,.93); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.quickdock-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 12px; background: var(--green); color: #fff; }
.qd-title { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.qd-toggle { width: 32px; height: 32px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qd-toggle:hover { background: rgba(255,255,255,.2); }
.quickdock-body { padding: 12px; display: grid; gap: 10px; }
.qd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qd-link { display: flex; align-items: center; justify-content: center; text-align: center; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; color: var(--green); text-decoration: none; font-weight: 600; font-size: 13px; line-height: 1.15; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease; }
.qd-link:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.qd-link.active { background: var(--green); color: var(--cream); border-color: var(--green); }
.qd-link--wide { grid-column: 1 / -1; }
.qd-cta { display: flex; gap: 8px; align-items: stretch; }
.qd-enquire { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--green); color: var(--cream); font-size: 13px; font-weight: 700; text-decoration: none; border: 1px solid var(--green); transition: background .16s ease; }
.qd-enquire i { font-size: 12px; }
.qd-enquire:hover { background: var(--green-dark); }
.qd-top { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: var(--radius-sm); background: #fff; color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; border: 1px solid var(--line); }
.qd-top:hover { background: var(--paper); }
.quickdock-panel.is-collapsed .quickdock-body { display: none; }
@media (max-width: 767px) {
  .quickdock { left: 14px; right: 14px; bottom: 14px; width: auto; max-width: none; }
  .qd-link { padding: 9px 8px; font-size: 12px; }
}

/* 22. Price rows + feature panel — clean alternative to boxy price cards ------- */
.plist { margin-top: 16px; border-top: 1px solid var(--line); }
.plist .pl-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.plist .pl-label { font-weight: 600; color: var(--ink); }
.plist .pl-label .pl-sub { display: block; font-weight: 400; color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.plist .pl-value { font-weight: 700; font-size: 1.15rem; color: var(--green); white-space: nowrap; text-align: right; }
.plist .pl-value.is-soft { font-size: .98rem; font-weight: 600; color: var(--muted); }
.plist .pl-value small { font-weight: 400; font-size: 13px; color: var(--muted); }
.panel--feature { border: 2px solid var(--green); }
.panel--feature .price-big { font-size: 2.4rem; font-weight: 800; color: var(--green); line-height: 1; margin: 4px 0 12px; }
.panel--feature .eyebrow { color: var(--green); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; display: block; margin-bottom: 6px; }

/* 23. FAQ accordion — standardised, aligned ----------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 4px; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 1.6rem; line-height: 1; color: var(--green); transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 4px 22px; color: var(--muted); max-width: 70ch; }
.faq .faq-a p { margin: 0; }

/* 24. Review cards — white "quote" boxes with stars --------------------------- */
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
.review { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.review .stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.review blockquote { margin: 0; font-style: italic; color: var(--ink); line-height: 1.7; }
.review .by { margin-top: 14px; font-style: normal; font-weight: 600; font-size: 13.5px; color: var(--muted); }

/* 25. Spec block — "specifications" inside a package panel --------------------- */
.spec { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.spec h4 { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }
.spec p { margin: 0; }

/* 26. Gold CTA — sparing, deliberate. Used on membership "Enquire" power CTAs.
   Opt-in only (new class), so no other page/button changes. Works on light and
   on dark/green/hero backgrounds. */
.btn--gold { background: var(--gold); color: var(--green-dark); border-color: var(--gold); box-shadow: 0 6px 18px rgba(173,131,31,.28); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; box-shadow: 0 10px 26px rgba(173,131,31,.34); }

/* 27. Membership tiers — icon header, gold price, savings, grouped grids -------
   (.tier / .is-featured are used ONLY on membership-packages.php.) */
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } }

.tier__grouplabel { display: flex; align-items: center; gap: 14px; font-size: 13.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin: 22px 0 2px; }
.section--green .tier__grouplabel { color: var(--sand); }
.group-sub { margin: 0 0 16px; color: var(--muted); max-width: 74ch; }
.tier__grouplabel::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.billrow-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.billrow-head .tier__grouplabel { flex: 1 1 auto; }

.tier__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tier__top h3 { margin: 0; line-height: 1.15; }
.tier__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(199,154,43,.14); color: var(--gold-dark); font-size: 20px; flex: none; }
.icon-dino { display: inline-block; width: 1.35em; height: 1em; background: currentColor; -webkit-mask: url('/assets/icons/trex.png') center/contain no-repeat; mask: url('/assets/icons/trex.png') center/contain no-repeat; }
.tier__sub { color: var(--muted); font-size: 14px; font-weight: 600; }
.tier__price { font-weight: 800; font-size: 2.3rem; line-height: 1.05; letter-spacing: -.02em; color: var(--gold-dark); margin: 2px 0 2px; }
.tier__price .cur { font-size: 1.35rem; font-weight: 700; margin-right: 1px; }
.tier__save { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin: 8px 0 2px; }

/* Featured tier → gold accent (was green). The "Most popular" badge is a corner
   banner that sits off the top-right and does NOT push the card content down. */
.tier.is-featured { border: 2px solid var(--gold); }
.tier.is-featured .tier__icon { background: var(--gold); color: #fff; }
.tier.is-featured .badge { position: absolute; top: -13px; right: 18px; margin: 0; z-index: 3; background: var(--gold); color: var(--green-dark); box-shadow: 0 5px 14px rgba(173,131,31,.32); }
@media (max-width: 1000px) { .tier.is-featured .badge { right: 14px; } }

/* Premium tiers (Platinum, Diamond) — gold-tinted so the top tiers stand out
   more, without competing with the featured "Most popular" Gold card. */
.tier--premium { border-color: var(--gold); background: rgba(199,154,43,.05); }
.tier--premium .tier__icon { background: var(--gold); color: #fff; }
.tier--premium .tier__tag { display: inline-block; align-self: flex-start; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); border: 1px solid rgba(199,154,43,.5); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }

/* Highlight the tier the "find your tier" helper recommends */
.tier.is-pick { outline: 3px solid var(--gold); outline-offset: 3px; }
@keyframes tierflash { 0% { box-shadow: 0 0 0 0 rgba(199,154,43,.55); } 100% { box-shadow: 0 0 0 18px rgba(199,154,43,0); } }
.tier.flash { animation: tierflash 1s ease-out; }
@media (prefers-reduced-motion: reduce) { .tier.flash { animation: none; } }

/* 28. Find-your-tier helper --------------------------------------------------- */
.finder { max-width: 880px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 34px); }
.finder__q { margin-bottom: 22px; }
.finder__label { display: block; font-weight: 700; margin-bottom: 12px; }
.finder__opts { display: flex; flex-wrap: wrap; gap: 10px; }
.finder__opt { flex: 1 1 180px; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: 15px; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease; }
.finder__opt:hover { transform: translateY(-1px); border-color: var(--green); }
.finder__opt.is-on { background: var(--green); color: var(--cream); border-color: var(--green); }
.finder__result { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 22px; }
.finder__rinner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.finder__rkicker { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }
.finder__rtier { margin: 4px 0; color: var(--green); }
.finder__rwhy { margin: 0; color: var(--muted); max-width: 48ch; }
.finder__ractions { display: flex; flex-wrap: wrap; gap: 10px; }
.finder__note { margin: 16px 0 0; font-size: 13.5px; color: var(--muted); }
.finder__note a { color: var(--green); font-weight: 600; }

/* 29. Unlimited memberships — compact 5/7-day comparison table --------------- */
.utable { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.utable__head, .utable__row { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; align-items: center; gap: 14px; padding: 14px 22px; }
.utable__head { background: var(--green); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .03em; }
.utable__head span { text-align: center; }
.utable__head span:first-child { text-align: left; }
.utable__head small { display: block; font-weight: 400; font-size: 11.5px; color: rgba(255,255,255,.72); }
.utable__row { border-top: 1px solid var(--line); padding-top: 20px; padding-bottom: 20px; transition: background .2s ease; }
.utable__name { display: flex; align-items: center; gap: 13px; }
.utable__name strong { display: block; font-size: 1.12rem; }
.utable__title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.utable__title .deal-badge { margin-left: 0; }
.utable__note { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.utable__badge { display: inline-block; margin: 5px 0 1px; background: var(--gold); color: var(--green-dark); font-size: 10.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.utable__pp { display: block; margin-top: 5px; font-size: 12px; font-weight: 700; letter-spacing: 0; color: #1b7f4d; }
.utable__foot { margin: 12px 4px 0; font-size: 12.5px; color: var(--muted); }
.utable__save { position: absolute; right: 0; bottom: calc(100% + 6px); white-space: nowrap; background: rgba(199, 154, 43, .16); color: var(--gold-dark); font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.mb-intro { font-size: 14px; color: var(--green-dark); line-height: 1.5; margin: 0 0 12px; }
.mb-finder { font-size: 13.5px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 10px 13px; margin: 0 0 16px; }
.mb-finder a { color: var(--green); font-weight: 700; white-space: nowrap; }
.utable__p { text-align: center; font-size: 1.45rem; font-weight: 800; color: var(--gold-dark); }
.utable__lbl { display: none; }
.utable__act { text-align: right; position: relative; }
.utable__act .btn { padding: 11px 22px; }
.utable__row.is-pick { background: rgba(199,154,43,.10); }
@media (max-width: 760px) {
  .utable__head { display: none; }
  .utable__row { grid-template-columns: 1fr 1fr; row-gap: 10px; }
  .utable__name { grid-column: 1 / -1; }
  .utable__p { text-align: left; font-size: 1.3rem; }
  .utable__lbl { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1px; }
  .utable__act { grid-column: 1 / -1; text-align: left; }
  .utable__save { position: static; display: inline-block; margin: 0 0 8px; }
  .utable__act .btn { width: 100%; }
}

/* 30. Membership — hero hook chips + compact "how points work" --------------- */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-chips span { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 13.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
.hero-chips i { color: var(--gold); }

.how-step { display: flex; gap: 14px; align-items: flex-start; }
.how-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; font-size: 19px; }
.how-step h3 { margin: 2px 0 4px; font-size: 1.12rem; }
.how-step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Visitor green fee vs points table */
.cmp { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.cmp__head, .cmp__row { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: center; gap: 12px; padding: 16px 22px; }
.cmp__head { background: var(--green); color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .03em; }
.cmp__head span { text-align: center; }
.cmp__head span:first-child { text-align: left; }
.cmp__row { border-top: 1px solid var(--line); }
.cmp__round strong { display: block; font-size: 1.05rem; }
.cmp__round small { color: var(--muted); font-size: 12.5px; }
.cmp__v { text-align: center; font-weight: 700; color: var(--ink); }
.cmp__pts { text-align: center; font-weight: 800; color: var(--gold-dark); font-size: 1.1rem; }
.cmp__lbl { display: none; }
@media (max-width: 760px) {
  .cmp__head { display: none; }
  .cmp__row { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .cmp__round { grid-column: 1 / -1; }
  .cmp__v, .cmp__pts { text-align: left; }
  .cmp__lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
}

/* Gold banner sitting on top of the points table */
.cmp-banner { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--green-dark); font-weight: 800; font-size: clamp(1rem, 2vw, 1.2rem); padding: 14px 20px; border-radius: var(--radius) var(--radius) 0 0; text-align: center; }
.cmp-banner i { font-size: 1.1em; }
.cmp-wrap { margin-top: 34px; }
.cmp-wrap .cmp { border-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; }

/* Savings callout — the attractive headline, no per-point maths */
.savebar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 26px; background: var(--sand-soft); color: var(--ink); border: 1px solid var(--sand); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); }
.savebar__big { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 800; line-height: 1.2; color: var(--green); }
.savebar p { margin: 5px 0 0; color: var(--muted); font-size: 14.5px; max-width: 60ch; }
.savebar .btn { flex: none; }

/* Concession memberships, same table format as Unlimited (green head reads "Concessions") */
.utable--conc { margin-top: 30px; }
.utable__h--solo { grid-column: 2 / 4; }   /* "Annual" header label spans the two price columns */
.utable__p--solo { grid-column: 2 / 4; }   /* single annual price spans the two price columns */
@media (max-width: 760px) { .utable__p--solo { grid-column: 1 / -1; } }
@media (max-width: 600px) { .concession-fold > summary { padding: 14px 16px; } }

/* Unlimited explainer box (in "how membership works") */
.how-box { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.how-box__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(199,154,43,.14); color: var(--gold-dark); font-size: 21px; }
.how-box h3 { margin: 0 0 4px; font-size: 1.15rem; }
.how-box p { margin: 0 0 8px; color: var(--muted); }

/* 31. Membership — big group headers, in-dock finder, flat concession -------- */
.group-head { display: flex; gap: 16px; align-items: flex-start; margin: 0 0 18px; }
.group-head__ic { flex: none; width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; font-size: 24px; }
.group-head__title { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 4px; }
.group-head p { margin: 0; color: var(--muted); max-width: 72ch; }

/* Mode banners — the bold Points / Unlimited section headers that stand out */
.mode-banner { display: flex; gap: 18px; align-items: center; background: var(--green); color: #fff; border-radius: var(--radius); padding: 22px 26px; margin: 0 0 22px; box-shadow: var(--shadow-lg); }
.mode-banner__ic { flex: none; width: 56px; height: 56px; border-radius: 14px; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; }
.mode-banner h2 { margin: 0 0 4px; color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.mode-banner p { margin: 0; color: rgba(255,255,255,.86); max-width: none; }
@media (max-width: 600px) { .mode-banner { align-items: flex-start; gap: 14px; padding: 20px; } }

/* Flat concession tiles — compact, single-line benefits */
.tier--flat { padding: 20px 22px; }
.tier--flat .tier__top { gap: 12px; }
.tier__price--sm { margin: 0 0 0 auto; font-size: 1.75rem; }
.tier__flatnote { color: var(--muted); font-size: 14px; margin: 12px 0 16px; }

/* Quick-nav dock — "Find your tier" feature button + in-dock finder */
.qd-find { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 11px; border: 0; border-radius: var(--radius-sm); background: var(--gold); color: var(--green-dark); font-family: var(--sans); font-weight: 700; font-size: 13.5px; cursor: pointer; margin-bottom: 10px; transition: background .15s ease, color .15s ease; }
.qd-find:hover { background: var(--gold-dark); color: #fff; }
.qd-back { background: none; border: 0; color: var(--green); font-weight: 700; font-size: 13px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 0 0 8px; }
.qd-finder { display: grid; gap: 12px; max-height: 54vh; overflow-y: auto; }
.qf-q .qf-label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 7px; }
.qf-opts { display: grid; gap: 6px; }
.qf-opts .finder__opt { flex: none; min-width: 0; width: 100%; padding: 9px 10px; font-size: 13px; }
.qf-result { border-top: 1px solid var(--line); padding-top: 10px; display: grid; gap: 8px; }
.qf-rk { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); }
.qf-result strong { font-size: 1.1rem; color: var(--green); }
.qf-why { font-size: 12.5px; color: var(--muted); margin: 0; }
.qf-acts { display: grid; gap: 8px; }
.qf-jump { text-align: center; color: var(--green); font-weight: 600; font-size: 13px; text-decoration: none; }
.qf-jump:hover { color: var(--green-dark); }

/* 34. Event cards (events listing) ------------------------------------------- */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .ev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ev-grid { grid-template-columns: 1fr; } }
.ev-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease; }
.ev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.ev-card__media { position: relative; aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--sand-soft); }
.ev-card__date { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--green-dark); border-radius: var(--radius-sm); padding: 7px 11px; font-weight: 800; line-height: 1; text-align: center; box-shadow: var(--shadow); }
.ev-card__date b { display: block; font-size: 1.3rem; }
.ev-card__date span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.ev-card__price { position: absolute; top: 12px; right: 12px; background: rgba(39,53,52,.86); color: #fff; border-radius: 999px; padding: 5px 12px; font-weight: 700; font-size: 13px; }
.ev-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.ev-card__body h3 { margin: 0 0 10px; font-size: 1.2rem; }
.ev-card__meta { margin: 0 0 6px; color: var(--muted); font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.ev-card__meta i { color: var(--gold-dark); width: 15px; text-align: center; margin-top: 3px; }
.ev-card__cta { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 700; font-size: 14px; }
.ev-card:hover .ev-card__cta { color: var(--green-dark); }
.ev-card__cta i { transition: transform .18s ease; }
.ev-card:hover .ev-card__cta i { transform: translateX(4px); }

/* Event summary banner (event-details) */
.evbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; background: var(--sand-soft); border: 1px solid var(--sand); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); }
.evbar__facts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.evbar__facts > span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.evbar__facts i { color: var(--gold-dark); }
.evbar__price { background: var(--gold); color: var(--green-dark) !important; border-radius: 999px; padding: 7px 15px; font-weight: 800; }
.evbar__price i { color: var(--green-dark) !important; }
.evbar .btn { flex: none; }

/* Instagram feed + reel (venue-hire etc.) */
.ig-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--gap); align-items: start; }
@media (max-width: 860px) { .ig-grid { grid-template-columns: 1fr; } }
.ig-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.ig-frame { width: 100%; border: 0; border-radius: var(--radius-sm); background: #fff; min-height: 560px; display: block; }
.ig-frame--reel { min-height: 620px; }

/* Venue-hire: 'from' price badge on cards + compact add-on banner + add-on cols */
.card { position: relative; }
.card__from { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--gold); color: var(--green-dark); font-weight: 800; font-size: 12px; line-height: 1.1; padding: 6px 11px; border-radius: 999px; box-shadow: var(--shadow); }
.addon-banner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; background: rgba(199,154,43,.1); border: 1px solid rgba(199,154,43,.3); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 14px 18px; }
.addon-banner__main { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.addon-banner__tag { background: var(--gold); color: var(--green-dark); font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.addon-banner__main strong { font-size: 1.1rem; }
.addon-banner__price { font-size: 1.3rem; font-weight: 800; color: var(--gold-dark); }
.addon-banner__feats { margin: 0; color: var(--muted); font-size: 14px; flex: 1 1 320px; }
.addon-col h3 { margin: 0 0 4px; }
.addon-col > p { color: var(--muted); margin: 0 0 12px; font-size: 14.5px; }

/* Expandable package cards (venue-hire) */
.xgrid { display: grid; gap: 14px; }
.xcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.xcard__head { width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--sans); color: inherit; }
.xcard__head:hover, .xcard__head[aria-expanded="true"] { background: var(--paper); }
.xcard__head .tier__icon { flex: none; }
.xcard__title { flex: 1 1 auto; min-width: 0; font-size: 1.18rem; font-weight: 700; line-height: 1.2; }
.xcard__sub { display: block; font-size: 13.5px; font-weight: 500; color: var(--muted); margin-top: 2px; }
.xcard__price { flex: none; background: var(--gold); color: var(--green-dark); font-weight: 800; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.xcard__chev { flex: none; color: var(--green); transition: transform .2s ease; }
.xcard__head[aria-expanded="true"] .xcard__chev { transform: rotate(180deg); }
.xcard__body { padding: 2px 20px 22px; }
.xcard__body > p:first-child { margin-top: 0; }
@media (max-width: 560px) {
  .xcard__head { flex-wrap: wrap; }
  .xcard__title { flex-basis: calc(100% - 60px); }
  .xcard__price { order: 4; }
  .xcard__chev { margin-left: auto; }
}

/* 33. Joining terms — split into general terms + promotional benefit cards --- */
.terms-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px) { .terms-split { grid-template-columns: 1fr; } }
.terms-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.terms-col--promo { border-color: rgba(199,154,43,.4); background: rgba(199,154,43,.05); }
.terms-col__h { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; margin: 0 0 16px; }
.terms-col__h i { color: var(--green); }
.terms-col--promo .terms-col__h { color: var(--gold-dark); }
.terms-col--promo .terms-col__h i { color: var(--gold-dark); }
.termcard { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--line); }
.feecols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
@media (max-width: 520px) { .feecols { grid-template-columns: 1fr; } }
.feecol { background: var(--sand-soft); border: 1px solid var(--sand); border-radius: var(--radius-sm); padding: 16px; }
.feecol__when { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.feecol__price { font-size: 1.9rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 8px; }
.feecol p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.offerrow { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 14px 0 4px; }
.offerbox { display: flex; gap: 11px; align-items: center; background: rgba(199,154,43,.1); border: 1px solid rgba(199,154,43,.3); border-radius: var(--radius-sm); padding: 10px 13px; }
.offerbox__ic { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.offerbox p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.35; }
.offerbox strong { color: var(--green); font-weight: 700; }
.termcard__ic { flex: none; width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: var(--sand-soft); color: var(--green); font-size: 16px; }
.terms-col--promo .termcard__ic { background: var(--gold); color: #fff; }
.termcard > div > strong { display: block; font-size: 15px; margin-bottom: 2px; }
.termcard--offer { background: #fbf6e8; border: 1px solid var(--gold); border-radius: 12px; padding: 13px 15px; margin-top: 8px; }
.termcard--offer .termcard__ic { background: var(--gold); color: #fff; }
.offer-ribbon { background: var(--gold); color: var(--green-dark); }
.offer-ribbon .wrap { padding-top: 12px; padding-bottom: 12px; }
.offer-ribbon p { margin: 0; font-size: 15px; font-weight: 700; text-align: center; }
.offer-ribbon i { margin-right: 6px; }
.termcard p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* 32. Member-exclusive table row + Twilight summer-deal box ------------------ */
.cmp__row--excl { background: rgba(199,154,43,.09); }
.excl-badge { display: inline-flex; align-items: center; gap: 5px; vertical-align: middle; margin-left: 8px; background: var(--gold); color: var(--green-dark); font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.cmp__row--excl .cmp__v { color: var(--gold-dark); font-weight: 700; }
.cmp__row--deal { background: rgba(199,154,43,.07); }
.deal-badge { display: inline-flex; align-items: center; gap: 5px; vertical-align: middle; margin-left: 8px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.cmp__v s, .cmp__pts s { color: var(--muted); font-weight: 600; margin-right: 6px; }

/* Twilight — full-width stacked summer-deal banners */
.twibanner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; padding: 13px 16px; margin-top: 12px; border: 1px solid rgba(199,154,43,.32); border-radius: var(--radius-sm); background: linear-gradient(90deg, rgba(199,154,43,.16), rgba(199,154,43,.06)); }
.twibanner__tag { display: inline-flex; align-items: center; gap: 7px; flex: none; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); color: #fff; font-weight: 800; font-size: 12px; letter-spacing: .03em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.twibanner__when { font-weight: 700; color: var(--green); flex: 1 1 auto; }
.twibanner__deal { white-space: nowrap; color: var(--ink); }
.twibanner__deal em { font-style: normal; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.twibanner__deal s { color: var(--muted); margin-right: 5px; }
.twibanner__deal b { color: var(--gold-dark); font-weight: 800; }
@media (max-width: 560px) { .twibanner__when { flex: 1 1 100%; } }

.twilight { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.twilight__banner { display: flex; align-items: center; gap: 10px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); color: #fff; font-weight: 800; font-size: clamp(1rem, 2vw, 1.15rem); padding: 13px 20px; }
.twilight__banner i { font-size: 1.15em; }
.twilight__body { padding: 16px 22px 20px; }
.twilight__body > p { margin: 0 0 12px; color: var(--muted); font-size: 14.5px; }
.tw-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--line); }
.tw-head { border-top: 0; padding: 0 0 6px; color: var(--muted); font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.tw-head span { text-align: center; }
.tw-head span:first-child { text-align: left; }
.tw-when strong { display: block; }
.tw-when small { color: var(--muted); font-size: 12.5px; }
.tw-v, .tw-p { text-align: center; }
.tw-v s, .tw-p s { color: var(--muted); font-weight: 600; margin-right: 7px; }
.tw-v b { font-weight: 800; color: var(--green); font-size: 1.15rem; }
.tw-p b { font-weight: 800; color: var(--gold-dark); font-size: 1.15rem; }
.tw-row .lbl { display: none; }
@media (max-width: 600px) {
  .tw-head { display: none; }
  .tw-row { grid-template-columns: 1fr 1fr; row-gap: 6px; }
  .tw-when { grid-column: 1 / -1; }
  .tw-v, .tw-p { text-align: left; }
  .tw-row .lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
}

.ticks--2col { display: grid; gap: 11px; }
@media (min-width: 720px) { .ticks--2col { grid-template-columns: 1fr 1fr; column-gap: 34px; } }

/* ---- Quote Builder ---- */
.hero--mini { min-height: 0; background: var(--green-dark); }
.hero--mini .wrap { padding: 24px 24px 20px; }
.hero--mini .eyebrow { margin-bottom: 5px; }
.hero--mini h1 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 0 0 7px; max-width: none; }
.hero--mini .sub { max-width: 78ch; font-size: 0.96rem; margin-bottom: 0; }
.section--qb { padding: 22px 0 40px; }
.qb-step .sec-head { margin-bottom: 22px; }
.sec-head--tight { text-align: left; margin: 0 0 18px; }
.sec-head--tight h2 { margin: 4px 0 0; }

.qb-types { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .qb-types { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .qb-types { grid-template-columns: 1fr 1fr 1fr; } }
.qb-type { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; cursor: pointer; font-family: var(--sans); color: inherit; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
.qb-type:hover { border-color: var(--gold); transform: translateY(-2px); }
.qb-type__ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  background: var(--gold-tint, rgba(196,160,82,.16)); color: var(--green-dark); font-size: 19px; margin-bottom: 4px; }
.qb-type__name { font-size: 1.18rem; font-weight: 800; }
.qb-type__desc { font-size: 14px; color: var(--muted); }
.qb-type--link { border-style: dashed; }

.qb-main { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .qb-main { grid-template-columns: 1.35fr 1fr; } }
.qb-back { background: none; border: 0; color: var(--green); font-weight: 700; cursor: pointer; padding: 0 0 14px; font-family: var(--sans); font-size: 14.5px; }
.qb-back:hover { text-decoration: underline; }

.qb-field { margin: 0 0 18px; }
.qb-field > label, .qb-field__label { display: block; font-weight: 700; margin-bottom: 7px; }
.qb-field input[type="number"] { width: 130px; max-width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.qb-opts { display: grid; gap: 10px; }
@media (min-width: 520px) { .qb-opts { grid-template-columns: 1fr 1fr; } }
.qb-opt { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; background: var(--white); }
.qb-opt.is-sel { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.qb-opt input { margin-top: 3px; }
.qb-opt__main { font-weight: 700; line-height: 1.25; }
.qb-opt__sub { display: block; font-weight: 500; font-size: 13px; color: var(--muted); margin-top: 2px; }

.qb-addons { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.qb-addons h3 { margin: 0 0 4px; }
.qb-addon { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin: 12px 0 0; background: var(--white); }
.qb-addon.is-on { border-color: var(--gold); background: var(--paper); }
.qb-addon__head { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.qb-addon__head input { width: 18px; height: 18px; flex: none; }
.qb-addon__title { font-weight: 700; flex: 1 1 auto; }
.qb-addon__price { font-weight: 800; color: var(--green-dark); font-size: 14px; white-space: nowrap; }
.qb-addon__desc { margin: 8px 0 0 29px; font-size: 14px; color: var(--muted); }
.qb-addon__desc a { color: var(--green); font-weight: 700; white-space: nowrap; }
.qb-qty { margin: 10px 0 2px 29px; }
.qb-qty input { width: 88px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; font: inherit; margin-left: 6px; }

.qb-summary { position: sticky; top: 92px; }
.qb-sum-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.qb-sum-head h3 { margin: 2px 0 0; }
.qb-sum-room { margin: 14px 0; padding: 10px 12px; background: var(--paper); border-radius: 10px; font-weight: 700; font-size: 14.5px; }
.qb-sum-lines { border-top: 1px solid var(--line); padding-top: 12px; }
.qb-sum-row { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.qb-sum-row span:last-child { font-weight: 700; white-space: nowrap; }
.qb-soft { color: var(--muted); font-weight: 600; }
.qb-sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.qb-sum-total > span:first-child { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 13px; color: var(--muted); }
.qb-total-val { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.qb-sum-vat { text-align: right; color: var(--muted); font-size: 13.5px; }
.qb-sum-poa { font-size: 13px; color: var(--muted); margin: 6px 0 0; }
.qb-tailor { font-size: 13px; color: var(--green-dark); background: var(--paper); border-radius: 8px; padding: 10px 12px; margin: 12px 0 0; }
.qb-confirm { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-style: italic; }
.qb-warn { margin-top: 14px; }
.qb-warn p { background: rgba(196,160,82,.12); border-left: 3px solid var(--gold); padding: 9px 12px; margin: 8px 0 0; font-size: 13.5px; border-radius: 0 8px 8px 0; }
.qb-sum-actions { margin-top: 18px; display: grid; gap: 10px; }
.btn--block { width: 100%; text-align: center; justify-content: center; }

.qb-contact { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.qb-grid2 { display: grid; gap: 0 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .qb-grid2 { grid-template-columns: 1fr 1fr; }
  /* Bottom-align inputs so a wrapped label never pushes its box out of line with its neighbour */
  .qb-contact .qb-grid2 .qb-field { display: flex; }
  .qb-contact .qb-grid2 .qb-field > label { display: flex; flex-direction: column; width: 100%; }
  .qb-contact .qb-grid2 .qb-field > label > input,
  .qb-contact .qb-grid2 .qb-field > label > select { margin-top: auto; }
}
.qb-contact .qb-field label { display: block; font-weight: 700; margin-bottom: 6px; }
.qb-contact input[type="text"], .qb-contact input[type="email"], .qb-contact input[type="tel"],
.qb-contact input[type="date"], .qb-contact textarea, .qb-contact select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; font: inherit; margin-top: 4px; background: #fff; }
.qb-contact textarea { resize: vertical; }
.qb-file input[type="file"] { width: 100%; padding: 10px 12px; border: 1px dashed var(--line); border-radius: 10px; font: inherit; margin-top: 4px; background: #fafaf7; cursor: pointer; }
.qb-file__note { font-size: 12.5px; color: var(--muted); margin: 5px 0 0; }
.qb-check a { color: var(--green); text-decoration: underline; }
.qb-help { font-size: 12.5px; color: var(--muted); margin: 2px 0 14px; }
.qb-check { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 0; font-size: 14.5px; cursor: pointer; }
.qb-check input { width: 17px; height: 17px; margin-top: 2px; flex: none; }
.qb-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.qb-err { color: #b3261e; font-weight: 600; font-size: 14px; margin: 12px 0 0; }
/* FAQ topic tiles — merged quick actions + FAQs (hover to open on desktop, tap on mobile) */
.faq-tiles { display: grid; gap: var(--gap); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 680px) { .faq-tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .faq-tiles { grid-template-columns: 1fr 1fr 1fr; } }
.faq-tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-tile__head { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; font: inherit; color: inherit; }
.faq-tile__ico { color: var(--green); font-size: 1.35rem; flex: none; margin-top: 2px; }
.faq-tile__head > span { flex: 1; }
.faq-tile__title { display: block; font-weight: 800; font-size: 1.15rem; line-height: 1.2; }
.faq-tile__teaser { display: block; color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.faq-tile__chev { color: var(--muted); flex: none; margin-top: 4px; transition: transform .3s ease; }
.faq-tile__body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-tile__inner { padding: 4px 22px 22px; border-top: 1px solid var(--line); }
.faq-tile__inner h4 { margin: 16px 0 4px; }
.faq-tile__inner p { color: var(--muted); margin: 0 0 4px; }
.faq-tile__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.faq-tile__cta .btn { font-size: 14px; }
@media (hover: hover) {
  .faq-tile:hover .faq-tile__body { max-height: 4000px; }
  .faq-tile:hover .faq-tile__chev { transform: rotate(180deg); }
}
.faq-tile.is-open .faq-tile__body { max-height: 4000px; }
.faq-tile.is-open .faq-tile__chev { transform: rotate(180deg); }

/* Pay & play activity pages (mini golf / foot golf) */
.hero-note { font-size: 1.05rem; margin: 2px 0 16px; color: #fff; }
.hero-note i { color: var(--gold); margin-right: 4px; }
.playnote { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; text-align: center; background: #fbf6e8; border: 1px solid var(--gold); border-radius: 14px; padding: 18px 22px; margin: 24px auto 0; max-width: 660px; }
.playnote p { margin: 0; font-size: 1.05rem; color: var(--green-dark); }
.playnote .btn { flex: none; }

/* Instagram Reels / feed embeds on event pages reuse the .ig-grid system above */
/* Opening-times split (facilities vs restaurant) */
.hours-split { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 8px; }
@media (min-width: 560px) { .hours-split { grid-template-columns: 1fr 1fr; } }
.hours-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; }
.hours-block h4 { margin: 0 0 8px; font-size: 1.05rem; }
.hours-block h4 i { color: var(--green); margin-right: 6px; }
.hours-block .hours-big { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); margin: 0 0 4px; }
.hours-tbl { width: 100%; border-collapse: collapse; }
.hours-tbl th { text-align: left; font-weight: 600; padding: 4px 12px 4px 0; vertical-align: top; white-space: nowrap; }
.hours-tbl td { text-align: right; padding: 4px 0; color: var(--muted); }

.pdf-frame { width: 100%; height: 560px; border: 1px solid var(--line); border-radius: 10px; background: #fff; display: block; }
.offer-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.offer-tile { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.offer-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.offer-tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: #f0ede4; }
.offer-tile__body { padding: 13px 15px; }
.offer-tile__body h3 { margin: 0 0 4px; font-size: 1.05rem; }
.offer-tile__body .muted { display: block; font-size: 13px; margin-bottom: 6px; }
.prices--center .price-card { text-align: center; }
.xmas-dates { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 720px; margin: 0 auto; }
@media (max-width: 560px) { .xmas-dates { grid-template-columns: 1fr; } }
.xmas-date { background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 24px 16px; text-align: center; }
.xmas-date__day { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 800; color: var(--green-dark); line-height: 1.15; }
.xmas-date__mon { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }
.ig-grid { margin-top: 26px; }
.ig-grid--solo { grid-template-columns: 1fr !important; max-width: 620px; margin-left: auto; margin-right: auto; }
.ig-grid--even { grid-template-columns: 1fr 1fr; }
.ig-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 860px) { .ig-grid--even, .ig-grid--3 { grid-template-columns: 1fr; } }
.ig-btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.qb-main--done { display: block; }
.qb-done-wrap { max-width: 600px; margin: 30px auto; }
.mb-note { display: flex; align-items: flex-start; gap: 4px; font-size: 13.5px; line-height: 1.5; color: var(--green-dark); background: #fbf6e8; border: 1px solid var(--gold); border-radius: 10px; padding: 11px 14px; margin: 0 0 16px; }
.mb-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.mb-modal[hidden] { display: none; }
.mb-modal__backdrop { position: absolute; inset: 0; background: rgba(20,28,27,.55); }
.mb-modal__box { position: relative; background: #fff; border-radius: 16px; max-width: 440px; width: 100%; padding: 30px 26px 24px; box-shadow: 0 24px 60px rgba(0,0,0,.3); text-align: center; }
.mb-modal__x { position: absolute; top: 8px; right: 14px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; }
.mb-modal__ico { width: 56px; height: 56px; border-radius: 50%; background: #fbf6e8; color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.mb-modal__box h3 { margin: 0 0 8px; }
.mb-modal__box > p { color: var(--muted); margin: 0 0 10px; }
.mb-modal__list { text-align: left; margin: 0 0 18px; padding-left: 20px; display: grid; gap: 8px; }
.mb-modal__list li { color: var(--green-dark); line-height: 1.5; }
.qb-done { text-align: center; }
.qb-done__ico { color: var(--green); font-size: 2.6rem; margin-bottom: 6px; }

.qb-saving span:last-child { color: #1b7f4d; font-weight: 700; }
.mb-benefits { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.mb-benefits h4 { margin: 0 0 8px; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.mb-benefits ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.mb-benefits li { position: relative; padding-left: 24px; font-size: 14.5px; }
.mb-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }

.qb-fail { margin-top: 14px; padding: 16px; border: 1px solid rgba(179, 38, 30, .35); background: rgba(179, 38, 30, .05); border-radius: 12px; }
.qb-fail__title { font-weight: 700; color: #b3261e; margin: 0 0 8px; }
.qb-fail__steps { margin: 8px 0 14px; padding-left: 20px; font-size: 14px; display: grid; gap: 5px; }
.qb-fail .btn { margin-top: 8px; }
.qb-fail .btn i { margin-right: 7px; }

.qb-lbl { display: block; font-weight: 700; margin-bottom: 6px; }
.qb-input { width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.qb-intro { font-size: 14.5px; color: var(--muted); background: var(--paper); border-radius: 10px; padding: 12px 14px; margin: 0 0 18px; }
.qb-intro a { color: var(--green); font-weight: 700; white-space: nowrap; }
.qb-wed { font-size: 14.5px; margin: 14px 0; }
