/* ==========================================================================
   My Pace — Variant C "Dark Athletic"
   Night-run energy: charcoal-teal base, glowing #FF4821 accent,
   teal-duotone photography, condensed athletic display type.
   Body-text contrast on dark >= 4.5:1 (WCAG AA) throughout.
   ========================================================================== */

:root {
  --ink: #10181d;            /* deepest — nav, footer, quote bands   */
  --base: #1a252b;           /* page base (charcoal-teal)            */
  --surface: #21303a;        /* warm dark card surface               */
  --surface-2: #293d49;      /* raised surface / hover               */
  --line: rgba(240, 235, 228, 0.14);
  --text: #efeae2;           /* warm off-white body — ~12:1 on base  */
  --muted: #aabbc3;          /* captions/meta — ~7:1 on base         */
  --accent: #ff4821;         /* brand orange — large type/buttons/badges only */
  --accent-bright: #ff6b47;  /* brighter orange for glowing display text */
  --on-accent: #191008;      /* dark ink on orange fills — ~5.5:1    */
  --mint: #7be3b4;           /* FREE / Bewegt-im-Park accent         */
  --glow: 0 0 16px rgba(255, 72, 33, 0.45), 0 0 42px rgba(255, 72, 33, 0.2);
  --glow-soft: 0 0 12px rgba(255, 72, 33, 0.35);
  --glow-mint: 0 0 12px rgba(123, 227, 180, 0.35);
  --pill: 999px;
  --radius: 14px;
  --display: "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed",
    "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Segoe UI", system-ui, -apple-system, Roboto,
    Helvetica, Arial, sans-serif;
  --measure: 62ch;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--base);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(255, 72, 33, 0.55); color: #fff; }

/* ---- type roles ---------------------------------------------------------- */

.display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.04;
}

h2.section-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.05;
}

.section-title .tick {
  color: var(--accent-bright);
  text-shadow: var(--glow-soft);
}

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--muted);
}

.measure { max-width: var(--measure); }
.measure p + p { margin-top: 1em; }

/* ---- buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  padding: 0.8em 2.1em;
  border-radius: var(--pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, color 0.18s ease;
}

.btn-solid {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--glow-soft);
}

.btn-solid:hover {
  background: var(--accent-bright);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--accent);
  color: var(--accent-bright); /* large-type accent use, 1rem bold condensed pill */
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 72, 33, 0.12);
  box-shadow: var(--glow-soft);
  transform: translateY(-2px);
}

/* ---- sticky nav ---------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 24, 29, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-right: auto;
}

.brand img { height: 46px; width: auto; }

.brand-tag {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-menu a {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-menu a:hover { color: var(--accent-bright); }

.nav-menu a[aria-current="page"] {
  color: var(--accent-bright);
  border-bottom-color: var(--accent);
  text-shadow: var(--glow-soft);
}

.lang-toggle {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 0.35em 1em;
  cursor: pointer;
}

.lang-toggle .lang-on { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 10px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- hero ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.6);
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(255, 72, 33, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(16, 24, 29, 0.55) 0%, rgba(26, 37, 43, 0.72) 70%, var(--base) 100%),
    rgba(26, 60, 72, 0.35);
}

.hero-copy {
  text-align: center;
  padding: 7rem 1.25rem 5rem;
  animation: rise 0.9s ease both;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  font-size: clamp(3rem, 10vw, 7.5rem);
}

.hero-copy h1 .glow {
  display: block;
  color: var(--accent-bright);
  text-shadow: var(--glow);
}

.hero-sub {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  color: var(--text);
}

.fun {
  color: var(--accent-bright);
  font-weight: 800;
  text-shadow: var(--glow-soft);
}

.fun-dot { color: var(--accent-bright); }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- sections / rows ----------------------------------------------------- */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 3.5rem;
  align-items: center;
}

.row h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.row .btn { margin-top: 1.8rem; }

/* teal duotone photo treatment */
.duo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}

