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

:root {
  --black: #0b130d;
  --white: #e8ece9;
  --accent: #c0c8c0;
  --green: #2d5a3d;
  --green-bright: #3a7a52;
  --green-glow: rgba(45,90,61,0.4);
  --mid: #111a13;
  --muted: #4a5e4d;
  --border: rgba(192,200,192,0.12);
  --silver: #c0c8c0;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  /* in-page anchors (#formats, #how-it-works) must clear the fixed nav */
  scroll-padding-top: 6rem;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── PAGE TRANSITION ── */
body { animation: pageIn 0.5s ease both; }
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 5%;
  background: rgba(11,19,13,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links li { white-space: nowrap; }
.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: var(--black);
  border: none; cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { transform: translateY(-2px); background: #a8b4a8; }

/* ── MOBILE NAV ── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 24px;
  position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--accent);
  position: absolute; left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ── HERO (Home) ── */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5% 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(45,90,61,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(58,122,82,0.15) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(192,200,192,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,200,192,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-tag {
  position: relative; z-index: 1;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-headline-row {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  --headline-size: clamp(2.1rem, 5.2vw, 4.75rem);
  /* Photo height is kept on its own scale so the headline can be resized
     without resizing the picture. 3.51 = the three-headline-line height (2.7)
     plus 30%. */
  --photo-height: calc(3.51 * clamp(2.4rem, 6vw, 5.5rem));
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--headline-size);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero-photo {
  flex: 0 0 auto;
  height: var(--photo-height);
  aspect-ratio: 3 / 2;
  max-width: 46%;
  /* Archivo caps sit 0.123em below the line-box top at this line-height, so the
     same offset lines the photo's top edge up with the top of "Private Golf".
     Recompute this if --font-display changes: (line-height - ascent - descent) / 2
     + (ascent - cap-height), all in em. */
  margin-top: calc(0.123 * var(--headline-size));
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--mid);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-headline em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-stroke-width: max(1px, 0.022em);
  color: transparent;
}
.hero-sub-row {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hero-sub {
  max-width: 420px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO (Inner pages) ── */
.page-hero {
  padding: 10rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg,
.page-hero .hero-grid {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(45,90,61,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(58,122,82,0.12) 0%, transparent 60%);
}
.page-hero .hero-grid {
  background-image:
    linear-gradient(rgba(192,200,192,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,200,192,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 800px;
}
.page-hero-content .section-label { margin-bottom: 1.2rem; }
.page-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.page-hero-headline em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-stroke-width: max(1px, 0.022em);
  color: transparent;
}
.page-hero-sub {
  max-width: 520px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,242,236,0.55);
  line-height: 1.7;
}

/* Photo set beside the page-hero wording, the same pairing the homepage hero
   uses. The height is 1.6x the height of the wording block it sits next to:
   the label (1.152rem + 1.2rem), two headline lines (2 x the headline clamp,
   line-height 1), its 1.5rem margin, and three lines of the sub-paragraph
   (3 x 1.7 x 1.1rem) come to 2H + 9.46rem, so 1.6x that is 3.2H + 15.14rem.
   Width follows from the image's own ratio. The 0.32rem top offset is the
   label's half-leading, so the photo starts level with the visible cap tops
   rather than the line box. Capping the row keeps the photo from drifting far
   from the headline on wide screens. */
.page-hero-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1150px;
  /* 1.6x the wording block; width follows from the photo's own ratio, which
     each page sets as width/height (default 1200:1721) */
  --hero-photo-ratio: 0.6973;
  --hero-photo-h: calc(3.2 * clamp(2.2rem, 5vw, 4rem) + 15.14rem);
  --hero-photo-w: calc(var(--hero-photo-ratio) * var(--hero-photo-h));
}
/* Results page photo is a 740x1085 source */
.page-hero-row--results { --hero-photo-ratio: 0.6819; }
.page-hero-row .page-hero-content {
  /* reserve exactly the photo plus the gap, so the headline never has to wrap */
  max-width: min(800px, calc(100% - var(--hero-photo-w) - 2rem));
}
.page-hero-photo {
  flex: 0 0 auto;
  height: var(--hero-photo-h);
  width: var(--hero-photo-w);
  max-width: 400px;
  aspect-ratio: 1200 / 1721;
  margin-top: 0.32rem;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--mid);
}
.page-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption underneath the photo. The figure itself stops being the frame — it
   becomes a column of frame + caption — so the caption sits outside the crop. */
.page-hero-photo--captioned {
  display: flex;
  flex-direction: column;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  background: none;
  overflow: visible;
}
.page-hero-photo-frame {
  height: var(--hero-photo-h);
  aspect-ratio: var(--hero-photo-ratio);
  width: 100%;
  border: 1px solid var(--border);
  background: var(--mid);
  overflow: hidden;
}
.page-hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-photo-caption {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(192,200,192,0.6);
  /* keeps "Am" from being left alone on the second line */
  text-wrap: balance;
}

@media (max-width: 900px) {
  .page-hero-row { flex-direction: column; align-items: stretch; }
  .page-hero-row .page-hero-content { max-width: none; }
  .page-hero-photo {
    height: auto;
    width: 78%;
    max-width: 320px;
    margin-top: 2.5rem;
  }
  .page-hero-photo-frame { height: auto; }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--black);
  padding: 1rem 2.2rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); background: #a8b4a8; }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 1rem 2.2rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(245,242,236,0.3); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--white); }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0; overflow: hidden; background: var(--mid);
}
.marquee-track {
  display: flex; gap: 4rem; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  white-space: nowrap;
  font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,242,236,0.4);
}
.marquee-item span { color: var(--accent); margin: 0 1rem; }

/* ── SECTION COMMONS ── */
section { padding: 8rem 5%; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* ── SERVICES ── */
#services { background: var(--black); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
}
.services-header p {
  max-width: 340px; color: rgba(245,242,236,0.55);
  font-size: 1rem; font-weight: 300; line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(232,255,71,0.04); }
.service-number {
  font-family: var(--font-display); font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 2rem;
}
.service-icon { font-size: 2rem; margin-bottom: 1.5rem; }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(245,242,236,0.55); line-height: 1.7;
}
.service-tags {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  color: rgba(245,242,236,0.4);
  font-weight: 500;
}

/* ── ABOUT ── */
#about { background: var(--mid); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #111f14, #0d180f);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}
.about-visual-inner {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192,200,192,0.25);
  line-height: 1;
  text-align: center;
  user-select: none;
}
.about-photo-caption {
  position: absolute; bottom: 3rem; left: 2rem; right: 2rem;
  background: rgba(11,19,13,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 1rem 1.4rem;
}
.about-photo-caption-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.05em;
}
.about-photo-caption-title {
  font-size: 0.75rem; color: var(--accent); font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.2rem;
}
.about-accent-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0;
}
.stat { border-left: 2px solid var(--accent); padding-left: 1.2rem; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(1.85rem, 7vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.stat-label {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(245,242,236,0.5); margin-top: 0.3rem; text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-text { color: rgba(245,242,236,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }

.cert-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem;
}
.cert-badge {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(192,200,192,0.25);
  padding: 0.45rem 0.9rem;
  background: rgba(45,90,61,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.cert-badge:hover {
  border-color: var(--silver);
  background: rgba(45,90,61,0.35);
}
.cert-icon { color: var(--silver); font-size: 0.55rem; }
.cert-name {
  font-family: var(--font-display); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--silver);
}

/* ── ACCOLADES / AFFILIATION ── */
.accolade-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem;
}
.accolade {
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  background: rgba(45,90,61,0.16);
  padding: 1.5rem 1.4rem;
  transition: background 0.3s, border-color 0.3s;
}
.accolade:hover {
  background: rgba(45,90,61,0.28);
  border-color: rgba(192,200,192,0.25);
  border-top-color: var(--accent);
}
.accolade-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.accolade-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  letter-spacing: -0.01em; line-height: 1.25; margin-top: 0.6rem;
}
.accolade-text {
  font-size: 0.85rem; font-weight: 300; line-height: 1.7;
  color: rgba(245,242,236,0.55); margin-top: 0.6rem;
}
.accolade-text a { color: var(--silver); text-decoration: none; border-bottom: 1px solid rgba(192,200,192,0.35); }
.accolade-text a:hover { border-bottom-color: var(--silver); }

/* ── PRICING ── */
#pricing { background: var(--black); }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header p { color: rgba(232,236,233,0.5); max-width: 560px; margin: 0 auto; font-weight: 300; }

.pricing-block {
  max-width: 1000px; margin: 0 auto 4rem;
}
.pricing-block-label {
  font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.pricing-block-label::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--silver);
}
.pricing-block-desc {
  font-size: 0.9rem; font-weight: 300; color: rgba(232,236,233,0.5);
  margin-bottom: 1.8rem; line-height: 1.7; max-width: 680px;
}

.single-lesson-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.single-card {
  border: 1px solid var(--border); padding: 2rem 2.5rem;
  background: rgba(192,200,192,0.03);
  transition: border-color 0.3s;
}
.single-card:hover { border-color: rgba(192,200,192,0.3); }
.single-type {
  font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1.2rem;
}
.single-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
}
.single-row:last-of-type { border-bottom: none; }
.single-duration {
  font-size: 0.95rem; font-weight: 300; color: rgba(232,236,233,0.7);
}
.single-price {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 800; letter-spacing: -0.02em;
}
.single-note {
  font-size: 0.75rem; color: rgba(232,236,233,0.35);
  margin-top: 1rem; font-weight: 300; font-style: italic;
}

