/* ============================================================
   EVERYGOLF — Brand design system
   Modern editorial premium · Lacquer · Bone · Persimmon
   Fraunces (display) + Geist (everything else)
   Sharp corners · Hairline rules · Minimal motion
   ============================================================ */

:root {
  /* Brand */
  --color-lacquer:       #1C1917;
  --color-lacquer-soft:  #2C2825;
  --color-bone:          #F4EFE6;
  --color-bone-alt:      #FBF8F1;
  --color-bone-block:    #EFE9DD;
  --color-persimmon:     #D2552A;

  /* Neutrals */
  --color-ink:           #1A1A1A;
  --color-stone:         #8C8579;
  --color-stone-dark:    #A19A8E;
  --color-mist:          #D9D4C9;
  --color-night:         #0E0C0B;
  --color-hairline-dark: #3A3633;

  /* Semantic aliases */
  --fg-1:           var(--color-lacquer);
  --fg-2:           var(--color-ink);
  --fg-3:           var(--color-stone);
  --fg-inverse:     var(--color-bone);
  --bg-1:           var(--color-bone);
  --bg-2:           var(--color-bone-block);
  --bg-inverse:     var(--color-lacquer);
  --border-1:       var(--color-mist);
  --border-inverse: var(--color-lacquer-soft);
  --accent:         var(--color-persimmon);

  /* Type */
  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-body:    "Geist", ui-sans-serif, -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-mono:    ui-monospace, "SF Mono", "Geist Mono", Menlo, Consolas, monospace;

  --fw-light:    350;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Spacing — 4px base */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px; --s-36: 144px; --s-40: 160px;

  /* Radius — sharp by default */
  --radius-none: 0;
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-full: 9999px;

  /* Motion */
  --d-micro:     160ms;
  --d-default:   240ms;
  --d-entrance:  480ms;
  --d-editorial: 800ms;
  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --ease-entrance: cubic-bezier(0,   0, 0.2, 1);

  /* Layout */
  --container: 1360px;
  --pad-x:     clamp(20px, 4vw, 48px);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --d-micro: 0ms; --d-default: 0ms; --d-entrance: 0ms; --d-editorial: 0ms;
  }
}

/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.6;
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--d-micro) var(--ease-standard); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--color-lacquer); color: var(--color-bone); }
:focus-visible {
  outline: 2px solid var(--color-lacquer);
  outline-offset: 2px;
}

