/* Gymnasium — coaching-led strength & conditioning */
/* Brand: Graphik (display+body), GT Pressura Mono (eyebrows), Yellow #EFB963, Cream #EFE9DC, Black */

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Medium.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Semibold.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Black.woff") format("woff");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pressura Mono";
  src: url("../fonts/GT-Pressura-Mono-Regular.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Pressura Mono";
  src: url("../fonts/GT-Pressura-Mono-Bold.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Primary brand */
  --black: #000000;
  --ink: #000000;
  --ink-soft: #1A1A1A;
  --muted: #464646;
  --cream: #EFE9DC;
  --bg: #EFE9DC;
  --bg-alt: #E4DDCC;
  --line: #D5CDB9;
  --yellow: #EFB963;
  --yellow-deep: #B87C3A;
  --navy: #1A3749;
  --teal: #00445F;
  --sage: #667D5C;
  --sand: #C8B8A9;

  --accent: var(--yellow);
  --accent-deep: var(--yellow-deep);

  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 0px;          /* sharp, no rounded corners */
  --radius-sm: 2px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);

  --font-display: "Graphik", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-sans: "Graphik", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-mono: "Pressura Mono", "JetBrains Mono", "Roboto Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--yellow-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 .5em;
  color: var(--ink);
  text-transform: none;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -0.018em; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }
.section-alt { background: var(--bg-alt); }
.section-cream { background: var(--cream); }
.section-yellow { background: var(--yellow); color: var(--black); }
.section-yellow h1, .section-yellow h2, .section-yellow h3 { color: var(--black); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: var(--yellow); }
.section-black { background: var(--black); color: #fff; }
.section-black h1, .section-black h2, .section-black h3 { color: #fff; }
.section-black a { color: var(--yellow); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-dark .eyebrow, .section-black .eyebrow { color: var(--yellow); }
.section-yellow .eyebrow { color: var(--black); }

.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 64ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 233, 220, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  height: 22px;
  width: auto;
  display: block;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a:hover { color: var(--yellow-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all .25s ease;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: calc(64px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: auto;
    flex-direction: column;
    background: var(--cream);
    padding: 20px var(--pad) 32px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .25s ease;
    z-index: 40;
  }
  .nav-links:not(.open) {
    pointer-events: none;
    visibility: hidden;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; padding: 6px 0; }
  .nav-toggle { display: block; }
  .nav-cta .btn { padding: 10px 16px; font-size: .85rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); transform: translateY(-1px); }
.btn-accent { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: var(--yellow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--yellow); }
.section-dark .btn-ghost, .section-black .btn-ghost { color: #fff; border-color: #fff; }
.section-dark .btn-ghost:hover, .section-black .btn-ghost:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero h1 { max-width: 18ch; }
.hero .lede { margin-top: 16px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-img {
  aspect-ratio: 4/5;
  background: var(--bg-alt) center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow);
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(0,0,0,.12));
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 4/3; max-height: 480px; }
}

/* ---------- Pillars / cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.section-alt .card { background: #fff; }
.card-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }
.card-dark p { color: #C5D2D8; }

/* ---------- Pillars ---------- */
.pillar {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.pillar .num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--yellow-deep);
  margin-bottom: 10px;
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 8px; font-weight: 900; }
.pillar p { color: var(--ink-soft); margin: 0; }

/* ---------- Proof bar ---------- */
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
}
.split-img {
  aspect-ratio: 4/3;
  background: var(--bg-alt) center/cover no-repeat;
}

/* ---------- FAQ / accordion ---------- */
.faq-group { border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-q::after {
  content: "+";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--yellow-deep);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 0 22px;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Locations grid ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .loc-grid { grid-template-columns: 1fr; } }

.loc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.section-alt .loc-card { background: #fff; }
.loc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); border-color: var(--yellow-deep); }
.loc-card-img {
  aspect-ratio: 16/10;
  background: var(--bg-alt) center/cover no-repeat;
}
.loc-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.loc-card h3 { margin-bottom: 4px; font-size: 1.4rem; font-weight: 900; }
.loc-card .area {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}
.loc-card p { color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.loc-card .link {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  text-decoration: none;
}
.loc-card-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.loc-card-actions a:hover { color: var(--ink); }

/* ---------- Steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 60px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--yellow-deep);
  letter-spacing: -.02em;
  line-height: 1;
}
.step h3 { font-size: 1.25rem; font-weight: 900; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Big CTA ---------- */
.cta-band {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--ink); max-width: 22ch; margin: 0 auto 16px; }
.cta-band p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 28px; }
.cta-band .btn-accent { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.cta-band .btn-accent:hover { background: var(--cream); color: var(--ink); border-color: var(--ink); }

/* dark CTA variant */
.cta-band-dark { background: var(--ink); color: #fff; }
.cta-band-dark h2 { color: #fff; }
.cta-band-dark p { color: #B8B8B8; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #B8B8B8;
  padding: 64px 0 32px;
  font-size: .92rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.site-footer .brand img { filter: brightness(0) invert(1); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* ---------- Forms ---------- */
form .field { display: block; margin-bottom: 18px; }
form label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
}
form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-family: var(--font-sans);
  color: var(--ink);
}
form input:focus, form select:focus, form textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--yellow-deep);
}

/* Required + optional hint badges in labels */
form label .req { color: #C0392B; font-weight: 800; margin-left: 2px; }
form label .optional {
  color: var(--muted);
  font-weight: 500;
  font-size: .7rem;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

/* Error state on individual fields */
form input.error, form select.error, form textarea.error {
  border-color: #C0392B;
  background: #FFF5F4;
}

/* Inline error banner */
.form-error {
  background: #FFF5F4;
  border: 1px solid #E5B0A8;
  color: #8B1F1F;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: .92rem;
}

/* Disabled / fading-button state for un-validated form */
.btn:disabled,
.btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Honeypot field hidden from humans, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Success state shown in place of the form */
.form-success {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow-deep);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.form-success h3 {
  margin: 0 0 8px 0;
  font-size: 1.6rem;
  font-weight: 900;
}
.form-success p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- Misc ---------- */
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 6px;
}
.review {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 24px;
}
.section-alt .review { background: #fff; }
.review p { color: var(--ink-soft); font-style: italic; margin-bottom: 12px; }
.review .by {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Image band (full-bleed photo break) ---------- */
.image-band {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.image-band.photos-tbc {
  background-color: var(--cream);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0,0,0,.04) 12px, rgba(0,0,0,.04) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 880px) {
  .image-band { height: 260px; }
}

/* 3-column gallery (events) */
.gallery.gallery-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .gallery.gallery-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Galleries ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.gallery .tile {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.member-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 32px;
}
.member-gallery .tile {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}
.member-gallery .tile.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.member-gallery .tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 880px) {
  .member-gallery { grid-template-columns: repeat(3, 1fr); }
  .member-gallery .tile.wide { grid-column: span 2; }
  .member-gallery .tile.tall { grid-row: auto; aspect-ratio: 1 / 1; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: 0; margin: 48px 0; }

/* ---------- Trust strip (dark band: stars + reviews + partner logos) ---------- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 36px 0 32px;
}
.trust-strip .container { max-width: var(--max); padding-left: var(--pad); padding-right: var(--pad); }

.trust-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: .9rem;
  letter-spacing: .04em;
  color: #D8D8D8;
}
.trust-stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}
.trust-stat strong { color: #fff; font-weight: 800; font-size: 1.05rem; }
.trust-stat .google-mark {
  height: 16px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.trust-stat .meta { color: #B8B8B8; }

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 56px;
  padding-top: 24px;
  border-top: 1px solid #1F1F1F;
}
.trust-logos img {
  height: 26px;
  width: auto;
  opacity: .82;
  filter: brightness(0) invert(1);
  transition: opacity .15s ease;
  flex-shrink: 0;
}
.trust-logos img:hover { opacity: 1; }
.trust-logos a { display: inline-flex; line-height: 0; text-decoration: none; }
.trust-logos img.bcorp-mark { height: 34px; }
.trust-logos img.mh-mark { height: 18px; }

@media (max-width: 600px) {
  .trust-logos { gap: 22px 36px; }
  .trust-logos img { height: 20px; }
  .trust-logos img.bcorp-mark { height: 24px; }
  .trust-logos img.mh-mark { height: 14px; }
  .trust-stat { font-size: .82rem; gap: 8px; }
}

/* keep old text-list version still legible if any page hasn't migrated */
.trust-strip ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 36px; justify-content: center; font-family: var(--font-mono); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Map embeds ---------- */
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  background: #2a2a2a;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-frame.tall { aspect-ratio: 4 / 3; }
.map-frame.wide { aspect-ratio: 21 / 9; }
@media (max-width: 700px) {
  .map-frame, .map-frame.wide { aspect-ratio: 4 / 3; }
}
.section-dark .map-frame { border-color: #2A2A2A; box-shadow: 0 8px 24px rgba(0,0,0,.4); }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--ink);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  border-top: 1px solid #2A2A2A;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}
.mobile-cta .btn {
  flex: 1;
  padding: 12px 14px;
  font-size: .8rem;
  text-align: center;
  letter-spacing: .06em;
}
.btn-outline-light {
  display: inline-block;
  padding: 14px 24px;
  background: transparent;
  color: #fff;
  border: 1px solid #555;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 880px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---------- Timetable frame ---------- */
.timetable-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin: 32px 0;
  overflow: auto;
  box-shadow: var(--shadow);
}
.timetable-frame img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 720px;
}
@media (max-width: 880px) {
  .timetable-frame { padding: 8px; }
  .timetable-frame::after {
    content: "Scroll →";
    display: block;
    text-align: right;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
  }
}

/* ---------- Footer social row ---------- */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-social a { color: var(--yellow); text-decoration: none; }
.footer-social a:hover { color: #fff; }
