:root {
  --forest: #214C3A;
  --deep: #0F2E1E;
  --deep-2: #07170F;
  --gold: #B08D57;
  --gold-soft: #D3B67F;
  --cream: #F4E9D8;
  --cream-2: #FBF7F0;
  --white: #FFFFFF;
  --ink: #181A17;
  --muted: #5E665F;
  --line: rgba(15, 46, 30, 0.16);
  --line-light: rgba(244, 233, 216, 0.16);
  --shadow: 0 24px 70px rgba(15, 46, 30, 0.14);
  --shadow-dark: 0 32px 80px rgba(0, 0, 0, 0.24);
  --radius: 24px;
  --radius-sm: 16px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { color: inherit; }

p { margin: 0 0 1rem; }

h1, h2 {
  margin: 0 0 1.15rem;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(3.8rem, 8vw, 8.8rem); }
h2 { font-size: clamp(2.7rem, 5vw, 5.1rem); color: var(--forest); }

h3 {
  margin: 0 0 0.75rem;
  color: var(--forest);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

ul { margin: 0; padding: 0; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 20px rgba(176, 141, 87, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 233, 216, 0.93);
  border-bottom: 1px solid rgba(15, 46, 30, 0.10);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 233, 216, 0.98);
  box-shadow: 0 10px 34px rgba(15, 46, 30, 0.10);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand-logo {
  width: 220px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--forest);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.1rem;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--deep); opacity: 1; }
.site-nav > a:hover::after,
.site-nav > a.is-active::after { width: 100%; }

.nav-cta,
.legal-back {
  padding: 0.82rem 1rem !important;
  border: 1px solid rgba(176, 141, 87, 0.75);
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.14);
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.nav-cta:hover,
.legal-back:hover {
  background: rgba(176, 141, 87, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  appearance: none;
  border: 1px solid rgba(33, 76, 58, 0.55);
  border-radius: 999px;
  background: transparent;
  padding: 0.7rem 0.9rem;
  color: var(--forest);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

.section { padding: clamp(5rem, 9vw, 8.5rem) 0; position: relative; }

.section-dark {
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 12%, rgba(176, 141, 87, 0.17), transparent 32rem),
    radial-gradient(circle at 8% 82%, rgba(33, 76, 58, 0.55), transparent 28rem),
    linear-gradient(135deg, var(--deep), #0A2417 58%, var(--deep-2));
}

.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(244, 233, 216, 0.84); }

.section-cream { background: var(--cream); }
.section-white { background: var(--cream-2); }

.eyebrow,
.mini-label {
  margin: 0 0 0.85rem;
  color: var(--gold) !important;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-label { letter-spacing: 0.12em; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--deep); box-shadow: 0 14px 32px rgba(176, 141, 87, 0.25); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(176, 141, 87, 0.34); }
.button-secondary { border-color: rgba(244, 233, 216, 0.35); background: rgba(244, 233, 216, 0.08); color: var(--cream); }
.button-secondary:hover { background: rgba(244, 233, 216, 0.14); }
.button-disabled { border-color: rgba(244, 233, 216, 0.16); background: rgba(244, 233, 216, 0.07); color: rgba(244, 233, 216, 0.58); cursor: default; }
.button-disabled:hover { transform: none; }

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(176, 141, 87, 0.30);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -380px;
  bottom: -460px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(176, 141, 87, 0.03), 0 0 0 150px rgba(176, 141, 87, 0.02);
}

.hero-watermark {
  position: absolute;
  top: 6%;
  right: 4%;
  width: min(48vw, 620px);
  opacity: 0.035;
  transform: rotate(-6deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero-copy h1 span { color: var(--gold-soft); }

.hero-lede {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.7vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof span,
.service-area span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(244, 233, 216, 0.18);
  border-radius: 999px;
  color: rgba(244, 233, 216, 0.82);
  font-size: 0.8rem;
}

.simulator-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(244, 233, 216, 0.18);
  border-radius: 28px;
  background: rgba(244, 233, 216, 0.09);
  box-shadow: var(--shadow-dark);
  transform-style: preserve-3d;
  will-change: transform;
}

.simulator-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.45), transparent 42%, rgba(244, 233, 216, 0.12));
  filter: blur(14px);
  opacity: 0.55;
}

.simulator-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0.85rem;
  color: rgba(244, 233, 216, 0.72);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simulator-topbar span { display: inline-flex; align-items: center; gap: 0.45rem; }