/* Skip link — keyboard users jump past the header to content. */
.skip-link {
  position: absolute;
  left: var(--pad-x);
  top: -64px;
  z-index: 60;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  background: var(--color-lacquer);
  color: var(--color-bone);
  transition: transform var(--d-micro) var(--ease-standard);
}
.skip-link:focus { transform: translateY(76px); outline-offset: -2px; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.hairline       { height: 1px; background: var(--border-1); border: 0; }
.hairline.dark  { background: var(--border-inverse); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.h-display, .h-hero, .h-1, .h-2, .h-3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  color: var(--fg-1);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
.h-hero    { font-size: clamp(56px, 11vw, 144px); letter-spacing: -0.045em; line-height: 0.95; }
.h-display { font-size: clamp(48px, 9vw, 112px); }
.h-1       { font-size: clamp(40px, 6vw, 88px); line-height: 0.98; }
.h-2       { font-size: clamp(32px, 4.5vw, 64px); line-height: 1.05; }
.h-3       { font-size: clamp(22px, 2.2vw, 36px); line-height: 1.1; letter-spacing: -0.02em; }
.h-4       { font-family: var(--font-display); font-variation-settings: 'opsz' 144;
             font-weight: var(--fw-regular); font-size: clamp(20px, 1.8vw, 28px);
             line-height: 1.15; letter-spacing: -0.015em; color: var(--fg-1); margin: 0; }

.t-overline {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.t-overline.accent  { color: var(--accent); }
.t-overline.inverse { color: var(--color-mist); }
/* Eyebrow leading a display heading — one consistent gap everywhere. */
.t-overline.lead    { display: block; margin-bottom: 24px; }

.t-lede   { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; color: var(--fg-2); max-width: 56ch; }
.t-body   { font-size: 16px; line-height: 1.65; color: var(--fg-2); }
.t-body strong { font-weight: var(--fw-semibold); color: var(--fg-1); }
.t-caption { font-size: 12px; line-height: 1.4; color: var(--fg-3); }
.t-num    { font-variant-numeric: tabular-nums; }

/* The persimmon dot — typographic punctuation */
.dot, .t-dot { color: var(--accent); }

/* Editorial big number */
.bignum {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.bignum .accent { color: var(--accent); }
.bignum.inverse { color: var(--fg-inverse); }

/* ============================================================
   WORDMARK / LOGO
   ============================================================ */

.wordmark {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-lacquer);
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  text-decoration: none;
}
.wordmark::after {
  content: '';
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  border-radius: var(--radius-full);
  background: var(--accent);
  margin-left: 0.04em;
  margin-bottom: 0.06em;
}
.wordmark.lg     { font-size: 32px; }
.wordmark.inverse { color: var(--color-bone); }

.logo {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-lacquer);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.logo .dot {
  display: inline-block;
  width: 0.2em; height: 0.2em;
  background: var(--accent);
  border-radius: var(--radius-full);
  margin-left: 0.06em; margin-bottom: 0.08em;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn,
button.btn,
a.btn {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 1;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-lacquer);
  color: var(--color-bone);
  border: 1px solid var(--color-lacquer);
  border-radius: var(--radius-none);
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--d-micro) var(--ease-standard),
              color var(--d-micro) var(--ease-standard),
              border-color var(--d-micro) var(--ease-standard),
              transform var(--d-micro) var(--ease-standard);
}
.btn:hover { background: var(--color-lacquer-soft); border-color: var(--color-lacquer-soft); }
.btn:active { opacity: 0.92; transform: translateY(1px); }
.btn.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn.btn-lg { padding: 18px 28px; font-size: 15px; }

.btn.btn-ghost,
.btn-ghost {
  background: transparent;
  color: var(--color-lacquer);
  border: 1px solid var(--color-lacquer);
}
.btn.btn-ghost:hover, .btn-ghost:hover { background: var(--color-mist); }

.btn.btn-inverse {
  background: var(--color-bone);
  color: var(--color-lacquer);
  border-color: var(--color-bone);
}
.btn.btn-inverse:hover { background: var(--color-mist); }

.btn.btn-ghost-inverse {
  background: transparent;
  color: var(--color-bone);
  border: 1px solid var(--color-bone);
}
.btn.btn-ghost-inverse:hover { background: rgba(244, 239, 230, 0.08); }

.btn .arrow { font-size: 0.95em; }

.link {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--color-lacquer);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-lacquer);
  padding-bottom: 4px;
  transition: color var(--d-micro), border-color var(--d-micro);
}
.link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================================
   CHIPS
   ============================================================ */

.chip {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  color: var(--color-lacquer);
  border: 1px solid var(--color-mist);
  background: transparent;
}
.chip.inverse {
  color: var(--color-mist);
  border-color: var(--color-hairline-dark);
}

/* ============================================================
   NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Keep the container's horizontal padding — the shorthand was zeroing it,
     which pushed the logo/controls flush against the screen edges on mobile. */
  padding: 20px var(--pad-x);
  gap: 32px;
}
.brand-cluster {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}
.brand-tagline {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-stone);
  padding-left: 12px;
  border-left: 1px solid var(--border-1);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--color-lacquer);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: var(--fw-regular);
  transition: color var(--d-micro);
}
.nav a:hover, .nav a.active { color: var(--accent); }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.15em;
}
.lang button { padding: 4px 6px; color: var(--color-stone); font-weight: var(--fw-medium); }
.lang button.on { color: var(--color-lacquer); font-weight: var(--fw-semibold); }
.lang span { color: var(--color-mist); }

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-lacquer);
  transition: transform var(--d-micro), opacity var(--d-micro);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--bg-1);
  padding-top: 32px;
}
.hero-meta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-stone);
  flex-wrap: wrap;
  gap: 16px;
}
.hero-frame {
  position: relative;
  background: var(--color-lacquer);
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: min(80dvh, 720px);
  object-fit: cover;
  opacity: 0.62;
}
.hero-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.30) 0%, rgba(28,25,23,0.55) 100%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
.hero-overlay-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-headline {
  color: var(--color-bone);
  max-width: 1100px;
}
.hero-headline .t-overline { display: block; margin-bottom: 24px; }
.hero-headline .h-hero { color: var(--color-bone); }

