/* ==========================================================================
   Waystead — parent site stylesheet
   Rebuilt 1:1 from the Claude Design export (design-reference.html),
   FRAME A · DESKTOP as the source of truth, FRAME B · MOBILE for the
   responsive step. Static, dependency-light: tokens + classes only.

   Enforced brand rules:
   - "Waystead" wordmark is always --ink, never recoloured.
   - Parent chrome (header / hero / about / contact / footer) is ink-on-paper.
   - Product accent colour appears ONLY on product cards, scoped per card via
     [data-product]; the amber waypoint dot is the one shared accent.
   ========================================================================== */

/* ==========================================================================
   1 · Self-hosted fonts (latin subset, variable woff2)
   Manrope variable covers 400–600; Sora variable covers 600–700.
   The Design loaded these from Google Fonts; we self-host per the brief.
   ========================================================================== */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin-var.woff2") format("woff2");
  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: "Sora";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../assets/fonts/sora-latin-var.woff2") format("woff2");
  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;
}

/* ==========================================================================
   2 · Colour tokens (verbatim from the Design)
   One amber waypoint, four product accents, warm neutrals.
   ========================================================================== */
:root {
  /* — Brand constants — */
  --paper:        #FAF8F3;  /* background */
  --ink:          #1B1A20;  /* text */

  /* — Indigo · Scheduler accent / primary — */
  --indigo-50:  #F1F0FA;
  --indigo-100: #E5E4F4;
  --indigo-200: #C7C5E8;
  --indigo-400: #6660CC;
  --indigo-500: #524CC0;
  --indigo-600: #3D37A8;  /* base */
  --indigo-700: #322D8C;
  --indigo-800: #28246F;

  /* — Teal · Learning accent — */
  --teal-50:  #ECF6F4;
  --teal-100: #DBEFEC;
  --teal-200: #B7DED8;
  --teal-400: #16A597;
  --teal-500: #129385;
  --teal-600: #0F8B7E;  /* base */
  --teal-700: #0C7167;
  --teal-800: #095850;

  /* — Amber · the "you are here" dot / Tutoring accent — */
  --amber-50:  #FDF4E1;
  --amber-100: #FCEBCB;
  --amber-200: #F8D89A;
  --amber-400: #F7B84C;
  --amber-500: #F2A31D;  /* base — the waypoint */
  --amber-600: #D98E0F;
  --amber-700: #B5750B;

  /* — Slate · Consulting accent — */
  --slate-50:  #F0F2F5;
  --slate-100: #E4E7EC;
  --slate-200: #CBD1DA;
  --slate-400: #5E6A7E;
  --slate-500: #545E70;
  --slate-600: #4B5567;  /* base */
  --slate-700: #3B4453;
  --slate-800: #2C333F;

  /* — Warm neutral ramp (paper → ink) — */
  --paper-deep:   #F3F0E8;  /* sunken / striped rows */
  --surface:      #FFFFFF;  /* cards */
  --surface-soft: #FCFBF7;
  --line:         #EAE6DC;  /* hairline border on paper */
  --line-strong:  #DBD6C9;
  --ink-2:        #3A3942;  /* secondary text */
  --ink-3:        #6B6A74;  /* muted text */
  --ink-4:        #9C9BA4;  /* placeholder / faint */

  /* — Status — */
  --success: #0F8B7E;
  --warning: #D98E0F;
  --danger:  #C2443A;
  --danger-50: #F8E9E7;

  /* — Semantic aliases — */
  --color-bg:            var(--paper);
  --color-surface:       var(--surface);
  --color-surface-sunk:  var(--paper-deep);
  --color-text:          var(--ink);
  --color-text-2:        var(--ink-2);
  --color-text-muted:    var(--ink-3);
  --color-text-faint:    var(--ink-4);
  --color-border:        var(--line);
  --color-border-strong: var(--line-strong);

  --color-primary:       var(--indigo-600);
  --color-primary-hover: var(--indigo-500);
  --color-primary-press: var(--indigo-700);
  --color-on-primary:    #FFFFFF;

  /* Product accent — defaults to Scheduler indigo; overridden per card
     via [data-product] scopes below. */
  --accent:        var(--indigo-600);
  --accent-hover:  var(--indigo-500);
  --accent-press:  var(--indigo-700);
  --accent-soft:   var(--indigo-100);
  --accent-tint:   var(--indigo-50);
  --accent-ring:   color-mix(in srgb, var(--indigo-600) 28%, transparent);
  --on-accent:     #FFFFFF;

  /* The waypoint dot is always amber, everywhere. */
  --waypoint: var(--amber-500);
}

