/* ============================================================
   SEEDS 13 — template One Way Martial Arts, cores da identidade
   Seeds 13 (base verde). Serve a home e as 19 internas.
   ============================================================ */

@font-face { font-family: "Archivo Black"; src: url("../fonts/archivo-black-latin.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Hanken Grotesk"; src: url("../fonts/hanken-latin.woff2") format("woff2"); font-weight: 400 800; font-display: swap; }

:root {
  --black: #0a0a0a;
  --black-2: #1a1a1a;
  --black-3: #222;
  --gray-100: #f5f5f5;
  --gray-300: #d5d5d5;
  --gray-500: #8a8a8a;
  --gray-600: #6b6b6b;
  --white: #fff;
  /* identidade Seeds 13: o verde da árvore (paleta do site pré-One Way) */
  --brand: #1e5c3a;
  --brand-dark: #17452c;
  --brand-live: #2e7d4f;
  --brand-bright: #8fd6ab; /* acentos de texto sobre verde escuro/foto */
  --brand-tint: #e4efe7;   /* fundo claro esverdeado das seções alternadas */
  --brand-line: #c4d9cb;   /* bordas e divisórias sobre claro */
  --brand-paper: #f7f6f2;  /* papel do site pré-One Way — fundo do body */
  --font-display: "Archivo Black","Arial Black",sans-serif;
  --font-body: "Hanken Grotesk","Segoe UI",Arial,sans-serif;
  --container: 1240px;
  --radius: 4px;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--brand-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: none; }
:focus-visible { outline: 3px solid var(--brand-live); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* -------- type -------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 8vw, 6rem); }
h2, .section-title { font-size: clamp(2rem, 5vw, 3.5rem); text-align: center; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { max-width: 68ch; }

/* -------- buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-display); font-weight: 400;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px; border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-full { width: 100%; }

/* -------- topbar -------- */
.topbar {
  background: var(--brand-dark); color: var(--white);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.topbar .brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--white);
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.04em;
}
.topbar .brand img { height: 40px; width: auto; }
.topbar .brand small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.15em; color: var(--brand-bright); margin-top: 2px; }
.topbar-ig {
  color: var(--white); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 6px;
}
.topbar-ig:hover { color: var(--brand-bright); }
.topbar-ig svg { width: 18px; height: 18px; }

.mega-nav > ul { list-style: none; display: flex; gap: 2px; align-items: center; }
.mega-nav > ul > li { position: relative; }
.mega-nav a {
  color: var(--white);
  font-family: var(--font-display); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 14px; display: inline-block;
}
.mega-nav a:hover { color: var(--brand-bright); }
.mega-nav .has-dropdown .caret { font-size: 0.7em; margin-left: 4px; opacity: 0.7; }
.mega-nav .dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 240px; background: var(--brand-dark);
  border: 1px solid rgba(0,0,0,0.25); padding: 8px 0;
  list-style: none; z-index: 100;
}
.mega-nav > ul > li:hover .dropdown,
.mega-nav > ul > li:focus-within .dropdown { display: block; }
.mega-nav .dropdown a { display: block; padding: 12px 20px; font-size: 0.78rem; }
.mega-nav .dropdown a:hover { background: var(--brand); color: var(--brand-bright); }
.mega-nav .nav-cta {
  /* claro sobre a topbar verde — verde sobre verde não destaca o CTA */
  background: var(--brand-bright); color: var(--black);
  padding: 12px 22px; margin-left: 8px;
}
.mega-nav .nav-cta:hover { background: var(--white); color: var(--black); }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--white);
  font-size: 1.5rem; cursor: pointer;
  padding: 8px 12px; min-width: 44px; min-height: 44px;
}

@media (max-width: 980px) {
  .topbar-ig { display: none; }
  .nav-toggle { display: block; }
  .mega-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--brand-dark);
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
  }
  .mega-nav.open { transform: translateX(0); visibility: visible; transition: transform 0.3s ease, visibility 0s; }
  .mega-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 16px 0; }
  .mega-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .mega-nav a { padding: 18px 24px; display: block; font-size: 0.95rem; }
  .mega-nav .dropdown { display: block; position: static; background: var(--brand-dark); border: 0; padding: 0; }
  .mega-nav .dropdown a { padding: 14px 40px; font-size: 0.8rem; }
  .mega-nav .nav-cta { margin: 12px 24px; text-align: center; }
  body.nav-locked { overflow: hidden; }
}

/* -------- hero -------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex; align-items: flex-end;
  overflow: hidden; color: var(--white);
  isolation: isolate;
}
.hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
}
.hero-inner { padding: 80px 24px 100px; text-align: center; width: 100%; }
.hero .eyebrow {
  font-family: var(--font-body); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.85rem; color: var(--brand-bright); margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* -------- quote carousel (founders) -------- */
