/* ============================================================
   Jakub Englisch — osobní trenér, Brno
   Editorial premium · krémová / atramentová / hlboká zelená
   ============================================================ */

/* ---------- Fonty (self-hosted, variable) ---------- */
@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20BF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20BF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --cream: #FAF6F0;
  --cream-tint: #F3EDE3;
  --ink: #141210;
  --ink-60: rgba(20, 18, 16, .62);
  --ink-12: rgba(20, 18, 16, .12);
  --green: #2F5241;
  --green-deep: #24402F;
  --green-soft: rgba(47, 82, 65, .1);

  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;

  --w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --space: clamp(4.5rem, 10vw, 8.5rem);

  --r-card: 18px;
  --r-btn: 999px;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Reset / základ ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
section { scroll-margin-top: 5.5rem; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

/* ---------- Typografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }

.eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.eyebrow span {
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: 0;
  border: 1px solid var(--ink-12);
  border-radius: 50%;
  width: 2.1rem; height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex: none;
}

/* ---------- Tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: var(--green);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(36, 64, 47, .55);
}
.btn--ghost {
  border-color: var(--ink-12);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--cream);
  color: var(--green-deep);
  margin-top: auto;
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(0, 0, 0, .4); }

/* ---------- Navigácia ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250, 246, 240, .94);
  box-shadow: 0 1px 0 var(--ink-12);
}
.nav__inner {
  max-width: var(--w);
  margin-inline: auto;
  padding: .8rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand img { height: 30px; width: auto; transition: transform .3s var(--ease); }
.nav__brand:hover img { transform: scale(1.06); }
.nav__links {
  display: flex;
  gap: 1.6rem;
  margin-inline: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 550;
  color: var(--ink-60);
  position: relative;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--green);
  transition: right .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.btn--nav { padding: .62rem 1.25rem; font-size: .88rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: var(--space);
  position: relative;
}
.hero::before {
  /* zväčšený, rozostrený monogram ako atmosférická textúra v pozadí */
  content: "";
  position: absolute;
  right: -12vw;
  top: 2vh;
  width: min(68vw, 820px);
  aspect-ratio: 503 / 448;
  background: url("/assets/img/monogram.png") no-repeat center / contain;
  opacity: .08;
  filter: blur(7px);
  pointer-events: none;
  z-index: 0;
}
.hero__grid { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.9rem, 6.6vw, 5.3rem);
  margin-bottom: 1.4rem;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-60);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.5rem;
  font-size: .88rem;
  color: var(--ink-60);
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero__badges li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}
.hero__frame {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -34px rgba(20, 18, 16, .4);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__media { position: relative; }
.hero__media::after {
  /* tenký posunutý rám — rovnaká reč ako zvyšok stránky */
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink-12);
  border-radius: var(--r-card);
  transform: translate(16px, 16px);
  pointer-events: none;
  z-index: -1;
}

/* ---------- Sekcie ---------- */
.section { padding-block: var(--space); }
.section--tint { background: var(--cream-tint); }
.section__head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); max-width: 42rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__sub { color: var(--ink-60); margin-top: 1rem; }
.section__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--green-deep);
  max-width: 38rem;
}

/* ---------- Karty (Pro koho) ---------- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.card {
  border: 1px solid var(--ink-12);
  border-radius: var(--r-card);
  padding: 1.8rem 1.6rem;
  background: transparent;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  background: rgba(255, 255, 255, .5);
}
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--ink-60); font-size: .98rem; }

/* ---------- Proces ---------- */
.proces__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.steps { display: grid; gap: 2.2rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
}
.step__num {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: .3rem;
  margin-top: .2rem;
}
.step h3 { margin-bottom: .5rem; display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.step p { color: var(--ink-60); max-width: 30rem; }
.chip {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .06em;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: .32rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.proces__media { position: sticky; top: 7rem; }
.frame {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
}
.frame img { width: 100%; object-fit: cover; }
.frame--offset::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  border: 1px solid var(--ink-12);
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: -1;
}

/* ---------- Quote band ---------- */
.band {
  position: relative;
  height: clamp(320px, 52vh, 460px);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.band__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  will-change: transform;
}
.band__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 22, .38);
  z-index: 1;
}
.band__quote {
  position: relative;
  z-index: 2;
  padding-inline: var(--gutter);
  text-align: center;
}
.band__quote p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 500;
  color: var(--cream);
  max-width: 26ch;
  text-wrap: balance;
}

