:root {
  --ink: #262525;
  --paper: #f4f1ea;
  --clay: #c25512;
  --clay-dark: #bf5f00;
  --orange: #f8971d;
  --grass: #163d20;
  --lime: #7ac142;
  --muted: #616b66;
  --line: rgba(38, 37, 37, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(38, 37, 37, 0.18);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Trebuchet MS", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* equals the fixed topbar height so the section sits flush under it (no sliver of the previous section) */
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(122, 193, 66, 0.35);
  touch-action: manipulation;
}

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

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

/* ─── Skip link ─────────────────────────────────────────────── */

.skip-link {
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  left: max(16px, env(safe-area-inset-left));
  padding: 12px 16px;
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
  transform: translateY(-150%);
  transition: transform 180ms ease;
  z-index: 20;
}

.skip-link:focus-visible {
  outline: 3px solid var(--ink);
  transform: translateY(0);
}

:is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

/* ─── Topbar ─────────────────────────────────────────────────── */

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(244, 241, 234, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 84px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(32px, env(safe-area-inset-right)) 0 max(32px, env(safe-area-inset-left));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  font-family: var(--font-display);
  font-weight: 700;
  gap: 10px;
  letter-spacing: -0.02em;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  flex: 0 0 auto;
}

/* Prominent club logo lockup in the hero — the brand-first moment. */
.hero-logo {
  display: block;
  width: clamp(240px, 34vw, 400px);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.45));
}

/* Legacy booking panel kept in DOM for app.js sacred IDs, but hidden in favour
   of the real booking-module widget rendered into #booking-widget. */
.legacy-hidden {
  display: none !important;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(38, 37, 37, 0.72);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[href="blog.html"] {
  color: var(--clay);
}

.nav-links a[href="blog.html"]:not(:hover) {
  color: rgba(38, 37, 37, 0.72);
}

.nav-cta {
  border-bottom: 2px solid var(--clay);
  color: var(--clay);
  font-weight: 800;
}

.nav-cta:hover {
  color: var(--clay-dark);
}

/* CTA shown only inside the mobile drawer (desktop uses .nav-cta). */
.nav-drawer-cta {
  display: none;
}

/* Hamburger — hidden on desktop, shown at the mobile breakpoint. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink, #262525);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero — full-bleed photo ────────────────────────────────── */

.hero {
  align-items: flex-end;
  color: var(--white);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 128px 8vw 80px;
  position: relative;
}

/* Full-bleed photo layer */
.hero-photo {
  background:
    url("https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?auto=format&fit=crop&w=2200&q=82")
    center / cover no-repeat;
  inset: 0;
  position: absolute;
  z-index: 0;
}

/* Shade / gradient overlay for legibility */
.hero-shade {
  background:
    linear-gradient(90deg, rgba(38, 37, 37, 0.88) 0%, rgba(38, 37, 37, 0.55) 34%, rgba(38, 37, 37, 0.06) 100%),
    linear-gradient(to top, rgba(38, 37, 37, 0.5), transparent 42%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

/* Subtle vertical-line texture over the overlay */
.hero::after {
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0 1px,
    transparent 1px 9vw
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 3;
}

/* ─── Typography ─────────────────────────────────────────────── */

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-title,
.intro h2,
.method-copy h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.6rem, 9vw, 8.8rem);
  line-height: 1;
  margin-bottom: 24px;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 640px;
}

/* ─── Buttons ─────────────────────────────────────────────────── */

.hero-actions,
.booking-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.primary {
  background: var(--clay);
  box-shadow: 0 4px 18px rgba(194, 85, 18, 0.38);
  color: var(--white);
}

.primary:hover {
  background: var(--clay-dark);
  box-shadow: 0 6px 24px rgba(194, 85, 18, 0.48);
}

.ghost {
  background: rgba(255, 250, 240, 0.13);
  color: var(--white);
  outline: 1px solid rgba(255, 250, 240, 0.38);
}

.ghost:hover {
  background: rgba(255, 250, 240, 0.22);
}

/* ─── Section scaffolding ─────────────────────────────────────── */

.section-pad {
  padding: 56px 8vw;
}

/* ─── Intro ───────────────────────────────────────────────────── */

.intro-line {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 72px;
}

.intro-line span {
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 22px;
  text-align: center;
  text-transform: uppercase;
}

.intro-line span:last-child {
  border-right: 0;
}

.intro-grid,
.booking-head,
.contact {
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.intro h2,
.section-title,
.method-copy h2,
.contact-copy h2 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
}

.intro p,
.booking-head p,
.method-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

/* ─── Trust strip ─────────────────────────────────────────────── */

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 40px 8vw;
  text-align: center;
}