.duo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2a6373;
  mix-blend-mode: color;
}

.duo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(16, 24, 29, 0.4),
    rgba(16, 24, 29, 0) 45%,
    rgba(255, 72, 33, 0.22)
  );
}

/* ---- signature: glowing pull-quote bands --------------------------------- */

.quote-band {
  position: relative;
  background:
    radial-gradient(55% 130% at 50% 50%, rgba(255, 72, 33, 0.15), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6rem 1.25rem;
  text-align: center;
}

.quote-band p {
  max-width: 22ch;
  margin: 0 auto;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  color: var(--accent-bright);
  text-shadow: var(--glow);
}

/* ---- what we do ---------------------------------------------------------- */

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.wwd-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wwd-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 72, 33, 0.6);
  box-shadow: var(--glow-soft);
}

.wwd-card .duo { border-radius: 0; aspect-ratio: 4 / 3; }

.wwd-num {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-bright);
  text-shadow: var(--glow-soft);
  line-height: 1;
}

.wwd-body { padding: 1.4rem 1.4rem 1.6rem; }

.wwd-body h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.35rem;
}

.wwd-body p {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.wwd-copy { margin-top: 3rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* ---- testimonials -------------------------------------------------------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testi-card .duo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: var(--glow-soft);
  flex: none;
}

.testi-card blockquote {
  font-size: 0.97rem;
  color: var(--text);
}

.testi-card cite {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: var(--accent-bright);
  margin-top: auto;
}

/* ---- instagram ----------------------------------------------------------- */

.ig-intro { margin-top: 1rem; color: var(--muted); max-width: var(--measure); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.6rem;
}

.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ig-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 72, 33, 0.6);
  box-shadow: var(--glow-soft);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.05) brightness(0.9);
  transition: filter 0.2s ease;
}

.ig-card:hover img { filter: none; }

.ig-badge-play {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.72rem;
  box-shadow: var(--glow-soft);
  padding-left: 2px;
}

.ig-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.6rem 0.7rem 0.55rem;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 29, 0.92));
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- footer -------------------------------------------------------------- */

.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.25rem 2.5rem;
}

.footer-head {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--accent-bright);
  text-shadow: var(--glow-soft);
  max-width: 24ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3.2rem;
}

.footer h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.9;
}

.footer address a { color: var(--text); text-decoration-color: rgba(255, 72, 33, 0.6); }

.social-row { display: flex; gap: 0.9rem; }

.social-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.social-row a:hover {
  border-color: rgba(255, 72, 33, 0.7);
  box-shadow: var(--glow-soft);
  transform: translateY(-2px);
}

.social-row img { width: 22px; height: 22px; filter: invert(1) brightness(1.6); }

.footer-legal {
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--text); }
.footer-legal .copyright { margin-left: auto; }

/* ==========================================================================
   Trainings page
   ========================================================================== */

.page-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 0;
}

.page-head h1 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  max-width: 24ch;
}

.page-head h1 .glow {
  color: var(--accent-bright);
  text-shadow: var(--glow);
}

/* ---- calendar (styles every cal-* class calendar.js emits) --------------- */

.calendar-wrap { margin-top: 2.4rem; }

.cal-toolbar {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
}

.cal-arrow {
  flex: none;
  width: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.cal-arrow:hover {
  border-color: rgba(255, 72, 33, 0.7);
  color: var(--accent-bright);
  box-shadow: var(--glow-soft);
}

.cal-strip {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  flex: 1;
  padding: 2px;
  scrollbar-width: thin;
}

.cal-day {
  flex: 1 0 64px;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.65rem 0.4rem 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}

.cal-day:hover { border-color: rgba(255, 72, 33, 0.55); transform: translateY(-2px); }

.cal-day-name {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
}

.cal-day-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--text);
}

.cal-day-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow-soft);
}

.cal-day.is-today { border-color: rgba(255, 72, 33, 0.6); }

.cal-day.is-today .cal-day-name { color: var(--accent-bright); }