.junior-program-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.junior-card {
  border: 1px solid var(--border); padding: 2rem;
  text-align: center; transition: border-color 0.3s;
  background: rgba(192,200,192,0.02);
}
.junior-card:hover { border-color: rgba(192,200,192,0.3); }
.junior-featured {
  border-color: var(--silver);
  background: rgba(45,90,61,0.15);
  position: relative;
}
.junior-duration {
  font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1rem;
}
.junior-price {
  font-family: var(--font-display); font-size: clamp(2.1rem, 9vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.junior-price span { font-size: 1rem; font-weight: 300; color: rgba(232,236,233,0.4); }
.junior-detail {
  font-size: 0.78rem; color: rgba(232,236,233,0.4);
  margin-top: 0.6rem; font-weight: 300;
}
/* Two-up variant of .junior-card, used by the weekly Junior Class block.
   It sits inside a half-width .service-card-wide, so the columns are sized by
   content rather than fixed at 2 and the price steps down to match. */
.junior-class-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1rem;
}
.junior-class-grid .junior-card { padding: 1.6rem 1.2rem; }
.junior-class-grid .junior-price { font-size: clamp(1.8rem, 4.5vw, 2.2rem); }
.junior-class-grid .junior-price span { font-size: 0.85rem; }

.adult-monthly-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.monthly-card {
  border: 1px solid var(--border); padding: 2rem 2.2rem;
  background: rgba(192,200,192,0.02); transition: border-color 0.3s;
  position: relative;
}
.monthly-card:hover { border-color: rgba(192,200,192,0.3); }
.monthly-featured {
  border-color: var(--silver);
  background: rgba(45,90,61,0.15);
}
.monthly-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--silver); color: var(--black);
  font-family: var(--font-display); font-size: 0.62rem;
  font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 1rem; white-space: nowrap;
}
.monthly-freq {
  font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--silver); margin-bottom: 1.5rem;
}
.monthly-rows { display: flex; flex-direction: column; gap: 0; }
.monthly-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border);
}
.monthly-row:last-child { border-bottom: none; }
.monthly-dur {
  font-size: 0.9rem; font-weight: 300; color: rgba(232,236,233,0.65);
}
.monthly-price {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 800; letter-spacing: -0.02em;
}
.monthly-price span { font-size: 0.8rem; font-weight: 300; color: rgba(232,236,233,0.4); }

