/* ==========================================================================
   ÚčToo Easy — uctooeasy.cz
   Mobile-first. Tokens follow 03_Manuál vizuální identity pp. 18–25.
   ========================================================================== */

/* === Tokens ============================================================== */

:root {
  /* Brand, straight from the manual (p. 24) */
  --petrol: #204b5d;         /* Tmavá tyrkysová — primary */
  --mint: #96c9c6;           /* Světlá tyrkysová — primary */
  --white: #ffffff;
  --grey-100: #ededed;
  --grey-300: #cacbcc;   /* decorative rules only — 1.6:1, fails UI contrast */
  --grey-600: #7b8087;   /* 3.98:1 on white — UI borders only, never text */
  --black: #000000;
  --ink: #030909;            /* wordmark black, from the logo files */

  /* Derived. Tints of the two primaries — never new hues. */
  --petrol-deep: #163646;    /* hover/pressed on petrol */
  --petrol-soft: #2d6178;    /* links on light grounds */
  --mint-pale: #e8f3f2;      /* tinted section ground */
  --mint-wash: #f5faf9;      /* faintest ground */
  --ink-soft: #565c64;       /* secondary text — AA on white, unlike --grey-600 */
  --hairline: #e2e8e8;

  /* Sanctioned gradients (p. 25) — digital use only, never on the logo */
  --grad-mint: linear-gradient(180deg, var(--mint) 0%, var(--white) 100%);
  --grad-petrol: linear-gradient(160deg, var(--petrol) 0%, var(--black) 100%);

  /* Type (p. 18–20): LINE Seed for headings, Inter for body and CTAs */
  --font-display: "LINE Seed", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --step--1: 0.9375rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.4rem, 1.1rem + 1.2vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.3rem + 2.2vw, 2.75rem);
  --step-4: clamp(2.25rem, 1.5rem + 3.6vw, 4rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius: 14px;
  --radius-lg: 24px;
  /* The mark itself: straight sides, fully round foot. Used for the hero
     figure, the service chips and the CTA band. This is the site's one
     structural idea — see the U-curve notes in CLAUDE.md. */
  --radius-cup: 16px 16px 46% 46% / 16px 16px 30% 30%;

  --container: 1140px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* === Fonts =============================================================== */

@font-face {
  font-family: "LINE Seed";
  src: url("../fonts/LINESeed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed";
  src: url("../fonts/LINESeed-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2-variations");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

/* === Reset & base ======================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* The UA stylesheet's [hidden] rule loses to any class selector that sets
   display, which left .nav__drawer (display: grid) open on page load. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--space-4));
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 700; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--petrol-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--petrol); }

ul, ol { padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

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

/* === Layout primitives =================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section { padding-block: var(--space-16); }
.section--tight { padding-block: var(--space-12); }
.section--mint { background: var(--mint-wash); }
.section--pale { background: var(--mint-pale); }

.section__head { max-width: 46ch; margin-bottom: var(--space-8); }
.section__head p { margin-top: var(--space-4); color: var(--ink-soft); }

.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-soft); }

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

.skip-link {
  position: absolute; top: -100px; left: var(--space-4); z-index: 200;
  background: var(--petrol); color: var(--white);
  padding: var(--space-3) var(--space-4); border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--white); }

/* === Buttons ============================================================= */
/* CTAs are set in Inter per the manual (p. 20). No arrow glyphs — the label
   carries the action. */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--petrol); color: var(--white); }
.btn--primary:hover { background: var(--petrol-deep); color: var(--white); }

.btn--ghost { background: transparent; color: var(--petrol); border-color: var(--grey-600); }
.btn--ghost:hover { background: var(--white); border-color: var(--petrol); color: var(--petrol); }

.btn--mint { background: var(--mint); color: var(--petrol); }
.btn--mint:hover { background: var(--white); color: var(--petrol); }

.btn--block { width: 100%; }

/* Text link with a drawn underline that grows on hover. */
.link-more {
  display: inline-block;
  font-weight: 600;
  color: var(--petrol);
  text-decoration: none;
  background-image: linear-gradient(var(--mint), var(--mint));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 2px;
  padding-bottom: 2px;
  transition: background-size 220ms var(--ease);
}
.link-more:hover { background-size: 100% 8px; color: var(--petrol); }

/* === Navbar ============================================================== */

.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner {
  height: 100%;
  display: flex; align-items: center; gap: var(--space-4);
}
.nav__logo { margin-right: auto; display: flex; align-items: center; }
.nav__logo img { height: 34px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
.nav__link {
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--petrol); border-bottom-color: var(--mint); }
.nav__link[aria-current="page"] { color: var(--petrol); border-bottom-color: var(--petrol); }

.nav__actions { display: flex; align-items: center; gap: var(--space-3); }

.lang {
  display: inline-flex;
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--ink-soft);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--grey-600);
  border-radius: 999px;
}
.lang:hover { color: var(--petrol); border-color: var(--petrol); }