.hero-deck {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding-top: 56px;
  padding-bottom: 24px;
}
.hero-deck p { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: var(--fg-2); margin: 0; }
.hero-deck-aside {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--color-lacquer);
  color: var(--color-bone);
  padding: 32px 0;
  margin-top: 32px;
  overflow: hidden;
  border-top: 1px solid var(--border-inverse);
  border-bottom: 1px solid var(--border-inverse);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: eg-marquee 38s linear infinite;
}
.marquee-track .item {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  color: var(--color-bone);
  white-space: nowrap;
}
.marquee-track .item::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: var(--radius-full);
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes eg-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */

.section { background: var(--bg-1); padding: clamp(80px, 12vw, 144px) 0; }
.section.dense { padding: clamp(64px, 8vw, 96px) 0; }
.section.dark  { background: var(--bg-inverse); color: var(--fg-inverse); }
.section.dark .t-body, .section.dark p { color: var(--color-mist); }

.section-head-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 64px);
}
.section-head-center {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: clamp(48px, 6vw, 64px);
}
.section-head-center .t-overline { display: block; margin-bottom: 24px; }

/* ============================================================
   ABOUT + STATS
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  /* The section already supplies top rhythm; this used to double it (~240px). */
  padding-top: clamp(8px, 2vw, 24px);
  padding-bottom: clamp(64px, 7vw, 88px);
  align-items: start;
}
.about-copy { padding-top: 40px; display: flex; flex-direction: column; gap: 24px; max-width: 540px; }
.about-copy .btn-row { display: flex; gap: 12px; padding-top: 8px; flex-wrap: wrap; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 64px 0;
}
.stats-row.dark { border-color: var(--border-inverse); }
.stat-cell {
  padding: 0 32px;
  border-right: 1px solid var(--border-1);
  display: flex; flex-direction: column; gap: 20px;
}
.stat-cell:last-child { border-right: none; }
.stats-row.dark .stat-cell { border-right-color: var(--border-inverse); }
.stat-cell .label {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 13px; line-height: 1.55;
  color: var(--color-stone);
  margin-top: 16px;
  max-width: 260px;
}
.stats-row.dark .stat-cell .label { color: var(--color-stone-dark); }

/* ============================================================
   SERVICES (homepage cards)
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: clamp(64px, 8vw, 96px);
}
.service-card {
  background: var(--color-bone-alt);
  border: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--d-micro);
}
.service-card:hover { border-color: var(--color-stone); }
.service-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-lacquer-soft);
  position: relative;
}
.service-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-editorial) var(--ease-standard);
}
.service-card:hover .service-cover img { transform: scale(1.02); }
.service-num-badge {
  position: absolute;
  left: 20px; top: 20px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 32px; line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-bone);
  background: rgba(28, 25, 23, 0.7);
  padding: 8px 14px;
}
.service-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-body .h-3 { font-size: clamp(24px, 2.2vw, 32px); }
.service-body .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

/* ============================================================
   PRESIDENT LOUNGE — bento gallery
   ============================================================ */

.lounge { background: var(--bg-inverse); color: var(--fg-inverse); padding: clamp(72px, 9vw, 96px) 0 clamp(96px, 11vw, 128px); }
.lounge .h-1 { color: var(--color-bone); }
.lounge .section-head-split { padding-bottom: 64px; padding-top: 0; align-items: end; }
.lounge .section-head-split p { color: var(--color-mist); }

.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-inverse);
  border-bottom: 1px solid var(--border-inverse);
  padding: 40px 0;
  margin-bottom: 56px;
}
.spec { padding: 0 40px; border-right: 1px solid var(--border-inverse); display: flex; flex-direction: column; gap: 16px; }
.spec:last-child { border-right: none; }
.spec-value {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--color-bone);
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-variant-numeric: tabular-nums;
}
.spec-value .unit { font-size: 22px; color: var(--color-stone-dark); letter-spacing: 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.bento figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--color-lacquer-soft);
}
.bento figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-editorial) var(--ease-standard);
}
.bento figure:hover img { transform: scale(1.02); }
.bento figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.bento .cap-num {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.bento .cap-title {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 22px; line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-bone);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.bento .cap-sub {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mist);
  text-align: right;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.bento .s-12-h    { grid-column: span 8; grid-row: span 2; aspect-ratio: 16 / 10; }
.bento .s-4-sq    { grid-column: span 4; aspect-ratio: 5 / 4; }
.bento .s-6-wide  { grid-column: span 6; aspect-ratio: 16 / 9; }
.bento .s-4-one   { grid-column: span 4; aspect-ratio: 1 / 1; }
.bento .s-4-43    { grid-column: span 4; aspect-ratio: 4 / 3; }
.bento .s-12-full { grid-column: span 12; aspect-ratio: 21 / 9; }

.lounge-outro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-top: 56px;
  align-items: end;
}
.lounge-outro .actions { text-align: right; }
.lounge-outro p { color: var(--color-stone-dark); max-width: 720px; }