.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  list-style: none;
}
.benefit-card {
  border: 1px solid var(--border); padding: 1.4rem 1.6rem 1.4rem 3.2rem;
  background: rgba(192,200,192,0.02); position: relative;
  font-size: 0.92rem; font-weight: 300; line-height: 1.6;
  color: rgba(232,236,233,0.8); transition: border-color 0.3s;
}
.benefit-card:hover { border-color: rgba(192,200,192,0.3); }
.benefit-card::before {
  content: '✓'; position: absolute; left: 1.4rem; top: 1.4rem;
  font-family: var(--font-display); font-weight: 800;
  color: var(--silver); font-size: 0.95rem; line-height: 1.6;
}
.benefit-value {
  display: inline-block; font-family: var(--font-display);
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--green-bright);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ── WHY CHOOSE US ── */
#why { background: var(--black); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); margin-top: 4rem;
}
.why-card {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border);
  transition: background 0.3s; position: relative; overflow: hidden;
}
.why-card:last-child { border-right: none; }
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { background: rgba(192,200,192,0.04); }
.why-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.why-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 0.8rem;
}
.why-card p {
  font-size: 0.88rem; font-weight: 300; color: rgba(245,242,236,0.5); line-height: 1.7;
}

/* ── GOLF SCHOOLS & PLAYING LESSONS ── */
.services-extended { margin-top: 0; }
.service-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border); border-top: none;
}
.service-card-wide {
  padding: 3rem 2.5rem; position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.service-card-wide:last-child { border-right: none; }
.service-card-wide::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card-wide:hover::before { transform: scaleX(1); }
.service-card-wide:hover { background: rgba(192,200,192,0.04); }

.school-matrix { margin-top: 2rem; }
.school-matrix-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,236,0.35); font-weight: 700; margin-bottom: 0.8rem;
}
.school-axis {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem;
}
.school-pill {
  font-family: var(--font-display); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(192,200,192,0.25);
  color: var(--silver);
  background: rgba(45,90,61,0.15);
}