.cal-day.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow);
  color: var(--on-accent);
}

.cal-day.is-selected .cal-day-name,
.cal-day.is-selected .cal-day-num { color: var(--on-accent); }

.cal-day.is-selected .cal-day-dot {
  background: var(--on-accent);
  box-shadow: none;
}

.cal-agenda { margin-top: 2.2rem; }

.cal-agenda-date {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  margin-bottom: 1.3rem;
}

.cal-empty {
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
}

.cal-session {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cal-session + .cal-session { margin-top: 0.9rem; }

.cal-session:hover { box-shadow: var(--glow-soft); }

.cal-session-time {
  flex: none;
  min-width: 84px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--accent-bright);
  text-shadow: var(--glow-soft);
}

.cal-session-main { min-width: 0; flex: 1; }

.cal-session-name {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cal-session-meta {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cal-badge-free {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  padding: 0.28em 0.9em;
  border-radius: var(--pill);
  background: rgba(123, 227, 180, 0.14);
  border: 1px solid var(--mint);
  color: var(--mint);
  box-shadow: var(--glow-mint);
}

.cal-session-note { color: var(--mint); font-size: 0.9rem; }

/* free (Bewegt im Park) sessions: mint identity instead of orange */
.cal-session:has(.cal-badge-free) { border-left-color: var(--mint); }

.cal-session:has(.cal-badge-free):hover { box-shadow: var(--glow-mint); }

.cal-session:has(.cal-badge-free) .cal-session-time {
  color: var(--mint);
  text-shadow: var(--glow-mint);
}

.cal-book-btn {
  margin-left: auto;
  flex: none;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.92rem;
  text-decoration: none;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--pill);
  padding: 0.6em 1.7em;
  box-shadow: var(--glow-soft);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.cal-book-btn:hover {
  background: var(--accent-bright);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

/* ---- Bewegt im Park banner ----------------------------------------------- */

.bip-banner {
  position: relative;
  background:
    radial-gradient(55% 130% at 50% 0%, rgba(123, 227, 180, 0.12), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 1.25rem;
}

.bip-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.bip-inner h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  color: var(--mint);
  text-shadow: var(--glow-mint);
}

.bip-inner p { margin-top: 1.3rem; color: var(--text); }

.bip-inner .bip-note {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

.bip-link {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mint);
  text-decoration-color: rgba(123, 227, 180, 0.6);
  text-underline-offset: 4px;
}

/* ---- pricing ------------------------------------------------------------- */

.pricing-sub { margin-top: 0.8rem; color: var(--muted); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 3rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 2rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 72, 33, 0.6);
  box-shadow: var(--glow-soft);
}

.price-card h3 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  line-height: 1.2;
  min-height: 2.9em;
  display: flex;
  align-items: center;
}

.price-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent-bright);
  text-shadow: var(--glow-soft);
}

.price-validity { color: var(--muted); font-size: 0.9rem; }

.price-card .btn { margin-top: 1.4rem; }

/* ---- responsive ---------------------------------------------------------- */

@media (max-width: 980px) {
  .wwd-grid, .testi-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .row { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-burger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(16, 24, 29, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.25rem 1.4rem;
  }

  .nav-menu.open { display: flex; }

  .nav-menu a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .nav-menu a[aria-current="page"] { border-bottom-color: var(--accent); }

  .lang-toggle { margin-top: 1.1rem; }

  .brand-tag { display: none; }

  .section { padding: 3.6rem 1.25rem; }

  .hero { min-height: 72vh; }

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

  .price-grid { grid-template-columns: 1fr; }

  .cal-session { flex-wrap: wrap; gap: 0.7rem 1.1rem; }

  .cal-session-time { min-width: 0; font-size: 1.45rem; }

  .cal-book-btn { margin-left: 0; width: 100%; text-align: center; }

  .footer-legal .copyright { margin-left: 0; width: 100%; }
}

/* ---- 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;
  }
}