/* ============================================================
   COACHES
   ============================================================ */

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 56px;
  padding-bottom: 32px;
}
.coach {
  display: grid;
  grid-template-columns: clamp(260px, 30vw, 380px) 1fr;
  gap: 32px;
  align-items: start;
}
.coach-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-lacquer-soft);
  position: relative;
}
.coach-photo picture { width: 100%; height: 100%; display: block; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coach-tag {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-bone);
  background: rgba(28, 25, 23, 0.7);
  padding: 6px 10px;
}
.coach-body { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.coach-body .h-3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.08; }
.coach-bio { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin-top: 8px; }
.coach-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ============================================================
   ACADEMIES (two cards)
   ============================================================ */

.academies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.academy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 48px 40px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--d-default) var(--ease-standard);
}
.academy-card:hover { transform: translateY(-2px); }
.academy-card.light { background: var(--color-bone); color: var(--color-lacquer); border: 1px solid var(--border-1); }
.academy-card.dark  { background: var(--color-lacquer); color: var(--color-bone); }

.academy-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.academy-num {
  position: absolute;
  right: 32px; top: 24px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.academy-card.light .academy-num { color: var(--color-mist); }
.academy-card.dark .academy-num  { color: var(--color-lacquer-soft); }

.academy-name { margin-bottom: 24px; }
.academy-card.dark .academy-name { color: var(--color-bone); }
.academy-addr { font-size: 15px; line-height: 1.65; max-width: 460px; margin-bottom: 28px; }
.academy-card.light .academy-addr { color: var(--color-stone); }
.academy-card.dark  .academy-addr { color: var(--color-stone-dark); }

.academy-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-1);
  padding-top: 20px;
}
.academy-card.dark .academy-foot { border-top-color: var(--border-inverse); }
.academy-phone {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular);
  font-size: 28px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
}
.academy-cta {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.process-row .process-step {
  padding: 48px 32px;
  border-right: 1px solid var(--border-1);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-row .process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  color: var(--color-mist);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.process-row .process-step p { font-size: 14px; line-height: 1.65; color: var(--fg-2); max-width: 280px; margin: 0; }

/* ============================================================
   NEWS
   ============================================================ */

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 56px;
  gap: 32px;
  flex-wrap: wrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--d-default) var(--ease-standard);
}
.news-card:hover { transform: translateY(-2px); }
.news-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-lacquer-soft);
  margin-bottom: 24px;
}
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--d-editorial) var(--ease-standard); }
.news-card:hover .news-cover img { transform: scale(1.02); }
.news-card .h-3 { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.12; margin: 14px 0; }
.news-card p { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin: 0 0 20px; }
.news-card .more {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 13px;
  color: var(--color-lacquer);
}

/* ============================================================
   SWING ANALYSIS
   ============================================================ */

.swing { background: var(--color-lacquer); color: var(--color-bone); padding: clamp(80px, 12vw, 144px) 0; }
.swing-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.swing-intro .h-1 { color: var(--color-bone); margin-bottom: 32px; }
.swing-intro p { color: var(--color-mist); max-width: 560px; margin-bottom: 32px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; }
.swing-intro p strong { color: var(--color-bone); font-weight: var(--fw-semibold); }
.swing-intro .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.swing-intro .actions { display: flex; gap: 12px; flex-wrap: wrap; }

.swing-card {
  background: var(--color-night);
  border: 1px solid var(--border-inverse);
  padding: 32px;
}
.swing-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-inverse);
  margin-bottom: 24px;
}
.swing-week {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.swing-finding { margin-bottom: 28px; }
.swing-finding .h-3 { font-size: clamp(28px, 3vw, 44px); line-height: 1.08; margin: 16px 0 14px; color: var(--color-bone); }
.swing-finding p { font-size: 15px; line-height: 1.65; color: var(--color-stone-dark); margin: 0; }
.swing-finding p strong { color: var(--color-bone); font-weight: var(--fw-semibold); }

.swing-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-inverse);
  padding-top: 20px;
}
.swing-metric { padding: 0 16px; border-right: 1px solid var(--border-inverse); }
.swing-metric:last-child { border-right: none; }
.swing-metric .val {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 40px; line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-bone);
  font-variant-numeric: tabular-nums;
}
.swing-metric.alert .val { color: var(--accent); }
.swing-metric .lbl {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  color: var(--color-stone-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 10px;
}
.swing-trace {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-inverse);
}
.swing-trace svg { width: 100%; height: 60px; display: block; }
.swing-trace .axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 10px;
  color: #5C574F;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: var(--bg-1); padding: clamp(80px, 12vw, 144px) 0 96px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-info .h-1 { margin-bottom: 32px; }