.contact-nudge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem;
  border: 1px solid var(--accent);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-display); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.contact-nudge:hover {
  background: var(--accent); color: var(--black);
}

/* ── FORM STATES ── */
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.form-success {
  display: none; text-align: center; padding: 3rem 2rem;
  border: 1px solid rgba(192,200,192,0.3); background: rgba(45,90,61,0.15);
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  margin-bottom: 0.8rem;
}
.form-success p { color: rgba(245,242,236,0.6); font-weight: 300; margin-bottom: 1.5rem; }
.field-error {
  font-size: 0.72rem; color: #e07070; font-weight: 500;
  letter-spacing: 0.05em; margin-top: 0.3rem; display: none;
}
.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea { border-color: #e07070; }
.field-group.has-error .field-error { display: block; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--mid); }
.testimonials-header { margin-bottom: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.star-row { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star { color: var(--accent); font-size: 0.85rem; }
.testimonial-card {
  padding: 2.5rem; border: 1px solid var(--border);
  position: relative; background: rgba(255,255,255,0.02);
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(232,255,71,0.3); }
.quote-mark {
  font-family: var(--font-display); font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 800; color: var(--accent); line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem; font-weight: 300; line-height: 1.75;
  color: rgba(245,242,236,0.75); margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--silver));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  color: var(--black); flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
}
.author-role { font-size: 0.78rem; color: rgba(245,242,236,0.4); font-weight: 300; }