.quote-carousel { background: var(--brand); color: var(--white); padding: clamp(60px, 8vw, 100px) 0; }
.quote-track {
  position: relative;
  min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.quote-slide {
  display: none; opacity: 0; transition: opacity 0.5s ease;
  max-width: 960px; margin-inline: auto; text-align: center;
}
.quote-slide.active { display: block; opacity: 1; }
.quote-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.25; text-transform: uppercase;
  margin-bottom: 24px; max-width: none;
}
.quote-slide cite {
  font-family: var(--font-body); font-style: normal;
  color: var(--brand-bright); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.82rem; font-weight: 800;
}
/* Alvo de toque de 28px (auditoria pede >=24); o pontinho visual segue 10px,
   desenhado no ::before para não engordar o desenho. */
.quote-dots { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.quote-dots button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 0; background: transparent; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.quote-dots button::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.quote-dots button.active::before { background: var(--brand-bright); transform: scale(1.2); }
.quote-nav { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 12px; opacity: 0.5; transition: opacity 0.2s ease; }
.quote-nav:hover { opacity: 1; color: var(--brand-bright); }
.quote-nav.prev { left: 8px; }
.quote-nav.next { right: 8px; }

/* -------- 3 cards (Our Team / Programs / Shop) -------- */
.cards-3 { padding: 0; }
.cards-3 .cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.card-big {
  position: relative; aspect-ratio: 4 / 5;
  overflow: hidden; display: block; color: var(--white);
  background: var(--brand-dark);
}
.card-big img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.card-big::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1) 55%);
}
.card-big:hover img { transform: scale(1.05); }
.card-label {
  position: absolute; bottom: 40px; left: 32px; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  text-transform: uppercase; color: var(--white);
  line-height: 1;
}
@media (max-width: 820px) {
  .cards-3 .cards-grid { grid-template-columns: 1fr; }
  .card-big { aspect-ratio: 16 / 10; }
}

/* -------- trial form -------- */
.trial-form-section { background: var(--brand-tint); padding: clamp(60px, 8vw, 100px) 0; }
.trial-form-section .section-title { margin-bottom: 40px; }
.trial-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 720px; margin-inline: auto;
}
.fld { display: flex; flex-direction: column; gap: 6px; }
.fld[hidden] { display: none; }
.fld-full { grid-column: 1 / -1; }
.fld span {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-600);
}
.fld input, .fld select {
  padding: 14px 16px; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--brand-line); background: var(--white);
  border-radius: var(--radius); color: var(--black);
}
.fld input:focus, .fld select:focus { outline: 2px solid var(--brand); outline-offset: 0; border-color: var(--brand); }
.trial-form .btn-full { grid-column: 1 / -1; margin-top: 8px; padding: 20px; font-size: 1rem; }
.form-fallback { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--gray-600); }
.form-fallback a { color: var(--brand); font-weight: 700; }
@media (max-width: 640px) { .trial-form { grid-template-columns: 1fr; } }

/* -------- reviews -------- */
.reviews-section { padding: clamp(60px, 8vw, 100px) 0; }
.reviews-section .section-title { margin-bottom: 48px; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white); border: 1px solid var(--brand-line);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .g-icon { width: 24px; height: 24px; }
.review-card p { flex: 1; font-size: 0.95rem; line-height: 1.55; color: var(--black); max-width: none; }
.review-meta { font-size: 0.85rem; color: var(--gray-500); }
.review-meta b { color: var(--black); font-family: var(--font-body); font-weight: 800; }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-cta a {
  font-family: var(--font-display); text-transform: uppercase;
  color: var(--brand); letter-spacing: 0.1em; font-size: 0.9rem;
}
.reviews-cta a:hover { color: var(--brand-dark); }