.contact-info > .t-lede { max-width: 520px; margin-bottom: 48px; }

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--border-1);
}
.contact-row.last { border-bottom: 1px solid var(--border-1); }
.contact-row.two { grid-template-columns: 140px 1fr; }
.contact-row .academy-name-sm {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-lacquer);
}
.contact-row .addr {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-stone);
  margin-top: 6px;
}
.contact-row .phone {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-lacquer);
  font-variant-numeric: tabular-nums;
}
.contact-row a { color: inherit; }

.contact-form {
  background: var(--color-lacquer);
  color: var(--color-bone);
  padding: 48px;
}
.contact-form .h-3 { color: var(--color-bone); font-size: clamp(28px, 3vw, 36px); margin-bottom: 12px; }
.contact-form .small {
  font-size: 13px;
  color: var(--color-stone-dark);
  margin-bottom: 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field + .field { margin-top: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input, .select, .textarea {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  padding: 14px;
  background: var(--color-night);
  border: 1px solid var(--color-hairline-dark);
  color: var(--color-bone);
  border-radius: var(--radius-none);
  outline: none;
  width: 100%;
  transition: border-color var(--d-micro);
}
.input::placeholder, .textarea::placeholder { color: var(--color-stone); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); }
.textarea { resize: vertical; min-height: 96px; }

.interest-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.interest {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border: 1px solid var(--color-hairline-dark);
  background: transparent;
  color: var(--color-mist);
  cursor: pointer;
  transition: all var(--d-micro);
}
.interest.on {
  background: var(--accent);
  color: var(--color-bone);
  border-color: var(--accent);
}

.form-footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-footer .note { font-size: 12px; color: var(--color-stone-dark); }

.signoff {
  margin-top: clamp(96px, 12vw, 144px);
  padding-top: 64px;
  border-top: 1px solid var(--border-1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}
.signoff .h-hero { line-height: 0.92; letter-spacing: -0.045em; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-lacquer);
  color: var(--color-bone);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-inverse);
}
.footer-brand p { color: var(--color-stone-dark); margin: 16px 0 24px; max-width: 360px; font-size: 14px; line-height: 1.65; }
.footer-social { display: flex; gap: 12px; }
.social-pill {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 12px;
  color: var(--color-bone);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--color-hairline-dark);
  letter-spacing: 0.04em;
  transition: border-color var(--d-micro), color var(--d-micro);
}
.social-pill:hover { border-color: var(--accent); color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span, .footer-col li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-mist);
  line-height: 1.4;
  text-decoration: none;
  list-style: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-stone-dark);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom > div { display: flex; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */

.reveal { opacity: 0; transform: translateY(10px);
          transition: opacity var(--d-entrance) var(--ease-entrance),
                      transform var(--d-entrance) var(--ease-entrance); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   LEGACY SUB-PAGE COMPAT
   (Re-styles classes used in about/academy/coaches/contact/etc.)
   ============================================================ */

.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-stone);
  display: inline-block;
}

.display, .display em {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  letter-spacing: -0.035em;
  font-style: normal;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  color: var(--color-lacquer);
}
.display em { color: var(--accent); font-weight: var(--fw-regular); }

.lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
}
.lede.mx-auto { margin-left: auto; margin-right: auto; }

.divider { height: 1px; background: var(--border-1); margin: 64px 0; }