/* ── CONTACT ── */
#contact { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-info p { color: rgba(245,242,236,0.55); font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-detail { margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center; }
.contact-detail-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; width: 5.6rem; flex-shrink: 0;
}
.contact-detail-val { font-size: 0.95rem; font-weight: 300; color: rgba(245,242,236,0.7); min-width: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field-group { display: flex; flex-direction: column; gap: 0.5rem; }
.field-group label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: rgba(245,242,236,0.4);
}
.field-group input,
.field-group select,
.field-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--accent); }
.field-group select option { background: #1a1a1a; }
.submit-btn {
  background: var(--accent); color: var(--black);
  border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.1rem 2.5rem; align-self: flex-start;
  transition: transform 0.2s, background 0.2s;
}
.submit-btn:hover { transform: translateY(-2px); background: #a8b4a8; }

/* ── FAQ ── */
.faq-section { background: var(--black); padding: 6rem 5%; }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 2rem;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { color: var(--accent); font-size: 1.4rem; font-weight: 300; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  margin-top: 1rem; color: rgba(245,242,236,0.6); font-weight: 300;
  line-height: 1.7; font-size: 0.95rem;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 5%;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
  background: var(--mid);
}
.footer-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.2rem; letter-spacing: 0.2em; color: var(--accent);
  text-decoration: none;
}
/* The address and the affiliate line stack as a single footer flex item */
.footer-org {
  display: flex; flex-direction: column; gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}
.footer-affiliate {
  font-size: 0.8rem; color: rgba(245,242,236,0.4);
  font-weight: 300; line-height: 1.7;
}
.footer-affiliate a {
  color: var(--accent); text-decoration: none;
  transition: opacity 0.2s;
}
.footer-affiliate a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.8rem; color: rgba(245,242,236,0.35); font-weight: 300; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; }
.footer-links a {
  text-decoration: none; color: rgba(245,242,236,0.4);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 6rem 5%;
  background: var(--mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(45,90,61,0.2) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(245,242,236,0.5);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-banner .btn-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1400px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.06em; }
}

@media (max-width: 1180px) {
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.04em; }
  nav { padding: 1.5rem 3%; }
}

@media (max-width: 1040px) {
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.02em; }
  .nav-cta { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
}

@media (max-width: 900px) {
  .services-grid,
  .testimonials-grid,
  .junior-program-grid,
  .junior-class-grid,
  .adult-monthly-grid,
  .why-grid,
  .service-row-2 { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid var(--border); }
  .why-card:last-child { border-bottom: none; }
  .service-card-wide { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card-wide:last-child { border-bottom: none; }
  .single-lesson-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .accolade-row { grid-template-columns: 1fr; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; }
  .hero-headline-row { flex-direction: column; align-items: stretch; gap: 2rem; }
  .hero-photo { width: 100%; max-width: 100%; height: auto; margin-top: 0; }
  .nav-links { display: none; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; flex-direction: column; justify-content: space-between; }

  /* Panel anchored under the bar rather than a full-screen overlay. Two reasons:
     nav sets backdrop-filter, which makes it the containing block for
     fixed-position children, so an inset:0 child is sized against the bar
     instead of the viewport; and nine centred links at 1.4rem overflowed a
     short or landscape screen with no way to reach the last of them. The panel
     is capped and scrolls, and the logo and Book CTA stay visible and tappable. */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: 0.25rem 5% 1.25rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    z-index: 105;
    max-height: 70vh;
    max-height: 70dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    animation: fadeIn 0.25s ease;
  }
  .nav-links.mobile-open li { white-space: normal; }
  .nav-links.mobile-open a {
    display: flex;
    align-items: center;
    /* 48px keeps every row a comfortable thumb target */
    min-height: 48px;
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.mobile-open li:last-child a { border-bottom: none; }
  /* keep the current-page emphasis, which the panel's opacity would otherwise flatten */
  .nav-links.mobile-open a[aria-current="page"] { opacity: 1; }

  /* Keep the bar's own controls above the open panel */
  .nav-logo, .nav-cta { position: relative; z-index: 106; }

  /* Tablet portrait sits between the desktop and phone rhythms */
  section { padding: 5.5rem 5%; }
  /* clear the fixed bar once the hero stack grows past the viewport */
  #hero { padding-top: 7rem; }

  .page-hero { padding: 8rem 5% 3rem; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SPECIALS ── */
.specials-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap;
}
.specials-header p {
  max-width: 380px; color: rgba(245,242,236,0.55);
  font-size: 1rem; font-weight: 300; line-height: 1.75;
}
.specials-header .section-title { margin-bottom: 0; }
.specials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.special-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  background: rgba(192,200,192,0.03);
  padding: 2.2rem 2rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.special-card:hover {
  border-color: rgba(192,200,192,0.3);
  background: rgba(192,200,192,0.05);
  transform: translateY(-4px);
}
.special-featured {
  border-color: rgba(192,200,192,0.35);
  background: linear-gradient(160deg, rgba(45,90,61,0.18) 0%, rgba(192,200,192,0.04) 60%);
}
.special-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.6rem;
}
.special-badge {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--black); background: var(--accent);
  padding: 0.35rem 0.7rem;
}
.special-status {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: rgba(232,236,233,0.45);
}
.special-status-ending { color: var(--white); }
.special-status-ending::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-bright); margin-right: 0.5rem;
  vertical-align: middle;
}
.special-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 0.9rem;
}
.special-price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 7.5vw, 2.1rem); line-height: 1; color: var(--accent);
  margin-bottom: 1.2rem;
}
.special-price-unit { font-size: 1rem; font-weight: 300; color: rgba(232,236,233,0.4); }
.special-price-was {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: rgba(232,236,233,0.35); text-decoration: line-through;
  margin-left: 0.5rem; vertical-align: middle;
}
.special-desc {
  color: rgba(232,236,233,0.6); font-weight: 300;
  font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.4rem;
}
.special-points { list-style: none; margin-bottom: 1.6rem; }
.special-points li {
  position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem;
  font-size: 0.88rem; font-weight: 300; color: rgba(232,236,233,0.7);
}
.special-points li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 0.7rem; height: 1px; background: var(--accent);
}
.special-meta {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(232,236,233,0.4); font-weight: 500;
  padding-top: 1.2rem; border-top: 1px solid var(--border);
  margin-top: auto; margin-bottom: 1.4rem;
}
.special-cta { text-align: center; }
.special-expired { opacity: 0.5; }
.special-expired .special-cta { pointer-events: none; opacity: 0.5; }