.simulator-topbar strong { color: var(--gold-soft); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #8BCB8A; box-shadow: 0 0 0 5px rgba(139, 203, 138, 0.12); }

.simulator-screen {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 9px solid #07130D;
  border-radius: 18px;
  background: linear-gradient(#BFD2D2 0 47%, #719260 47% 100%);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.16), 0 12px 24px rgba(0,0,0,0.20);
  transition: filter 0.45s ease, background 0.45s ease;
}

.simulator-screen[data-hero-screen="league"] { filter: saturate(1.08) contrast(1.03); }
.simulator-screen[data-hero-screen="event"] { filter: sepia(0.10) saturate(1.12); }

.screen-sky { position: absolute; inset: 0 0 48%; background: linear-gradient(#BFD2D2, #E7E1C9); }
.screen-mountains {
  position: absolute;
  left: -4%; right: -4%; top: 26%; height: 30%;
  background: #5C745F;
  clip-path: polygon(0 80%, 12% 55%, 22% 67%, 35% 26%, 48% 63%, 59% 32%, 71% 61%, 83% 42%, 100% 70%, 100% 100%, 0 100%);
  opacity: 0.82;
}
.screen-fairway {
  position: absolute;
  left: 14%; right: 12%; bottom: -10%; height: 64%;
  background: linear-gradient(90deg, #5C8051, #83A967 45%, #5C8051);
  clip-path: polygon(38% 0, 61% 0, 100% 100%, 0 100%);
}
.screen-green { position: absolute; width: 34%; height: 19%; left: 53%; top: 48%; border-radius: 50%; background: #8DB56E; transform: rotate(-8deg); }
.screen-flag { position: absolute; left: 70%; top: 43%; width: 2px; height: 56px; background: #F6EEDC; }
.screen-flag::after { content: ""; position: absolute; top: 0; left: 2px; width: 27px; height: 16px; background: var(--gold); clip-path: polygon(0 0,100% 50%,0 100%); }

.shot-tracer { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.shot-tracer path { fill: none; stroke: #F3CF74; stroke-width: 5; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(243,207,116,0.8)); stroke-dasharray: 620; stroke-dashoffset: 620; animation: drawTracer 2.8s ease-in-out infinite; }
.tracer-ball { fill: #FFF7DE; filter: drop-shadow(0 0 7px rgba(255,247,222,0.95)); }

@keyframes drawTracer {
  0% { stroke-dashoffset: 620; opacity: 0; }
  14% { opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.screen-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  background: rgba(7, 23, 15, 0.65);
  color: white;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.launch-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0.75rem 0;
  overflow: hidden;
  border: 1px solid rgba(244, 233, 216, 0.15);
  border-radius: 14px;
}

.launch-data div { padding: 0.8rem; border-right: 1px solid rgba(244, 233, 216, 0.15); background: rgba(15, 46, 30, 0.48); }
.launch-data div:last-child { border-right: 0; }
.launch-data span { display: block; color: rgba(244, 233, 216, 0.55); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.08em; }
.launch-data strong { display: block; margin-top: 0.18rem; color: var(--cream); font-family: "EB Garamond", Georgia, serif; font-size: 1.35rem; line-height: 1; }

.mode-switcher { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.mode-button {
  appearance: none;
  border: 1px solid rgba(244, 233, 216, 0.16);
  border-radius: 999px;
  background: transparent;
  padding: 0.65rem;
  color: rgba(244, 233, 216, 0.62);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mode-button:hover,
.mode-button.is-active { background: var(--gold); border-color: var(--gold); color: var(--deep); }

.house-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  border: 1px solid rgba(244, 233, 216, 0.16);
  border-radius: 18px;
  background: rgba(244, 233, 216, 0.06);
  backdrop-filter: blur(10px);
}

.house-stats div { min-height: 130px; padding: 1.2rem; border-right: 1px solid rgba(244, 233, 216, 0.14); }
.house-stats div:last-child { border-right: 0; }
.house-stats strong { display: block; color: var(--gold-soft); font-family: "EB Garamond", Georgia, serif; font-size: 3rem; line-height: 1; }
.house-stats span { display: block; margin-top: 0.4rem; color: rgba(244, 233, 216, 0.72); font-size: 0.83rem; }

.split,
.location-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.2rem, 6vw, 5.5rem);
  align-items: start;
}

.copy-stack { max-width: 650px; font-size: 1.05rem; }

.section-heading { max-width: 800px; text-align: center; }
.section-heading p { max-width: 690px; margin-left: auto; margin-right: auto; }

.experience-shell {
  margin-top: 3.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(251, 247, 240, 0.72);
  box-shadow: var(--shadow);
}

.experience-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.experience-tab {
  appearance: none;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.58);
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.experience-tab:last-child { border-right: 0; }
.experience-tab span { color: var(--gold); font-family: "EB Garamond", Georgia, serif; font-size: 1.4rem; }
.experience-tab:hover { background: white; color: var(--forest); }
.experience-tab.is-active { background: var(--deep); color: var(--cream); }

.experience-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}
.experience-panel h3 { max-width: 680px; font-family: "EB Garamond", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; letter-spacing: -0.025em; }
.experience-copy > p:not(.mini-label) { max-width: 620px; font-size: 1.03rem; }

.check-list { list-style: none; display: grid; gap: 0.65rem; margin-top: 1.4rem; }
.check-list li { position: relative; padding-left: 1.7rem; color: var(--forest); font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.48rem; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(176, 141, 87, 0.13); }

.experience-visual {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(176,141,87,0.28), transparent 40%),
    linear-gradient(135deg, var(--deep), #153D2A);
  color: var(--cream);
}
.experience-visual::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(244,233,216,0.14); border-radius: 17px; }
.data-ring {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 76%, rgba(244,233,216,0.12) 76% 100%);
  box-shadow: 0 0 0 14px rgba(244,233,216,0.04), 0 20px 40px rgba(0,0,0,0.20);
}
.data-ring::before { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--deep); }
.data-ring span,
.data-ring small { position: relative; z-index: 2; }
.data-ring span { font-family: "EB Garamond", Georgia, serif; font-size: 2.8rem; line-height: 1; }
.data-ring small { margin-top: 0.1rem; color: rgba(244,233,216,0.62); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; }

.visual-chart { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 2.3rem; height: 64px; display: flex; align-items: end; justify-content: center; gap: 0.45rem; }
.visual-chart span { width: 18px; height: var(--bar); border-radius: 999px 999px 4px 4px; background: rgba(244,233,216,0.28); animation: pulseBars 2.4s ease-in-out infinite alternate; }
.visual-chart span:nth-child(2) { animation-delay: 0.12s; }
.visual-chart span:nth-child(3) { animation-delay: 0.24s; }
.visual-chart span:nth-child(4) { animation-delay: 0.36s; }
.visual-chart span:nth-child(5) { animation-delay: 0.48s; }
@keyframes pulseBars { from { transform: scaleY(0.82); opacity: 0.55; } to { transform: scaleY(1); opacity: 1; } }
.visual-caption { position: absolute; left: 1.2rem; bottom: 0.75rem; color: rgba(244,233,216,0.55); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feature-card {
  position: relative;
  min-height: 230px;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 240, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.feature-card::after { content: ""; position: absolute; left: 1.5rem; right: 1.5rem; bottom: 0; height: 4px; border-radius: 999px 999px 0 0; background: var(--gold); transform: scaleX(0.25); transform-origin: left; transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-7px); background: white; box-shadow: 0 20px 45px rgba(15,46,30,0.10); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-number { display: block; margin-bottom: 2.2rem; color: var(--gold); font-family: "EB Garamond", Georgia, serif; font-size: 2.6rem; line-height: 1; }

.membership-explorer {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.membership-selector { display: grid; gap: 0.65rem; }
.membership-option {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.membership-option:hover { transform: translateX(4px); border-color: rgba(176,141,87,0.55); }
.membership-option.is-active { background: var(--deep); border-color: var(--deep); color: var(--cream); box-shadow: 0 14px 36px rgba(15,46,30,0.18); }
.membership-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--forest); font-family: "EB Garamond", Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.membership-option.is-active .membership-icon { background: var(--gold); color: var(--deep); }
.membership-option strong { display: block; font-family: "Montserrat", system-ui, sans-serif; font-size: 0.84rem; }
.membership-option small { display: block; margin-top: 0.1rem; color: var(--muted); font-size: 0.72rem; }
.membership-option.is-active small { color: rgba(244,233,216,0.60); }

.membership-detail {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}
.membership-detail::before { content: "HH"; position: absolute; right: -2rem; bottom: -5rem; color: rgba(33,76,58,0.045); font-family: "EB Garamond", Georgia, serif; font-size: 18rem; font-weight: 700; line-height: 1; }
.membership-detail h3 { max-width: 680px; font-family: "EB Garamond", Georgia, serif; font-size: clamp(2rem, 3.7vw, 3.8rem); line-height: 1; letter-spacing: -0.025em; }
.membership-detail > div { position: relative; z-index: 2; }
.membership-benefits { align-self: end; padding: 1.25rem; border-left: 3px solid var(--gold); background: rgba(255,255,255,0.42); }
.membership-benefits > p { margin-bottom: 0.7rem; color: var(--gold); font-family: "Montserrat", system-ui, sans-serif; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.membership-benefits ul { list-style: none; display: grid; gap: 0.55rem; }
.membership-benefits li { position: relative; padding-left: 1.2rem; font-size: 0.92rem; }
.membership-benefits li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.membership-note { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.membership-note span { color: var(--muted); font-size: 0.78rem; }
.membership-note strong { color: var(--forest); font-family: "Montserrat", system-ui, sans-serif; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }

.events-section { overflow: hidden; }
.events-section::before { content: ""; position: absolute; left: -180px; top: 30%; width: 440px; height: 440px; border: 1px solid rgba(176,141,87,0.14); border-radius: 50%; box-shadow: 0 0 0 55px rgba(176,141,87,0.025), 0 0 0 110px rgba(176,141,87,0.018); }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3.5rem; }
.event-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid rgba(244,233,216,0.16);
  border-radius: var(--radius);
  background: rgba(244,233,216,0.07);
  transform-style: preserve-3d;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.event-card:hover { background: rgba(244,233,216,0.11); border-color: rgba(176,141,87,0.45); }
.event-card > span { display: block; margin-bottom: 4.5rem; color: var(--gold); font-family: "EB Garamond", Georgia, serif; font-size: 2.5rem; }
.event-card ul { list-style: none; display: grid; gap: 0.55rem; margin-top: 1.2rem; }
.event-card li { position: relative; padding-left: 1.1rem; color: rgba(244,233,216,0.66); font-size: 0.82rem; }
.event-card li::before { content: ""; position: absolute; left: 0; top: 0.52rem; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.event-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; top: -100px; border: 1px solid rgba(176,141,87,0.16); border-radius: 50%; transition: transform 0.4s ease; }
.event-card:hover::after { transform: translate(-28px, 28px) scale(1.15); }

.location-grid { align-items: center; }
.location-note { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 3px solid var(--gold); background: rgba(251,247,240,0.55); color: var(--forest); font-weight: 600; }
.service-area { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.service-area span { border-color: rgba(33,76,58,0.18); color: var(--forest); background: rgba(251,247,240,0.55); }

.map-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.map-card img { width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; }
.map-card figcaption { padding: 0.8rem 1rem; color: var(--muted); font-size: 0.72rem; background: white; }
.map-pulse {
  position: absolute;
  left: 34.2%;
  top: 58.5%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 0 rgba(176,141,87,0.45);
  animation: mapPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes mapPulse { 0% { box-shadow: 0 0 0 0 rgba(176,141,87,0.48); } 70% { box-shadow: 0 0 0 26px rgba(176,141,87,0); } 100% { box-shadow: 0 0 0 0 rgba(176,141,87,0); } }

.faq-grid { grid-template-columns: 0.74fr 1.26fr; }
.faq-intro { position: sticky; top: calc(var(--header-height) + 32px); }
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; }
.faq-item h3 { margin: 0; }
.faq-item button {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  color: var(--forest);
  text-align: left;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}
.faq-item button i { position: relative; flex: 0 0 22px; width: 22px; height: 22px; border: 1px solid rgba(33,76,58,0.24); border-radius: 50%; }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; left: 5px; right: 5px; top: 9px; height: 2px; background: var(--forest); transition: transform 0.2s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--muted); }
.faq-answer p { margin: 0; }

.updates-section { padding-top: 5rem; padding-bottom: 5rem; }
.updates-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid rgba(244,233,216,0.18);
  border-radius: 28px;
  background: rgba(244,233,216,0.07);
  box-shadow: var(--shadow-dark);
}
.updates-card h2 { font-size: clamp(2.5rem, 4.2vw, 4.2rem); }
.updates-benefits { display: grid; gap: 0.7rem; }
.updates-benefits div { display: grid; grid-template-columns: 36px 1fr; gap: 0.75rem; align-items: center; }
.updates-benefits span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(176,141,87,0.16); color: var(--gold); font-family: "EB Garamond", Georgia, serif; }
.updates-benefits p { margin: 0; font-size: 0.85rem; }

.site-footer { padding: 3rem 0 1.2rem; background: var(--deep-2); color: rgba(244,233,216,0.70); border-top: 1px solid rgba(244,233,216,0.10); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 2rem; align-items: start; }
.footer-grid strong { display: block; margin-bottom: 0.45rem; color: var(--cream); font-family: "Montserrat", system-ui, sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-grid p { margin: 0; font-size: 0.83rem; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { margin-top: 0.5rem; color: var(--gold-soft); }
.footer-links { display: grid; gap: 0.5rem; text-align: right; font-size: 0.82rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1rem; border-top: 1px solid rgba(244,233,216,0.10); font-size: 0.72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page .section { min-height: calc(100vh - var(--header-height)); }
.legal-content { max-width: 850px; }
.legal-content h1 { color: var(--forest); font-size: clamp(3.2rem, 7vw, 6rem); }
.legal-content h2 { margin-top: 2.5rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-content .button { margin-top: 1.4rem; }

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

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .simulator-card { max-width: 720px; }
  .hero-watermark { width: 72vw; top: 12%; right: -18%; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .updates-card { grid-template-columns: 1fr 1fr; }
  .updates-card .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 920px) {
  :root { --header-height: 74px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1rem 20px 2rem;
    background: rgba(244,233,216,0.99);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 0.84rem; }
  .site-nav > a::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .brand-logo { width: 190px; }

  .split,
  .location-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
  .membership-explorer { grid-template-columns: 1fr; }
  .membership-selector { grid-template-columns: repeat(5, minmax(155px, 1fr)); overflow-x: auto; padding-bottom: 0.4rem; scroll-snap-type: x mandatory; }
  .membership-option { scroll-snap-align: start; }
  .membership-detail { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 4.5rem 0; }
  .hero { padding-top: 3.5rem; }
  .hero::before { inset: 14px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-proof span { text-align: center; }
  .simulator-screen { min-height: 285px; }
  .house-stats { grid-template-columns: 1fr 1fr; }
  .house-stats div:nth-child(2) { border-right: 0; }
  .house-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(244,233,216,0.14); }
  .experience-tabs { grid-template-columns: 1fr 1fr; }
  .experience-tab:nth-child(2) { border-right: 0; }
  .experience-tab:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .experience-panel { grid-template-columns: 1fr; padding: 1.4rem; }
  .experience-visual { min-height: 270px; }
  .membership-detail { grid-template-columns: 1fr; padding: 1.5rem; }
  .membership-note { display: grid; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: auto; }
  .event-card > span { margin-bottom: 2rem; }
  .updates-card { grid-template-columns: 1fr; }
  .updates-card .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .header-inner { gap: 0.8rem; }
  .brand-logo { width: 160px; }
  .nav-toggle-label { display: none; }
  .simulator-card { padding: 0.7rem; }
  .simulator-screen { min-height: 240px; }
  .launch-data strong { font-size: 1.05rem; }
  .launch-data span { font-size: 0.55rem; }
  .house-stats { grid-template-columns: 1fr; }
  .house-stats div { border-right: 0; border-bottom: 1px solid rgba(244,233,216,0.14); }
  .house-stats div:last-child { border-bottom: 0; }
  .experience-tabs { grid-template-columns: 1fr; }
  .experience-tab { border-right: 0; border-bottom: 1px solid var(--line) !important; min-height: 64px; }
  .experience-tab:last-child { border-bottom: 0 !important; }
  .membership-selector { grid-template-columns: repeat(5, 82%); }
  .footer-brand img { width: 175px; }
}

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

/* =========================================================
   v1.2.1 responsive layout corrections
   Prevents root-level horizontal overflow and improves
   tablet/mobile hierarchy, spacing, and interactive controls.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body { overflow-x: clip; }
}

main,
section,
.site-header,
.site-footer {
  width: 100%;
  max-width: 100%;
}

.hero-grid > *,
.split > *,
.location-grid > *,
.faq-grid > *,
.experience-panel > *,
.membership-explorer > *,
.membership-detail > *,
.updates-card > *,
.footer-grid > * {
  min-width: 0;
}

.simulator-card,
.experience-shell,
.membership-explorer,
.membership-detail,
.map-card,
.updates-card {
  width: 100%;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-grid {
    gap: 3rem;
  }

  .simulator-card {
    width: min(100%, 720px);
    justify-self: center;
  }

  .hero-copy {
    max-width: 900px;
  }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 5.25rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
    line-height: 0.98;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 168px;
    max-height: 50px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    padding: 0.65rem 0.78rem;
  }

  .site-nav {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding: 3.2rem 0 2.2rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-watermark {
    top: 3%;
    right: -34%;
    width: 112vw;
    opacity: 0.025;
  }

  .hero-grid {
    gap: 2.25rem;
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.7rem;
    margin: 1.6rem 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-proof span {
    width: 100%;
    padding: 0.55rem 0.7rem;
  }

  .simulator-card {
    padding: 0.72rem;
    border-radius: 20px;
    transform: none !important;
    will-change: auto;
  }

  .simulator-card::before {
    filter: blur(8px);
  }

  .simulator-topbar {
    gap: 0.5rem;
    padding: 0.15rem 0.15rem 0.65rem;
    font-size: 0.57rem;
    letter-spacing: 0.05em;
  }

  .simulator-topbar strong {
    text-align: right;
  }

  .simulator-screen {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-width: 6px;
    border-radius: 13px;
  }

  .screen-badge {
    left: 0.55rem;
    bottom: 0.55rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .launch-data {
    margin: 0.58rem 0;
    border-radius: 12px;
  }

  .launch-data div {
    min-width: 0;
    padding: 0.65rem 0.38rem;
    text-align: center;
  }

  .launch-data span {
    font-size: 0.5rem;
    letter-spacing: 0.035em;
  }

  .launch-data strong {
    font-size: 1rem;
    white-space: nowrap;
  }

  .mode-switcher {
    gap: 0.35rem;
  }

  .mode-button {
    min-width: 0;
    padding: 0.58rem 0.25rem;
    font-size: 0.53rem;
    letter-spacing: 0.045em;
  }

  .house-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.2rem;
  }

  .house-stats div {
    min-height: 108px;
    padding: 0.95rem;
  }

  .house-stats div:nth-child(2n) {
    border-right: 0;
  }

  .house-stats div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(244, 233, 216, 0.14);
  }

  .house-stats strong {
    font-size: 2.35rem;
  }

  .house-stats span {
    font-size: 0.73rem;
    line-height: 1.35;
  }

  .split,
  .location-grid,
  .faq-grid {
    gap: 1.5rem;
  }

  .copy-stack {
    font-size: 0.98rem;
  }

  .experience-shell {
    margin-top: 2.2rem;
    border-radius: 20px;
  }

  .experience-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-tab {
    min-height: 68px;
    gap: 0.45rem;
    padding: 0.75rem 0.7rem;
    font-size: 0.64rem;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .experience-tab:nth-child(2n) {
    border-right: 0 !important;
  }

  .experience-tab:nth-child(n+3) {
    border-bottom: 0 !important;
  }

  .experience-tab span {
    font-size: 1.15rem;
  }

  .experience-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .experience-panel h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .experience-copy > p:not(.mini-label) {
    font-size: 0.95rem;
  }

  .experience-visual {
    min-height: 235px;
    border-radius: 18px;
  }

  .data-ring {
    width: 128px;
    height: 128px;
  }

  .data-ring span {
    font-size: 2.35rem;
  }

  .feature-grid {
    margin-top: 1.25rem;
  }

  .feature-card {
    min-height: 0;
    padding: 1.2rem;
  }

  .feature-number {
    margin-bottom: 1rem;
    font-size: 2.15rem;
  }

  .membership-explorer {
    gap: 1rem;
    margin-top: 2.25rem;
  }

  .membership-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .membership-option {
    min-width: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.68rem;
    border-radius: 14px;
    scroll-snap-align: none;
  }

  .membership-option:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .membership-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .membership-option strong {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .membership-option small {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .membership-detail {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 20px;
  }

  .membership-detail::before {
    right: -1rem;
    bottom: -2.25rem;
    font-size: 10rem;
  }

  .membership-detail h3 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .membership-benefits {
    align-self: auto;
    padding: 1rem;
  }

  .membership-note {
    gap: 0.5rem;
  }

  .event-grid {
    margin-top: 2.25rem;
  }

  .event-card {
    min-height: 0;
    padding: 1.2rem;
    border-radius: 18px;
  }

  .event-card > span {
    margin-bottom: 1.25rem;
    font-size: 2.15rem;
  }

  .map-card {
    border-radius: 20px;
  }

  .faq-item button {
    padding: 1rem;
    font-size: 0.78rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  .updates-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .updates-card {
    gap: 1.25rem;
    padding: 1.3rem;
    border-radius: 20px;
  }

  .updates-card h2 {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.8rem, 13.5vw, 4.2rem);
  }

  .header-inner {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 146px;
  }

  .nav-toggle {
    padding: 0.6rem 0.72rem;
  }

  .hero {
    padding-top: 2.65rem;
  }

  .screen-badge {
    display: none;
  }

  .house-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .house-stats div {
    border-right: 1px solid rgba(244, 233, 216, 0.14);
    border-bottom: 1px solid rgba(244, 233, 216, 0.14);
  }

  .house-stats div:nth-child(2n) {
    border-right: 0;
  }

  .house-stats div:nth-child(n+3) {
    border-bottom: 0;
  }

  .experience-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-tab {
    min-height: 64px;
  }

  .membership-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-option {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 0.62rem;
  }

  .membership-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .footer-brand img {
    width: 160px;
  }
}

@media (max-width: 350px) {
  .brand-logo {
    width: 132px;
  }

  .membership-selector {
    grid-template-columns: 1fr;
  }

  .membership-option:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* Hero flow correction: the primary grid and at-a-glance row must stack vertically. */
.hero {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(4rem, 6vw, 5.8rem);
  max-width: 8.5ch;
}

@media (max-width: 1050px) {
  .hero {
    align-items: stretch;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.9rem, 12.5vw, 4.5rem);
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }
}


/* =========================================================
   v1.2.2 integrated brand artwork
   Uses the HH broken-club PNG as immersive background art
   across hero and key sections while preserving readability.
   ========================================================= */

.hero,
.memberships-section,
.events-section,
.location-section,
.updates-section,
.faq-section {
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10vw -8vw auto;
  width: min(60vw, 900px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-cream.webp') center/contain no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
}

.hero-grid,
.house-stats,
.events-section > .container,
.memberships-section > .container,
.location-section > .container,
.faq-section > .container,
.updates-section > .container {
  position: relative;
  z-index: 1;
}

.memberships-section::before {
  content: "";
  position: absolute;
  right: -8vw;
  top: 4rem;
  width: min(38vw, 520px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-forest.webp') center/contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.memberships-section::after {
  content: "";
  position: absolute;
  inset: auto auto -2rem -7vw;
  width: min(24vw, 320px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-gold.webp') center/contain no-repeat;
  opacity: 0.08;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 0;
}

.events-section::before {
  content: "";
  position: absolute;
  left: -10vw;
  top: 0;
  width: min(36vw, 500px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-gold.webp') center/contain no-repeat;
  opacity: 0.1;
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 0;
}

.location-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -4rem;
  width: min(42vw, 600px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-forest.webp') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: -8vw;
  top: 2rem;
  width: min(28vw, 380px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-gold.webp') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.updates-card {
  position: relative;
  overflow: hidden;
}

.updates-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -3rem;
  width: min(28vw, 340px);
  aspect-ratio: 3200 / 2955;
  background: url('assets/images/hh-brokenclub-cream.webp') center/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.updates-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1050px) {
  .hero::after {
    width: min(72vw, 760px);
    right: -20vw;
    bottom: -4vw;
    opacity: 0.11;
  }

  .memberships-section::before {
    width: min(46vw, 460px);
    right: -12vw;
  }

  .events-section::before,
  .location-section::after,
  .faq-section::before {
    opacity: 0.05;
  }
}

@media (max-width: 720px) {
  .hero::after {
    width: 125vw;
    right: -36vw;
    bottom: 14%;
    opacity: 0.09;
  }

  .memberships-section::before {
    width: 78vw;
    right: -24vw;
    top: auto;
    bottom: 16rem;
    opacity: 0.05;
  }

  .memberships-section::after,
  .events-section::before,
  .location-section::after,
  .faq-section::before {
    width: 56vw;
    opacity: 0.045;
  }

  .events-section::before {
    left: auto;
    right: -18vw;
    top: 1rem;
    transform: rotate(-4deg);
  }

  .location-section::after {
    right: -22vw;
    bottom: 5rem;
  }

  .faq-section::before {
    left: auto;
    right: -12vw;
    top: 0;
  }

  .updates-card::after {
    width: 58vw;
    right: -12vw;
    bottom: -1.5rem;
    opacity: 0.08;
  }
}

@media (max-width: 480px) {
  .hero::after {
    width: 150vw;
    right: -52vw;
    bottom: 18%;
    opacity: 0.08;
  }

  .memberships-section::before,
  .memberships-section::after,
  .events-section::before,
  .location-section::after,
  .faq-section::before {
    opacity: 0.035;
  }

  .updates-card::after {
    width: 78vw;
    right: -20vw;
    opacity: 0.07;
  }
}

/* =========================================================
   v1.2.3 immersive concept renderings
   The uploaded renderings are treated as environmental art,
   layered beneath content and controls rather than inserted
   as isolated image blocks.
   ========================================================= */

.hero {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.97) 0%, rgba(7, 23, 15, 0.91) 39%, rgba(7, 23, 15, 0.67) 70%, rgba(7, 23, 15, 0.78) 100%),
    linear-gradient(180deg, rgba(15, 46, 30, 0.10), rgba(7, 23, 15, 0.60)),
    url('assets/renderings/sophisticated_golf_lounge_with_simulators.webp') center 48% / cover no-repeat;
  background-color: var(--deep);
}

.hero::before {
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.38), rgba(176, 141, 87, 0.09));
  border: 0;
  height: 1px;
  inset: auto 28px 28px;
  z-index: 1;
}

.hero-watermark {
  opacity: 0.025;
}

.simulator-card {
  background: rgba(7, 23, 15, 0.72);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.simulator-screen {
  min-height: 360px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.92) contrast(1.05);
}

.simulator-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 23, 15, 0.04) 45%, rgba(7, 23, 15, 0.60) 100%),
    linear-gradient(90deg, rgba(7, 23, 15, 0.08), transparent 42%, rgba(7, 23, 15, 0.10));
  pointer-events: none;
}

.simulator-screen[data-hero-screen="practice"] {
  background-image: url('assets/renderings/modern_golf_simulator_lounge_retreat.webp');
  background-position: center 48%;
}

.simulator-screen[data-hero-screen="league"] {
  background-image: url('assets/renderings/luxurious_golf_lounge_and_simulator_room.webp');
  background-position: center 48%;
}

.simulator-screen[data-hero-screen="event"] {
  background-image: url('assets/renderings/sophisticated_golf_lounge_with_simulators.webp');
  background-position: center 54%;
}

.simulator-screen .screen-sky,
.simulator-screen .screen-mountains,
.simulator-screen .screen-fairway,
.simulator-screen .screen-green,
.simulator-screen .screen-flag {
  display: none;
}

.shot-tracer,
.screen-badge {
  z-index: 2;
}

/* The experience section receives a soft environmental wash behind the cards. */
#experience {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 233, 216, 0.99) 0%, rgba(244, 233, 216, 0.96) 54%, rgba(244, 233, 216, 0.84) 100%),
    url('assets/renderings/modern_golf_simulator_lounge_retreat.webp') right 30% / 54% auto no-repeat,
    var(--cream);
}

#experience > .container {
  position: relative;
  z-index: 1;
}

.concept-art-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 3.25rem);
}

.concept-art {
  position: relative;
  min-height: clamp(390px, 38vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(15, 46, 30, 0.15);
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.concept-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 23, 15, 0.02) 24%, rgba(7, 23, 15, 0.16) 54%, rgba(7, 23, 15, 0.91) 100%),
    linear-gradient(90deg, rgba(7, 23, 15, 0.24), transparent 62%);
}

.concept-art-simulator {
  background-image: url('assets/renderings/luxurious_golf_lounge_and_simulator_room.webp');
  background-position: center 50%;
}

.concept-art-lounge {
  background-image: url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp');
  background-position: center 48%;
}

.concept-art-copy {
  width: min(100%, 610px);
  padding: clamp(1.35rem, 3vw, 2.4rem);
  color: var(--cream);
}

.concept-art-copy h3 {
  max-width: 17ch;
  color: var(--cream);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.concept-art-copy p:last-child {
  max-width: 55ch;
  margin-bottom: 0;
  color: rgba(244, 233, 216, 0.80);
}

/* Memberships use lounge imagery as an environmental edge, not a separate photo. */
.memberships-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 1) 0%, rgba(251, 247, 240, 0.985) 54%, rgba(251, 247, 240, 0.86) 73%, rgba(251, 247, 240, 0.64) 100%),
    url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') right center / 50% 100% no-repeat,
    var(--cream-2);
}