/* Legacy hero on sub-pages — stays on-brand */
section.hero:not(.hero-page):not(.page-hero) {
  /* page heroes (in index.html) keep the modern hero layout */
}
.page-hero,
section.page-hero,
.hero-page,
section.hero.hero-page {
  position: relative;
  background: var(--color-lacquer);
  color: var(--color-bone);
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero .hero-bg,
.hero-page .hero-bg,
section.hero.hero-page .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-bg img,
.hero-page .hero-bg img,
section.hero.hero-page .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.page-hero::after,
.hero-page::after,
section.hero.hero-page::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.3) 0%, rgba(28,25,23,0.6) 100%);
  z-index: 0;
}
.page-hero .hero-content,
.hero-page .hero-content,
section.hero.hero-page .hero-content {
  position: relative; z-index: 1;
  padding: 96px 0 80px;
  color: var(--color-bone);
}
.page-hero .hero-content .eyebrow,
.hero-page .hero-content .eyebrow,
section.hero.hero-page .hero-content .eyebrow { color: var(--color-mist); }
.page-hero .hero-content .display,
.hero-page .hero-content .display,
section.hero.hero-page .hero-content .display { color: var(--color-bone); }
.page-hero .hero-meta,
.hero-page .hero-meta,
section.hero.hero-page .hero-meta {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap; margin-top: 32px;
}
.page-hero .hero-actions,
.hero-page .hero-actions,
section.hero.hero-page .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero .hero-meta-text,
.hero-page .hero-meta-text,
section.hero.hero-page .hero-meta-text {
  font-family: var(--font-body); font-size: 13px;
  color: var(--color-mist); margin: 0; max-width: 460px;
}

/* Legacy sub-page services, split, stats, coaches, process */
.services { background: var(--bg-1); padding: clamp(80px, 12vw, 128px) 0; }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 64px);
}
.service {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px 0; border-top: 1px solid var(--border-1);
}
.service-num {
  font-family: var(--font-body); font-weight: var(--fw-medium);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
}
.service h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular);
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.015em;
  color: var(--color-lacquer);
  margin: 0;
}
.service p { font-size: 15px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.service-features { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 14px; color: var(--color-stone); padding-left: 16px; position: relative;
}
.service-features li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 1px; background: var(--accent);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-content { display: flex; flex-direction: column; gap: 20px; }
.split-content h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em; line-height: 1.05;
  color: var(--color-lacquer); margin: 0;
}
.split-content p { font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.split-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1);
  padding: 24px 0; margin-top: 16px;
}
.split-meta > div { padding: 0 16px; border-right: 1px solid var(--border-1); }
.split-meta > div:last-child { border-right: none; }
.split-meta .label {
  display: block; font-family: var(--font-body); font-weight: var(--fw-medium);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--color-stone); margin-bottom: 8px;
}
.split-meta .value {
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular); font-size: 22px; letter-spacing: -0.01em;
  color: var(--color-lacquer); font-variant-numeric: tabular-nums;
}
.split-actions { margin-top: 16px; }

.stats { background: var(--bg-1); padding: clamp(80px, 12vw, 128px) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1);
  margin-top: 48px;
}
.stats-grid .stat { padding: 48px 32px; border-right: 1px solid var(--border-1); }
.stats-grid .stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light); font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.04em; line-height: 0.95;
  color: var(--color-lacquer); font-variant-numeric: tabular-nums;
}
.stat-num em { font-style: normal; color: var(--accent); }
.stat-label {
  display: block; margin-top: 16px;
  font-family: var(--font-body); font-size: 13px; color: var(--color-stone);
  max-width: 260px;
}

/* Sub-page coach list (single column) */
.coach-role {
  font-family: var(--font-body); font-weight: var(--fw-medium);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); display: block;
}
.coach-name {
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular); font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em; color: var(--color-lacquer); margin: 8px 0;
}
.coach-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  display: inline-block; font-family: var(--font-body);
  font-weight: var(--fw-medium); font-size: 11px; letter-spacing: 0.04em;
  padding: 6px 10px; border: 1px solid var(--border-1);
  color: var(--color-lacquer);
}

.process { background: var(--bg-1); padding: clamp(80px, 12vw, 128px) 0; }
.process-head { margin-bottom: 56px; }
.process-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--border-1); border-left: 1px solid var(--border-1);
}
.process-list .process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  display: flex; flex-direction: column; gap: 16px;
  background: var(--bg-1);
}
.num-lg {
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light); font-size: 56px; line-height: 1;
  letter-spacing: -0.04em; color: var(--color-mist); font-variant-numeric: tabular-nums;
}
.process-list .process-step h3 {
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular); font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em; color: var(--color-lacquer); margin: 0;
}
.process-list .process-step p { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin: 0; }
.process-list .process-step .duration {
  font-family: var(--font-body); font-weight: var(--fw-medium);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-stone); margin-top: 8px;
}