.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--grey-600);
  border-radius: 10px; cursor: pointer;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; display: block;
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 150ms var(--ease);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1px); }

.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-6);
  display: grid; gap: var(--space-2);
  box-shadow: 0 18px 40px -24px rgba(3, 9, 9, 0.35);
}
.nav__drawer a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-1);
  color: var(--ink);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}
.nav__drawer a:last-of-type { border-bottom: 0; }
.nav__drawer .btn { margin-top: var(--space-4); }

@media (min-width: 62rem) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__drawer { display: none !important; }
}

/* === Hero ================================================================
   The photo sits inside the brand mark: straight shoulders, round foot. That
   silhouette (--radius-cup) is the site's single distinctive device and is
   repeated at small scale on the service chips.
   ======================================================================== */

.hero {
  position: relative;
  background: linear-gradient(175deg, var(--mint-pale) 0%, var(--white) 72%);
  padding-block: var(--space-12) var(--space-16);
  overflow: hidden;
}

.hero__grid { display: grid; gap: var(--space-12); align-items: center; }

.hero h1 { margin-bottom: var(--space-6); }
.hero__lead { max-width: 52ch; margin-bottom: var(--space-8); }

.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero__points {
  display: grid; gap: var(--space-3);
  grid-template-columns: 1fr;
}
.hero__point {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--step--1);
  font-weight: 500;
}
.hero__point svg { flex: none; width: 22px; height: 22px; color: var(--petrol); }

.hero__media { position: relative; }

.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
  border-radius: var(--radius-cup);
  overflow: hidden;
  background: var(--mint);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 52rem) {
  .hero__points { grid-template-columns: 1fr 1fr; gap: var(--space-4) var(--space-6); }
}
@media (min-width: 62rem) {
  .hero { padding-block: var(--space-16) var(--space-24); }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-16); }
}

/* === Audience cards ======================================================
   Four routes into the site. These carry the cup silhouette on the icon chip;
   the "why" list below deliberately does not, so the two groups do not read as
   one undifferentiated grid of cards.
   ======================================================================== */

.audience { display: grid; gap: var(--space-4); }

.audience__card {
  display: flex; flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.audience__card:hover {
  border-color: var(--mint);
  transform: translateY(-3px);
  color: inherit;
}
.audience__chip {
  display: grid; place-items: center;
  width: 52px; height: 58px;
  background: var(--mint-pale);
  border-radius: 10px 10px 50% 50% / 10px 10px 34% 34%;
  color: var(--petrol);
}
.audience__chip svg { width: 24px; height: 24px; }
.audience__card h3 { margin-top: var(--space-2); }
.audience__card p { color: var(--ink-soft); font-size: var(--step--1); flex-grow: 1; }
.audience__card .link-more { align-self: flex-start; }

@media (min-width: 40rem) { .audience { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64rem) { .audience { grid-template-columns: repeat(4, 1fr); } }

/* === Split (about teaser) ================================================ */

.split { display: grid; gap: var(--space-8); align-items: center; }
.split__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-pale);
  aspect-ratio: 5 / 4;
}
.split__figure img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: var(--space-4); }
.split p + p { margin-top: var(--space-4); }
.split .link-more { margin-top: var(--space-6); }

