/* ============================================================
   Onevitals — calibration & servicing of medical equipment
   Palette: deep forest green + warm linen + brass accent
   ============================================================ */

:root {
  --green-900: #15291f;
  --green-800: #1f3b31;
  --green-700: #284a3c;
  --green-600: #356050;
  --ink: #20272a;
  --ink-soft: #4f5a58;
  --linen: #f7ece3;
  --linen-deep: #f1e2d6;
  --cream: #fffaf4;
  --gold: #d99c3f;
  --gold-deep: #c0842b;
  --line: #e4d4c6;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(21, 41, 31, 0.06);
  --shadow-md: 0 18px 44px rgba(21, 41, 31, 0.12);
  --shadow-lg: 0 30px 70px rgba(21, 41, 31, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

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

/* ---------- Buttons ---------- */
.btn {
  --pad: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--pad);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(217, 156, 63, 0.35);
}
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }

.btn--green {
  background: var(--green-700);
  color: var(--cream);
}
.btn--green:hover { background: var(--green-800); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(255, 250, 244, 0.4);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); transform: translateY(-2px); }

.btn--lg { --pad: 1.05rem 2.4rem; font-size: 1.02rem; }
.btn--book { align-self: center; }

/* ---------- Shared bits ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow--dark { color: var(--gold-deep); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.2rem;
  padding: 0 1.25rem;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section-head p { color: var(--ink-soft); margin: 0.9rem 0 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 59, 49, 0.92);
  backdrop-filter: blur(10px);
  color: var(--cream);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
}
.brand__mark { color: var(--gold); display: inline-flex; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 250, 244, 0.82);
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__cta {
  background: var(--gold);
  color: var(--green-900) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--gold-deep); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Header actions: cart + mobile toggle */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav__has-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav__chevron {
  width: 11px;
  height: 8px;
  opacity: 0.85;
}
.nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 250, 244, 0.08);
  transition: background 0.2s var(--ease);
}
.nav__cart:hover { background: rgba(255, 250, 244, 0.16); }
.nav__cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  background: var(--green-900);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(53, 96, 80, 0.85) 0%, transparent 55%),
    radial-gradient(90% 80% at 100% 100%, rgba(20, 33, 52, 0.9) 0%, transparent 60%),
    linear-gradient(135deg, #142133 0%, #15291f 55%, #1f3b31 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero__text h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.hero__lead {
  color: rgba(247, 236, 227, 0.82);
  font-size: 1.08rem;
  max-width: 38ch;
  margin: 0 0 2rem;
}
.service-area {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(217, 156, 63, 0.36);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.08);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin: 2.8rem 0 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}
.hero__stats span { font-size: 0.82rem; color: rgba(247, 236, 227, 0.7); }

.hero__media {
  margin: 0;
  position: relative;
}
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero__media figcaption {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ============================================================
   WHAT WE SERVICE — cards
   ============================================================ */
.service-cards {
  background: var(--linen);
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}
.cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { height: 200px; overflow: hidden; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }

.ticks { list-style: none; margin: 0 0 1.3rem; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--green-600);
  border-bottom: 2px solid var(--green-600);
  transform: rotate(-45deg);
}
.card__meta {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.card__meta span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.15rem;
}
.card__foot { margin-top: auto; padding-top: 0.6rem; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--green-700);
}
.link-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

.catalogue-note {
  max-width: 1200px;
  margin: 2.6rem auto 0;
  text-align: center;
  color: var(--ink-soft);
}
.catalogue-note a { color: var(--green-700); font-weight: 700; }

/* ============================================================
   FEATURE — Plan, Track & Manage
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--green-900);
}
.feature__media { position: relative; min-height: 420px; }
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--green-900));
}
.feature__panel {
  background: var(--linen-deep);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature__panel h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.2rem; }
.feature__panel p { color: var(--ink-soft); max-width: 44ch; margin: 0 0 1.4rem; }
.feature__list { list-style: none; margin: 0 0 2rem; padding: 0; }
.feature__list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
}
.feature__panel .btn { align-self: flex-start; }

/* ============================================================
   ASSET REGISTER
   ============================================================ */
.register {
  background: var(--linen);
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}
.register__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}
.register__text h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.2rem; }
.register__lead { color: var(--ink-soft); margin: 0 0 1.8rem; max-width: 46ch; }
.register__legend { list-style: none; margin: 0 0 2rem; padding: 0; }
.reg-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0.9rem;
  margin-bottom: 0.7rem;
  background: var(--cream);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reg-status strong { color: var(--ink); }