/* Shown only when no .special-card is listed in the grid */
.no-specials { display: none; }
.specials-grid:not(:has(.special-card)) + .no-specials {
  display: block; text-align: center;
  border: 1px solid var(--border); padding: 4rem 2rem;
  background: rgba(192,200,192,0.03);
}
.no-specials h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.no-specials p {
  color: rgba(232,236,233,0.55); font-weight: 300;
  max-width: 480px; margin: 0 auto 2rem; line-height: 1.75;
}
.no-specials .btn-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PROMO CALENDAR ── */
.promo-calendar { list-style: none; border-top: 1px solid var(--border); }
.promo-row {
  display: grid; grid-template-columns: 9rem 16rem 1fr;
  gap: 1.5rem; align-items: baseline;
  padding: 1.4rem 0.5rem; border-bottom: 1px solid var(--border);
  transition: background 0.25s, padding-left 0.25s;
}
.promo-row:hover { background: rgba(192,200,192,0.04); padding-left: 1.2rem; }
.promo-when {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
}
.promo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.promo-note {
  color: rgba(232,236,233,0.5); font-weight: 300;
  font-size: 0.9rem; line-height: 1.7;
}

@media (max-width: 900px) {
  .specials-grid { grid-template-columns: 1fr; }
  .promo-row {
    grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 0;
  }
  .promo-row:hover { padding-left: 0; }
}

/* ── TOUCH DEVICES ──
   :hover latches on after a tap on touch screens, so cards stayed lifted and
   the accent rules stayed drawn until something else was tapped. Neutralise the
   movement-based hover states where there is no real pointer. */
@media (hover: none) {
  .btn-primary:hover,
  .btn-outline:hover,
  .nav-cta:hover,
  .submit-btn:hover,
  .special-card:hover { transform: none; }

  .service-card:hover::before,
  .service-card-wide:hover::before,
  .why-card:hover::after { transform: scaleX(0); }

  .contact-nudge:hover { background: transparent; color: var(--accent); }

  /* iOS Safari zooms the page in when a focused field is under 16px */
  .field-group input,
  .field-group select,
  .field-group textarea { font-size: 16px; }
}

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

