/*
  No Shanks — Modern Golf Society
  Production marketing site design system.
  The site is dependency-light and can be deployed as static HTML/CSS/JS.
*/

:root {
  --cream: #f4f0e8;
  --cream-2: #ece5d8;
  --paper: #fbf8f2;
  --ink: #102b22;
  --ink-soft: #355148;
  --green: #073b2d;
  --green-2: #0d4b39;
  --green-3: #155c47;
  --red: #b84634;
  --red-dark: #8f3427;
  --brass: #ad8451;
  --line: rgba(16, 43, 34, 0.15);
  --line-strong: rgba(16, 43, 34, 0.3);
  --surface: #fbf8f2;
  --surface-raised: #ffffff;
  --header-bg: rgba(244, 240, 232, 0.9);
  --shadow: 0 24px 70px rgba(16, 43, 34, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 43, 34, 0.08);
  --font-display: "Instrument Serif", Iowan Old Style, Baskerville, Georgia, serif;
  --font-sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --container-wide: 1440px;
  --header-h: 78px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html[data-theme="dark"] {
  --cream: #0e1814;
  --cream-2: #14221c;
  --paper: #101d18;
  --ink: #f4f0e8;
  --ink-soft: #b9c5bd;
  --green: #e8ede7;
  --green-2: #dce5dd;
  --green-3: #c8d6cb;
  --red: #dc6b57;
  --red-dark: #f0806b;
  --brass: #c9a36e;
  --line: rgba(244, 240, 232, 0.14);
  --line-strong: rgba(244, 240, 232, 0.3);
  --surface: #13211b;
  --surface-raised: #182a22;
  --header-bg: rgba(14, 24, 20, 0.9);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color .2s ease, color .2s ease;
}
body.menu-open { overflow: hidden; }
img, picture, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 0.98; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--green); color: var(--cream); }

.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;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1rem;
  border-radius: 8px;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), var(--container-wide)); margin-inline: auto; }
.section { padding: clamp(76px, 8vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(48px, 5vw, 82px) 0; }
.section--paper { background: var(--paper); }
.section--cream-2 { background: var(--cream-2); }
.section--green { background: #073b2d; color: #f4f0e8; }
.section--ink { background: #102b22; color: #f4f0e8; }
.section-header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 480px); gap: 40px; align-items: end; margin-bottom: 54px; }
.section-header--single { grid-template-columns: minmax(0, 760px); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.03em; }
.section-header p { color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 44rem; }
.section--green .section-header p, .section--ink .section-header p { color: rgba(244,240,232,.72); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .73rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow--light { color: #e27761; }
.display { font-family: var(--font-display); font-size: clamp(4.1rem, 7vw, 8rem); letter-spacing: -.045em; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--ink-soft); max-width: 38rem; }
.kicker { color: var(--brass); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; }
.muted { color: var(--ink-soft); }
.rule { height: 1px; background: var(--line); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brass) 70%, transparent);
  outline-offset: 3px;
}
.button--primary { background: #073b2d; color: #fff; box-shadow: 0 10px 30px rgba(7,59,45,.14); }
.button--primary:hover { background: #0d4b39; box-shadow: 0 14px 36px rgba(7,59,45,.22); }
.button--ghost { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button--ghost:hover { background: var(--surface); }
.button--cream { background: #f4f0e8; color: #073b2d; }
.button--outline-light { border-color: rgba(244,240,232,.44); color: #f4f0e8; }
.button--small { min-height: 42px; padding: 10px 17px; font-size: .88rem; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.text-link:hover { color: var(--red); }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(16,43,34,.06); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: 178px 1fr auto; align-items: center; gap: 26px; }
.brand { color: var(--ink); display: inline-flex; width: 156px; }
.brand img { width: 100%; height: auto; }
html[data-theme="dark"] .brand img { filter: brightness(0) invert(1); }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.1vw, 34px); font-size: .88rem; }
.desktop-nav > a, .nav-dropdown > button { position: relative; color: var(--ink); opacity: .82; transition: opacity .2s, color .2s; }
.desktop-nav > a:hover, .desktop-nav > a.is-active, .nav-dropdown > button:hover, .nav-dropdown > button.is-active { opacity: 1; color: var(--green); }
.desktop-nav > a::after, .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  transform: scaleX(0);
  background: var(--green);
  transition: transform .25s var(--ease);
}
.desktop-nav > a:hover::after, .desktop-nav > a.is-active::after, .nav-dropdown > button.is-active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { border: 0; background: none; padding: 0; cursor: pointer; }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: 320px;
  padding: 12px;
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
  transition: opacity .18s ease, transform .2s var(--ease);
}
.nav-dropdown.is-open .nav-dropdown__panel { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.nav-dropdown__panel a { display: grid; gap: 3px; padding: 13px 14px; border-radius: 8px; }
.nav-dropdown__panel a:hover { background: var(--cream-2); }
.nav-dropdown__panel strong { font-size: .9rem; }
.nav-dropdown__panel span { color: var(--ink-soft); font-size: .78rem; }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.header-login { font-size: .88rem; }
.theme-toggle { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center; position: relative; }
.theme-toggle span { position: absolute; transition: opacity .2s, transform .2s; }
html[data-theme="light"] .theme-toggle__moon { opacity: 0; transform: rotate(-20deg) scale(.7); }
html[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: rotate(20deg) scale(.7); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; padding: 12px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1.5px; background: var(--ink); margin: 4px 0; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 999;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--cream);
  overflow: auto;
}
.mobile-menu__inner { padding: 30px 24px 60px; display: grid; gap: 4px; }
.mobile-menu__inner > a { font-family: var(--font-display); font-size: 2.45rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

/* Hero systems */
.page-hero { min-height: 74vh; display: grid; align-items: stretch; border-bottom: 1px solid var(--line); }
.hero-split { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.5fr); min-height: calc(74vh - var(--header-h)); }
.hero-split__copy { position: relative; z-index: 2; padding: clamp(58px, 7vw, 112px) clamp(28px, 5vw, 88px); display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.hero-split__copy::after { content: ""; position: absolute; inset: 0 -90px 0 auto; width: 160px; background: linear-gradient(90deg, var(--cream), transparent); pointer-events: none; z-index: -1; }
.hero-split__copy h1 { font-family: var(--font-display); font-size: clamp(4rem, 6.3vw, 7.4rem); letter-spacing: -.045em; max-width: 8.5ch; margin-bottom: 24px; }
.hero-split__copy .lead { margin-bottom: 30px; }
.hero-split__media { position: relative; overflow: hidden; min-height: 520px; background: var(--cream-2); }
.hero-split__media picture, .hero-split__media img { width: 100%; height: 100%; }
.hero-split__media img { object-fit: cover; transition: transform 1.3s var(--ease); }
.hero-split:hover .hero-split__media img { transform: scale(1.018); }
.hero-split__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,240,232,.15), transparent 26%), linear-gradient(0deg, rgba(7,59,45,.1), transparent 45%); pointer-events: none; }
.hero-badge { position: absolute; right: 28px; bottom: 28px; z-index: 2; padding: 12px 14px; background: rgba(7,59,45,.9); color: #fff; border-radius: 4px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }

.home-hero .hero-split { min-height: calc(78vh - var(--header-h)); }
.home-hero .hero-split__copy h1 { max-width: 9ch; }
.hero-stat { display: inline-flex; gap: 10px; align-items: center; color: var(--ink-soft); font-size: .82rem; margin-top: 26px; }
.hero-stat::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px color-mix(in srgb, var(--red) 18%, transparent); }

