/* ==========================================================================
   Diziweb - main stylesheet
   Structure:
   1. Font + design tokens
   2. Base / reset
   3. Layout helpers
   4. Buttons + links
   5. Header + navigation
   6. Hero + device mockup
   7. Sections (value strip -> CTA)
   8. Footer
   9. Motion
   10. Responsive breakpoints
   ========================================================================== */

/* 1. Font + design tokens ------------------------------------------------- */
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../assets/fonts/schibsted-grotesk-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colour: neutral stone base + one pine accent */
  --paper: #F4F6F3;
  --paper-deep: #EAEEE9;
  --surface: #FFFFFF;
  --ink: #15211D;
  --ink-soft: #4B5752;
  --line: #D9DED8;
  --line-strong: #BCC5BE;
  --accent: #0B6E4F;
  --accent-deep: #07563D;
  --accent-tint: #E3EFE9;
  --dark: #0F2A21;
  --dark-soft: #A9C0B6;
  --dark-line: rgba(255, 255, 255, 0.14);
  --wa: #128C7E;

  /* Type */
  --font: "Schibsted Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-h1: clamp(2.35rem, 1.55rem + 3.5vw, 4.3rem);
  --fs-h2: clamp(1.85rem, 1.4rem + 1.9vw, 2.85rem);
  --fs-h3: 1.1875rem;

  /* Space + shape */
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 9vw, 128px);
  --header-h: 68px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow-soft: 0 1px 2px rgba(21, 33, 29, 0.05), 0 8px 24px -12px rgba(21, 33, 29, 0.14);
  --shadow-lift: 0 2px 4px rgba(21, 33, 29, 0.04), 0 30px 60px -28px rgba(21, 33, 29, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. Base / reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em; font-weight: 650; }
p { text-wrap: pretty; }

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

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

.skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* 3. Layout helpers ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 + .section-sub { margin-top: 16px; }
.section-sub, .section-intro p { color: var(--ink-soft); max-width: 60ch; }
.section-intro p + p { margin-top: 14px; }

.split-head { max-width: none; display: grid; gap: 20px 64px; }

.section-foot { margin-top: 36px; }

/* 4. Buttons + links ------------------------------------------------------ */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: var(--fs-small); }
.btn-lg { min-height: 54px; padding: 0 26px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }

.btn-secondary { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-secondary:hover { border-color: var(--ink); background: var(--surface); }

.btn-light { background: #fff; color: var(--accent-deep); }
.btn-light:hover { background: var(--accent-tint); }

.btn-whatsapp { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.btn-whatsapp svg { color: var(--wa); }
.btn-whatsapp:hover { border-color: var(--wa); }

.text-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  transition: text-decoration-color .2s var(--ease);
}
.text-link:hover { text-decoration-color: currentColor; }

/* 5. Header + navigation -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
/* The blur lives on a pseudo-element: backdrop-filter on the header itself
   would trap the fixed mobile menu inside the header's box. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(244, 246, 243, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
}
body.nav-open .site-header::before { background: var(--paper); }
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  margin-right: auto;
  min-height: 44px;
}
.brand-mark { color: var(--accent); flex: none; }

.nav-list a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.nav-list a:hover, .nav-list a[aria-current="true"], .nav-list a[aria-current="page"] { color: var(--ink); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-right: -8px;
  background: none;
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle-bars { position: relative; width: 22px; height: 14px; }
.nav-toggle-bars span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile menu panel (default); desktop overrides in section 10 */
.site-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 16px var(--gutter) 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.site-nav .nav-list a {
  padding: 14px 0;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav-cta-mobile { width: 100%; min-height: 54px; }
.header-cta { display: none; }
body.nav-open { overflow: hidden; }

/* 6. Hero + device mockup ------------------------------------------------- */
.hero { padding-block: clamp(40px, 7vw, 96px) clamp(56px, 8vw, 104px); }

.hero-grid {
  display: grid;
  gap: clamp(48px, 7vw, 72px);
  align-items: center;
}

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 13ch;
}
.hero-lead {
  margin-top: 22px;
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 44ch;
}
.hero .btn-row { margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: var(--fs-small); color: var(--ink-soft); }

/* Concept switch (segmented control above the mockup) */
.concept-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  margin-bottom: 18px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.concept-btn {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.concept-btn:hover { color: var(--ink); }
.concept-btn[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 1px 3px rgba(21,33,29,.12); }

/* Concept palettes (used by the mockup and the concept cards) */
/* --m-on-acc is the text colour used on top of --m-acc (kept above 4.5:1) */
[data-concept="dental"], [data-theme="dental"] {
  --m-bg: #EDF4F8; --m-ink: #16324A; --m-acc: #2D74A8; --m-soft: #D3E5F1; --m-surface: #FFFFFF; --m-muted: #4E6377; --m-on-acc: #FFFFFF;
}
[data-concept="fitness"], [data-theme="fitness"] {
  --m-bg: #17191C; --m-ink: #F3F3F0; --m-acc: #E8622C; --m-soft: #2B2F35; --m-surface: #212429; --m-muted: #A8AEB6; --m-on-acc: #17191C;
}
[data-concept="cafe"], [data-theme="cafe"] {
  --m-bg: #F5ECE1; --m-ink: #3B2618; --m-acc: #9A5B34; --m-soft: #E8D8C5; --m-surface: #FFF9F2; --m-muted: #6F5745; --m-on-acc: #FFFFFF;
}
/* Phase 2 portfolio palettes */
[data-theme="physio"] {
  --m-bg: #EAF3F0; --m-ink: #173630; --m-acc: #1F6A59; --m-soft: #CFE6DF; --m-surface: #FFFFFF; --m-muted: #4C6760; --m-on-acc: #FFFFFF;
}
[data-theme="salon"] {
  --m-bg: #F7EEEE; --m-ink: #3A2328; --m-acc: #A94F63; --m-soft: #EDD9DC; --m-surface: #FFFBFB; --m-muted: #6F535A; --m-on-acc: #FFFFFF;
}
[data-theme="realestate"] {
  --m-bg: #EDF0F5; --m-ink: #1C2536; --m-acc: #34507F; --m-soft: #D5DCE8; --m-surface: #FFFFFF; --m-muted: #566275; --m-on-acc: #FFFFFF;
}
[data-theme="clinic"] {
  --m-bg: #EFF4F8; --m-ink: #13304A; --m-acc: #1F6FA5; --m-soft: #D5E4EF; --m-surface: #FFFFFF; --m-muted: #4C6478; --m-on-acc: #FFFFFF;
}
[data-theme="services"] {
  --m-bg: #F1F2EE; --m-ink: #1F2723; --m-acc: #0B6E4F; --m-soft: #DDE3DC; --m-surface: #FFFFFF; --m-muted: #4A544E; --m-on-acc: #FFFFFF;
}

.hero-visual { position: relative; min-width: 0; }

.mock-stage {
  position: relative;
  container-type: inline-size;
  padding-bottom: 7%;
  padding-right: 6%;
}

.mock-browser {
  font-size: 11px;
  font-size: clamp(7px, 2.05cqi, 13px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 1.2em;
  padding: 0.9em 1.2em;
  border-bottom: 1px solid var(--line);
  background: #FAFBFA;
}
.mock-dots { display: flex; gap: 0.5em; }
.mock-dots i { width: 0.85em; height: 0.85em; border-radius: 50%; background: var(--line-strong); }
.mock-url {
  flex: 1;
  max-width: 22em;
  margin-inline: auto;
  padding: 0.35em 1em;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 0.95em;
  text-align: center;
}

.mock-site {
  background: var(--m-bg);
  color: var(--m-ink);
  padding: 1.6em 2em 2em;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}
[data-mock-content] > * { transition: opacity .3s var(--ease); }
.is-switching [data-mock-content] > * { opacity: 0; }

.mock-nav { display: flex; align-items: center; gap: 1.6em; }
.mock-logo { display: inline-flex; align-items: center; gap: 0.6em; font-weight: 700; font-size: 1.05em; white-space: nowrap; }
.mock-logo b { width: 1.4em; height: 1.4em; border-radius: 0.4em; background: var(--m-acc); transition: background-color .45s var(--ease); }
.mock-links { display: flex; gap: 1.2em; margin-left: auto; }
.mock-links i { width: 3.4em; height: 0.5em; border-radius: 1em; background: var(--m-ink); opacity: .18; }
.mock-navbtn {
  padding: 0.55em 1em;
  border: 1px solid var(--m-acc);
  border-radius: 0.5em;
  color: var(--m-acc);
  font-weight: 600;
  font-size: 0.9em;
  white-space: nowrap;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.8em;
  align-items: center;
  margin-top: 2.4em;
}
.mock-h { font-size: 2.3em; font-weight: 750; line-height: 1.05; letter-spacing: -0.03em; }
.mock-p { margin-top: 0.8em; font-size: 1.05em; color: var(--m-muted); line-height: 1.4; }
.mock-btn {
  display: inline-block;
  margin-top: 1.3em;
  padding: 0.75em 1.3em;
  border-radius: 0.55em;
  background: var(--m-acc);
  color: var(--m-on-acc, #fff);
  font-weight: 600;
  transition: background-color .45s var(--ease);
}
.mock-hero-art {
  position: relative;
  aspect-ratio: 1 / 0.95;
  border-radius: 1em;
  background: var(--m-soft);
  overflow: hidden;
  transition: background-color .45s var(--ease);
}
.mock-hero-art span:first-child {
  position: absolute; inset: auto 12% -18% 12%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  background: var(--m-acc);
  opacity: .9;
}
.mock-hero-art span:last-child {
  position: absolute; top: 14%; left: 50%;
  width: 30%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--m-surface);
}

.mock-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9em; margin-top: 2em; }
.mock-tiles span {
  display: flex; align-items: center; gap: 0.7em;
  padding: 0.9em;
  border-radius: 0.7em;
  background: var(--m-surface);
  font-size: 0.95em;
  font-weight: 600;
  transition: background-color .45s var(--ease);
}
.mock-tiles b { flex: none; width: 1.8em; height: 1.8em; border-radius: 0.5em; background: var(--m-soft); }
.mock-tiles em { font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.mock-info { display: flex; align-items: center; gap: 0.6em; margin-top: 1.3em; font-size: 0.95em; color: var(--m-muted); }
.mock-pin { width: 0.7em; height: 0.7em; border-radius: 50%; background: #3BAA6E; }

.mock-phone {
  position: absolute;
  right: 0; bottom: 0;
  width: 27%;
  font-size: 8px;
  font-size: clamp(5px, 1.5cqi, 9.5px);
  padding: 0.6em;
  background: #1D2421;
  border-radius: 2.6em;
  box-shadow: var(--shadow-lift);
}
.mock-phone-screen {
  position: relative;
  aspect-ratio: 9 / 18.5;
  padding: 2.2em 1.4em 1.4em;
  border-radius: 2em;
  background: var(--m-bg);
  color: var(--m-ink);
  overflow: hidden;
  transition: background-color .45s var(--ease), color .45s var(--ease);
}
.mp-top { display: flex; align-items: center; gap: 0.6em; font-weight: 700; font-size: 1.1em; }
.mp-top b { width: 1.4em; height: 1.4em; border-radius: 0.4em; background: var(--m-acc); }
.mp-hero { margin-top: 2em; }
.mp-h { font-size: 2em; font-weight: 750; line-height: 1.08; letter-spacing: -0.02em; }
.mp-btn {
  display: block;
  margin-top: 1.4em;
  padding: 0.9em;
  border-radius: 0.7em;
  background: var(--m-acc);
  color: var(--m-on-acc, #fff);
  font-weight: 600;
  text-align: center;
}
.mp-list { display: grid; gap: 0.7em; margin-top: 1.6em; }
.mp-list i { height: 3em; border-radius: 0.7em; background: var(--m-surface); }
.mp-wa {
  position: absolute;
  right: 1.2em; bottom: 1.2em;
  display: grid; place-items: center;
  width: 3.6em; height: 3.6em;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}
.mp-wa svg { width: 55%; height: 55%; }

/* 7. Sections ------------------------------------------------------------- */

/* Value strip */
.value-strip { background: var(--surface); border-block: 1px solid var(--line); }
.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding-block: 22px;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1.3;
}
.value-list svg { flex: none; width: 18px; height: 18px; color: var(--accent); }

/* Problem / comparison */
.compare { display: grid; gap: 16px; }
.compare-col { padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); }
.compare-without { background: var(--paper-deep); color: var(--ink-soft); }
.compare-with { background: var(--surface); border: 1.5px solid var(--accent); box-shadow: var(--shadow-soft); }
.compare-title { font-size: 1.0625rem; margin-bottom: 22px; }
.compare-without .compare-title { color: var(--ink-soft); }
.compare-with .compare-title { color: var(--accent-deep); }
.compare-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-top: 1px solid var(--line);
}
.compare-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 17px;
  width: 16px; height: 16px;
}
.compare-without li::before {
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
}
.compare-with li::before {
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5L19.5 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5L19.5 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.compare-with li { color: var(--ink); }

/* Services: one bordered grid rather than floating cards */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service {
  padding: clamp(24px, 3.2vw, 36px);
  background: var(--surface);
  transition: background-color .2s var(--ease);
}
.service:hover { background: #FAFCFA; }
.service .icon { width: 30px; height: 30px; color: var(--accent); margin-bottom: 22px; }
.service p { margin-top: 8px; color: var(--ink-soft); font-size: var(--fs-small); }

/* Industries */
.industry-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.industry {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: start;
  align-content: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.industry:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.industry-icon {
  grid-row: span 2;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-deep);
}
.industry-icon svg { width: 24px; height: 24px; }
.industry h3 { font-size: 1.0625rem; }
.industry p { margin-top: 4px; font-size: var(--fs-small); color: var(--ink-soft); line-height: 1.5; }
.industry p a { color: var(--accent); font-weight: 600; text-underline-offset: 3px; }
.industry-other { background: transparent; border-style: dashed; border-color: var(--line-strong); }
.industry-other:hover { box-shadow: none; }
.industry-other .industry-icon { background: var(--surface); border: 1px solid var(--line); }

/* Personalised demo (dark feature section) */
.demo { background: var(--dark); color: #fff; }
.demo :focus-visible { outline-color: #fff; }
.demo-grid { display: grid; gap: 48px; align-items: start; }
.demo-copy h2 { max-width: 16ch; }
.demo-lead { margin-top: 20px; font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.3rem); line-height: 1.5; color: #E4EEE9; max-width: 40ch; }
.demo-copy p:not(.demo-lead) { margin-top: 14px; color: var(--dark-soft); max-width: 44ch; }
.demo-copy .btn { margin-top: 32px; }

.demo-steps { counter-reset: step; }
.demo-steps li {
  position: relative;
  counter-increment: step;
  padding: 0 0 26px 58px;
}
.demo-steps li:last-child { padding-bottom: 0; }
.demo-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -3px;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--dark);
}
.demo-steps li:last-child::before { background: #fff; color: var(--dark); border-color: #fff; }
.demo-steps li:not(:last-child)::after {
  content: "";
  position: absolute; left: 18.5px; top: 38px; bottom: 0;
  width: 1px;
  background: var(--dark-line);
}
.demo-steps h3 { font-size: 1.125rem; }
.demo-steps p { margin-top: 4px; color: var(--dark-soft); font-size: var(--fs-small); }

/* Process */
.process { display: grid; gap: 0; counter-reset: none; }
.process-step {
  position: relative;
  padding: 24px 0 24px 64px;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  position: absolute; left: 0; top: 22px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.process-step p { margin-top: 6px; color: var(--ink-soft); font-size: var(--fs-small); }

/* Why choose me */
.why-grid { display: grid; gap: 8px 64px; }
.why-head { margin-bottom: 32px; }
.why-list { display: grid; gap: 0 40px; }
.why-list li { padding: 22px 0; border-top: 1px solid var(--line); }
.why-list p { margin-top: 6px; color: var(--ink-soft); font-size: var(--fs-small); }

/* Final CTA */
.cta-panel {
  display: grid;
  gap: 40px;
  padding: clamp(28px, 6vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.cta-copy h2 { max-width: 18ch; }
.cta-copy p { margin-top: 18px; color: var(--ink-soft); max-width: 52ch; }
.cta-copy .btn-row { margin-top: 32px; }
.cta-details { display: grid; gap: 18px; align-content: start; }
.cta-details div { padding-top: 16px; border-top: 1px solid var(--line); }
.cta-details dt { font-size: 0.875rem; color: var(--ink-soft); }
.cta-details dd { margin-top: 2px; font-weight: 600; overflow-wrap: anywhere; }
.cta-details a { text-decoration: none; }
.cta-details a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

/* 8. Footer --------------------------------------------------------------- */
.site-footer {
  padding-top: clamp(56px, 7vw, 80px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
}
.footer-grid { display: grid; gap: 40px 32px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-brand { grid-column: 1 / -1; max-width: 340px; }
.footer-brand p { margin-top: 12px; color: var(--ink-soft); }
.footer-title { font-size: 0.9375rem; font-weight: 700; letter-spacing: 0; margin-bottom: 14px; }
.footer-col li + li { margin-top: 6px; }
.footer-col a, .legal a { color: var(--ink-soft); text-decoration: none; display: inline-block; padding-block: 3px; }
.footer-col a:hover, .legal a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-col li { color: var(--ink-soft); overflow-wrap: anywhere; }

.social { display: flex; gap: 8px; margin-top: 20px; }
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.social a:hover { color: var(--ink); border-color: var(--line-strong); }
.social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 48px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.legal { display: flex; flex-wrap: wrap; gap: 4px 20px; }

/* 9. Motion --------------------------------------------------------------- */
/* Content is always visible without JS; the .js class opts into animation. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.js .hero-copy > * { animation: rise .8s var(--ease) both; }
.js .hero-copy > :nth-child(2) { animation-delay: .08s; }
.js .hero-copy > :nth-child(3) { animation-delay: .16s; }
.js .hero-copy > :nth-child(4) { animation-delay: .24s; }
.js .hero-visual { animation: rise 1s var(--ease) .2s both; }

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

/* 10. Responsive breakpoints (mobile-first) -------------------------------- */
@media (min-width: 560px) {
  .header-cta { display: inline-flex; }
  .value-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-other { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .compare { grid-template-columns: 1fr 1fr; }
  .split-head { grid-template-columns: 1fr 1fr; align-items: end; }
  .process { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .process-step:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .why-list { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1.5fr 1fr; align-items: end; }
}

@media (min-width: 1024px) {
  /* Desktop navigation */
  .nav-toggle, .nav-cta-mobile { display: none; }
  .site-nav {
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    border: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-list { display: flex; gap: 2px; }
  .site-nav .nav-list a {
    padding: 8px 11px;
    font-size: var(--fs-small);
    font-weight: 500;
    color: var(--ink-soft);
    border: 0;
    border-radius: 8px;
  }
  .site-nav .nav-list a:hover { color: var(--ink); background: var(--paper-deep); }
  .header-cta { margin-left: 12px; }

  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); }
  .value-list { display: flex; justify-content: space-between; flex-wrap: wrap; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-other { grid-column: auto; }
  .demo-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .process { grid-template-columns: repeat(4, 1fr); column-gap: 32px; }
  .process-step { padding: 28px 0 0; border-bottom: 0 !important; }
  .process-step:last-child { border-bottom: 0; }
  .process-num { position: static; display: block; margin-bottom: 20px; }
  .process-step { border-top-width: 2px; }
  .why-grid { grid-template-columns: 1fr 2fr; }
  .why-head { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .footer-brand { grid-column: auto; }
}

@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}

/* Phones */
@media (max-width: 559px) {
  .btn-row .btn-lg { width: 100%; }
  .service .icon { margin-bottom: 14px; }
}

/* Very small phones (320px) */
@media (max-width: 374px) {
  .value-list { grid-template-columns: 1fr; }
  .concept-btn { padding: 0 10px; font-size: 0.8125rem; }
}

/* ==========================================================================
   11. Portfolio (Phase 2)
   Project cards, featured projects, filters, drawn previews, Work page.
   Reuses the Phase 1 tokens; no new colours except preview palettes above.
   ========================================================================== */

/* Drawn preview: stands in for a screenshot until one is added.
   Sizes use container units so it scales with any card. */
.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-deep);
}
.pv-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.pv {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
}
.pv-bar {
  display: flex; align-items: center; gap: 3cqi;
  padding: 1.8cqi 3cqi;
  background: #FAFBFA;
  border-bottom: 1px solid var(--line);
}
.pv-dots { display: flex; gap: 1cqi; }
.pv-dots i { width: 1.5cqi; height: 1.5cqi; border-radius: 50%; background: var(--line-strong); }
.pv-url {
  margin-inline: auto;
  padding: 0.5cqi 3.5cqi;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 2.1cqi;
  line-height: 1.4;
}
.pv-site {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  padding: 3.6cqi 5cqi 4cqi;
  background: var(--m-bg);
  color: var(--m-ink);
  overflow: hidden;
}
.pv-nav { display: flex; align-items: center; gap: 3cqi; font-size: 2.2cqi; }
.pv-logo { display: inline-flex; align-items: center; gap: 1.2cqi; font-weight: 700; white-space: nowrap; }
.pv-logo b { width: 2.8cqi; height: 2.8cqi; border-radius: 0.8cqi; background: var(--m-acc); }
.pv-links { display: flex; gap: 2cqi; margin-left: auto; }
.pv-links i { width: 6cqi; height: 0.9cqi; border-radius: 1cqi; background: var(--m-ink); opacity: .18; }
.pv-navbtn {
  padding: 0.9cqi 1.8cqi;
  border: 1px solid var(--m-acc);
  border-radius: 1cqi;
  color: var(--m-acc);
  font-weight: 600;
  font-size: 1.9cqi;
  white-space: nowrap;
}
.pv-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4cqi;
  align-items: center;
  margin-top: 4cqi;
}
.pv-h { font-size: 4.4cqi; font-weight: 750; line-height: 1.08; letter-spacing: -0.03em; }
.pv-line { height: 1.1cqi; width: 70%; margin-top: 2.2cqi; border-radius: 1cqi; background: var(--m-ink); opacity: .18; }
.pv-btn {
  display: inline-block;
  margin-top: 2.8cqi;
  padding: 1.4cqi 2.6cqi;
  border-radius: 1.1cqi;
  background: var(--m-acc);
  color: var(--m-on-acc, #fff);
  font-size: 2cqi;
  font-weight: 600;
  white-space: nowrap;
}
.pv-art { position: relative; aspect-ratio: 1 / 0.8; border-radius: 2cqi; background: var(--m-soft); overflow: hidden; }
.pv-art span:first-child {
  position: absolute; inset: auto 14% -20% 14%;
  height: 70%;
  border-radius: 50% 50% 0 0;
  background: var(--m-acc);
  opacity: .9;
}
.pv-art span:last-child {
  position: absolute; top: 12%; left: 50%;
  width: 28%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--m-surface);
}
.pv-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8cqi; margin-top: auto; padding-top: 3cqi; }
.pv-tiles span {
  display: flex; align-items: center; gap: 1.2cqi;
  padding: 1.6cqi;
  border-radius: 1.4cqi;
  background: var(--m-surface);
  font-size: 1.9cqi;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}
.pv-tiles b { flex: none; width: 3cqi; height: 3cqi; border-radius: 0.8cqi; background: var(--m-soft); }

/* Preview art varies by industry so cards don't all look alike */
[data-theme="realestate"] .pv-art span:first-child {
  inset: auto 22% 0 22%; height: 62%;
  border-radius: 0;
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
}
[data-theme="realestate"] .pv-art span:last-child { top: 10%; left: auto; right: 10%; width: 16%; transform: none; }
[data-theme="cafe"] .pv-art span:first-child { inset: 14% 22%; height: auto; border-radius: 50%; opacity: 1; }
[data-theme="cafe"] .pv-art span:last-child { top: 50%; width: 30%; transform: translate(-50%, -50%); }
[data-theme="salon"] .pv-art span:first-child { inset: 16% 26% 0 26%; height: auto; border-radius: 999px 999px 0 0; }
[data-theme="salon"] .pv-art span:last-child { top: 30%; width: 22%; }
[data-theme="fitness"] .pv-art span:first-child {
  inset: auto 14% 16% 14%; height: 12%;
  border-radius: 999px;
  height: 7%; bottom: 30%;
}
[data-theme="fitness"] .pv-art span:last-child {
  top: auto; bottom: 18%; width: 5cqi; aspect-ratio: 0.45;
  border-radius: 1cqi;
  background: transparent;
  box-shadow: -10cqi 0 0 var(--m-ink), 10cqi 0 0 var(--m-ink);
}

/* Project card */
.project-grid { display: grid; grid-template-columns: 1fr; gap: 24px; transition: opacity .18s var(--ease), transform .18s var(--ease); }
.project-grid.is-filtering { opacity: 0; transform: translateY(6px); }
.project-grid-empty { grid-column: 1 / -1; }

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.project-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.project-card .project-media { margin: 10px 10px 0; }
.project-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 24px; }

.project-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; font-size: 0.875rem; line-height: 1.4; }
.project-industry { color: var(--accent-deep); font-weight: 600; }
.project-type {
  padding: 2px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 500;
}
.project-title { margin-top: 12px; font-size: 1.25rem; line-height: 1.25; letter-spacing: -0.015em; font-weight: 700; }
.project-desc { margin-top: 8px; color: var(--ink-soft); font-size: var(--fs-small); }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.project-tags li {
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.project-action { margin-top: auto; padding-top: 22px; }
.demo-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  font-weight: 600;
}
.demo-status::before {
  content: "";
  width: 9px; height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

/* Empty / coming-soon state */
.empty-state {
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-lg);
  text-align: center;
}
.empty-state h3 { font-size: 1.25rem; }
.empty-state p { max-width: 46ch; margin: 8px auto 24px; color: var(--ink-soft); font-size: var(--fs-small); }

/* Homepage: selected projects inside the dark #work section */
.home-projects { margin-top: clamp(56px, 7vw, 88px); padding-top: 36px; border-top: 1px solid var(--dark-line); }
.home-projects-head {
  display: flex; flex-wrap: wrap;
  align-items: baseline; justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.home-projects-title { font-size: 1.25rem; color: #fff; }
.text-link-light { color: #fff; text-decoration-color: rgba(255, 255, 255, 0.4); }
.noscript-note { color: var(--dark-soft); }
.noscript-note a { color: #fff; }

.demo .project-card { background: rgba(255, 255, 255, 0.04); border-color: var(--dark-line); }
.demo .project-card:hover { border-color: rgba(255, 255, 255, 0.3); box-shadow: none; }
.demo .project-media { border: 0; }
.demo .project-industry { color: #8FD3B6; }
.demo .project-type { border-color: rgba(255, 255, 255, 0.25); color: var(--dark-soft); }
.demo .project-title { color: #fff; }
.demo .project-desc, .demo .demo-status { color: var(--dark-soft); }
.demo .project-tags li { background: rgba(255, 255, 255, 0.07); color: var(--dark-soft); }
.demo .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.demo .btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.demo .empty-state { border-color: rgba(255, 255, 255, 0.25); }
.demo .empty-state h3 { color: #fff; }
.demo .empty-state p { color: var(--dark-soft); }

/* Featured project (large) */
.feature-list { display: grid; gap: clamp(24px, 4vw, 40px); }
.project-feature {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.project-feature .project-media { margin: 12px 12px 0; border-radius: 14px; }
.project-feature .project-body { padding: 24px clamp(22px, 4vw, 48px) clamp(28px, 4vw, 48px); justify-content: center; }
.project-feature .project-title { margin-top: 14px; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); line-height: 1.15; letter-spacing: -0.025em; }
.project-feature .project-desc { font-size: 1rem; max-width: 44ch; }
.project-feature .project-action { margin-top: 0; padding-top: 28px; }

/* Work page */
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: 28px; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.breadcrumb a { color: var(--ink-soft); text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--ink); }

.page-hero { padding-block: clamp(32px, 6vw, 72px) clamp(56px, 8vw, 104px); }
.page-hero-grid { display: grid; gap: clamp(48px, 7vw, 72px); align-items: center; }
.page-title { max-width: 14ch; }
.page-hero .btn-row { margin-top: 32px; }

.hero-stack { position: relative; aspect-ratio: 1.25 / 1; min-width: 0; }
.stack-item {
  position: absolute;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-lift);
}
.stack-item:nth-child(1) { left: 0; top: 6%; width: 64%; }
.stack-item:nth-child(2) { right: 0; top: 0; width: 56%; z-index: 1; }
.stack-item:nth-child(3) { left: 18%; bottom: 0; width: 62%; z-index: 2; }

.intro-points { display: grid; gap: 0 40px; margin-top: clamp(8px, 2vw, 16px); }
.intro-points li { padding: 22px 0; border-top: 1px solid var(--line); }
.intro-points p { margin-top: 6px; color: var(--ink-soft); font-size: var(--fs-small); }

.section-tight-top { padding-top: 0; }

.filter-bar {
  display: flex;
  gap: 8px;
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: none;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-status { margin: 14px 0 28px; color: var(--ink-soft); font-size: var(--fs-small); }

.cta-dark .cta-dark-inner { display: grid; gap: 32px; align-items: end; }
.cta-dark h2 { max-width: 16ch; }
.cta-dark p { margin-top: 18px; color: var(--dark-soft); max-width: 50ch; font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.2rem); }
.cta-dark .btn-whatsapp { border-color: #fff; }

@media (min-width: 640px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .intro-points { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .project-feature { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: center; }
  .project-feature .project-media { margin: 12px; }
  .project-feature .project-body { padding: 32px 48px 32px 24px; }
  .project-feature.is-reversed { grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr); }
  .project-feature.is-reversed .project-media { order: 2; }
  .project-feature.is-reversed .project-body { padding: 32px 24px 32px 48px; }
}
@media (min-width: 1024px) {
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .filter-bar { flex-wrap: wrap; margin-inline: 0; padding-inline: 0; overflow: visible; }
  .cta-dark .cta-dark-inner { grid-template-columns: 1.4fr 1fr; }
  .cta-dark .btn-row { justify-content: flex-end; }
}
/* Homepage selection: swipeable row below desktop so the homepage stays short */
@media (max-width: 1023px) {
  .project-grid-home {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 86%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .project-grid-home > li { scroll-snap-align: start; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .project-grid-home { grid-auto-columns: minmax(300px, 46%); }
}
@media (min-width: 1024px) {
  .site-nav .nav-list a[aria-current="page"] { color: var(--ink); background: var(--paper-deep); }
}

/* ==========================================================================
   12. Services, Process, About pages (Phase 3)
   Reuses existing tokens and components (page-hero, service-grid, cta-panel,
   cta-dark, intro-points). Only page-specific pieces are defined here.
   ========================================================================== */

/* Placeholder highlight: makes [TEXT TO REPLACE] easy to spot */
.ph {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--accent-tint);
  outline: 1px dashed var(--accent);
  color: var(--accent-deep);
  font-weight: 600;
}

/* Hero side panel: "on this page" navigation */
.jump-panel {
  width: 100%;
  max-width: 460px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.jump-title { font-size: 0.9375rem; font-weight: 700; letter-spacing: 0; color: var(--ink-soft); margin-bottom: 8px; }
.jump-list { display: grid; column-gap: 20px; }
.jump-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 6px 4px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.jump-list li:first-child a { border-top: 0; }
.jump-list a:hover { color: var(--accent); }
.jump-list svg { flex: none; width: 20px; height: 20px; color: var(--accent); }
.jump-list-numbered span {
  flex: none;
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
}

/* Services: detailed service blocks */
.service-detail {
  display: grid;
  gap: 28px;
  padding-block: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 8px);
}
.service-detail:first-child { padding-top: 0; border-top: 0; }
.service-detail:last-child { padding-bottom: 0; }
.service-detail-main .icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 18px; }
.service-detail h2 { font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.2rem); }
.service-lead { margin-top: 14px; font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.1875rem); max-width: 52ch; }
.service-fit { margin-top: 14px; color: var(--ink-soft); font-size: var(--fs-small); max-width: 56ch; }
.service-fit strong { color: var(--ink); font-weight: 600; }
.service-detail-main .btn { margin-top: 24px; }
.service-detail-panel {
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.service-detail-panel h3 { font-size: 1rem; margin-bottom: 8px; }

.check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
}
.check-list li:first-child { border-top: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 14px;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5L19.5 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5L19.5 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.panel-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  font-size: var(--fs-small);
}
.panel-note-strong {
  padding: 14px 16px;
  border: 0;
  border-radius: var(--r-sm);
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-weight: 600;
}

/* Services: custom quote panel */
.custom-panel {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--accent-tint);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 24px;
}
.custom-panel .icon { width: 36px; height: 36px; color: var(--accent-deep); }
.custom-panel h2 { font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.2rem); }
.custom-panel p { margin-top: 10px; color: var(--ink-soft); max-width: 58ch; }

/* Services: "which website is right for you" */
.chooser { max-width: 860px; border-top: 1px solid var(--line); }
.chooser li {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.chooser p { font-size: 1.0625rem; font-weight: 500; }
.chooser a {
  justify-self: start;
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
}
.chooser a:hover { text-decoration-color: currentColor; }

/* FAQ preview (native <details>, no JavaScript) */
.faq-grid { display: grid; gap: 8px 64px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 18px 0;
  font-size: 1.0625rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  color: var(--accent);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
  transition: transform .2s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--accent-deep); }
.faq-list details p { padding: 0 32px 20px 0; color: var(--ink-soft); max-width: 62ch; }

/* Process: timeline */
.timeline { display: grid; gap: 48px; }
.phase-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--accent-deep);
  font-size: 0.9375rem;
  font-weight: 700;
}
.phase-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.t-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 36px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.t-step:last-child { padding-bottom: 0; }
.t-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21.5px; top: 44px; bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.t-num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  font-weight: 700;
}
.t-body h3 { margin-top: 8px; font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); }
.t-body > p { margin-top: 8px; color: var(--ink-soft); max-width: 62ch; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip-list li {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.875rem;
  line-height: 1.4;
}
.t-body .t-note { margin-top: 14px; font-size: var(--fs-small); }

.t-step-feature .t-num { background: var(--accent); color: #fff; }
.t-step-feature .t-body {
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--r-lg);
  background: var(--dark);
  color: #fff;
}
.t-step-feature .t-body h3 { margin-top: 0; }
.t-step-feature .t-body > p { color: var(--dark-soft); }
.t-step-feature .t-body > .t-lead { color: #fff; font-size: 1.125rem; font-weight: 500; }
.t-step-feature .btn { margin-top: 22px; }
.t-step-feature :focus-visible { outline-color: #fff; }

.callout {
  margin-top: 48px;
  padding: 22px 26px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--paper);
}
.callout h3 { font-size: 1.0625rem; }
.callout p { margin-top: 6px; color: var(--ink-soft); max-width: 70ch; }

.section-note { margin-top: 28px; color: var(--ink-soft); font-size: var(--fs-small); max-width: 70ch; }

/* About */
.portrait { width: 100%; max-width: 380px; }
.portrait-frame {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  aspect-ratio: 4 / 5;
  border: 1.5px dashed var(--line-strong);
  border-radius: 24px;
  background: var(--paper-deep);
  color: var(--accent);
}
.portrait-img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 24px; }
.portrait figcaption { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 14px; font-size: var(--fs-small); color: var(--ink-soft); }
.story-body p { color: var(--ink); }

@media (min-width: 480px) and (max-width: 1023px) {
  .jump-panel { max-width: none; }
  .jump-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jump-list li:nth-child(2) a { border-top: 0; }
}
@media (min-width: 768px) {
  .chooser li { grid-template-columns: minmax(0, 1fr) 240px; align-items: center; gap: 24px; }
  .intro-points.points-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .service-detail { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
  .custom-panel { grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 32px; }
}
@media (min-width: 1024px) {
  .page-hero-grid > .jump-panel, .page-hero-grid > .portrait { justify-self: end; }
  .service-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
  .intro-points.points-4 { grid-template-columns: repeat(4, 1fr); }
  .faq-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); }
  .timeline-phase { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 48px; }
  .phase-label { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; margin: 10px 0 0; }
  .phase-label::after { display: none; }
}

/* Phase 3 refinements */
.section-head:last-child { margin-bottom: 0; }
.faq-grid .section-head { margin-bottom: 24px; }
@media (min-width: 768px) {
  .split-head.split-top { align-items: start; }
}
@media (min-width: 900px) {
  .service-detail-main { position: sticky; top: calc(var(--header-h) + 32px); }
}
@media (min-width: 1024px) {
  .faq-grid .section-head { margin-bottom: 0; }
}
@media (max-width: 1023px) {
  .portrait { max-width: 300px; }
}

/* ==========================================================================
   13. FAQ, Contact, legal pages, mobile contact bar (Phase 4)
   Reuses existing tokens/components. Adds one semantic colour pair for
   form errors (the design had no error state before).
   ========================================================================== */
:root {
  --danger: #B42318;
  --danger-tint: #FEF3F2;
}

/* FAQ page: category sections */
.faq-category { padding-block: clamp(36px, 5vw, 56px); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 8px); }
.faq-category:first-child { padding-top: 0; border-top: 0; }
.faq-category:last-child { padding-bottom: 0; }
.faq-category .section-head h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); }
.faq-list details p a { color: var(--accent); font-weight: 600; text-underline-offset: 3px; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.faq-list details[open] > p { animation: faq-open .22s var(--ease); }

/* Contact: options panel in the hero */
.contact-options {
  width: 100%;
  max-width: 460px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.contact-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-option:first-child { border-top: 0; padding-top: 8px; }
.contact-option:last-child { padding-bottom: 0; }
.contact-option-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-deep);
}
.contact-option-wa { color: var(--wa); }
.contact-option h3 { font-size: 1.0625rem; }
.contact-option p { margin-top: 2px; color: var(--ink-soft); font-size: var(--fs-small); }
.contact-detail { display: block; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.contact-option .text-link { display: inline-flex; align-items: center; min-height: 40px; }

/* Contact: form + next steps layout */
.contact-layout { display: grid; gap: 32px; align-items: start; }
.form-card {
  padding: clamp(22px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.form-card h2 { font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem); }
.form-intro { margin: 8px 0 28px; color: var(--ink-soft); font-size: var(--fs-small); }

.form-grid { display: grid; gap: 22px 20px; }
.field { min-width: 0; }
.field label, .choice-group legend {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.req { color: var(--accent-deep); }
.optional { color: var(--ink-soft); font-weight: 400; }

.field input, .field select, .field textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 1rem; /* 16px keeps iOS from zooming in */
  line-height: 1.4;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5752' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}
.field input::placeholder, .field textarea::placeholder { color: #7A857F; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-soft); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error input:focus, .field.has-error select:focus { box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 18%, transparent); }
.field-hint { margin-top: 6px; color: var(--ink-soft); font-size: 0.8125rem; }
.field-error { margin-top: 6px; color: var(--danger); font-size: 0.875rem; font-weight: 500; }
.field-error:empty { display: none; }

.choice-group { margin: 0; padding: 0; border: 0; }
.choice-group legend { padding: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.choice:hover span { border-color: var(--ink-soft); }
.choice input:checked + span { background: var(--accent-tint); border-color: var(--accent); color: var(--accent-deep); font-weight: 600; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Honeypot: off-screen for people, still in the form for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 30px; }
.form-actions .btn[disabled] { opacity: .7; cursor: progress; }
.form-status { color: var(--danger); font-size: var(--fs-small); font-weight: 500; }
.form-status:empty { display: none; }
.form-privacy { margin-top: 16px; color: var(--ink-soft); font-size: 0.8125rem; }
.form-privacy a { color: var(--ink-soft); text-underline-offset: 3px; }
.form-noscript { margin-top: 20px; color: var(--ink-soft); }

.form-result {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.form-result:focus { outline: none; }
.form-result:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.form-result h3 { font-size: 1.125rem; }
.form-result p { margin-top: 6px; color: var(--ink-soft); max-width: 60ch; }
.form-result .btn-row { margin-top: 18px; }
.form-result.is-warning { border-left: 4px solid var(--ink); }
.form-result.is-success { background: var(--accent-tint); border-color: var(--accent); }
.form-result.is-success h3 { color: var(--accent-deep); }
.form-result.is-error { background: var(--danger-tint); border-color: var(--danger); }
.form-result.is-error h3 { color: var(--danger); }

/* Contact: what happens next */
.next-steps { padding: clamp(22px, 3vw, 32px); border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); }
.next-steps h2 { font-size: 1.25rem; letter-spacing: -0.015em; }
.next-steps ol { margin-top: 20px; counter-reset: next; }
.next-steps li { position: relative; counter-increment: next; padding: 0 0 22px 48px; }
.next-steps li:last-child { padding-bottom: 0; }
.next-steps li::before {
  content: counter(next);
  position: absolute; left: 0; top: -2px;
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
}
.next-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 15.5px; top: 32px; bottom: 2px;
  width: 1px; background: var(--line-strong);
}
.next-steps h3 { font-size: 1rem; line-height: 1.35; }
.next-steps p { margin-top: 4px; color: var(--ink-soft); font-size: var(--fs-small); }

/* Legal pages */
.page-hero-compact { padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero-compact .hero-title { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem); max-width: 18ch; }
.legal-updated { margin-top: 16px; color: var(--ink-soft); font-size: var(--fs-small); }
.legal-layout { display: grid; gap: 32px; align-items: start; }
.legal-toc {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.legal-toc ol { list-style: decimal; padding-left: 20px; color: var(--ink-soft); font-size: var(--fs-small); }
.legal-toc li { padding-block: 3px; }
.legal-toc a { color: var(--ink-soft); text-decoration: none; }
.legal-toc a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose { max-width: 70ch; }
.legal-prose section { scroll-margin-top: calc(var(--header-h) + 16px); }
.legal-prose section + section { margin-top: 40px; }
.legal-prose h2 { font-size: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem); margin-bottom: 12px; }
.legal-prose p { color: var(--ink); }
.legal-prose p + p, .legal-prose p + ul, .legal-prose ul + p { margin-top: 12px; }
.legal-prose ul { list-style: disc; padding-left: 22px; }
.legal-prose li + li { margin-top: 6px; }
.legal-prose a { color: var(--accent); text-underline-offset: 3px; }

/* Mobile quick-contact bar (phones only) */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  transform: translateY(150%);
  visibility: hidden;
  transition: transform .3s var(--ease), visibility 0s linear .3s;
}
.mobile-cta.is-visible { transform: none; visibility: visible; transition: transform .3s var(--ease); }
.mobile-cta .btn { min-height: 46px; padding: 0 10px; font-size: 0.9375rem; gap: 8px; }
.mobile-cta-close {
  position: relative;
  width: 40px; min-height: 46px;
  border: 0; border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
}
.mobile-cta-close::before, .mobile-cta-close::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 14px; height: 2px; border-radius: 2px;
  background: var(--ink-soft);
}
.mobile-cta-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-cta-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
body.nav-open .mobile-cta { visibility: hidden; }
@media (max-width: 767px) {
  body.has-mobile-cta { padding-bottom: 84px; }
}
@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-full { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .page-hero-grid > .contact-options { justify-self: end; }
  .contact-layout { grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); gap: 40px; }
  .next-steps { position: sticky; top: calc(var(--header-h) + 24px); }
  .legal-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 64px; }
  .legal-toc { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* 404 page */
.error-code {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.error-code + .hero-title { max-width: 16ch; }