/* ── PHONES ──
   The desktop rhythm (8rem section padding, 2.5–3rem card padding) eats most of
   a phone screen before any content appears. Tighten spacing, drop the headline
   floors so long words stop overflowing, and give the primary actions full-width
   thumb targets. */
@media (max-width: 600px) {
  html { scroll-padding-top: 5rem; }

  nav { padding: 0.9rem 5%; }
  .nav-logo { font-size: 1.2rem; letter-spacing: 0.15em; }
  .nav-cta { padding: 0.6rem 0.95rem; font-size: 0.68rem; letter-spacing: 0.08em; }

  section { padding: 4.5rem 5%; }
  .section-label { letter-spacing: 0.2em; gap: 0.6rem; }
  .section-label::before { width: 1.2rem; }
  .section-title,
  .page-hero-headline { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
  .cta-banner h2 { font-size: clamp(1.7rem, 8vw, 2.2rem); }

  /* Hero */
  #hero { padding: 5.5rem 5% 3.5rem; }
  .hero-tag { font-size: 0.66rem; letter-spacing: 0.14em; margin-bottom: 1.1rem; }
  .hero-headline-row { --headline-size: clamp(1.95rem, 8.6vw, 4.75rem); margin-bottom: 1.8rem; gap: 1.5rem; }
  .hero-sub-row { gap: 1.6rem; }
  .hero-sub { font-size: 1rem; }

  .page-hero { padding: 6.5rem 5% 2.5rem; }
  .page-hero-sub { font-size: 1rem; }
  .page-hero-photo { margin-top: 1.8rem; }

  /* Stacked, full-width primary actions */
  .hero-actions,
  .btn-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .btn-actions .btn-primary,
  .btn-actions .btn-outline { width: 100%; text-align: center; }
  .btn-primary, .btn-outline { padding: 0.95rem 1.4rem; }
  .submit-btn { align-self: stretch; width: 100%; }
  .contact-nudge { display: flex; }

  /* Card padding */
  .service-card, .service-card-wide { padding: 2rem 1.4rem; }
  .why-card { padding: 1.8rem 1.4rem; }
  .testimonial-card { padding: 1.8rem 1.4rem; }
  .single-card { padding: 1.6rem 1.4rem; }
  .junior-card, .monthly-card { padding: 1.8rem 1.3rem; }
  .special-card { padding: 1.8rem 1.4rem; }
  .accolade { padding: 1.2rem 1.1rem; }
  .benefit-card { padding: 1.2rem 1.2rem 1.2rem 2.6rem; }
  .benefit-card::before { left: 1.1rem; top: 1.2rem; }
  .form-success { padding: 2rem 1.25rem; }
  .specials-grid:not(:has(.special-card)) + .no-specials { padding: 2.5rem 1.25rem; }

  /* Section rhythm */
  .services-header, .specials-header { margin-bottom: 2.5rem; gap: 1.2rem; }
  .testimonials-header, .pricing-header { margin-bottom: 2.5rem; }
  .why-grid { margin-top: 2.5rem; }
  .pricing-block { margin-bottom: 2.5rem; }
  .about-grid, .contact-grid { gap: 2.5rem; }
  .stat-row { gap: 1.2rem; margin: 2rem 0; }
  .stat { padding-left: 0.9rem; }
  .about-photo-caption { bottom: 1.25rem; left: 1rem; right: 1rem; padding: 0.85rem 1rem; }
  .contact-detail { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .contact-detail-label { width: auto; }

  .faq-section { padding: 4rem 5%; }
  .faq-item { padding: 1.3rem 1.2rem; }
  .faq-item summary { font-size: 0.95rem; gap: 1rem; }

  .cta-banner { padding: 4rem 5%; }
  .marquee-track { gap: 2.2rem; }
  .marquee-item span { margin: 0 0.6rem; }

  footer { padding: 2.5rem 5%; gap: 1rem; }
  .footer-links { gap: 0.2rem 1.4rem; flex-wrap: wrap; }
  .footer-links a { padding: 0.4rem 0; }
}