.split__points {
  display: grid; gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--hairline);
}
.split__point h3 { font-size: var(--step-0); margin-bottom: var(--space-1); }
.split__point p { font-size: var(--step--1); color: var(--ink-soft); }

@media (min-width: 52rem) { .split__points { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 62rem) { .split { grid-template-columns: 1fr 1.1fr; gap: var(--space-16); } }

/* === Steps ===============================================================
   Numbered because this genuinely is a sequence.
   ======================================================================== */

.steps { display: grid; gap: var(--space-8); counter-reset: step; }

.step { position: relative; padding-left: calc(var(--space-12) + var(--space-2)); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: -4px;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-0);
  color: var(--petrol);
  background: var(--white);
  border: 2px solid var(--mint);
  border-radius: 999px;
}
/* connector down the left rail */
.step:not(:last-child)::after {
  content: "";
  position: absolute; left: 22px; top: 50px; bottom: calc(-1 * var(--space-8) + 4px);
  width: 2px;
  background: var(--mint);
  opacity: 0.55;
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--ink-soft); font-size: var(--step--1); }

@media (min-width: 62rem) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
  .step { padding-left: 0; padding-top: calc(var(--space-12) + var(--space-4)); }
  .step::before { top: 0; }
  /* keep the paragraphs on a common baseline when a title wraps to two lines */
  .step h3 { min-height: 2.5em; }
  .step:not(:last-child)::after {
    left: 54px; top: 22px; bottom: auto; right: calc(-1 * var(--space-6));
    width: auto; height: 2px;
  }
}

/* === Stats =============================================================== */

.stats {
  display: grid; gap: var(--space-6);
  padding: var(--space-8);
  background: var(--mint-pale);
  border-radius: var(--radius-lg);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  color: var(--petrol);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: var(--step--1); color: var(--ink-soft); margin-top: var(--space-2); }

@media (min-width: 40rem) { .stats { grid-template-columns: repeat(3, 1fr); } }

/* === Why list ============================================================
   A list with rules, not cards — so it reads differently from the audience
   grid above it.
   ======================================================================== */

.why { display: grid; gap: 0; }
.why__item {
  display: grid; gap: var(--space-2);
  padding-block: var(--space-6);
  border-top: 1px solid var(--hairline);
}
.why__item:last-child { border-bottom: 1px solid var(--hairline); }
.why__item p { color: var(--ink-soft); }

@media (min-width: 52rem) {
  .why__item { grid-template-columns: 0.8fr 1.4fr; gap: var(--space-8); align-items: start; }
}

/* === CTA band ============================================================ */

.cta {
  position: relative;
  background: var(--grad-petrol);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-6);
  overflow: hidden;
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta__sub { color: var(--mint); font-family: var(--font-display); font-weight: 700;
            font-size: var(--step-2); margin-top: var(--space-1); }
.cta__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center; align-items: center;
  margin-top: var(--space-8);
}
.cta__phone { color: var(--mint); font-weight: 600; text-decoration: none; }
.cta__phone:hover { color: var(--white); }
/* the mark, ghosted into the corner */
.cta__mark {
  position: absolute; right: -56px; bottom: -72px;
  width: 260px; opacity: 0.14;
  pointer-events: none;
  /* the delivered symbol, tinted to mint via mask rather than recoloured */
  background: var(--mint);
  aspect-ratio: 1 / 0.86;
  -webkit-mask: url("/logo/symbol.svg") no-repeat center / contain;
  mask: url("/logo/symbol.svg") no-repeat center / contain;
}

@media (min-width: 52rem) { .cta { padding: var(--space-16) var(--space-12); } }

/* === Footer ============================================================== */

.footer {
  background: var(--petrol);
  color: var(--white);
  padding-block: var(--space-12) var(--space-8);
  margin-top: 0;
}
.footer a { color: var(--mint); }
.footer a:hover { color: var(--white); }

.footer__grid { display: grid; gap: var(--space-8); }
.footer__logo img { height: 38px; width: auto; }
.footer__tag { margin-top: var(--space-4); color: var(--mint); max-width: 34ch; }