/* ---------- Substeps (detail diagnostiky) ---------- */
.substeps {
  margin-top: 1rem;
  display: grid;
  gap: .6rem;
  counter-reset: sub;
  max-width: 32rem;
}
.substeps li {
  position: relative;
  padding-left: 1.9rem;
  font-size: .95rem;
  color: var(--ink-60);
  counter-increment: sub;
}
.substeps li::before {
  content: counter(sub);
  position: absolute;
  left: 0;
  top: .05rem;
  font-family: var(--serif);
  font-size: .82rem;
  color: var(--green);
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--green-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.substeps strong { color: var(--ink); font-weight: 600; }

/* ---------- Ceník ---------- */
.pricing__principle {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.3;
  color: var(--green-deep);
  max-width: 30rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-left: 1.2rem;
  border-left: 2px solid var(--green);
}
.pricing-group + .pricing-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.pricing-group__title {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.pricing-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-12);
}
.pricing {
  display: grid;
  gap: 1.3rem;
  align-items: stretch;
}
.pricing--2 { grid-template-columns: repeat(2, 1fr); }
.pricing--3 { grid-template-columns: repeat(3, 1fr); }
.price--frame { border-color: var(--green); background: rgba(255, 255, 255, .55); }
.price__tag.price__tag--dark { color: var(--green); }
.price h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 1.2rem; letter-spacing: -.01em; }
.price {
  border: 1px solid var(--ink-12);
  border-radius: var(--r-card);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.price:hover {
  transform: translateY(-5px);
  border-color: var(--green);
}
.price--hl {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.price--hl:hover { box-shadow: 0 18px 40px -20px rgba(36, 64, 47, .6); }
.price--hl .price__desc { color: rgba(250, 246, 240, .8); }
.price--hl .price__meta { color: rgba(250, 246, 240, .65); }
.price__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #D9C79A;
  margin-bottom: .9rem;
}
.price h3 { font-size: 1.15rem; margin-bottom: 1.2rem; }
.price__amount {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}
.price__meta {
  font-size: .82rem;
  color: var(--ink-60);
  margin-top: .45rem;
  margin-bottom: 1.1rem;
}
.price__desc { font-size: .93rem; color: var(--ink-60); margin-bottom: 1.4rem; }

/* ---------- O mně ---------- */
.omne__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.omne__media { position: sticky; top: 7rem; }
.omne__text p { margin-bottom: 1.1rem; color: var(--ink-60); max-width: 36rem; }
.omne__text p:first-child { color: var(--ink); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1.2rem 2.4rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--ink-12);
}
.stat dt {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: .3rem;
}
.stat dd {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--green-deep);
}

/* ---------- Reference ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}
.quote {
  border-top: 2px solid var(--green);
  padding-top: 1.4rem;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.42;
  color: var(--ink);
  margin-bottom: 1.2rem;
  text-wrap: pretty;
}
.quote blockquote::before { content: "„"; color: var(--green); }
.quote blockquote::after { content: "“"; color: var(--green); }
.quote figcaption {
  font-size: .84rem;
  font-weight: 650;
  letter-spacing: .04em;
  color: var(--ink);
}
.quote figcaption span {
  display: block;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--ink-60);
  margin-top: .25rem;
}

/* ---------- Rezervace ---------- */
.calwrap { min-height: 480px; border-radius: var(--r-card); overflow: hidden; }
.calnote {
  text-align: center;
  margin-top: 1.4rem;
  font-size: .95rem;
  color: var(--ink-60);
}
.calnote a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--green-soft);
  transition: border-color .25s var(--ease);
}
.calnote a:hover { border-bottom-color: var(--green); }
.fallback {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
  border: 1px dashed var(--ink-12);
  border-radius: var(--r-card);
  padding: 2.6rem 2rem;
}
.fallback__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.fallback p:not(.fallback__title) { color: var(--ink-60); }
.fallback__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.formwrap {
  max-width: 34rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
}
.formwrap h3 { margin-bottom: 1.4rem; text-align: center; }
.form__row { margin-bottom: 1.1rem; }
.form__row label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.form__row input,
.form__row textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form .btn { width: 100%; }
.form__note {
  text-align: center;
  font-size: .84rem;
  color: var(--ink-60);
  margin-top: .9rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding-block: var(--space) 2rem;
  margin-top: 0;
}
.footer__wordmark {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250, 246, 240, .18);
}
.footer__col h3 {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, .55);
  margin-bottom: 1rem;
}
.footer__col li { margin-bottom: .55rem; font-size: .95rem; color: rgba(250, 246, 240, .85); }
.footer__col a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.footer__col a:hover { color: #fff; border-bottom-color: rgba(250, 246, 240, .5); }
.footer__legal {
  margin-top: 3.5rem;
  font-size: .8rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, .45);
}
.footer__legal a {
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 246, 240, .25);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__legal a:hover { color: rgba(250, 246, 240, .85); border-bottom-color: rgba(250, 246, 240, .6); }
.footer__fine { margin-top: .8rem; }

/* ---------- Právne stránky ---------- */
.legal { max-width: 46rem; }
.legal h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin-top: 2.8rem;
  margin-bottom: .9rem;
}
.legal h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
  margin-top: 1.8rem;
  margin-bottom: .5rem;
}
.legal p { margin-bottom: 1rem; color: var(--ink-60); }
.legal p strong { color: var(--ink); }
.legal__intro { font-size: 1.15rem; color: var(--ink) !important; }
.legal a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal__list { margin: 0 0 1rem; display: grid; gap: .5rem; }
.legal__list li { position: relative; padding-left: 1.3rem; color: var(--ink-60); }
.legal__list li::before {
  content: "";
  position: absolute; left: 0; top: .65em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green);
}
.legal__date {
  margin-top: 2.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--ink-12);
  font-size: .88rem;
}

/* ---------- Reveal animácie ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responzivita ---------- */
@media (max-width: 1024px) {
  .pricing--3 { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; gap: 2.2rem; max-width: 40rem; }
  .proces__grid, .omne__grid { grid-template-columns: 1fr; }
  .proces__media, .omne__media { position: static; max-width: 480px; }
  .omne__media { order: 2; }
  .stats { grid-template-columns: repeat(2, auto); }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner { justify-content: space-between; }
  .hero { padding-top: 5.5rem; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; }
  .hero__media::after { transform: translate(10px, 10px); }
  .cards3 { grid-template-columns: 1fr; }
  .pricing--2, .pricing--3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: auto 1fr; gap: 1rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .band__media { will-change: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