/* — Product accent scopes — set [data-product] on any container — */
[data-product="scheduler"] {
  --accent: var(--indigo-600); --accent-hover: var(--indigo-500); --accent-press: var(--indigo-700);
  --accent-soft: var(--indigo-100); --accent-tint: var(--indigo-50);
  --accent-ring: color-mix(in srgb, var(--indigo-600) 28%, transparent);
}
[data-product="learning"] {
  --accent: var(--teal-600); --accent-hover: var(--teal-500); --accent-press: var(--teal-700);
  --accent-soft: var(--teal-100); --accent-tint: var(--teal-50);
  --accent-ring: color-mix(in srgb, var(--teal-600) 28%, transparent);
}
[data-product="tutoring"] {
  --accent: var(--amber-500); --accent-hover: var(--amber-600); --accent-press: var(--amber-700);
  --accent-soft: var(--amber-100); --accent-tint: var(--amber-50);
  --accent-ring: color-mix(in srgb, var(--amber-500) 30%, transparent);
  --on-accent: var(--ink);
}
[data-product="consulting"] {
  --accent: var(--slate-600); --accent-hover: var(--slate-500); --accent-press: var(--slate-700);
  --accent-soft: var(--slate-100); --accent-tint: var(--slate-50);
  --accent-ring: color-mix(in srgb, var(--slate-600) 28%, transparent);
}

/* ==========================================================================
   3 · Type, spacing, radius, shadow, motion (verbatim from the Design)
   ========================================================================== */
:root {
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;     /* headlines, wordmark */
  --font-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;  /* body, descriptors, UI */

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  --tracking-tight: -0.02em;
  --tracking-caps:   0.18em;

  /* Spacing — 4px base step */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem;  --space-6: 2rem;   --space-7: 3rem;    --space-8: 4rem; --space-9: 6rem;

  /* Radius */
  --radius-xs: 4px; --radius-sm: 8px; --radius-md: 12px;
  --radius-lg: 16px; --radius-xl: 22px; --radius-2xl: 28px; --radius-pill: 999px;

  /* Shadows — warm-tinted, low and soft */
  --shadow-xs: 0 1px 2px rgba(27,26,32,0.06);
  --shadow-sm: 0 1px 2px rgba(27,26,32,0.05), 0 2px 6px rgba(27,26,32,0.06);
  --shadow-md: 0 2px 4px rgba(27,26,32,0.05), 0 8px 20px rgba(27,26,32,0.08);
  --shadow-lg: 0 6px 12px rgba(27,26,32,0.06), 0 20px 40px rgba(27,26,32,0.12);

  /* Motion — gentle, never bouncy */
  --ease-standard: cubic-bezier(0.32, 0.08, 0.24, 1);
  --ease-out:      cubic-bezier(0.16, 0.84, 0.44, 1);
  --dur-fast: 120ms; --dur-base: 200ms; --dur-slow: 320ms;

  /* Layout */
  --container:        1120px;
  --container-narrow: 720px;
  --focus-width:      3px;

  /* Horizontal page gutter: 64px desktop (Frame A) → 22px mobile (Frame B) */
  --gutter: clamp(22px, 5vw, 64px);
}