.reg-status .dot {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}
.reg-status--green .dot { background: #3f8f63; }
.reg-status--amber .dot { background: var(--gold); }
.reg-status--red .dot { background: #c0532b; }
.register__text .btn { align-self: flex-start; }
.register__media { margin: 0; position: relative; }
.register__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.register__media figcaption {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: var(--green-800);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ============================================================
   PRICING — Our Services
   ============================================================ */
.pricing {
  background: var(--linen);
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
}
.price-list {
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
  padding: 0.6rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row__media {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-row__media img { width: 100%; height: 100%; object-fit: cover; }
.price-row__main h3 { font-size: 1.3rem; font-weight: 600; }
.price-row__main p { margin: 0.2rem 0 0; font-size: 0.92rem; color: var(--ink-soft); }
.price-row__meta { text-align: right; line-height: 1.3; }
.price-row__meta .dur { display: block; font-size: 0.82rem; color: var(--ink-soft); }
.price-row__meta .cost {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-800);
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote {
  background: var(--green-900);
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(53, 96, 80, 0.55), transparent 70%);
}
.quote__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.quote__head { text-align: center; margin-bottom: 2.2rem; }
.quote__head h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.quote__head p { color: var(--ink-soft); margin: 0.7rem auto 0; max-width: 46ch; }

.quote__form { display: flex; flex-direction: column; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label, .equip legend {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0;
}
.req { color: var(--gold-deep); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--linen);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #a99e92; }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--green-600);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input.invalid,
.field textarea.invalid { border-color: #c0532b; background: #fbeae3; }
.error { color: #c0532b; font-size: 0.8rem; font-weight: 600; min-height: 0; }

.equip { border: none; margin: 0; padding: 0.6rem 0 0; }
.equip legend { margin-bottom: 0.9rem; }
.equip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.4rem;
}
.equip-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 236, 227, 0.6);
}
.check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.2rem 0;
  min-width: 0;
}
.check span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--linen);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  flex: none;
}
.check input::before {
  content: "";
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg) scale(0);
  transition: transform 0.18s var(--ease);
  margin-top: -2px;
}
.check input:checked {
  background: var(--green-700);
  border-color: var(--green-700);
}
.check input:checked::before { transform: rotate(-45deg) scale(1); }
.check input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.qty input {
  width: 48px;
  padding: 0.45rem 0.35rem;
  border: 1.5px solid transparent;
  border-radius: 9px;
  background: var(--cream);
  color: var(--ink);
  font: 700 0.95rem var(--font-body);
  text-align: center;
}
.qty input:focus {
  outline: none;
  border-color: var(--green-600);
}
.availability-note {
  margin: -0.2rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--linen);
  color: var(--green-800);
  font-weight: 800;
  text-align: center;
}

.quote__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.form-status { margin: 0; font-weight: 600; font-size: 0.92rem; }
.form-status.ok { color: var(--green-600); }
.form-status.err { color: #c0532b; }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-900);
  color: rgba(247, 236, 227, 0.78);
  padding: 3.5rem 1.5rem 2rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand .brand__name { color: var(--cream); display: block; margin-bottom: 0.6rem; }
.footer__brand p { margin: 0; max-width: 34ch; font-size: 0.92rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { text-decoration: none; font-weight: 600; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--cream); }
.footer__contact { margin: 0; font-size: 0.92rem; line-height: 1.9; }
.footer__contact a { color: var(--gold); font-weight: 700; text-decoration: none; }
.footer__legal {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 250, 244, 0.12);
  font-size: 0.82rem;
  color: rgba(247, 236, 227, 0.55);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green-800);
    padding: 0.5rem 1rem 1.2rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 0.75rem 0.5rem; }
  .nav__cta { text-align: center; margin-top: 0.5rem; }
  .nav__toggle { display: flex; }
  .nav__inner { position: relative; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; margin: 0 auto; }

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

  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 280px; }
  .feature__media::after { background: linear-gradient(180deg, transparent 60%, var(--green-900)); }

  .register__inner { grid-template-columns: 1fr; }
  .register__media { max-width: 560px; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .equip__grid { grid-template-columns: 1fr; }
  .equip-item { grid-template-columns: minmax(0, 1fr) 80px; }

  .price-row {
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "media main"
      "meta  book";
    gap: 0.7rem 1rem;
  }
  .price-row__media { grid-area: media; width: 52px; height: 52px; }
  .price-row__main { grid-area: main; }
  .price-row__meta { grid-area: meta; text-align: left; display: flex; align-items: baseline; gap: 0.7rem; }
  .price-row .btn--book { grid-area: book; justify-self: end; }

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

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