/* -------- faq -------- */
.faq-section { background: var(--brand-tint); padding: clamp(60px, 8vw, 100px) 0; }
.faq-section .section-sub {
  text-align: center; color: var(--gray-600);
  margin: 12px auto 48px; max-width: 60ch;
}
.faq-list { list-style: none; max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-q {
  width: 100%; background: none; border: 0;
  padding: 24px 44px 24px 0; text-align: left;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  color: var(--black); cursor: pointer; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%); font-size: 1.6rem; font-weight: 400;
  color: var(--brand); transition: transform 0.2s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a p {
  padding: 0 0 24px 0; color: var(--gray-600);
  font-size: 0.98rem; line-height: 1.65; max-width: none;
}

/* -------- footer -------- */
.footer-hybrid { background: var(--brand-dark); color: var(--white); padding: 60px 0 24px; }
.footer-top { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 48px; }
.footer-top h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 2rem); text-transform: uppercase; }
.footer-top h3 a { color: var(--white); }
.footer-top h3 a:hover { color: var(--brand-bright); }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-socials a {
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 16px; font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover { border-color: var(--brand-bright); color: var(--brand-bright); }
.footer-academies { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 40px; margin-bottom: 32px; }
.footer-academies h4 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1rem; margin-bottom: 24px;
  letter-spacing: 0.1em; text-align: center; color: var(--white);
}
.foot-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; font-size: 0.85rem; line-height: 1.55;
}
.foot-grid > div { text-align: center; }
.foot-grid b {
  font-family: var(--font-display); font-size: 0.95rem;
  display: block; margin-bottom: 8px; letter-spacing: 0.05em;
  color: var(--white); text-transform: uppercase;
}
.foot-grid a { color: #b0b0b0; font-weight: 600; }
.foot-grid a:hover { color: var(--brand-bright); }
/* #b9d3c2 (o on-green-soft da identidade): ~7:1 sobre o verde escuro —
   #999 dava 3,7:1 e reprovava no contraste. */
.foot-grid .addr { display: block; color: #b9d3c2; margin-bottom: 4px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; margin-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 0.78rem; color: #b9d3c2;
}
.footer-legal a { color: #b9d3c2; }
.footer-legal a:hover { color: var(--brand-bright); }

/* O banner de consentimento (medicao.js, padrão do workspace) estila tudo com
   :where() — especificidade zero — e o `a { color: var(--black) }` daqui vencia,
   deixando o link de privacidade preto sobre fundo escuro. Devolve o inherit. */
#consent-banner a { color: inherit; }

.floating-phone {
  display: none; position: fixed;
  bottom: 16px; right: 16px; z-index: 90;
  /* claro: o botão flutua também sobre as seções verdes */
  background: var(--brand-bright); color: var(--black);
  padding: 12px 20px; border-radius: 999px;
  font-family: var(--font-display); font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.floating-phone:hover { background: var(--white); color: var(--black); }
@media (max-width: 640px) { .floating-phone { display: inline-flex; align-items: center; gap: 6px; } }

/* -------- reveal motion (one orchestrated moment) -------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.9,.3,1), transform .6s cubic-bezier(.2,.9,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   INTERNAL PAGES — components (adaptados do main-legacy.css
   para a nova paleta preto/branco/vermelho)
   ============================================================ */

/* -------- generic sections -------- */
.section { padding-block: clamp(56px, 8vw, 100px); }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); text-align: center; }
.section-head p { margin-top: 16px; margin-inline: auto; }
.section-dark { background: var(--brand); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-alt { background: var(--brand-tint); }

/* topo de página interna (hero-lite) */
.page-header { background: var(--brand); color: var(--white); padding: clamp(48px, 7vw, 84px) 0; text-align: center; }
.page-header h1 { color: var(--white); font-size: clamp(2.25rem, 6vw, 4.25rem); }
.page-header .lead { color: rgba(255,255,255,0.78); margin: 16px auto 0; max-width: 60ch; }
.page-header .eyebrow { color: var(--brand-bright); font-family: var(--font-body); font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 12px; }

/* type helpers */
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.55; color: var(--gray-600); max-width: 68ch; }
.section-dark .lead { color: rgba(255,255,255,0.78); }

/* photo */
.photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px -12px rgba(0,0,0,0.28); }

/* utilities */
.center { text-align: center; }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; } }