.footer h3 {
  font-size: var(--step--1);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mint);
  margin-bottom: var(--space-4);
}
.footer__col ul { display: grid; gap: var(--space-2); }
/* .contact-list defaults its icons to petrol — invisible on the petrol footer. */
.footer .contact-list svg { color: var(--mint); }
.footer__col a { text-decoration: none; }
.footer__col a:hover { text-decoration: underline; }

.footer__legal {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(150, 201, 198, 0.25);
  display: grid; gap: var(--space-3);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.72);
}
.footer__legal-links { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer__legal a { text-decoration: none; }

@media (min-width: 52rem) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--space-12); }
  .footer__legal { grid-template-columns: 1fr auto; align-items: center; }
  .footer__legal-links { justify-content: flex-end; }
}

/* === Prose (legal pages) ================================================= */

.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-8); margin-bottom: var(--space-2); }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: var(--space-4); }
.prose ul { margin-top: var(--space-4); display: grid; gap: var(--space-2); }
.prose li { padding-left: var(--space-6); position: relative; }
.prose li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; border-radius: 999px; background: var(--mint);
}

/* === Page header ========================================================= */

.page-head {
  background: linear-gradient(175deg, var(--mint-pale) 0%, var(--white) 100%);
  padding-block: var(--space-12);
}
.page-head h1 { max-width: 20ch; }
.page-head p { margin-top: var(--space-4); max-width: 58ch; }

/* === Checklist =========================================================== */

.checks { display: grid; gap: var(--space-3); }
.checks li { display: flex; gap: var(--space-3); align-items: flex-start; padding-left: 0; }
.checks li::before { display: none; }
.checks svg { flex: none; width: 22px; height: 22px; color: var(--petrol); margin-top: 2px; }

/* === Pricing ============================================================= */

.drivers { display: grid; gap: var(--space-6); }
.driver {
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.driver h3 { margin-bottom: var(--space-2); }
.driver p { color: var(--ink-soft); font-size: var(--step--1); }
@media (min-width: 40rem) { .drivers { grid-template-columns: 1fr 1fr; } }

/* === Contact ============================================================= */

.contact-grid { display: grid; gap: var(--space-12); }
@media (min-width: 62rem) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-16); } }

.field { display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.field label { font-weight: 600; font-size: var(--step--1); }
.field label .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1px solid var(--grey-600);
  border-radius: 10px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(32, 75, 93, 0.16);
}
.field textarea { min-height: 150px; resize: vertical; }

.consent { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-6); }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.consent label { font-size: var(--step--1); color: var(--ink-soft); font-weight: 400; }

/* honeypot — must stay reachable to bots but invisible and unfocusable */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: var(--step--1); color: var(--ink-soft); margin-top: var(--space-4); }

.form-status { padding: var(--space-6); border-radius: var(--radius); margin-bottom: var(--space-6); }
.form-status[data-state="ok"] { background: var(--mint-pale); border: 1px solid var(--mint); }
.form-status[data-state="err"] { background: #fdf0ef; border: 1px solid #e4b4ae; }
.form-status h3 { margin-bottom: var(--space-2); }

.contact-card {
  background: var(--mint-wash);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.contact-card h3 { margin-bottom: var(--space-4); }
.contact-list { display: grid; gap: var(--space-4); }
.contact-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.contact-list svg { flex: none; width: 20px; height: 20px; color: var(--petrol); margin-top: 4px; }
.contact-list a { text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

/* === Services listing ==================================================== */

.service-list { display: grid; gap: var(--space-8); }
.service-row {
  display: grid; gap: var(--space-4);
  padding-block: var(--space-8);
  border-top: 1px solid var(--hairline);
}
.service-row:last-child { border-bottom: 1px solid var(--hairline); }
.service-row h2 { font-size: var(--step-2); }
.service-row p { color: var(--ink-soft); }
@media (min-width: 52rem) {
  .service-row { grid-template-columns: 1fr 1.3fr; gap: var(--space-12); align-items: start; }
}

/* === Motion ============================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* === Print =============================================================== */

@media print {
  .nav, .cta, .skip-link { display: none; }
  body { color: #000; }
  .footer { background: none; color: #000; }
}
