/* ============================================================
   Tuna Bookkeeping and Financial Consultancy
   Palette: brand blue (from logo) + cool paper + navy ink.
   Single accent locked to blue. Light + dark themes.
   ============================================================ */

:root {
  --brand:        #1877c0;
  --brand-strong: #0f5a97;
  --brand-tint:   #eaf3fb;
  --navy:         #0c2e4e;
  --ink:          #14202b;
  --muted:        #5a6b78;
  --line:         #e5e9ee;
  --bg:           #fbfcfd;
  --surface:      #ffffff;
  --surface-2:    #f4f7fa;
  --on-brand:     #ffffff;

  --radius:   14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --nav-h: 129px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(12, 46, 78, 0.06), 0 4px 14px rgba(12, 46, 78, 0.05);
  --shadow-md: 0 10px 30px rgba(12, 46, 78, 0.10);
}

:root[data-theme="dark"] {
  --brand:        #4aa3e8;
  --brand-strong: #6cb6ef;
  --brand-tint:   #12263a;
  --navy:         #eaf1f7;
  --ink:          #e8eef4;
  --muted:        #9fb0bf;
  --line:         #23323f;
  --bg:           #0b141c;
  --surface:      #101b25;
  --surface-2:    #0e1922;
  --on-brand:     #08141f;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 6px 18px rgba(0,0,0,0.35);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --brand:        #4aa3e8;
    --brand-strong: #6cb6ef;
    --brand-tint:   #12263a;
    --navy:         #eaf1f7;
    --ink:          #e8eef4;
    --muted:        #9fb0bf;
    --line:         #23323f;
    --bg:           #0b141c;
    --surface:      #101b25;
    --surface-2:    #0e1922;
    --on-brand:     #08141f;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 6px 18px rgba(0,0,0,0.35);
    --shadow-md: 0 14px 40px rgba(0,0,0,0.5);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 150px; }

body {
  margin: 0;
  font-family: "Schibsted Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: var(--on-brand);
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  font: inherit; font-weight: 600; white-space: nowrap;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--lg { --pad-y: 15px; --pad-x: 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--brand); color: var(--on-brand); }
.btn--solid:hover { background: var(--brand-strong); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.btn i { font-size: 1.15em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  padding: 16px 24px; height: 128px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 84px; width: auto; }
:root[data-theme="dark"] .brand__logo,
.footer__logo { }

.nav__links { display: flex; gap: 26px; justify-self: center; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.98rem;
  padding: 6px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brand); transition: width 0.25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { justify-self: end; display: flex; align-items: center; gap: 12px; }

.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang__btn {
  border: 0; background: transparent; color: var(--muted);
  font: inherit; font-weight: 600; font-size: 0.82rem; padding: 6px 12px; cursor: pointer;
}
.lang__btn.is-active { background: var(--brand); color: var(--on-brand); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  cursor: pointer; display: grid; place-items: center; font-size: 1.15rem;
}
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); }

.nav__burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 12px; cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__burger span { width: 20px; height: 2px; background: var(--ink); transition: 0.2s var(--ease); }

.nav__mobile { display: none; }

/* ---------- Layout helpers ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem;
  font-weight: 600; color: var(--brand); margin: 0 0 14px;
}
.eyebrow--light { color: color-mix(in srgb, var(--brand) 70%, white 30%); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 700;
  color: var(--navy); margin: 0;
}
.section-title--center { text-align: center; }
.section-lead { color: var(--muted); font-size: 1.1rem; margin: 14px 0 0; max-width: 52ch; }

/* ---------- First screen: hero + trust fit exactly one viewport ---------- */
.firstscreen {
  display: flex; flex-direction: column;
  min-height: calc(100dvh - var(--nav-h));
}
.firstscreen .hero { flex: 1 0 auto; }
.firstscreen .trust { flex: 0 0 auto; }

/* ---------- Hero (full-bleed UK background) ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 420px;
  display: flex; align-items: center;
  background-image: url("assets/hero-london.jpg");
  background-size: cover; background-position: center right;
  background-repeat: no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg,
    rgba(9, 30, 52, 0.94) 0%,
    rgba(9, 30, 52, 0.78) 30%,
    rgba(9, 30, 52, 0.42) 60%,
    rgba(9, 30, 52, 0.08) 100%);
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; width: 100%; }
.hero__content { max-width: 640px; }
.hero__title {
  font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.03; letter-spacing: -0.03em;
  font-weight: 800; color: #fff; margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero__sub {
  font-size: 1.18rem; color: rgba(255, 255, 255, 0.9); margin: 0 0 32px; max-width: 46ch;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.eyebrow--onimg { color: #bcdcf7; }

/* White outline CTA for use over the hero image */
.btn--onimg {
  background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}