/* ==========================================================================
   4 · Base layer
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
img, svg { display: block; }

::selection { background: var(--accent-soft); color: var(--ink); }

a { color: var(--accent); }

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

/* — Accessibility helpers — */
:focus-visible {
  outline: var(--focus-width) solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -56px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-standard);
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* — Width containers — */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--container-narrow); }

/* — Shared eyebrow (amber 7px dot + tracked caps label) — */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-500);   /* the waypoint — always amber */
  flex: none;
}
.eyebrow__label {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-3);
}

/* Wordmark — Sora 600, always ink, never recoloured */
.wordmark {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   5 · Header  (neutral chrome)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; }
.brand .wordmark { font-size: 23px; }

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
}
.nav__link:hover { color: var(--ink); }
.nav__link--btn {
  font-weight: var(--fw-semibold);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 9px 18px;
}
.nav__link--btn:hover { background: var(--surface-soft); border-color: var(--accent); color: var(--ink); }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--ink-2);
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   6 · Hero  (neutral chrome)
   ========================================================================== */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 124px 116px;
}
.hero__mark { width: 92px; height: 92px; margin-bottom: 30px; }
.hero__wordmark { font-size: 30px; margin-bottom: 18px; }   /* .wordmark base */
.hero__title {
  font-size: 76px;
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero__lede {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 560px;
}

/* ==========================================================================
   7 · The idea  (border-top band on paper)
   ========================================================================== */
.idea {
  padding-block: 64px 96px;
  border-top: 1px solid var(--line);
}
.idea__inner { max-width: var(--container-narrow); margin-inline: auto; text-align: center; }
.idea__title { font-size: 42px; margin-bottom: 24px; }
.idea__body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ==========================================================================
   8 · Products  (sunken surface-soft band)
   ========================================================================== */
.products {
  padding-block: 88px 100px;
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.products__head .eyebrow { margin-bottom: 16px; }
.products__title { font-size: 42px; }
.products__intro {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 340px;
  margin-bottom: 6px;
}

/* Grid — column count follows the number of live cards (auto-fit).
   2 live → 2 columns centred on desktop; adapts to 3–4 automatically;
   collapses to 1 column on mobile. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 24px;
}

/* — Reusable product card — accent scoped via [data-product] on the card — */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  min-height: 268px;
}
.card__rail {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);   /* 3px accent rail on the leading edge */
}
.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.card__brand { display: flex; align-items: center; gap: 14px; }
.card__mark { width: 40px; height: 40px; }   /* stroke = var(--accent) inline */
.card__id { display: flex; flex-direction: column; gap: 5px; }
.card__wordmark { font-size: 21px; line-height: 1; }   /* .wordmark base, ink */
.card__descriptor {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
}
.card__tagline {
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.card__desc {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}
.card__foot { margin-top: auto; padding-top: 4px; }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 12px;
  height: 24px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  flex: none;
}
.pill--live { gap: 6px; background: var(--accent-soft); color: var(--accent-press); }
.pill--live .pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.pill--soon { background: var(--paper-deep); color: var(--ink-3); }

/* CTA — live: filled accent button with diagonal arrow */
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.card__cta:hover { background: var(--accent-hover); }
.card__cta:active { background: var(--accent-press); transform: translateY(1px); }
.card__cta svg { width: 16px; height: 16px; }

/* CTA — future: muted clock + "In development" text (used at launch only) */
.card__soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 15px;
  color: var(--ink-3);
}
.card__soon svg { width: 16px; height: 16px; }

/* ==========================================================================
   9 · About  (neutral chrome)
   ========================================================================== */
.about { padding-block: 96px; }
.about__inner { max-width: var(--container-narrow); margin-inline: auto; }
.about__title { font-size: 40px; margin-bottom: 24px; }
.about__body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}
.about__body + .about__body { margin-top: 20px; }

/* ==========================================================================
   10 · Contact  (neutral chrome)
   ========================================================================== */