/* -------- program ladder (programs, programs/kids, home future) -------- */
.program-ladder { display: grid; gap: 2px; border-radius: var(--radius); overflow: hidden; background: var(--brand-line); }
.program-rung {
  display: grid; grid-template-columns: 150px 1fr auto;
  align-items: center; gap: 24px;
  background: var(--white); padding: 26px 30px;
  color: var(--black);
  transition: background .16s ease, color .16s ease;
}
.program-rung:hover { background: var(--brand); color: var(--white); }
.program-rung:hover .age, .program-rung:hover h3, .program-rung:hover .go { color: var(--brand-bright); }
.program-rung:hover .age small, .program-rung:hover p { color: rgba(255,255,255,0.75); }
.program-rung .age {
  font-family: var(--font-display); font-size: 1.7rem;
  color: var(--brand); line-height: 1;
  text-transform: uppercase;
}
.program-rung .age small {
  display: block; font-family: var(--font-body); font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-600); margin-top: 6px;
}
.program-rung h3 { margin-bottom: 6px; }
.program-rung p { color: var(--gray-600); font-size: 0.97rem; max-width: 58ch; }
.program-rung .go {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.85rem;
  color: var(--brand); white-space: nowrap;
}
@media (max-width: 700px) {
  .program-rung { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
}

/* -------- belt wall (belts page) -------- */
.belt-columns {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(28px, 5vw, 64px); row-gap: 18px;
  align-items: start;
}
.belt-columns > div {
  display: grid; grid-template-rows: subgrid;
  grid-row: 1 / span 3; row-gap: 18px;
}
@media (max-width: 820px) {
  .belt-columns { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 44px; }
  .belt-columns > div { grid-row: auto; grid-template-rows: auto auto auto; }
}
.belt-wall { display: grid; gap: 12px; align-content: start; }
.belt {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 18px;
  border-radius: var(--radius);
  padding: 18px 24px; color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
}
.belt .rank {
  font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.belt .years { font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; }
.belt-white { background: #e9e7e0; color: var(--black); border-color: rgba(0,0,0,0.12); }
.belt-blue { background: #1d4e89; }
.belt-purple { background: #4b3572; }
.belt-brown { background: #5b4232; }
.belt-black { background: #101010; }
.belt-kids {
  background: linear-gradient(90deg, #b7b7b7 0 20%, #f2f2f2 0 40%, #e0b400 0 60%, #d97c00 0 80%, #2e7d4f 0 100%);
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}

/* -------- schedule table (city pages) -------- */
.sched-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.2);
  background:
    linear-gradient(to right, var(--white) 30%, rgba(255,255,255,0)) left center / 44px 100% no-repeat local,
    linear-gradient(to left, var(--white) 30%, rgba(255,255,255,0)) right center / 44px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(0,0,0,0.22), rgba(0,0,0,0)) left center / 16px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.22), rgba(0,0,0,0)) right center / 16px 100% no-repeat scroll;
  background-color: var(--white);
}
.sched-wrap:focus-visible { outline: 3px solid var(--brand-live); outline-offset: 3px; }
table.sched { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--white); }
table.sched th {
  background: var(--brand); color: var(--white);
  font-family: var(--font-body); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 16px; text-align: left;
}
table.sched td { padding: 14px 16px; border-top: 1px solid var(--gray-300); vertical-align: top; font-size: 0.95rem; }
table.sched td.time {
  font-family: var(--font-display); font-size: 0.95rem;
  white-space: nowrap; color: var(--brand);
}
table.sched td span.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand);
}
table.sched tr:hover td { background: var(--brand-tint); }

/* -------- location cards (locations page) -------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.loc-tile {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end;
  color: #fff; background: var(--brand-dark);
}
.loc-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.35s cubic-bezier(0.2,0.9,0.3,1);
}
.loc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.05) 65%);
}
.loc-tile:hover img { transform: scale(1.045); }
.loc-tile .meta { position: relative; z-index: 1; padding: 24px; }
.loc-tile .meta h3 { color: #fff; margin-bottom: 6px; }
.loc-tile .meta p { color: rgba(255,255,255,0.85); font-size: 0.92rem; max-width: none; }

/* -------- instructor blocks -------- */
.instructor {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 30px; align-items: start;
}
.instructor img { border-radius: var(--radius); }
.instructor > div:only-child { grid-column: 1 / -1; }
.instructor .belt-line {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.8rem; color: var(--brand);
}
@media (max-width: 640px) { .instructor { grid-template-columns: 1fr; } }

/* -------- offer band (first responders / horizontal CTA) -------- */
.offer-band {
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  background: var(--brand); color: var(--white);
}
.offer-band .copy { padding: clamp(28px, 5vw, 56px); }
.offer-band .copy h2 { color: #fff; max-width: 16ch; }
.offer-band .copy p { color: rgba(255,255,255,0.8); margin-top: 16px; }
.offer-band .art { position: relative; min-height: 280px; }
.offer-band .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .offer-band { grid-template-columns: 1fr; } }

/* -------- NAP block (address / phone) -------- */
.nap { display: grid; gap: 8px; font-size: 1.05rem; }
.nap b { font-weight: 800; }
.nap a { color: var(--brand-bright); font-weight: 700; }
.nap a:hover { color: var(--white); }

/* -------- city hero (páginas de cidade usam .hero + .tagline/.sub/.actions) --------
   A home usa .hero-title/.eyebrow/.hero-actions; cidades reaproveitam o hero mas com
   layout à esquerda, altura reduzida (~62vh), e nome da unidade em destaque. */
.hero .container { padding-block: 72px 56px; width: 100%; text-align: left; }
.hero .tagline {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero .tagline em { font-style: normal; color: var(--brand-bright); }
.hero .sub {
  margin-top: 20px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 62ch;
}
.hero .sub a { color: #fff; font-weight: 700; }
.hero .sub a:hover { color: var(--brand-bright); }
.hero .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
/* Se a página usa a variação centralizada (home OneWay), a regra .hero-inner
   já sobrescreve o align. */
.hero-inner { text-align: center; }