/* Live ticker */
.live-strip { overflow: hidden; background: #073b2d; color: #fff; border-bottom: 1px solid rgba(255,255,255,.16); }
.live-strip__inner { min-height: 46px; display: flex; align-items: center; }
.live-strip__label { flex: 0 0 auto; padding: 0 24px; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; display: flex; gap: 9px; align-items: center; border-right: 1px solid rgba(255,255,255,.18); }
.live-dot { width: 7px; height: 7px; background: #e55d48; border-radius: 50%; animation: pulse 1.8s infinite; }
.live-strip__viewport { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.live-strip__track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.live-strip:hover .live-strip__track { animation-play-state: paused; }
.live-trip { display: flex; align-items: center; gap: 16px; white-space: nowrap; padding: 0 30px; font-size: .82rem; border-right: 1px solid rgba(255,255,255,.18); }
.live-trip strong { font-weight: 600; }
.score-pill { background: var(--red); color: #fff; padding: 3px 8px; border-radius: 4px; font-variant-numeric: tabular-nums; }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { opacity: .35; transform: scale(.75); } }

/* Cards and editorial modules */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.feature-card__number { color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.icon-mark {
  display: inline-grid;
  width: 1em;
  height: 1em;
  place-items: center;
  line-height: 1;
}
.icon-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card__number.icon-mark,
.principle .icon-mark,
.itinerary__row .icon-mark {
  width: 1em;
  height: 1em;
  letter-spacing: 0;
}
.feature-card h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 2.7vw, 2.5rem); margin: 14px 0 10px; }
.feature-card p { color: var(--ink-soft); min-height: 50px; }
.feature-card__image { position: relative; aspect-ratio: 1.85; overflow: hidden; margin-top: 25px; background: var(--cream-2); }
.feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.feature-card:hover .feature-card__image img { transform: scale(1.05); }
.round-arrow { position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--ink); border: 1px solid var(--line); transition: transform .25s var(--ease); }
.feature-card:hover .round-arrow { transform: translateX(3px); }

.culture-band { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); min-height: 300px; }
.culture-band__intro { padding: clamp(34px, 3.6vw, 58px); background: #073b2d; color: #f4f0e8; display: flex; flex-direction: column; justify-content: center; gap: clamp(18px, 2vw, 28px); }
.culture-band__intro h2 { font-family: var(--font-display); font-size: clamp(2.45rem, 3.25vw, 3.75rem); line-height: .98; max-width: 9ch; }
.culture-band__intro p { color: rgba(244,240,232,.74); max-width: 27ch; }
.culture-band__image { overflow: hidden; min-height: 260px; }
.culture-band__image picture { display: block; width: 100%; height: 100%; }
.culture-band__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.culture-band__image:hover img { transform: scale(1.04); filter: saturate(1.08); }

.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--paper); }
.trust-band__label { text-align: center; margin-bottom: 14px; color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.logo-row { display: flex; gap: clamp(34px, 6vw, 94px); align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-word { color: var(--ink); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 2rem); letter-spacing: .06em; opacity: .75; }
.logo-word small { display: block; text-align: center; font-family: var(--font-sans); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 1px; }

.editorial-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; border: 1px solid var(--line); }
.editorial-split__content { padding: clamp(48px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.editorial-split__content h2 { font-family: var(--font-display); font-size: clamp(3.2rem, 5vw, 5.8rem); margin-bottom: 24px; max-width: 9ch; }
.editorial-split__media { min-height: 480px; overflow: hidden; }
.editorial-split__media picture { display: block; width: 100%; height: 100%; }
.editorial-split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.editorial-split:hover .editorial-split__media img { transform: scale(1.025); }

/* Product interface components */
.product-stage { background: #f7f3eb; color: #102b22; border: 1px solid rgba(16,43,34,.17); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
html[data-theme="dark"] .product-stage { filter: brightness(.92); }
.product-stage__bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(16,43,34,.13); background: #ece8df; }
.product-stage__dot { width: 9px; height: 9px; border-radius: 50%; background: #c3bbb0; }
.product-stage__body { display: grid; grid-template-columns: 190px 1fr; min-height: 520px; }
.product-sidebar { padding: 22px 16px; background: #0c382c; color: #fff; }
.product-sidebar__brand { font-weight: 700; letter-spacing: .08em; margin-bottom: 30px; }
.product-sidebar nav { display: grid; gap: 5px; }
.product-sidebar button { width: 100%; text-align: left; color: rgba(255,255,255,.72); background: transparent; border: 0; padding: 11px 12px; border-radius: 6px; cursor: pointer; }
.product-sidebar button.is-active, .product-sidebar button:hover { background: rgba(255,255,255,.12); color: #fff; }
.product-content { padding: clamp(24px, 4vw, 54px); min-width: 0; }
.product-content__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.product-content__head h3 { font-family: var(--font-display); font-size: 2.35rem; }
.status { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(7,59,45,.17); background: #edf5f0; color: #155c47; padding: 6px 9px; border-radius: 999px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.dashboard-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.ui-card { background: #fff; border: 1px solid rgba(16,43,34,.14); border-radius: 10px; padding: 18px; min-width: 0; }
.ui-card h4 { font-family: var(--font-sans); font-weight: 700; font-size: .78rem; line-height: 1.2; margin-bottom: 13px; }
.ui-card--span4 { grid-column: span 4; }
.ui-card--span6 { grid-column: span 6; }
.ui-card--span8 { grid-column: span 8; }
.ui-card--span12 { grid-column: span 12; }
.metric { font-family: var(--font-display); font-size: 2.1rem; }
.metric-label { color: #5d7068; font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.progress { height: 5px; border-radius: 99px; background: #e8e6df; overflow: hidden; margin-top: 14px; }
.progress span { display: block; height: 100%; background: #ad8451; }
.avatar-row { display: flex; margin-top: 12px; }
.avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #d7ded8; color: #073b2d; font-size: .62rem; font-weight: 700; border: 2px solid #fff; margin-left: -6px; }
.avatar:first-child { margin-left: 0; }
.mini-list { display: grid; gap: 9px; }
.mini-list__item { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid rgba(16,43,34,.1); font-size: .72rem; }
.mini-list__item:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-list__item .icon-mark {
  width: 22px;
  height: 22px;
}
.mini-chip { padding: 3px 7px; background: #edf5f0; color: #155c47; border-radius: 999px; font-size: .6rem; font-weight: 700; }
.product-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.product-tabs button, .pill-tabs button { border: 1px solid var(--line); background: var(--surface); color: var(--ink); border-radius: 999px; padding: 9px 14px; cursor: pointer; }
.product-tabs button.is-active, .pill-tabs button.is-active { background: var(--green); color: var(--cream); border-color: var(--green); }
.product-panel[hidden], .tab-panel[hidden] { display: none !important; }
.phone-frame { width: min(290px, 100%); margin-inline: auto; background: #111; border-radius: 38px; padding: 9px; box-shadow: 0 25px 60px rgba(0,0,0,.25); }
.phone-frame__screen { min-height: 530px; background: #faf8f2; color: #102b22; border-radius: 30px; overflow: hidden; padding: 26px 16px 18px; }
.phone-notch { width: 90px; height: 22px; border-radius: 0 0 14px 14px; background: #111; margin: -26px auto 18px; }
.phone-nav { display: flex; justify-content: space-between; font-size: .7rem; margin-bottom: 22px; }
.phone-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 6px; }
.phone-sub { color: #68756f; font-size: .68rem; margin-bottom: 18px; }
.phone-card { border: 1px solid rgba(16,43,34,.15); border-radius: 10px; padding: 13px; margin-bottom: 10px; background: #fff; }
.phone-card strong { display: block; font-size: .75rem; }
.phone-card span { color: #68756f; font-size: .65rem; }

/* Steps / timeline */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step-card { position: relative; padding: clamp(28px, 3vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 300px; }
.step-card__num { font-family: var(--font-display); font-size: 4.8rem; color: color-mix(in srgb, var(--ink) 14%, transparent); }
.step-card__num.icon-mark {
  width: 1em;
  height: 1em;
}
.step-card h3 { font-family: var(--font-display); font-size: 2.25rem; margin: 22px 0 14px; }
.step-card p { color: var(--ink-soft); }
.step-card::after { content: "→"; position: absolute; right: 22px; top: 42px; color: var(--brass); font-size: 1.6rem; }
.step-card:last-child::after { display: none; }

.role-switcher { display: grid; grid-template-columns: 260px 1fr; border: 1px solid var(--line); min-height: 560px; }
.role-switcher__nav { border-right: 1px solid var(--line); padding: 24px; background: var(--cream-2); display: grid; align-content: start; gap: 8px; }
.role-switcher__nav button { text-align: left; border: 1px solid transparent; background: transparent; color: var(--ink); padding: 15px; cursor: pointer; border-radius: 8px; }
.role-switcher__nav button.is-active { background: var(--surface-raised); border-color: var(--line); box-shadow: var(--shadow-soft); }
.role-switcher__content { padding: clamp(34px, 5vw, 76px); }
.role-switcher__content h3 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.2rem); max-width: 10ch; margin-bottom: 24px; }
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* Games */
.game-shell { border: 1px solid var(--line); background: var(--paper); }
.game-shell__top { padding: 18px 20px; background: #073b2d; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.game-format-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.game-format-tabs button { border: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.76); border-radius: 999px; padding: 8px 13px; cursor: pointer; font-size: .75rem; }
.game-format-tabs button.is-active { background: #f4f0e8; color: #073b2d; }
.game-shell__body { display: grid; grid-template-columns: 1.25fr .75fr; }
.leaderboard-wrap { padding: 24px; overflow-x: auto; background: var(--surface); border: 1px solid var(--line); }
.game-shell .leaderboard-wrap { border: 0; background: var(--paper); }
.leaderboard { width: 100%; border-collapse: collapse; min-width: 650px; font-variant-numeric: tabular-nums; color: var(--ink); }
.leaderboard th { text-align: left; font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.leaderboard td { padding: 15px 12px; border-bottom: 1px solid var(--line); color: var(--ink); }
.leaderboard td strong { color: inherit; }
.leaderboard tr:last-child td { border-bottom: 0; }
.leaderboard .pos { font-family: var(--font-display); font-size: 1.5rem; }
.negative { color: var(--red); font-weight: 700; }
.game-aside { background: var(--cream-2); border-left: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.game-aside h3 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 12px; }
.game-pot { font-family: var(--font-display); font-size: 4.2rem; margin: 10px 0; }
.game-rules { color: var(--ink-soft); }
.score-demo { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr); gap: 40px; align-items: center; }
.score-controls { display: grid; gap: 14px; }
.score-player { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 16px; border: 1px solid var(--line); background: var(--surface); }
.score-stepper { display: flex; align-items: center; gap: 9px; }
.score-stepper button { width: 34px; height: 34px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; }
.score-stepper output { width: 28px; text-align: center; font-weight: 700; }

/* Destinations */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filter-field { display: grid; gap: 6px; min-width: 170px; }
.filter-field label { font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.filter-field select { height: 44px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 0 38px 0 13px; border-radius: 999px; }
.filter-reset { margin-left: auto; border: 0; background: none; color: var(--ink); cursor: pointer; padding: 12px; }
.destination-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.destination-card { position: relative; aspect-ratio: 1.78; overflow: hidden; background: #0f2e25; color: #fff; min-height: 330px; min-width: 0; }
.destination-card[hidden] { display: none; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; object-position: var(--destination-image-position, center); transition: transform .8s var(--ease); }
.destination-card[data-region="scotland"] { --destination-image-position: center 44%; }
.destination-card[data-region="ireland"] { --destination-image-position: center 45%; }
.destination-card[data-region="cabo"] { --destination-image-position: center 48%; }
.destination-card[data-region="arizona"] { --destination-image-position: center 46%; }
.destination-card:hover img { transform: scale(1.045); }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,20,15,.76), rgba(3,20,15,.12) 62%, rgba(3,20,15,.02)); }
.destination-card__content { position: absolute; z-index: 2; inset: auto 28px 28px; }
.destination-card__tag { display: inline-block; padding: 5px 8px; background: rgba(244,240,232,.9); color: #073b2d; border-radius: 3px; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 15px; }
.destination-card h3 { font-family: var(--font-display); font-size: clamp(2.8rem, 4.2vw, 4.8rem); margin-bottom: 4px; }
.destination-card p { color: rgba(255,255,255,.76); margin-bottom: 15px; }
.destination-card__meta { display: flex; justify-content: space-between; gap: 10px; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }
.destination-detail-hero { position: relative; min-height: 72vh; display: flex; align-items: end; color: #fff; overflow: hidden; }
.destination-detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.destination-detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,22,16,.86), rgba(3,22,16,.08) 70%); }
.destination-detail-hero__content { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--container-wide)); margin: 0 auto; padding: 80px 0; }
.destination-detail-hero h1 { font-family: var(--font-display); font-size: clamp(5rem, 10vw, 10rem); letter-spacing: -.05em; }
.destination-detail-hero p { max-width: 720px; font-size: clamp(1.1rem, 2vw, 1.5rem); color: rgba(255,255,255,.8); }
.fact-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.fact { padding: 30px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact span { display: block; font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.fact strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
.itinerary { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.itinerary__row { display: grid; grid-template-columns: 100px 1fr; gap: 25px; padding: 22px; background: var(--paper); }
.itinerary__row strong { color: var(--red); }

/* Partners, operators, clubs */
.partner-doors { display: grid; grid-template-columns: 1fr 1fr; }
.partner-door { min-height: 660px; position: relative; overflow: hidden; color: #fff; display: flex; align-items: end; border-right: 1px solid rgba(255,255,255,.24); }
.partner-door:last-child { border-right: 0; }
.partner-door img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.partner-door::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,24,18,.94), rgba(4,24,18,.05) 72%); }
.partner-door:hover img { transform: scale(1.035); }
.partner-door__content { position: relative; z-index: 2; padding: clamp(38px, 5vw, 78px); }
.partner-door h2 { font-family: var(--font-display); font-size: clamp(3.6rem, 6vw, 6.7rem); margin-bottom: 20px; }
.partner-door p { max-width: 500px; color: rgba(255,255,255,.75); }
.partner-door ul { list-style: none; display: grid; gap: 9px; margin: 24px 0 30px; }
.partner-door li::before { content: "—"; margin-right: 10px; color: #d7b37d; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--paper); }
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { font-family: var(--font-display); font-size: 2.7rem; display: block; font-weight: 400; }
.stat span { color: var(--ink-soft); font-size: .75rem; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.workflow-card { border: 1px solid var(--line); background: var(--surface); padding: 22px; }
.workflow-card h3 { font-family: var(--font-display); font-size: 2rem; margin: 18px 0 8px; }
.workflow-card p { color: var(--ink-soft); }
.workflow-card .ui-card { margin-top: 25px; min-height: 225px; }
.white-label-demo { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); min-height: 620px; border: 1px solid var(--line); }
.white-label-demo__controls { background: #073b2d; color: #fff; padding: clamp(36px, 5vw, 72px); }
.white-label-demo__controls h2 { font-family: var(--font-display); font-size: clamp(3.2rem, 5vw, 5.7rem); margin-bottom: 22px; }
.white-label-demo__controls p { color: rgba(255,255,255,.7); }
.brand-options { display: grid; gap: 10px; margin-top: 30px; }
.brand-option { width: 100%; display: flex; justify-content: space-between; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; padding: 14px 16px; cursor: pointer; }
.brand-option.is-active { background: #f4f0e8; color: #073b2d; }
.white-label-demo__preview { padding: clamp(30px, 5vw, 70px); display: grid; place-items: center; background: var(--cream-2); }
.branded-page { width: min(740px, 100%); background: #fff; color: #102b22; box-shadow: var(--shadow); border-radius: 12px; overflow: hidden; }
.branded-page__nav { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(16,43,34,.12); }
.branded-page__brand { font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-color, #073b2d); }
.branded-page__hero { min-height: 260px; padding: 40px; display: flex; flex-direction: column; justify-content: end; color: #fff; background: linear-gradient(0deg, rgba(3,20,15,.75), transparent), url('/assets/images/operator-course.webp?v=persona-led-20260902') center/cover; }
.branded-page__hero h3 { font-family: var(--font-display); font-size: 3.3rem; }
.branded-page__body { padding: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.branded-page__body div { border: 1px solid rgba(16,43,34,.12); padding: 15px; min-height: 100px; }

.club-event-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
.club-event { min-width: min(370px, 82vw); aspect-ratio: 1.55; position: relative; overflow: hidden; scroll-snap-align: start; color: #fff; }
.club-event img { width: 100%; height: 100%; object-fit: cover; }
.club-event::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,20,15,.85), transparent 70%); }
.club-event__content { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; }
.club-event h3 { font-family: var(--font-display); font-size: 2rem; }

/* Journal */
.journal-toolbar { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 34px; }
.pill-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.journal-search { position: relative; min-width: 260px; }
.journal-search input { width: 100%; height: 44px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 0 42px 0 14px; }
.journal-search span { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }
.journal-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.article-card { grid-column: span 4; border: 1px solid var(--line); background: var(--surface); min-height: 420px; display: flex; flex-direction: column; }
.article-card--featured { grid-column: span 6; grid-row: span 2; }
.article-card[hidden] { display: none; }
.article-card__image { aspect-ratio: 1.75; overflow: hidden; background: var(--cream-2); }
.article-card--featured .article-card__image { aspect-ratio: 1.18; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.article-card:hover img { transform: scale(1.04); }
.article-card__content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.article-card__category { color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.article-card h3 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.2rem); margin: 14px 0 10px; line-height: 1; }
.article-card p { color: var(--ink-soft); }
.article-card__meta { margin-top: auto; padding-top: 18px; display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-soft); }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: clamp(38px, 6vw, 90px); align-items: start; }
.form-card { border: 1px solid var(--line); background: var(--surface); padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-soft); }
.form-progress { display: flex; gap: 8px; margin-bottom: 34px; }
.form-progress span { height: 4px; flex: 1; background: var(--line); }
.form-progress span.is-active { background: var(--green); }
.form-step[hidden] { display: none; }
.form-step h2 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label, .fieldset legend { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  min-height: 50px;
  padding: 12px 14px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field-error { color: var(--red); font-size: .74rem; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox { display: flex; gap: 9px; align-items: flex-start; border: 1px solid var(--line); background: var(--paper); padding: 12px; }
.checkbox input { margin-top: 3px; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.form-aside { position: sticky; top: calc(var(--header-h) + 28px); }
.form-aside h2 { font-family: var(--font-display); font-size: 3.4rem; margin-bottom: 20px; }
.form-aside .check-list { margin-top: 25px; }
.form-status { margin-top: 18px; padding: 14px; border: 1px solid var(--line); }
.form-status.is-error { border-color: var(--red); color: var(--red); }
.form-status.is-success { border-color: #2e755d; color: #2e755d; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* FAQ / help */
.help-search { max-width: 760px; position: relative; margin-top: 30px; }
.help-search input { width: 100%; height: 64px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 0 65px 0 20px; font-size: 1.05rem; }
.help-search span { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.help-category { border: 1px solid var(--line); background: var(--surface); padding: 28px; }
.help-category h2 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 20px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; justify-content: space-between; gap: 20px; text-align: left; border: 0; background: transparent; color: var(--ink); padding: 18px 0; cursor: pointer; }
.accordion-button strong { font-weight: 600; }
.accordion-panel { padding: 0 0 18px; color: var(--ink-soft); }
.accordion-panel[hidden] { display: none; }

/* Legal / content */
.legal-layout { width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: clamp(60px, 7vw, 110px) 0; }
.legal-layout h1 { font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem); margin-bottom: 24px; }
.legal-layout h2 { font-family: var(--font-display); font-size: 2.4rem; margin: 48px 0 16px; }
.legal-layout h3 { font-family: var(--font-display); font-size: 1.7rem; margin: 30px 0 12px; }
.legal-layout p, .legal-layout li { color: var(--ink-soft); }
.legal-layout ul, .legal-layout ol { padding-left: 24px; margin-bottom: 18px; }
.legal-meta { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 15px 0; margin-bottom: 40px; display: flex; gap: 20px; flex-wrap: wrap; color: var(--ink-soft); font-size: .8rem; }

/* Contact / press / careers */
.route-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-card { border: 1px solid var(--line); background: var(--surface); padding: 28px; min-height: 230px; display: flex; flex-direction: column; }
.route-card h2 { font-family: var(--font-display); font-size: 2.25rem; margin: 18px 0 10px; }
.route-card p { color: var(--ink-soft); }
.route-card .text-link { margin-top: auto; align-self: flex-start; }
.press-assets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.press-asset { border: 1px solid var(--line); background: var(--surface); padding: 24px; }
.press-asset__preview { min-height: 190px; display: grid; place-items: center; background: var(--cream-2); margin-bottom: 20px; }
.press-asset__preview--dark { background: #073b2d; color: #fff; }
.press-asset h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { background: var(--paper); padding: 34px; min-height: 250px; }
.principle strong { color: var(--red); font-size: .7rem; letter-spacing: .12em; }
.principle h3 { font-family: var(--font-display); font-size: 2.3rem; margin: 20px 0 12px; }
.principle p { color: var(--ink-soft); }

/* Footer */
.site-footer { background: #073b2d; color: #f4f0e8; }
.site-footer__cta { padding: clamp(60px, 7vw, 100px) 0; display: flex; justify-content: space-between; align-items: end; gap: 40px; border-bottom: 1px solid rgba(244,240,232,.16); }
.site-footer__cta h2 { font-family: var(--font-display); font-size: clamp(4rem, 8vw, 8rem); }
.site-footer__cta p:not(.eyebrow) { color: rgba(244,240,232,.66); max-width: 560px; }
.site-footer__main { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 38px; padding: 70px 0; }
.site-footer__logo-plate { display: inline-flex; width: min(100%, 236px); padding: 11px 14px; background: #f4f0e8; border: 1px solid rgba(215,179,125,.42); }
.site-footer__brand img.site-footer__logo { display: block; width: 100%; height: auto; filter: none; }
.site-footer__brand p { color: rgba(244,240,232,.6); max-width: 320px; margin-top: 20px; }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column h3 { font-family: var(--font-sans); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #d7b37d; margin-bottom: 10px; }
.footer-column a { color: rgba(244,240,232,.72); font-size: .85rem; }
.footer-column a:hover { color: #fff; }
.site-footer__bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(244,240,232,.16); color: rgba(244,240,232,.52); font-size: .75rem; }

/* Reveal / motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.toast { position: fixed; z-index: 2000; right: 24px; bottom: 24px; padding: 14px 18px; background: #073b2d; color: #fff; border-radius: 6px; box-shadow: var(--shadow); }

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-header__actions .header-login { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-band { grid-template-columns: 1fr 1fr 1fr; }
  .culture-band__intro { grid-row: span 2; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card { min-height: 290px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .route-cards { grid-template-columns: repeat(2, 1fr); }
  .site-footer__main { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .article-card { grid-column: span 6; }
  .article-card--featured { grid-column: span 6; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .container-wide { width: min(calc(100% - 32px), var(--container-wide)); }
  .section-header { grid-template-columns: 1fr; align-items: start; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__copy { min-height: 520px; padding-inline: 24px; }
  .hero-split__copy::after { inset: auto 0 -80px 0; height: 120px; width: auto; background: linear-gradient(0deg, transparent, var(--cream)); }
  .hero-split__media { min-height: 460px; }
  .hero-split__copy h1 { max-width: 10ch; }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split__media { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .role-switcher { grid-template-columns: 1fr; }
  .role-switcher__nav { border-right: 0; border-bottom: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
  .game-shell__body { grid-template-columns: 1fr; }
  .game-aside { border-left: 0; border-top: 1px solid var(--line); }
  .score-demo { grid-template-columns: 1fr; }
  .partner-doors { grid-template-columns: 1fr; }
  .partner-door { min-height: 520px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .white-label-demo { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; order: -1; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .press-assets { grid-template-columns: 1fr 1fr; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cta { align-items: start; flex-direction: column; }
  .site-footer__main { grid-template-columns: 1.5fr 1fr 1fr; }
  .product-stage__body { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .site-header__actions .button { display: none; }
  .brand { width: 138px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card p { min-height: auto; }
  .culture-band { grid-template-columns: 1fr 1fr; }
  .culture-band__intro { grid-column: 1 / -1; min-height: 300px; grid-row: auto; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card { aspect-ratio: 1.45; min-height: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .role-switcher__nav { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .branded-page__body { grid-template-columns: 1fr; }
  .journal-toolbar { align-items: stretch; flex-direction: column; }
  .journal-search { min-width: 0; width: 100%; }
  .journal-grid { display: grid; grid-template-columns: 1fr; }
  .article-card, .article-card--featured { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .route-cards { grid-template-columns: 1fr; }
  .press-assets { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .itinerary__row { grid-template-columns: 1fr; gap: 8px; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; }
  .mobile-menu__buttons { grid-template-columns: 1fr; }
  .ui-card--span4, .ui-card--span6, .ui-card--span8 { grid-column: span 12; }
  .dashboard-grid { gap: 10px; }
  .game-shell__top { align-items: flex-start; flex-direction: column; }
  .filter-reset { margin-left: 0; }
}

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

/* Quick trip starter modal */
.request-modal { position: fixed; z-index: 1800; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(3, 18, 13, .72); backdrop-filter: blur(8px); opacity: 0; transition: opacity .22s ease; }
.request-modal.is-open { opacity: 1; }
.request-dialog { position: relative; width: min(620px, 100%); background: var(--paper); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 40px 120px rgba(0,0,0,.35); padding: clamp(30px, 5vw, 58px); transform: translateY(18px) scale(.985); transition: transform .25s var(--ease); }
.request-modal.is-open .request-dialog { transform: translateY(0) scale(1); }
.request-dialog__close { position: absolute; right: 18px; top: 14px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 1.5rem; cursor: pointer; }
.request-dialog h2 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 16px; max-width: 9ch; }
.request-dialog > p:not(.eyebrow) { color: var(--ink-soft); margin-bottom: 26px; }
.request-dialog form { display: grid; gap: 16px; }
.request-dialog .button { margin-top: 8px; }

/* =========================================================
   Persona-led architecture — September 2026
   Extends the approved Modern Golf Society visual system.
   ========================================================= */

/* New supplied brand lockup */
.brand--new { width: 160px; min-width: 160px; position: relative; align-items: center; }
.brand--new img { width: 100%; height: auto; object-fit: contain; }
.brand--new .brand__dark { display: none; }
html[data-theme="dark"] .brand--new img { filter: none; }
html[data-theme="dark"] .brand--new .brand__light { display: none; }
html[data-theme="dark"] .brand--new .brand__dark { display: block; }
.desktop-nav--persona { gap: clamp(15px, 1.65vw, 28px); }
.desktop-nav--persona .nav-divider { width: 1px; height: 20px; background: var(--line-strong); }
.desktop-nav--persona .nav-utility { font-size: .8rem; opacity: .67; }
.mobile-menu__label { color: var(--brass); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 8px; }
.mobile-menu__inner > a { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.mobile-menu__inner > a small { max-width: 220px; color: var(--ink-soft); font-family: var(--font-sans); font-size: .78rem; line-height: 1.3; text-align: right; }
.mobile-menu__utility { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 24px; background: var(--line); border: 1px solid var(--line); }
.mobile-menu__utility a { background: var(--paper); padding: 13px; text-align: center; font-size: .78rem; }

/* Homepage */
.persona-home-hero .hero-split__copy h1 { max-width: 10.5ch; }
.hero-persona-rail { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 28px; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(4,35,26,.86); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(12px); }
.hero-persona-rail span { padding: 13px 16px; border-right: 1px solid rgba(255,255,255,.2); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; text-align: center; }
.hero-persona-rail span:last-child { border-right: 0; }
.editorial-split--reverse { grid-template-columns: 1fr 1fr; }
.editorial-split__copy { padding: clamp(48px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.editorial-split__copy h2 { font-family: var(--font-display); font-size: clamp(3.3rem, 5.5vw, 6rem); letter-spacing: -.035em; max-width: 10ch; margin-bottom: 24px; }
.editorial-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; display: flex; justify-content: space-between; gap: 20px; padding: 14px 16px; background: rgba(4,35,26,.88); color: #fff; font-size: .78rem; }
.editorial-split__media { position: relative; }
.why-list { margin-top: 25px; }
.persona-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.persona-card { display: grid; grid-template-columns: minmax(180px,.72fr) minmax(0,1.28fr); min-height: 360px; background: var(--paper); overflow: hidden; }
.persona-card__image { min-height: 100%; overflow: hidden; }
.persona-card__image picture, .persona-card__image img { width: 100%; height: 100%; }
.persona-card__image img { object-fit: cover; transition: transform .8s var(--ease); }
.persona-card:hover .persona-card__image img { transform: scale(1.035); }
.persona-card__content { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; }
.persona-card__number { color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .13em; }
.persona-card h3 { font-family: var(--font-display); font-size: clamp(2.4rem, 3.5vw, 4.1rem); letter-spacing: -.025em; margin: 22px 0 16px; }
.persona-card p { color: var(--ink-soft); }
.persona-card__link { margin-top: auto; padding-top: 24px; font-weight: 600; }
.ecosystem-demo { border: 1px solid var(--line); background: var(--paper); }
.ecosystem-demo__nav { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.ecosystem-demo__nav button { min-height: 64px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; font-family: var(--font-display); font-size: 1.45rem; }
.ecosystem-demo__nav button:last-child { border-right: 0; }
.ecosystem-demo__nav button.is-active { background: #073b2d; color: #fff; }
.ecosystem-demo__stage > section { display: grid; grid-template-columns: minmax(280px,.65fr) minmax(0,1.35fr); min-height: 500px; }
.ecosystem-copy { padding: clamp(36px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.ecosystem-copy h3 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.4rem); letter-spacing: -.035em; margin-bottom: 20px; }
.ecosystem-copy p:not(.eyebrow) { color: var(--ink-soft); }
.ecosystem-copy .text-link { margin-top: 20px; align-self: flex-start; }
.ecosystem-ui { margin: clamp(30px, 5vw, 70px); align-self: center; }
.ecosystem-ui .ui-card strong { display: block; font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; margin: 8px 0; }
.ecosystem-ui .ui-card small { color: #66776f; }
.ecosystem-ui .ui-card h4 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.phone-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: center; }
.mini-phone { min-height: 320px; padding: 28px 20px; border: 9px solid #111; border-radius: 32px; background: #fbf8f2; color: #102b22; display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow); }
.mini-phone span { color: #66776f; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.mini-phone strong { font-family: var(--font-display); font-size: 2.4rem; margin: 12px 0; }
.mini-phone--accent { transform: translateY(-24px); background: #073b2d; color: #fff; }
.mini-phone--accent span, .mini-phone--accent small { color: rgba(255,255,255,.68); }
.outcome-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.outcome-band article { padding: clamp(34px, 4vw, 60px); border-right: 1px solid rgba(255,255,255,.17); }
.outcome-band article:last-child { border-right: 0; }
.outcome-band span { color: #d7b37d; font-size: .68rem; letter-spacing: .13em; }
.outcome-band strong { display: block; font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; margin: 18px 0 12px; }
.outcome-band p { color: rgba(255,255,255,.65); }
.culture-callout { display: grid; grid-template-columns: 1.2fr .8fr; border: 1px solid var(--line); min-height: 560px; }
.culture-callout__image { overflow: hidden; }
.culture-callout__image picture, .culture-callout__image img { width: 100%; height: 100%; }
.culture-callout__image img { object-fit: cover; }
.culture-callout__copy { padding: clamp(42px, 6vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.culture-callout__copy h2 { font-family: var(--font-display); font-size: clamp(3.3rem, 5vw, 5.8rem); letter-spacing: -.035em; margin-bottom: 22px; }
.culture-callout__copy p:not(.eyebrow) { color: var(--ink-soft); }
.culture-callout__copy .button-row { margin-top: 22px; }

/* Organizer */
.mode-gateway { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mode-card { border: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.mode-card__image { height: 340px; overflow: hidden; }
.mode-card__image picture, .mode-card__image img { width: 100%; height: 100%; }
.mode-card__image img { object-fit: cover; transition: transform .8s var(--ease); }
.mode-card:hover .mode-card__image img { transform: scale(1.035); }
.mode-card__content { padding: clamp(30px, 4vw, 55px); }
.mode-card__content > span { color: var(--red); font-size: .7rem; letter-spacing: .14em; font-weight: 700; }
.mode-card h3 { font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 4.8rem); margin: 20px 0 15px; }
.mode-card p { color: var(--ink-soft); }
.mode-card strong { display: inline-block; margin-top: 18px; }
.five-stage-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stage-card { position: relative; min-height: 420px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.stage-card__num { font-family: var(--font-display); font-size: 5rem; color: color-mix(in srgb, var(--ink) 12%, transparent); }
.stage-card h3 { font-family: var(--font-display); font-size: 2.35rem; margin: 18px 0 13px; }
.stage-card p:last-child { color: var(--ink-soft); }
.organizer-command { display: grid; grid-template-columns: .75fr 1.25fr; border: 1px solid var(--line); background: var(--paper); }
.organizer-command__copy { padding: clamp(36px, 5vw, 72px); }
.organizer-command__copy h2 { font-family: var(--font-display); font-size: clamp(3.3rem, 5.5vw, 5.9rem); margin-bottom: 20px; }
.organizer-command__copy > p:not(.eyebrow) { color: var(--ink-soft); }
.organizer-command__tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin: 30px 0; border: 1px solid var(--line); }
.organizer-command__tabs button { border: 0; padding: 13px 8px; background: var(--paper); color: var(--ink); cursor: pointer; }
.organizer-command__tabs button.is-active { background: #073b2d; color: #fff; }
.organizer-command__ui { padding: clamp(24px, 4vw, 55px); display: grid; align-items: center; background: var(--cream-2); }
.product-stage--large .product-stage__bar strong { margin-left: 12px; font-size: .75rem; }
.product-stage--large .dashboard-grid { padding: 28px; }
.progress-line { height: 8px; background: rgba(16,43,34,.1); overflow: hidden; border-radius: 999px; margin: 15px 0; }
.progress-line i { display: block; height: 100%; background: var(--brass); border-radius: inherit; }
.split-cta { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.split-cta h2 { font-family: var(--font-display); font-size: clamp(3.8rem, 6vw, 7rem); max-width: 10ch; }
.split-cta p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.68); }
.split-cta--light p:not(.eyebrow) { color: var(--ink-soft); }
.planning-poll { display: grid; grid-template-columns: 1.25fr .75fr; border: 1px solid var(--line); }
.planning-poll__questions { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--line); gap: 1px; }
.planning-poll__questions article { padding: 32px; background: var(--paper); }
.planning-poll__questions span { color: var(--red); font-weight: 700; font-size: .7rem; }
.planning-poll__questions h3 { font-family: var(--font-display); font-size: 2.6rem; margin: 16px 0 8px; }
.planning-poll__questions p { color: var(--ink-soft); }
.planning-poll__result { padding: clamp(40px, 5vw, 70px); background: #073b2d; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.planning-poll__result strong { font-family: var(--font-display); font-size: 4.5rem; font-weight: 400; }
.planning-poll__result > span { color: rgba(255,255,255,.7); }
.planning-poll__result .progress-line { background: rgba(255,255,255,.18); margin-top: 30px; }
.three-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.three-path-grid article { border: 1px solid var(--line); padding: clamp(28px, 4vw, 48px); background: var(--paper); min-height: 360px; }
.three-path-grid h3 { font-family: var(--font-display); font-size: 3rem; margin: 24px 0 16px; }
.three-path-grid p { color: var(--ink-soft); }
.vertical-workflow { display: grid; border-top: 1px solid var(--line); }
.vertical-workflow article { display: grid; grid-template-columns: 100px minmax(0,1fr) minmax(180px,.35fr); gap: 30px; align-items: center; padding: 28px 20px; border-bottom: 1px solid var(--line); }
.vertical-workflow article > span { font-family: var(--font-display); font-size: 4rem; color: color-mix(in srgb, var(--ink) 15%, transparent); }
.vertical-workflow h3 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 6px; }
.vertical-workflow p { color: var(--ink-soft); margin: 0; }
.vertical-workflow em { color: var(--brass); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.event-status-board { border: 1px solid var(--line); background: var(--paper); }
.event-status-board__summary { padding: 36px; border-bottom: 1px solid var(--line); }
.event-status-board__summary h3 { font-family: var(--font-display); font-size: 3.4rem; margin: 14px 0 5px; }
.event-status-board__summary p { color: var(--ink-soft); }
.event-status-board__metrics { display: grid; grid-template-columns: repeat(4, 1fr); }
.event-status-board__metrics article { padding: 30px; border-right: 1px solid var(--line); }
.event-status-board__metrics article:last-child { border-right: 0; }
.event-status-board__metrics strong { font-family: var(--font-display); font-size: 3rem; display: block; font-weight: 400; }
.event-status-board__metrics span { color: var(--ink-soft); }
.event-status-board__progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 25px 36px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--ink-soft); }

/* Player */
.player-app-story { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.player-app-story__phones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: center; }
.phone-frame--floating { width: 100%; max-width: 260px; }
.phone-frame--center { transform: translateY(-28px); }
.phone-frame__notch { width: 42%; height: 24px; margin: 0 auto -18px; position: relative; z-index: 2; background: #111; border-radius: 0 0 15px 15px; }
.phone-screen { min-height: 520px; padding: 31px 15px 18px; background: #fbf8f2; color: #102b22; border-radius: 30px; overflow: hidden; }
.phone-screen header { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: .68rem; margin-bottom: 28px; }
.phone-screen h3 { font-family: var(--font-display); font-size: 2.2rem; margin: 12px 0 4px; }
.phone-screen > p { color: #65736d; font-size: .75rem; }
.notification-card { padding: 14px; margin: 20px 0; background: #e8efe9; border-left: 3px solid #073b2d; }
.notification-card strong, .notification-card span { display: block; }
.notification-card span { color: #65736d; font-size: .72rem; margin-top: 4px; }
.phone-detail { display: flex; justify-content: space-between; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(16,43,34,.12); font-size: .72rem; }
.phone-detail span { color: #65736d; }
.big-standing { margin: 26px 0; padding: 25px; background: #073b2d; color: #fff; text-align: center; }
.big-standing strong { display: block; font-family: var(--font-display); font-size: 4.2rem; font-weight: 400; }
.big-standing span { font-size: .72rem; color: rgba(255,255,255,.7); }
.photo-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin: 20px 0; }
.photo-strip span { height: 62px; background: linear-gradient(135deg,#8aa091,#d3bc92); }
.player-app-story__copy h2 { font-family: var(--font-display); font-size: clamp(3.4rem, 5.6vw, 6rem); margin-bottom: 22px; }
.player-app-story__copy .check-list { margin-top: 28px; }
.three-phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.phase-card { padding: clamp(32px, 4vw, 55px); background: var(--paper); border: 1px solid var(--line); min-height: 560px; }
.phase-card--dark { background: #073b2d; color: #fff; }
.phase-card > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.phase-card--dark > span { color: #e27761; }
.phase-card h3 { font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 4.5rem); margin: 28px 0; }
.phase-card ul { list-style: none; display: grid; gap: 12px; color: var(--ink-soft); }
.phase-card--dark ul { color: rgba(255,255,255,.72); }
.phase-card li { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.phase-card--dark li { border-color: rgba(255,255,255,.15); }
.player-stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); }
.player-stats-grid article { padding: 27px 20px; border-right: 1px solid var(--line); background: var(--paper); }
.player-stats-grid article:last-child { border-right: 0; }
.player-stats-grid strong { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 400; margin: 12px 0 4px; }
.player-stats-grid p { color: var(--ink-soft); font-size: .76rem; }
.memory-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; align-items: center; }
.memory-copy h2 { font-family: var(--font-display); font-size: clamp(3.8rem,6vw,7rem); }
.memory-copy p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.memory-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.memory-tags span { border: 1px solid rgba(255,255,255,.24); padding: 8px 12px; font-size: .72rem; }
.memory-collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; transform: rotate(-1deg); }
.memory-collage div { aspect-ratio: 1.35; overflow: hidden; border: 8px solid #f4f0e8; }
.memory-collage picture, .memory-collage img { width: 100%; height: 100%; }
.memory-collage img { object-fit: cover; }
.referral-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.form-heading { font-family: var(--font-display); font-size: clamp(2.8rem,4vw,4.2rem); margin-bottom: 24px; }

/* Operator */
.operator-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.operator-type { border: 1px solid var(--line); background: var(--paper); }
.operator-type__image { height: 330px; overflow: hidden; }
.operator-type__image picture, .operator-type__image img { width: 100%; height: 100%; }
.operator-type__image img { object-fit: cover; }
.operator-type > div:last-child { padding: clamp(32px, 4vw, 52px); }
.operator-type h3 { font-family: var(--font-display); font-size: clamp(3rem, 4.5vw, 5rem); margin: 20px 0; }
.operator-type p { color: var(--ink-soft); }
.operator-type .check-list { margin-top: 24px; }
.operator-flywheel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.operator-flywheel article { padding: clamp(28px, 3.5vw, 48px); border-right: 1px solid var(--line); background: var(--paper); min-height: 500px; }
.operator-flywheel article:last-child { border-right: 0; }
.operator-flywheel article > span { font-family: var(--font-display); font-size: 4.5rem; color: color-mix(in srgb, var(--ink) 14%, transparent); }
.operator-flywheel article > .icon-mark {
  width: 1em;
  height: 1em;
}
.operator-flywheel h3 { font-family: var(--font-display); font-size: 2.7rem; margin: 24px 0 15px; }
.operator-flywheel p { color: var(--ink-soft); }
.operator-flywheel ul { margin: 24px 0 0 18px; color: var(--brass); font-size: .78rem; display: grid; gap: 7px; }
.operator-dashboard { display: grid; grid-template-columns: 260px 1fr; border: 1px solid var(--line); background: #f7f3eb; color: #102b22; box-shadow: var(--shadow); }
.operator-dashboard > aside { background: #073b2d; color: #fff; padding: 32px; }
.operator-dashboard > aside h3 { font-family: var(--font-display); font-size: 2.5rem; margin: 20px 0 5px; }
.operator-dashboard > aside > span { color: rgba(255,255,255,.65); font-size: .75rem; }
.operator-dashboard nav { display: grid; gap: 7px; margin-top: 40px; }
.operator-dashboard nav span, .operator-dashboard nav b { padding: 10px 12px; font-size: .78rem; border: 1px solid rgba(255,255,255,.12); }
.operator-dashboard nav b { background: rgba(255,255,255,.12); }
.operator-dashboard__main { padding: 34px; }
.operator-dashboard .ui-card strong { display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; margin: 10px 0; }
.operator-dashboard .ui-card h4 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.revenue-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.revenue-grid article { border: 1px solid var(--line); padding: 32px; min-height: 330px; }
.revenue-grid span { color: var(--red); font-size: .68rem; letter-spacing: .13em; font-weight: 700; }
.revenue-grid h3 { font-family: var(--font-display); font-size: 2.5rem; margin: 22px 0 14px; }
.revenue-grid p { color: var(--ink-soft); }
.check-list--light li { color: rgba(255,255,255,.72); }
.check-list--light li::before { color: #d7b37d; }
.branded-page__header { display: flex; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid rgba(16,43,34,.12); }
.branded-page__header strong { color: var(--brand-color,#073b2d); }
.branded-page__header span { color: #66776f; font-size: .72rem; }
.branded-page__hero { position: relative; min-height: 300px; padding: 0; background: #073b2d; }
.branded-page__hero picture, .branded-page__hero img { width: 100%; height: 100%; position: absolute; inset: 0; }
.branded-page__hero img { object-fit: cover; }
.branded-page__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,20,15,.83),transparent 70%); }
.branded-page__hero > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 28px; }
.branded-page__body article { border: 1px solid rgba(16,43,34,.12); padding: 15px; min-height: 100px; }
.branded-page__body span, .branded-page__body small { display: block; color: #66776f; font-size: .68rem; }
.branded-page__body strong { display: block; margin: 7px 0; }

/* Club */
.club-use-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }
.club-use-grid article { padding: clamp(28px,3.5vw,48px); border-right: 1px solid var(--line); background: var(--paper); min-height: 400px; }
.club-use-grid article:last-child { border-right: 0; }
.club-use-grid span { font-family: var(--font-display); font-size: 4.5rem; color: color-mix(in srgb,var(--ink) 14%,transparent); }
.club-use-grid .icon-mark {
  width: 1em;
  height: 1em;
}
.club-use-grid h3 { font-family: var(--font-display); font-size: 2.8rem; margin: 24px 0 15px; }
.club-use-grid p { color: var(--ink-soft); }
.club-sync-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(40px,6vw,90px); align-items: center; }
.club-sync-grid__copy h2 { font-family: var(--font-display); font-size: clamp(3.5rem,5.5vw,6rem); margin-bottom: 22px; }
.club-sync-grid__copy .check-list { margin-top: 28px; }
.sync-diagram { display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; }
.sync-node { min-height: 250px; padding: 34px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-soft); }
.sync-node > span { color: var(--red); font-size: .68rem; letter-spacing: .12em; }
.sync-node strong { font-family: var(--font-display); font-size: 2.8rem; font-weight: 400; margin: 18px 0 8px; }
.sync-node small { color: var(--ink-soft); }
.sync-node--club { background: #073b2d; color: #fff; }
.sync-node--club small { color: rgba(255,255,255,.65); }
.sync-line { text-align: center; color: var(--brass); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }
.sync-line i { display: block; height: 2px; background: var(--brass); position: relative; margin-bottom: 12px; }
.sync-line i::after { content: "→"; position: absolute; right: -2px; top: -15px; font-size: 1.3rem; }
.inventory-board { border: 1px solid var(--line); background: var(--paper); }
.inventory-board__head { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 32px; border-bottom: 1px solid var(--line); }
.inventory-board__head h3 { font-family: var(--font-display); font-size: 3rem; margin-top: 12px; }
.status-chip { padding: 8px 12px; border-radius: 999px; background: #dfece3; color: #073b2d; font-size: .7rem; font-weight: 700; }
.inventory-board__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.inventory-board__grid article { padding: 30px; border-right: 1px solid var(--line); }
.inventory-board__grid article:last-child { border-right: 0; }
.inventory-board__grid span { display: block; color: var(--red); font-size: .67rem; font-weight: 700; letter-spacing: .1em; }
.inventory-board__grid strong { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 400; margin: 14px 0 5px; }
.inventory-board__grid small { color: var(--ink-soft); }
.inventory-board__timeline { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 12px; padding: 25px 32px; border-top: 1px solid var(--line); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.inventory-board__timeline i { height: 2px; background: var(--line-strong); }
.inventory-board__timeline i.is-complete { background: var(--brass); }
.club-feature-matrix { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.club-feature-matrix article { background: var(--paper); padding: 36px; min-height: 300px; }
.club-feature-matrix span { color: var(--red); font-size: .68rem; letter-spacing: .12em; font-weight: 700; }
.club-feature-matrix .icon-mark {
  width: 1em;
  height: 1em;
  letter-spacing: 0;
}
.club-feature-matrix h3 { font-family: var(--font-display); font-size: 2.6rem; margin: 22px 0 14px; }
.club-feature-matrix p { color: var(--ink-soft); }
.club-white-label { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: center; }
.club-white-label h2 { font-family: var(--font-display); font-size: clamp(3.8rem,6vw,7rem); }
.club-white-label p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.club-white-label .check-list { margin: 28px 0; }
.club-white-label__device { padding: clamp(20px,4vw,55px); background: rgba(255,255,255,.08); }

/* Journal article */
.journal-article__hero { padding-top: clamp(70px,8vw,120px); }
.journal-article__intro { text-align: center; }
.journal-article__intro h1 { font-family: var(--font-display); font-size: clamp(4rem,8vw,8.5rem); max-width: 12ch; margin: 0 auto 25px; letter-spacing: -.045em; }
.journal-article__intro .lead { margin: 0 auto; }
.journal-article__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; color: var(--ink-soft); font-size: .78rem; margin: 28px 0 55px; }
.journal-article__image { width: min(calc(100% - 48px),1440px); height: min(70vh,780px); margin: 0 auto; overflow: hidden; }
.journal-article__image picture, .journal-article__image img { width: 100%; height: 100%; }
.journal-article__image img { object-fit: cover; }
.journal-article__body { max-width: 820px; padding: clamp(70px,8vw,120px) 0; }
.journal-article__body section { margin-bottom: 62px; }
.journal-article__body h2 { font-family: var(--font-display); font-size: clamp(2.7rem,4vw,4rem); margin-bottom: 24px; }
.journal-article__body p, .journal-article__body li { font-size: 1.08rem; color: var(--ink-soft); }
.journal-article__body ul { margin: 24px 0 0 24px; display: grid; gap: 12px; }
.article-takeaway { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 42px 0; }
.article-takeaway p:last-child { font-family: var(--font-display); font-size: 2.3rem; line-height: 1.1; color: var(--ink); }

/* Global adjustments */
.form-card { scroll-margin-top: 110px; }
.form-aside .text-link { margin-top: 25px; }

@media (max-width: 1280px) {
  .desktop-nav--persona { gap: 15px; font-size: .82rem; }
  .brand--new { width: 145px; min-width: 145px; }
  .site-header__inner { grid-template-columns: 158px 1fr auto; }
  .persona-card { grid-template-columns: .65fr 1.35fr; }
  .five-stage-grid { grid-template-columns: repeat(3,1fr); }
  .five-stage-grid .stage-card:nth-child(4), .five-stage-grid .stage-card:nth-child(5) { grid-column: span 1; }
  .player-stats-grid { grid-template-columns: repeat(3,1fr); }
  .player-stats-grid article:nth-child(3) { border-right: 0; }
  .player-stats-grid article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .operator-flywheel, .club-use-grid { grid-template-columns: repeat(2,1fr); }
  .operator-flywheel article:nth-child(2), .club-use-grid article:nth-child(2) { border-right: 0; }
  .operator-flywheel article:nth-child(-n+2), .club-use-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .revenue-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1000px) {
  .persona-card-grid { grid-template-columns: 1fr; }
  .five-stage-grid { grid-template-columns: repeat(2,1fr); }
  .organizer-command, .planning-poll, .player-app-story, .memory-grid, .club-sync-grid, .club-white-label { grid-template-columns: 1fr; }
  .player-app-story__phones { order: 2; }
  .operator-type-grid, .mode-gateway, .referral-grid { grid-template-columns: 1fr; }
  .club-feature-matrix { grid-template-columns: repeat(2,1fr); }
  .sync-diagram { max-width: 800px; margin-inline: auto; }
  .outcome-band { grid-template-columns: repeat(2,1fr); }
  .outcome-band article:nth-child(2) { border-right: 0; }
  .outcome-band article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .culture-callout { grid-template-columns: 1fr; }
  .culture-callout__image { min-height: 460px; }
  .vertical-workflow article { grid-template-columns: 80px 1fr; }
  .vertical-workflow em { grid-column: 2; text-align: left; }
  .event-status-board__metrics, .inventory-board__grid { grid-template-columns: repeat(2,1fr); }
  .event-status-board__metrics article:nth-child(2), .inventory-board__grid article:nth-child(2) { border-right: 0; }
  .event-status-board__metrics article:nth-child(-n+2), .inventory-board__grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .operator-dashboard { grid-template-columns: 210px 1fr; }
}

@media (max-width: 760px) {
  .brand--new { width: 132px; min-width: 132px; }
  .mobile-menu__inner > a { display: grid; }
  .mobile-menu__inner > a small { text-align: left; max-width: none; }
  .mobile-menu__utility { grid-template-columns: repeat(2,1fr); }
  .hero-persona-rail { left: 14px; right: 14px; bottom: 14px; grid-template-columns: repeat(2,1fr); }
  .hero-persona-rail span:nth-child(2) { border-right: 0; }
  .hero-persona-rail span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .editorial-split--reverse { grid-template-columns: 1fr; }
  .editorial-split__media { min-height: 430px; }
  .persona-card { grid-template-columns: 1fr; }
  .persona-card__image { height: 280px; }
  .ecosystem-demo__nav { grid-template-columns: repeat(2,1fr); }
  .ecosystem-demo__nav button:nth-child(2) { border-right: 0; }
  .ecosystem-demo__nav button:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ecosystem-demo__stage > section { grid-template-columns: 1fr; }
  .ecosystem-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .ecosystem-ui { margin: 24px; }
  .phone-mosaic { grid-template-columns: 1fr; }
  .mini-phone { min-height: 240px; }
  .mini-phone--accent { transform: none; }
  .outcome-band { grid-template-columns: 1fr; }
  .outcome-band article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .five-stage-grid { grid-template-columns: 1fr; }
  .stage-card { min-height: auto; }
  .split-cta { align-items: flex-start; flex-direction: column; }
  .planning-poll__questions { grid-template-columns: 1fr; }
  .three-path-grid, .three-phase-grid { grid-template-columns: 1fr; }
  .vertical-workflow article { grid-template-columns: 55px 1fr; gap: 16px; }
  .vertical-workflow article > span { font-size: 3rem; }
  .event-status-board__metrics, .inventory-board__grid { grid-template-columns: 1fr; }
  .event-status-board__metrics article, .inventory-board__grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .event-status-board__progress { grid-template-columns: 1fr; }
  .player-app-story__phones { grid-template-columns: 1fr; }
  .phone-frame--floating { max-width: 310px; }
  .phone-frame--center { transform: none; }
  .player-stats-grid { grid-template-columns: repeat(2,1fr); }
  .player-stats-grid article { border-bottom: 1px solid var(--line); }
  .player-stats-grid article:nth-child(2n) { border-right: 0; }
  .memory-collage { grid-template-columns: 1fr; }
  .operator-flywheel, .club-use-grid, .revenue-grid, .club-feature-matrix { grid-template-columns: 1fr; }
  .operator-flywheel article, .club-use-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .operator-dashboard { grid-template-columns: 1fr; }
  .operator-dashboard > aside nav { grid-template-columns: repeat(2,1fr); }
  .sync-diagram { grid-template-columns: 1fr; gap: 20px; }
  .sync-line { padding: 30px 0; }
  .sync-line i { width: 2px; height: 70px; margin: auto; }
  .sync-line i::after { content: "↓"; right: -8px; top: auto; bottom: -16px; }
  .inventory-board__head { align-items: flex-start; flex-direction: column; }
  .inventory-board__timeline { grid-template-columns: 1fr; }
  .inventory-board__timeline i { height: 28px; width: 2px; margin-left: 10px; }
  .journal-article__image { width: calc(100% - 24px); height: 50vh; }
}
.hero-persona-rail span { transition: background-color .35s ease, color .35s ease; }
.hero-persona-rail span.is-active { background: rgba(215,179,125,.22); color: #f5d8a7; }
.progress-line i { transition: width 1.1s var(--ease); }
.player-stats-grid article { transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease; }
.player-stats-grid article.is-live { transform: translateY(-4px); box-shadow: var(--shadow-soft); background: var(--surface-raised); }

/* Five-stage workflow used by the persona-led How It Works page. */
.steps-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.steps-grid--five .step-card { min-width: 0; }
@media (max-width: 1180px) {
  .steps-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid--five .step-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .steps-grid--five { grid-template-columns: 1fr; }
  .steps-grid--five .step-card:last-child { grid-column: auto; }
}

.rotating-promise {
  margin-top: clamp(28px, 4vw, 54px);
  margin-left: clamp(-32px, -1.9vw, -12px);
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.2em;
  width: max-content;
  max-width: min(calc(100vw - 40px), calc(100% + 150px));
  white-space: nowrap;
  font-size: clamp(1.58rem, 2.72vw, 3.05rem);
  line-height: 1.03;
}
.rotating-promise span {
  font-family: var(--font-display);
  color: var(--ink);
}
.rotating-promise strong {
  display: inline-block;
  min-width: 4.72em;
  font-family: var(--font-display);
  color: #d7b37d;
  font-weight: 400;
  transition: opacity .18s ease, transform .18s ease;
}
.rotating-promise strong.is-changing { opacity: 0; transform: translateY(6px); }
@media (max-width: 980px) {
  .rotating-promise {
    margin-left: 0;
    max-width: 100%;
    font-size: clamp(1.46rem, 3.1vw, 2.15rem);
  }
}
@media (max-width: 560px) {
  .rotating-promise {
    gap: 0.16em;
    font-size: clamp(1.22rem, 5.15vw, 1.55rem);
  }
  .rotating-promise strong {
    min-width: 4.58em;
  }
}