.trust-strip .section-kicker {
  display: block;
  margin-bottom: 8px;
}

.trust-strip p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  margin-top: 4px;
}

.trust-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.trust-logo {
  display: block;
  filter: grayscale(0.6) opacity(0.85);
  height: 44px;
  object-fit: contain;
  transition: filter 220ms ease;
  width: auto;
}

.trust-logo:hover {
  filter: grayscale(0) opacity(1);
}

/* ─── Programs (dark section) ─────────────────────────────────── */

.programs {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.programs .section-kicker {
  color: var(--lime);
}

.programs .section-title {
  max-width: 950px;
}

.program-list {
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.program {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  display: grid;
  gap: 28px;
  grid-template-columns: 72px 0.75fr 1.25fr;
  padding: 32px 0;
}

.program span {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.program h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0;
}

.program p {
  color: rgba(255, 250, 240, 0.66);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Decorative cut-out figure in programs dark section */
.program-figure {
  bottom: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  height: 85%;
  max-height: 680px;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: 4vw;
  width: auto;
  z-index: 0;
}

/* ─── Method ──────────────────────────────────────────────────── */

.method {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
}

.method-visual {
  display: grid;
  gap: 12px;
}

.method-image {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(rgba(17, 20, 15, 0.06), rgba(17, 20, 15, 0.26)),
    url("https://images.unsplash.com/photo-1554068865-24cecd4e34b8?auto=format&fit=crop&w=1200&q=82")
    center / cover;
  border-radius: 44% 44% 8px 8px;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.photo-credit {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
}

.photo-credit a {
  border-bottom: 1px solid currentColor;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  font-size: 0.97rem;
  font-weight: 700;
  padding-top: 14px;
}

.check-list li::before {
  color: var(--lime);
  content: "✓ ";
  font-weight: 900;
  margin-right: 4px;
}

/* ─── Booking ─────────────────────────────────────────────────── */

.booking {
  background:
    radial-gradient(circle at 85% 0%, rgba(122, 193, 66, 0.18), transparent 38%),
    linear-gradient(180deg, #ede5d5, var(--paper));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 6vw;
  align-items: center;
}

@media (max-width: 900px) {
  .booking {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.booking-panel {
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  margin-top: 48px;
  padding: 28px;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 18px;
}

.booking-form {
  align-content: start;
  grid-template-columns: 1fr;
}

.wide {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  display: grid;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 46px;
  padding: 12px 14px;
  text-transform: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--grass);
  outline: 3px solid rgba(22, 61, 32, 0.14);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: var(--lime);
}

.schedule-toolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.icon-button {
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  height: 42px;
  line-height: 1;
  transition: background 160ms ease;
  width: 42px;
}

.icon-button:hover {
  background: var(--clay);
}

.slot-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

.day-title {
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: 0.12em;
  padding: 18px 0 6px;
  text-transform: uppercase;
}

.slot {
  background: var(--white);
  border: 1px solid transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  min-height: 46px;
  padding: 10px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.slot:hover {
  border-color: var(--clay);
  transform: translateY(-1px);
}

.slot[aria-pressed="true"] {
  background: var(--grass);
  color: var(--white);
}

.slot.booked {
  background: rgba(38, 37, 37, 0.07);
  color: rgba(38, 37, 37, 0.34);
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-summary {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 22px;
}

.booking-summary span {
  font-weight: 900;
}

.status {
  color: var(--clay-dark);
  font-weight: 800;
  min-height: 24px;
}

/* ─── Locations gallery ───────────────────────────────────────── */

.locations {
  background: var(--paper);
}

.locations .section-kicker {
  display: block;
  margin-bottom: 6px;
}

.locations > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
  margin-top: 0;
  max-width: 520px;
}

.location-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.location-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.location-card img {
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
  width: 100%;
}

.location-card:hover img {
  transform: scale(1.04);
}

.location-name {
  background: linear-gradient(transparent, rgba(38, 37, 37, 0.72));
  bottom: 0;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  left: 0;
  letter-spacing: 0.08em;
  padding: 20px 8px 8px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

/* ─── Contact ─────────────────────────────────────────────────── */

.contact {
  align-items: start;
}

.contact-lines {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
}

.contact-lines a {
  color: var(--clay-dark);
  font-weight: 900;
}

.contact-form {
  background: var(--ink);
  color: var(--white);
  padding: 32px;
}

.contact-form label {
  color: rgba(255, 250, 240, 0.74);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.18);
  color: var(--white);
}

/* ─── Section anchor (invisible scroll target) ────────────────── */

.section-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  /* No negative offset: scroll-padding-top on <html> handles the topbar gap.
     A relative -top here would double-count and overshoot the target. */
  visibility: hidden;
}

/* ─── Booking widget placeholder ──────────────────────────────── */

/* Booking section: heading left, booking widget right (stacks on mobile) */
.booking .booking-head {
  display: block;
  margin: 0;
  text-align: left;
}

.booking-widget-container {
  /* booking-module widget renders into the right column */
  width: 100%;
  max-width: 440px;
  margin: 0;
}

.booking-widget-container:not(:empty) {
  margin-bottom: 40px;
}

/* ─── Location thumb (card without a photo) ───────────────────── */

.location-thumb {
  aspect-ratio: 3 / 2;
  display: block;
  width: 100%;
}

.location-thumb--mlaka {
  background: linear-gradient(135deg, var(--grass) 0%, #2a6040 100%);
}

/* ─── Footer logo ─────────────────────────────────────────────── */

.footer-logo {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  border-radius: 4px;
}

/* ─── Contact coach name ──────────────────────────────────────── */

#coach-name {
  font-weight: 900;
  color: var(--ink);
}

/* ─── Footer ──────────────────────────────────────────────────── */

.footer {
  align-items: center;
  background: var(--grass);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding: 30px 8vw;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.78);
}

.footer-credit a {
  color: var(--orange);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.footer-credit a:hover {
  color: #fff;
}

/* ─── Social links (footer) ───────────────────────────────────── */

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  color: rgba(255, 250, 240, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.social-link svg {
  display: block;
}

/* ─── Reveal animation ────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── Responsive 920px ────────────────────────────────────────── */

@media (max-width: 920px) {
  html {
    scroll-padding-top: 70px;
  }

  .topbar {
    height: 70px;
    padding: 0 max(18px, env(safe-area-inset-right)) 0 max(18px, env(safe-area-inset-left));
  }

  .brand-logo {
    height: 54px;
  }

  .hero-logo {
    width: clamp(200px, 62vw, 300px);
    margin-bottom: 20px;
  }

  /* Hamburger appears; the CTA folds into the drawer to save room. */
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Links become a full-width dropdown drawer below the topbar. */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(244, 241, 234, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    padding: 6px max(18px, env(safe-area-inset-left));
    font-size: 1.06rem;

    /* hidden until toggled */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 9;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links a {
    display: block;
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-drawer-cta {
    display: block;
    color: var(--clay);
    font-weight: 800;
  }

  .hero {
    min-height: 86svh;
    padding: 96px 24px 52px;
  }

  .section-pad {
    padding: 28px max(24px, env(safe-area-inset-right)) 28px max(24px, env(safe-area-inset-left));
  }

  .intro-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-line span {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .intro-line span:nth-child(2n) {
    border-right: 0;
  }

  .intro-grid,
  .booking-head,
  .booking-panel,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

  .program {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .program-figure {
    display: none;
  }

  .method-image {
    min-height: 380px;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: none;
  }

  .trust-logos {
    gap: 28px;
  }

  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* ─── Responsive 560px ────────────────────────────────────────── */

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.2rem, 16vw, 4.4rem);
    margin-bottom: 18px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions .button,
  .booking-summary .button {
    width: 100%;
  }

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

  .booking-panel {
    margin-left: -8px;
    margin-right: -8px;
    padding: 20px;
  }

  .intro h2,
  .section-title,
  .method-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .intro-line {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-logos {
    gap: 20px;
  }

  .trust-logo {
    height: 34px;
  }
}

/* ─── Trial-training request form (replaces the booking widget) ───── */
.trial-form {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 15px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  margin: 0;
  align-content: start;
}
.trial-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}
.trial-form .opt {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85em;
}
.trial-form input,
.trial-form select,
.trial-form textarea {
  font: inherit;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.trial-form button {
  margin-top: 4px;
}
.status--ok { color: var(--grass); font-weight: 800; }
.status--err { color: #b3261e; font-weight: 800; }

/* ─── Naš tim ─────────────────────────────────────────────────────── */
.team {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 6vw;
  align-items: center;
}
.team-name {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--clay-dark);
  margin: 6px 0 12px;
}
.team-photo {
  border-radius: 8px;
  /* Square frame + width cap: coach headshots are usually square/portrait, so a
     square box crops the least and avoids over-upscaling a small upload on
     mobile (where a full-width tall box would 3x-blow-up the image). Applies to
     the CMS-hydrated coach photo too (JS sets only the image layer). */
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  background: url("assets/blog/tennis-04.jpg?v=20260628g") no-repeat,
    linear-gradient(135deg, var(--grass), #245a30);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .team { grid-template-columns: 1fr; gap: 28px; }
  .team-photo { min-height: 240px; }
}