.btn--onimg:hover { background: rgba(255, 255, 255, 0.18); border-color: #fff; color: #fff; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-2); }
.trust__row {
  max-width: var(--maxw); margin: 0 auto; list-style: none; padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: space-between;
}
.trust__row li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 500; font-size: 0.96rem; }
.trust__row i { color: var(--brand); font-size: 1.3rem; }

/* ---------- Services (bento) ---------- */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) 24px; }
.services__head { max-width: 40ch; margin-bottom: 40px; }
.services__bento {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.svc:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); box-shadow: var(--shadow-sm); }
.svc__icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand-tint); color: var(--brand); font-size: 1.5rem; margin-bottom: 18px;
}
.svc h3 { font-size: 1.3rem; color: var(--navy); margin: 0 0 8px; letter-spacing: -0.01em; }
.svc p { color: var(--muted); margin: 0; }

.svc--lead { grid-column: span 1; }
.svc--wide { grid-column: span 2; }
.svc--brand { background: var(--brand); border-color: var(--brand); }
.svc--brand .svc__icon { background: rgba(255,255,255,0.16); color: #fff; }
.svc--brand h3 { color: #fff; }
.svc--brand p { color: rgba(255,255,255,0.86); }

/* ---------- How it works ---------- */
.how { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how__head { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 100px) 24px 0; }
.how__steps {
  max-width: var(--maxw); margin: 0 auto; list-style: none;
  padding: 40px 24px clamp(60px, 9vw, 100px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.step { position: relative; padding-top: 14px; }
.step__no {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 999px;
  background: var(--brand); color: var(--on-brand); font-weight: 800; font-size: 1.2rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; color: var(--navy); margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; max-width: 34ch; }

/* ---------- About (dark band) ---------- */
.about { background: var(--navy); color: #fff; }
:root[data-theme="dark"] .about { background: #0a1621; }
.about__inner { max-width: 860px; margin: 0 auto; padding: clamp(64px, 10vw, 120px) 24px; text-align: center; }
.about__title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.12; letter-spacing: -0.02em;
  font-weight: 700; color: #fff; margin: 0 0 22px;
}
.about__body { color: rgba(255,255,255,0.82); font-size: 1.14rem; margin: 0 auto 36px; max-width: 62ch; }
.about__facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 60px; margin: 0;
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 30px;
}
.about__facts div { text-align: center; }
.about__facts dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.about__facts dd { margin: 0; font-weight: 600; font-size: 1.05rem; color: #fff; }

.founder {
  display: flex; gap: 20px; align-items: flex-start; text-align: left;
  max-width: 660px; margin: 38px auto 0; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.founder__avatar {
  width: 96px; height: 96px; border-radius: 999px; flex-shrink: 0;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.founder__name { margin: 0; font-weight: 700; color: #fff; font-size: 1.14rem; }
.founder__role { margin: 3px 0 12px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.founder__bio { margin: 0 0 12px; color: rgba(255,255,255,0.82); font-size: 0.99rem; }
.founder__mail {
  color: color-mix(in srgb, var(--brand) 55%, white 45%);
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.founder__mail:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .founder { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- Testimonials ---------- */
.quotes { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) 24px; }
.quotes__head { margin-bottom: 40px; max-width: 30ch; }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; margin: 0; display: flex; flex-direction: column;
}
.quote blockquote {
  margin: 0 0 20px; font-size: 1.08rem; color: var(--ink); line-height: 1.5;
  position: relative; padding-top: 30px;
}
.quote blockquote::before {
  content: "\201C"; position: absolute; top: -6px; left: -2px;
  font-size: 3.2rem; line-height: 1; color: var(--brand); opacity: 0.5;
  font-family: Georgia, serif;
}
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; }
.quote__name { font-weight: 700; color: var(--navy); }
.quote__role { font-size: 0.86rem; color: var(--muted); margin-top: 2px; }

/* ---------- Pricing statement ---------- */
.pricing { background: var(--brand-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing__inner { max-width: 720px; margin: 0 auto; padding: clamp(60px, 9vw, 110px) 24px; text-align: center; }
.pricing__lead { color: var(--muted); font-size: 1.14rem; margin: 18px auto 30px; max-width: 52ch; }
:root[data-theme="dark"] .pricing__lead { color: color-mix(in srgb, var(--muted) 80%, white 20%); }

/* ---------- Contact ---------- */
.contact { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) 24px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.contact__lead { color: var(--muted); font-size: 1.1rem; margin: 14px 0 28px; max-width: 42ch; }

.contact__details { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 16px; }
.contact__details li { display: flex; align-items: center; gap: 14px; }
.contact__details i { color: var(--brand); font-size: 1.35rem; flex-shrink: 0; }
.contact__details a, .contact__details span { color: var(--ink); text-decoration: none; }
.contact__details a:hover { color: var(--brand); }

.contact__social { display: flex; gap: 12px; }
.contact__social a {
  width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); font-size: 1.2rem; transition: 0.2s var(--ease);
}
.contact__social a:hover { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }

.contact__form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent);
}
.field textarea { resize: vertical; }
.field__error { color: #c0392b; font-size: 0.82rem; min-height: 1em; margin: 2px 0 0; }
:root[data-theme="dark"] .field__error { color: #ff8b7d; }
.field input:invalid.is-touched, .field textarea:invalid.is-touched { border-color: #c0392b; }
.form__status { margin: 14px 0 0; font-size: 0.95rem; color: var(--brand); text-align: center; min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer { background: var(--surface-2); border-top: 1px solid var(--line); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 54px 24px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 30px; align-items: start;
}
.footer__logo { height: 52px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--muted); margin: 0; max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--ink); text-decoration: none; font-weight: 500; }
.footer__nav a:hover { color: var(--brand); }
.footer__meta { text-align: right; color: var(--muted); font-size: 0.9rem; }
.footer__meta p { margin: 0 0 6px; }
.footer__link {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--brand); font-weight: 600; text-decoration: underline;
}
.footer__link:hover { color: var(--brand-strong); }

/* ---------- Cookie consent ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
  max-width: 780px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie[hidden] { display: none; }
.cookie__text { margin: 0; color: var(--ink); font-size: 0.9rem; line-height: 1.5; flex: 1 1 340px; }
.cookie__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-left: auto; }
.cookie__actions .btn { --pad-y: 9px; --pad-x: 18px; font-size: 0.9rem; }
.cookie__link {
  background: none; border: 0; padding: 6px; font: inherit; font-weight: 600; cursor: pointer;
  color: var(--brand); text-decoration: underline;
}
.cookie__link:hover { color: var(--brand-strong); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(9, 30, 52, 0.55); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1; width: min(560px, 100%);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(24px, 4vw, 38px); max-height: 85vh; overflow: auto;
}
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg); color: var(--ink); cursor: pointer;
  display: grid; place-items: center; font-size: 1.15rem;
}
.modal__close:hover { border-color: var(--brand); color: var(--brand); }
.modal__title { margin: 0 0 16px; color: var(--navy); font-size: clamp(1.35rem, 3vw, 1.7rem); }
.modal__body p { color: var(--muted); margin: 0 0 14px; font-size: 0.98rem; }
.modal__status { color: var(--brand); font-weight: 600; min-height: 1.2em; }
.modal__foot { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }

@media (max-width: 560px) {
  .cookie {
    flex-direction: column; align-items: stretch;
    left: 10px; right: 10px; bottom: 10px;
    padding: 12px 14px; gap: 10px; border-radius: 14px;
  }
  .cookie__text { flex: 0 0 auto; font-size: 0.8rem; line-height: 1.45; margin: 0; }
  .cookie__actions { margin-left: 0; flex-wrap: wrap; gap: 8px; }
  .cookie__actions .btn { flex: 1 1 0; --pad-y: 8px; --pad-x: 10px; font-size: 0.85rem; }
  .cookie__link { flex: 1 1 100%; order: 3; text-align: center; padding: 2px; font-size: 0.82rem; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Dark mode: keep logo readable on dark surfaces ---------- */
:root[data-theme="dark"] .brand__logo,
:root[data-theme="dark"] .footer__logo {
  filter: brightness(0) invert(1) opacity(0.92);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand__logo,
  :root:not([data-theme="light"]) .footer__logo {
    filter: brightness(0) invert(1) opacity(0.92);
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero { min-height: 360px; background-position: center center; }
  .hero::before {
    background: linear-gradient(120deg, rgba(9,30,52,0.9) 0%, rgba(9,30,52,0.72) 55%, rgba(9,30,52,0.5) 100%);
  }
  .services__bento { grid-template-columns: repeat(2, 1fr); }
  .svc--wide { grid-column: span 2; }
  .how__steps { grid-template-columns: 1fr; gap: 22px; }
  .quotes__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__meta { text-align: left; grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --nav-h: 93px; }
  .firstscreen { min-height: auto; }
  .nav__inner { height: 92px; }
  .brand__logo { height: 58px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile[data-open="true"] {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px 24px 22px; border-top: 1px solid var(--line); background: var(--bg);
  }
  .nav__mobile a { padding: 12px 0; color: var(--ink); text-decoration: none; font-weight: 500; font-size: 1.05rem; }
  .nav__mobile .btn { margin-top: 8px; }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .services__bento { grid-template-columns: 1fr; }
  .svc--wide, .svc--lead { grid-column: span 1; }
  .trust__row { gap: 12px 24px; }
  .trust__row li { font-size: 0.9rem; }
  .about__facts { flex-direction: column; gap: 18px; }
}