.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(48px, 6vw, 96px); padding: clamp(80px, 12vw, 128px) 0 64px; }
.intro-body { display: flex; flex-direction: column; gap: 20px; }
.title-col { display: flex; flex-direction: column; gap: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    /* Explicit viewport height: an inherited height was collapsing the panel to
       ~65px (over-constraining top/bottom), letting links spill over the page. */
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    overflow-y: auto;
    background: var(--bg-1);
    padding: 32px var(--pad-x);
    gap: 20px;
    border-top: 1px solid var(--border-1);
    align-items: flex-start;
    z-index: 49;
  }
  .nav.open a { font-size: 18px; }
  .brand-tagline { display: none; }
  .hero-deck { grid-template-columns: 1fr; gap: 32px; }
  .section-head-split { grid-template-columns: 1fr; align-items: start; }
  .about-grid { grid-template-columns: 1fr; padding-top: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell { padding-top: 32px; padding-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento .s-12-h, .bento .s-12-full { grid-column: span 6; aspect-ratio: 16/10; grid-row: auto; }
  .bento .s-4-sq, .bento .s-4-one, .bento .s-4-43 { grid-column: span 3; }
  .bento .s-6-wide { grid-column: span 6; }
  .lounge-outro { grid-template-columns: 1fr; }
  .lounge-outro .actions { text-align: left; }
  .coaches-grid { grid-template-columns: 1fr; gap: 48px; }
  .academies { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .process-row .process-step { border-right: none; border-bottom: 1px solid var(--border-1); }
  .process-row .process-step:nth-child(odd) { border-right: 1px solid var(--border-1); }
  .news-grid { grid-template-columns: 1fr; }
  .swing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .signoff { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .coach { grid-template-columns: 1fr; gap: 24px; }
  .coach-photo { width: 100%; max-width: 480px; aspect-ratio: 1 / 1; }
  .process-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .header-inner { gap: 12px; }
  .lang { display: none; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-1); padding-bottom: 32px; }
  .stat-cell:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .spec-strip { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .spec { border-right: none; padding: 16px 0; border-bottom: 1px solid var(--border-inverse); }
  .spec:last-child { border-bottom: none; }
  .academy-card { padding: 32px 28px 28px; min-height: 360px; }
  .signoff .h-hero { font-size: 56px; }
  .hero-overlay { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat { border-right: none; border-bottom: 1px solid var(--border-1); }
}

/* ── Mobile hardening: guarantee every content section stacks on phones / small tablets ── */
@media (max-width: 768px) {
  .hero-deck,
  .section-head-split,
  .about-grid,
  .services-grid,
  .lounge-outro,
  .coaches-grid,
  .academies,
  .news-grid,
  .swing-grid,
  .contact-grid,
  .signoff,
  .footer-top,
  .split,
  .intro-grid,
  .coach,
  .process-list,
  .process-row,
  .stats-row,
  .stats-grid,
  .field-row,
  .contact-row,
  .contact-row.two,
  .spec-strip { grid-template-columns: 1fr; }

  /* Bento mosaic → single stacked column (it otherwise stayed multi-column on phones). */
  .bento { grid-template-columns: 1fr; }
  .bento .s-12-h,
  .bento .s-4-sq,
  .bento .s-6-wide,
  .bento .s-4-one,
  .bento .s-4-43,
  .bento .s-12-full {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  /* In a single column, side dividers should read as bottom dividers. */
  .stat-cell,
  .stats-grid .stat { border-right: none; }
  .process-row .process-step { border-right: none; border-bottom: 1px solid var(--border-1); }
}

/* Small phones: pull back oversized display type so headlines fit the viewport. */
@media (max-width: 480px) {
  .h-hero    { font-size: clamp(38px, 12vw, 52px); }
  .h-display { font-size: clamp(34px, 10vw, 44px); }
  .h-1       { font-size: clamp(32px, 9vw, 44px); }
  .signoff .h-hero { font-size: 44px; }
  .section   { padding: clamp(56px, 14vw, 80px) 0; }
}

/* ============================================================
   JOURNAL / BLOG — reuses the main editorial system
   (Fraunces + Geist · bone/lacquer/persimmon · hairlines)
   ============================================================ */

/* Category filter bar */
.cat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: clamp(32px, 4vw, 48px);
}
.cat-chip {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  color: var(--color-lacquer);
  border: 1px solid var(--border-1);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--d-micro) var(--ease-standard),
              color var(--d-micro) var(--ease-standard),
              border-color var(--d-micro) var(--ease-standard);
}
.cat-chip:hover { border-color: var(--color-stone); }
.cat-chip.active {
  background: var(--color-lacquer);
  color: var(--color-bone);
  border-color: var(--color-lacquer);
}

/* Featured post — editorial split */
.journal-feature { padding: 0 0 clamp(48px, 6vw, 72px); }
.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--border-1);
  padding-top: clamp(40px, 5vw, 56px);
}
.featured-card .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-lacquer-soft);
}
.featured-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-editorial) var(--ease-standard);
}
.featured-card:hover .img-wrap img { transform: scale(1.02); }
.featured-card .body { display: flex; flex-direction: column; gap: 16px; }
.featured-card .pill {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.featured-card .meta {
  display: flex; gap: 16px;
  font-size: 13px; color: var(--color-stone);
  font-variant-numeric: tabular-nums;
}
.featured-card h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
.featured-card .excerpt {
  font-size: 16px; line-height: 1.65;
  color: var(--fg-2); max-width: 48ch; margin: 0;
}

/* Empty state */
.post-empty {
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 20px;
  color: var(--color-stone);
  font-size: 15px;
}

/* Newsletter band */
.journal-newsletter {
  margin-top: clamp(64px, 8vw, 96px);
  background: var(--color-lacquer);
  color: var(--color-bone);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px);
}
.journal-newsletter h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-bone);
  margin: 0 0 12px;
}
.journal-newsletter p { color: var(--color-mist); font-size: 14px; line-height: 1.6; margin: 0; max-width: 42ch; }
.journal-newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.journal-newsletter input {
  flex: 1; min-width: 200px;
  font-family: var(--font-body); font-size: 14px;
  padding: 14px;
  background: var(--color-night);
  border: 1px solid var(--color-hairline-dark);
  color: var(--color-bone);
  transition: border-color var(--d-micro);
}
.journal-newsletter input::placeholder { color: var(--color-stone); }
.journal-newsletter input:focus { outline: none; border-color: var(--accent); }