.contact { padding-block: 24px 112px; }
.contact__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 88px;
}
.contact__title { font-size: 40px; margin-bottom: 20px; }
.contact__lede {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 28px;
}
.contact__email {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 30px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--amber-500);
  padding-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact__email:hover { color: var(--ink); }

/* ==========================================================================
   11 · Footer  (paper-deep, neutral chrome)
   ========================================================================== */
.site-footer {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding-block: 64px 40px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-strong);
}
.site-footer__brand { max-width: 300px; }
.site-footer__brandrow { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.site-footer__brandrow .brand__mark { width: 30px; height: 30px; }
.site-footer__brandrow .wordmark { font-size: 21px; }
.site-footer__tag {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: 16px;
  color: var(--ink-2);
}
.site-footer__cols { display: flex; gap: 72px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col__head {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
}
.footer-col a:hover { color: var(--ink); text-decoration: underline; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.site-footer__bottom span {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 13px;
  color: var(--ink-4);
}

/* ==========================================================================
   12 · Responsive — mobile step from FRAME B (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Header → hamburger toggle */
  .site-header__inner { padding-block: 18px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur-base) var(--ease-standard);
  }
  .nav[data-open="true"] { grid-template-rows: 1fr; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
  }
  .nav__link {
    padding: 14px var(--gutter);
    border-top: 1px solid var(--line);
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__link--btn { border: none; border-top: 1px solid var(--line); border-radius: 0; }
  .nav__link--btn:hover { background: var(--surface-soft); }

  /* No-JS fallback: render nav as a static list */
  html.no-js .nav { position: static; grid-template-rows: 1fr; box-shadow: none; }
  html.no-js .nav-toggle { display: none; }

  /* Hero */
  .hero { padding-block: 56px 48px; }
  .hero__mark { width: 64px; height: 64px; margin-bottom: 22px; }
  .hero__wordmark { font-size: 20px; margin-bottom: 14px; }
  .hero__title { font-size: 46px; line-height: 1.05; margin-bottom: 18px; }
  .hero__lede { font-size: 16px; }

  /* The idea */
  .idea { padding-block: 48px 56px; }
  .idea__title { font-size: 30px; }
  .idea__body { font-size: 17px; }

  /* Products */
  .products { padding-block: 40px 48px; }
  .products__head { margin-bottom: 24px; }
  .products__head .eyebrow { margin-bottom: 8px; }
  .products__title { font-size: 28px; }
  .products__intro { display: none; }   /* Frame B omits the intro line */
  .product-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Card → compact mobile variant */
  .card { padding: 22px; gap: 14px; min-height: 0; }
  .card__brand { gap: 11px; }
  .card__mark { width: 32px; height: 32px; }
  .card__wordmark { display: none; }          /* Frame B drops the per-card wordmark */
  .card__descriptor { letter-spacing: 0.16em; }
  .card__tagline { font-size: 19px; }
  .card__desc { display: none; }              /* Frame B omits the card description */
  .pill { height: 22px; padding: 0 9px; font-size: 11px; }
  .pill--live { gap: 5px; }
  .pill--live .pill__dot { width: 5px; height: 5px; }
  .card__foot { padding-top: 0; }
  /* CTA → plain accent text link */
  .card__cta {
    height: auto;
    padding: 0;
    gap: 7px;
    background: none;
    color: var(--accent);
    box-shadow: none;
    font-size: 14px;
  }
  .card__cta:hover { background: none; }
  .card__cta:active { transform: none; }
  .card__cta svg { width: 14px; height: 14px; }

  /* About */
  .about { padding-block: 56px; }
  .about__title { font-size: 30px; }
  .about__body { font-size: 17px; }

  /* Contact */
  .contact { padding-block: 8px 72px; }
  .contact__inner { padding-top: 56px; }
  .contact__title { font-size: 30px; }
  .contact__email { font-size: 24px; }

  /* Footer */
  .site-footer { padding-block: 48px 32px; }
  .site-footer__top { gap: 32px; padding-bottom: 32px; }
  .site-footer__cols { gap: 40px; }
}