.memberships-section::before {
  background-image: url('assets/images/hh-brokenclub-forest.webp');
  opacity: 0.045;
}

.membership-explorer,
.membership-detail {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Events are built over a real room scene with a dark hospitality overlay. */
.events-section {
  background:
    linear-gradient(100deg, rgba(7, 23, 15, 0.97) 0%, rgba(7, 23, 15, 0.90) 48%, rgba(7, 23, 15, 0.79) 100%),
    linear-gradient(180deg, rgba(15, 46, 30, 0.22), rgba(7, 23, 15, 0.80)),
    url('assets/renderings/sophisticated_golf_lounge_with_simulators.webp') center / cover no-repeat;
  background-attachment: scroll;
}

.events-section::before {
  background-image: url('assets/images/hh-brokenclub-gold.webp');
  opacity: 0.07;
}

.event-card {
  background: rgba(7, 23, 15, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.event-art-banner {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  overflow: hidden;
  margin-top: clamp(1.5rem, 4vw, 3.25rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(244, 233, 216, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.94), rgba(7, 23, 15, 0.55) 54%, rgba(7, 23, 15, 0.32)),
    url('assets/renderings/luxurious_golf_lounge_and_simulator_room.webp') center / cover no-repeat;
  box-shadow: var(--shadow-dark);
}

.event-art-banner h3 {
  max-width: 17ch;
  margin-bottom: 0;
  color: var(--cream);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.event-art-banner > p {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(244, 233, 216, 0.18);
  border-radius: 16px;
  background: rgba(7, 23, 15, 0.58);
  color: rgba(244, 233, 216, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* The arrival corridor becomes a directional environmental layer. */
.location-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 233, 216, 0.99) 0%, rgba(244, 233, 216, 0.96) 55%, rgba(244, 233, 216, 0.73) 100%),
    url('assets/renderings/upscale_golf_themed_corridor_lounge.webp') right center / 45% 100% no-repeat,
    var(--cream);
}

.location-section::after {
  opacity: 0.035;
}

.map-card {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* FAQ uses a low-contrast lounge atmosphere while preserving reading comfort. */
.faq-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 1) 0%, rgba(251, 247, 240, 0.975) 64%, rgba(251, 247, 240, 0.84) 100%),
    url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') right center / 44% 100% no-repeat,
    var(--cream-2);
}

.faq-item {
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Final call-to-action becomes a hospitality scene with the copy integrated into it. */
.updates-card {
  background:
    linear-gradient(90deg, rgba(7, 23, 15, 0.95) 0%, rgba(7, 23, 15, 0.88) 53%, rgba(7, 23, 15, 0.58) 100%),
    url('assets/renderings/cozy_bar_scene_with_drinks_and_ambiance.webp') center / cover no-repeat;
}

.updates-card::after {
  background-image: url('assets/images/hh-brokenclub-cream.webp');
  opacity: 0.08;
}

@media (max-width: 1050px) {
  .hero {
    background-position: 58% center;
  }

  #experience {
    background:
      linear-gradient(180deg, rgba(244, 233, 216, 0.99), rgba(244, 233, 216, 0.95)),
      url('assets/renderings/modern_golf_simulator_lounge_retreat.webp') center / cover no-repeat;
  }

  .concept-art-grid {
    grid-template-columns: 1fr 1fr;
  }

  .memberships-section,
  .location-section,
  .faq-section {
    background-size: auto, cover;
    background-position: center, center;
  }

  .memberships-section {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.99) 0%, rgba(251, 247, 240, 0.96) 68%, rgba(251, 247, 240, 0.90) 100%),
      url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') center / cover no-repeat;
  }

  .location-section {
    background:
      linear-gradient(180deg, rgba(244, 233, 216, 0.99) 0%, rgba(244, 233, 216, 0.96) 70%, rgba(244, 233, 216, 0.90) 100%),
      url('assets/renderings/upscale_golf_themed_corridor_lounge.webp') center / cover no-repeat;
  }

  .faq-section {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.995) 0%, rgba(251, 247, 240, 0.97) 76%, rgba(251, 247, 240, 0.92) 100%),
      url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') center / cover no-repeat;
  }
}

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 23, 15, 0.94) 0%, rgba(7, 23, 15, 0.90) 48%, rgba(7, 23, 15, 0.96) 100%),
      url('assets/renderings/sophisticated_golf_lounge_with_simulators.webp') 58% center / cover no-repeat;
  }

  .simulator-screen {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .simulator-screen[data-hero-screen="practice"] {
    background-position: 57% center;
  }

  .simulator-screen[data-hero-screen="league"],
  .simulator-screen[data-hero-screen="event"] {
    background-position: center;
  }

  #experience {
    background:
      linear-gradient(180deg, rgba(244, 233, 216, 0.995), rgba(244, 233, 216, 0.97)),
      url('assets/renderings/modern_golf_simulator_lounge_retreat.webp') center / cover no-repeat;
  }

  .concept-art-grid {
    grid-template-columns: 1fr;
  }

  .concept-art {
    min-height: 390px;
    border-radius: 20px;
  }

  .concept-art-simulator {
    background-position: 58% center;
  }

  .concept-art-lounge {
    background-position: 48% center;
  }

  .concept-art-copy h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .memberships-section {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.995) 0%, rgba(251, 247, 240, 0.975) 72%, rgba(251, 247, 240, 0.94) 100%),
      url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') 58% center / cover no-repeat;
  }

  .events-section {
    background:
      linear-gradient(180deg, rgba(7, 23, 15, 0.96), rgba(7, 23, 15, 0.91)),
      url('assets/renderings/sophisticated_golf_lounge_with_simulators.webp') 50% center / cover no-repeat;
  }

  .event-art-banner {
    min-height: 420px;
    grid-template-columns: 1fr;
    align-content: end;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(7, 23, 15, 0.18), rgba(7, 23, 15, 0.94) 76%),
      url('assets/renderings/luxurious_golf_lounge_and_simulator_room.webp') 58% center / cover no-repeat;
  }

  .event-art-banner > p {
    font-size: 0.88rem;
  }

  .location-section {
    background:
      linear-gradient(180deg, rgba(244, 233, 216, 0.995), rgba(244, 233, 216, 0.97)),
      url('assets/renderings/upscale_golf_themed_corridor_lounge.webp') 50% center / cover no-repeat;
  }

  .faq-section {
    background:
      linear-gradient(180deg, rgba(251, 247, 240, 0.998), rgba(251, 247, 240, 0.975)),
      url('assets/renderings/cozy_upscale_lounge_with_intimate_seating.webp') center / cover no-repeat;
  }

  .updates-card {
    background:
      linear-gradient(180deg, rgba(7, 23, 15, 0.94) 0%, rgba(7, 23, 15, 0.90) 68%, rgba(7, 23, 15, 0.78) 100%),
      url('assets/renderings/cozy_bar_scene_with_drinks_and_ambiance.webp') 42% center / cover no-repeat;
  }
}

@media (max-width: 480px) {
  .hero {
    background-position: 56% center;
  }

  .concept-art {
    min-height: 350px;
  }

  .concept-art-copy {
    padding: 1.2rem;
  }

  .event-art-banner {
    min-height: 390px;
    padding: 1.2rem;
  }

  .event-art-banner h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
}