/* ---- Post article ---- */
.post-hero { background: var(--bg-1); padding: clamp(48px, 7vw, 96px) 0 0; }
.post-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.post-breadcrumb a:hover { color: var(--accent); }
.post-breadcrumb .sep { color: var(--color-mist); }
.post-hero h1 { max-width: 18ch; }
.post-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: clamp(24px, 3vw, 36px);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-stone);
}
.post-meta strong { color: var(--color-lacquer); font-weight: var(--fw-semibold); }
.post-cover {
  max-width: var(--container);
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 var(--pad-x);
}
.post-cover img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  background: var(--color-lacquer-soft);
}
.post-body { background: var(--bg-1); padding: clamp(48px, 6vw, 80px) 0; }
.prose-container { max-width: 720px; margin: 0 auto; }
.prose-container > * { max-width: 100%; }
.prose-container p { font-size: 18px; line-height: 1.75; color: var(--fg-2); margin: 0 0 24px; }
.prose-container h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1; letter-spacing: -0.025em;
  color: var(--fg-1); margin: clamp(40px, 5vw, 56px) 0 16px;
}
.prose-container h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-regular);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--fg-1); margin: 32px 0 12px;
}
.prose-container a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.prose-container img { width: 100%; height: auto; margin: 32px 0; }
.prose-container ul, .prose-container ol { padding-left: 20px; margin: 0 0 24px; }
.prose-container li { font-size: 18px; line-height: 1.7; color: var(--fg-2); margin-bottom: 8px; }
.prose-container blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px; margin: 32px 0;
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light); font-style: italic;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.4; color: var(--fg-1);
}
.prose-container code {
  font-family: var(--font-mono); font-size: 0.9em;
  background: var(--color-bone-block); padding: 2px 6px;
}

/* Related / read-more */
.related { background: var(--bg-2); padding: clamp(48px, 6vw, 72px) 0; }
.related .head {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.related .head h3 {
  font-family: var(--font-display); font-variation-settings: 'opsz' 144;
  font-weight: var(--fw-light); font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.025em; color: var(--fg-1); margin: 0;
}

@media (max-width: 768px) {
  .featured-card,
  .journal-newsletter { grid-template-columns: 1fr; }
  .featured-card { gap: 24px; }
}
