/* ==========================================================================
   Tyler's Tech Support — stylesheet
   Sections: 1 Fonts · 2 Tokens · 3 Dark mode · 4 Reset · 5 Base · 6 Layout
             7 Components · 8 Utilities · 9 Reduced motion · 10 Print · 11 Icons
   Colour rule: gold (#E6AB09) is decorative only on light backgrounds (2:1 contrast).
   For gold-coloured TEXT on light surfaces use --accent-text (#8F6600, 5:1).
   ========================================================================== */

/* 1. Fonts (self-hosted, latin subset) ----------------------------------- */
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* 2. Tokens (light) ------------------------------------------------------ */
:root {
  /* brand */
  --navy: #010F35;
  --navy-2: #0B1F4F;
  --gold: #E6AB09;
  --gold-tint: #FBF0CC;

  /* semantic */
  --bg: #FDFBF7;
  --bg-alt: #F7F1E5;
  --surface: #FFFFFF;
  --text: #1A1F2E;
  --text-muted: #5A6275;
  --heading: #010F35;
  --line: #E8E2D6;
  --line-strong: #C9C1B0;
  --accent: #E6AB09;
  --accent-text: #8F6600;
  --btn-bg: #010F35;
  --btn-fg: #FFFFFF;
  --btn-bg-hover: #0B1F4F;
  --header-bg: rgba(253, 251, 247, 0.92);
  --chev: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23010F35' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  --tick: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  --error: #B42318;
  --error-bg: #FEF3F2;
  --ok: #18663A;
  --ok-bg: #EDF8F1;
  --shadow: 0 2px 4px rgba(1, 15, 53, .04), 0 8px 24px rgba(1, 15, 53, .06);
  --shadow-lg: 0 4px 8px rgba(1, 15, 53, .05), 0 18px 44px rgba(1, 15, 53, .11);

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-hero: clamp(2.25rem, 5vw, 3.75rem);
  --fs-h1: clamp(1.9rem, 4vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --fs-h3: 1.25rem;
  --fs-body: 1.125rem;
  --fs-small: 0.9375rem;

  /* space, shape, motion */
  --s-1: .5rem; --s-2: 1rem; --s-3: 1.5rem; --s-4: 2rem;
  --s-6: 3rem; --s-8: 4rem; --s-12: 6rem;
  --section-y: clamp(3.5rem, 8vw, 6rem);
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-pill: 999px;
  --ease: 200ms ease-out;
  --container: 1120px;
  --gutter: 20px;
}
@media (min-width: 48em) { :root { --gutter: 32px; } }

/* 3. Dark mode ----------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0A1226; --bg-alt: #0E1830; --surface: #111B38;
    --text: #E8EAF0; --text-muted: #A9B1C6; --heading: #FFFFFF;
    --line: #24325A; --line-strong: #3A4A78;
    --accent-text: #E6AB09;
    --btn-bg: #E6AB09; --btn-fg: #010F35; --btn-bg-hover: #F2BC26;
    --header-bg: rgba(10, 18, 38, 0.92);
    --gold-tint: #2A2410;
    --chev: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8EAF0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    --error: #FDA29B; --error-bg: #2B1416; --ok: #7EDDA1; --ok-bg: #10261A;
    --shadow: 0 2px 4px rgba(0, 0, 0, .25), 0 8px 24px rgba(0, 0, 0, .3);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, .3), 0 18px 44px rgba(0, 0, 0, .4);
  }
}
:root[data-theme="dark"] {
  --bg: #0A1226; --bg-alt: #0E1830; --surface: #111B38;
  --text: #E8EAF0; --text-muted: #A9B1C6; --heading: #FFFFFF;
  --line: #24325A; --line-strong: #3A4A78;
  --accent-text: #E6AB09;
  --btn-bg: #E6AB09; --btn-fg: #010F35; --btn-bg-hover: #F2BC26;
  --header-bg: rgba(10, 18, 38, 0.92);
  --gold-tint: #2A2410;
  --chev: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8EAF0' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  --error: #FDA29B; --error-bg: #2B1416; --ok: #7EDDA1; --ok-bg: #10261A;
  --shadow: 0 2px 4px rgba(0, 0, 0, .25), 0 8px 24px rgba(0, 0, 0, .3);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, .3), 0 18px 44px rgba(0, 0, 0, .4);
}

/* 4. Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[role="list"], ul.plain { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--navy);   /* keeps the ring visible on both light and gold/navy surfaces */
  border-radius: 4px;
}
:root[data-theme="dark"] :focus-visible { box-shadow: 0 0 0 5px #0A1226; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) :focus-visible { box-shadow: 0 0 0 5px #0A1226; } }

/* 5. Base elements ------------------------------------------------------- */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
main { flex: 1 0 auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--heading);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.3; }
h1 em, h2 em { font-style: normal; color: var(--accent-text); }
p { max-width: 68ch; text-wrap: pretty; }
p + p { margin-top: 1em; }
a { color: var(--heading); text-decoration-thickness: 1px; text-underline-offset: 0.2em; text-decoration-color: var(--accent); }
a:hover { text-decoration-thickness: 2px; }
strong { font-weight: 650; }
small { font-size: var(--fs-small); }
hr { border: 0; border-top: 1px solid var(--line); }

/* 6. Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
/* Reading pages (FAQ, legal, payment): a centred column, so text doesn't hug the left edge of a
   wide screen. Applied to every .container on the page so the heading and the body share an edge. */
.container--narrow { max-width: calc(46rem + var(--gutter) * 2); }
.column { max-width: 46rem; margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--flush-top { padding-top: var(--s-4); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section-head { max-width: 46rem; margin-bottom: var(--s-6); }
.section-head p { margin-top: var(--s-2); color: var(--text-muted); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.grid { display: grid; gap: var(--s-3); }
.grid--cards { grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
/* auto-fit, so four items land on one row instead of leaving one orphaned below three */
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.stack > * + * { margin-top: var(--s-2); }
.split { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 60em) { .split { grid-template-columns: 1.1fr .9fr; gap: var(--s-8); } .split--even { grid-template-columns: 1fr 1fr; } }
.split.split--start { align-items: start; }
/* Wider left column, for a long list beside a short one. */
@media (min-width: 60em) { .split.split--wide { grid-template-columns: 1.75fr 1fr; } }

/* 7. Components ---------------------------------------------------------- */

/* icons */
.icon { display: inline-block; flex: none; width: 1.25em; height: 1.25em; background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat; }

/* eyebrow */
.eyebrow, p.eyebrow { font-family: var(--font-body); font-size: .8125rem; font-weight: 650; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-text); margin: 0 0 var(--s-1); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px;
  padding: .7rem 1.5rem; border: 2px solid transparent; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none; }
.btn:active { transform: none; }
.btn--primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn--primary:hover { background: var(--btn-bg-hover); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #F2BC26; }
.btn--secondary { background: transparent; color: var(--heading); border-color: var(--heading); }
.btn--secondary:hover { background: var(--bg-alt); }
.btn--on-navy { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--on-navy:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--lg { min-height: 54px; padding: .85rem 1.8rem; font-size: 1.0625rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; box-shadow: none; }

/* skip link */
.skip { position: absolute; left: var(--s-2); top: -100px; z-index: 100; background: var(--navy); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--r-sm); font-weight: 600; }
.skip:focus { top: var(--s-1); }

/* top bar */
.topbar { background: var(--navy); color: #fff; font-size: var(--fs-small); }
.topbar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .25rem 1.5rem; padding-block: .5rem; }
.topbar p { max-width: none; margin: 0; }
.topbar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
/* Only shown where the sticky header's call button is icon-only. From 62em the header shows the
   full number, so the bar would just repeat it. */
.topbar { display: none; }
@media (max-width: 61.99em) { .topbar { display: block; } }
@media (max-width: 47.99em) { .topbar-inner { justify-content: center; text-align: center; } }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--header-bg);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--heading); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 44px; height: 44px; }
.brand-mark--dark { display: none; }
.brand-name { font-family: var(--font-display); font-weight: 620; font-size: 1.2rem; line-height: 1.05; letter-spacing: -.01em; }
.brand-name span { display: block; font-size: .8em; font-weight: 500; color: var(--accent-text); letter-spacing: .01em; }
:root[data-theme="dark"] .brand-mark--light { display: none; }
:root[data-theme="dark"] .brand-mark--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand-mark--light { display: none; }
  :root:not([data-theme="light"]) .brand-mark--dark { display: block; }
}
.header-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; color: var(--heading); cursor: pointer;
  transition: background-color var(--ease); }
.icon-btn:hover { background: var(--bg-alt); }
.icon-btn .icon { width: 1.35rem; height: 1.35rem; }
.theme-toggle { display: none; }
.js .theme-toggle { display: inline-flex; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: inline-block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: inline-block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
}
.btn--call { min-height: 44px; padding: .5rem 1.15rem; }
.btn--call .btn-call-text { display: none; }
.nav-toggle { display: none; }

/* nav */
.nav ul { display: flex; flex-wrap: wrap; gap: .25rem; list-style: none; padding: 0; }
.nav a { display: block; padding: .6rem .9rem; border-radius: var(--r-pill); text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--text); }
.nav a:hover { background: var(--bg-alt); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--heading); font-weight: 650; box-shadow: inset 0 -3px 0 var(--gold); border-radius: 0; }
@media (min-width: 62em) {
  .header-inner { gap: var(--s-3); }
  .nav { margin-left: auto; }
  .btn--call .btn-call-text { display: inline; }
}
@media (max-width: 61.99em) {
  .js .nav-toggle { display: inline-flex; }
  .nav { flex-basis: 100%; order: 5; }
  .js .nav { display: none; }
  .js .nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; row-gap: 0; }
  .nav ul { flex-direction: column; padding-block: var(--s-1) var(--s-2); border-top: 1px solid var(--line); }
  .nav a { padding: .85rem .5rem; font-size: 1.0625rem; border-radius: var(--r-sm); }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold); padding-left: 1rem; border-radius: 0; }
}

/* hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem) var(--section-y);
  background: radial-gradient(55% 60% at 88% 8%, rgba(230,171,9,.13), transparent 70%), var(--bg); }
.hero h1 { font-size: var(--fs-hero); line-height: 1.08; }
.hero-lead { font-size: clamp(1.1875rem, 2vw, 1.375rem); color: var(--text-muted); margin-top: var(--s-3); max-width: 40ch; }
.hero .btn-row { margin-top: var(--s-4); }
.hero-note { margin-top: var(--s-3); font-size: var(--fs-small); color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.hero-note .icon { color: var(--accent-text); }
.hero-figure { position: relative; justify-self: center; width: min(100%, 24rem); margin-block: 0 var(--s-3); }
.arch { aspect-ratio: 3 / 4; width: 100%; overflow: hidden; background: var(--bg-alt);
  border-radius: 50% 50% var(--r-lg) var(--r-lg) / 37.5% 37.5% var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-lg); outline: 2px solid var(--gold); outline-offset: 10px; }
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
@media (max-width: 47.99em) { .arch { outline-offset: 6px; } .hero-figure { width: min(78%, 20rem); } }

/* page intro (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--s-6);
  background: radial-gradient(50% 80% at 92% 0%, rgba(230,171,9,.1), transparent 70%), var(--bg); }
.page-hero p.lead { font-size: 1.25rem; color: var(--text-muted); margin-top: var(--s-2); }
.crumbs { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: var(--s-2); }

/* trust strip */
.trust { display: grid; gap: 0; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); margin-top: calc(var(--s-6) * -1); position: relative; z-index: 2; }
.trust-item { display: flex; align-items: center; gap: .9rem; padding: 1.15rem 1.4rem; }
.trust-item + .trust-item { border-top: 1px solid var(--line); }
@media (min-width: 40em) { .trust-item + .trust-item { border-top: 0; } .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); } }
@media (min-width: 62em) { .trust-item:nth-child(n+3) { border-top: 0; } .trust-item + .trust-item { border-left: 1px solid var(--line); } }
.trust-item .chip { flex: none; }
.trust-item strong { color: var(--heading); font-size: 1rem; line-height: 1.3; }

/* icon chip */
.chip { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-tint); color: var(--accent-text); }
.chip .icon { width: 1.4rem; height: 1.4rem; }
.chip--navy { background: var(--navy); color: var(--gold); }

/* how it works */
.steps { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); counter-reset: step; list-style: none; padding: 0; }
.step { position: relative; padding-top: 4.25rem; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 3.25rem; height: 3.25rem;
  display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
/* The connecting line only makes sense once all three steps sit on one row. Below 60em the grid
   wraps to two columns and the line would dangle off the end of a row. */
@media (min-width: 60em) { .step:not(:last-child)::after { content: ""; position: absolute; top: 1.6rem; left: 4.25rem; right: -1rem; border-top: 2px dashed var(--line-strong); } }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--text-muted); }

/* cards */
.card { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold);
  border-radius: var(--r-md); padding: var(--s-3); box-shadow: var(--shadow); transition: transform var(--ease), box-shadow var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .chip { margin-bottom: var(--s-2); }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.group-title { display: flex; align-items: center; gap: .75rem; margin-bottom: var(--s-3); }
.group + .group { margin-top: var(--s-8); }

/* ticked list */
.ticks { list-style: none; padding: 0; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li + li { margin-top: .6rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .4em; width: 1.15em; height: 1.15em; background: var(--accent-text);
  -webkit-mask: var(--tick) center / contain no-repeat; mask: var(--tick) center / contain no-repeat; }
/* Long lists flow into two columns so they don't tower over a short list beside them. */
@media (min-width: 48em) {
  .ticks--2col { columns: 2; column-gap: var(--s-4); }
  .ticks--2col li { break-inside: avoid; }
  .ticks--2col li:first-child { margin-top: 0; }
}

/* price card */
.price-card { max-width: 46rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table caption { text-align: left; padding: var(--s-3) var(--s-3) 0; font-size: var(--fs-small); color: var(--text-muted); }
.price-table th, .price-table td { padding: 1.25rem var(--s-3); text-align: left; vertical-align: baseline; border-bottom: 1px solid var(--line); }
.price-table tr:last-child > * { border-bottom: 0; }
.price-table th { font-weight: 600; color: var(--heading); }
.price-table th small { display: block; font-weight: 400; color: var(--text-muted); font-size: var(--fs-small); margin-top: .15rem; }
.price-table td { text-align: right; white-space: nowrap; font-family: var(--font-display); font-size: 1.75rem; font-weight: 560; color: var(--heading); }
.price-table td small { font-family: var(--font-body); font-size: var(--fs-small); font-weight: 500; color: var(--text-muted); }
.price-promise { display: flex; align-items: center; gap: 1rem; background: var(--navy); color: #fff; padding: 1.25rem var(--s-3); border-top: 3px solid var(--gold); }
.price-promise strong { color: var(--gold); font-family: var(--font-display); font-size: 1.35rem; font-weight: 560; }
.price-promise p { max-width: none; color: #D5DAE8; font-size: 1rem; line-height: 1.5; }

/* chips list (places) */
.places { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.places li { padding: .35rem .95rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-size: var(--fs-small); color: var(--text); }
.places li.is-base { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 600; }

/* callout / panels */
.panel-navy { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.panel-navy::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 0%, rgba(230,171,9,.18), transparent 70%); pointer-events: none; }
.panel-navy > * { position: relative; }
.panel-navy h2 { color: #fff; }
.panel-navy p { margin: var(--s-2) auto var(--s-4); color: #D5DAE8; }
.panel-navy .btn-row { justify-content: center; }
.notice { display: flex; gap: 1rem; align-items: flex-start; padding: var(--s-3); background: var(--gold-tint); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--r-md); }
.notice .icon { margin-top: .2rem; color: var(--accent-text); }
.notice p { max-width: none; }
.draft-banner { background: #FFF4CC; color: #4A3600; border-bottom: 2px solid var(--gold); padding: .75rem 0; font-size: var(--fs-small); font-weight: 600; text-align: center; }
.draft-banner p { max-width: none; margin-inline: auto; }

/* portrait (about) */
.portrait { justify-self: center; width: min(100%, 26rem); }

/* contact list */
.contact-list { list-style: none; padding: 0; display: grid; gap: var(--s-2); }
.contact-item { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); text-decoration: none; color: var(--text); transition: border-color var(--ease), transform var(--ease); }
a.contact-item:hover { border-color: var(--gold); transform: translateX(3px); text-decoration: none; }
.contact-item strong { display: block; color: var(--heading); font-size: 1.125rem; line-height: 1.3; }
.contact-item span.sub { display: block; font-size: var(--fs-small); color: var(--text-muted); line-height: 1.4; }

/* FAQ */
.faq-group + .faq-group { margin-top: var(--s-6); }
.faq-group > h2 { margin-bottom: var(--s-2); }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.faq-item + .faq-item { margin-top: .75rem; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; font-family: var(--font-display); font-size: 1.1875rem; font-weight: 560; color: var(--heading); line-height: 1.3; min-height: 56px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--accent-text); transition: transform var(--ease); }
.faq-item[open] summary .icon { transform: rotate(180deg); }
.faq-item[open] { border-color: var(--line-strong); box-shadow: var(--shadow); }
.faq-answer { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }
.faq-answer p, .faq-answer ul { max-width: 64ch; }
.faq-answer ul { padding-left: 1.25rem; margin-top: .75rem; }

/* prose (legal pages) */
.prose { max-width: 46rem; }
.prose h2 { margin-top: var(--s-6); margin-bottom: var(--s-1); font-size: 1.5rem; }
.prose h3 { margin-top: var(--s-3); margin-bottom: .25rem; font-size: 1.15rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-top: .75rem; max-width: 64ch; }
.prose li + li { margin-top: .4rem; }
.prose .meta { color: var(--text-muted); font-size: var(--fs-small); }
.prose table { width: 100%; border-collapse: collapse; margin-top: var(--s-2); font-size: 1rem; }
.prose th, .prose td { text-align: left; padding: .7rem .9rem; border: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--bg-alt); color: var(--heading); }
.table-wrap { overflow-x: auto; }

/* forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow); }
.form { display: grid; gap: var(--s-3); }
.form-row { display: grid; gap: var(--s-3); }
@media (min-width: 40em) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field label, .field legend { display: block; font-weight: 600; color: var(--heading); margin-bottom: .4rem; font-size: 1rem; }
.field .hint { display: block; font-weight: 400; color: var(--text-muted); font-size: var(--fs-small); }
.req { color: var(--accent-text); }
.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .7rem .95rem; background: var(--bg); color: var(--text);
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); font-size: 1.0625rem; transition: border-color var(--ease), box-shadow var(--ease); }
.field textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.field select { appearance: none; background-image: var(--chev); background-repeat: no-repeat; background-position: right .9rem center; background-size: 1.1rem; padding-right: 2.6rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--heading); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--heading); }
.field [aria-invalid="true"] { border-color: var(--error); background: var(--error-bg); }
.field-error { margin-top: .4rem; color: var(--error); font-size: var(--fs-small); font-weight: 600; display: flex; gap: .4rem; }
.field-error[hidden] { display: none; }
.check { display: flex; gap: .8rem; align-items: flex-start; }
.check input { flex: none; width: 1.4rem; height: 1.4rem; margin-top: .2rem; accent-color: var(--navy); }
.check label { font-weight: 400; margin: 0; color: var(--text); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 1rem 1.25rem; border-radius: var(--r-md); border: 1px solid; font-size: 1rem; }
.alert[hidden] { display: none; }
.alert p { max-width: none; }
.alert--error { color: var(--error); background: var(--error-bg); border-color: var(--error); }
.alert--ok { color: var(--ok); background: var(--ok-bg); border-color: var(--ok); }
.form-fineprint { font-size: var(--fs-small); color: var(--text-muted); }
.form-success { text-align: center; padding-block: var(--s-4); }
.form-success .chip { width: 64px; height: 64px; margin-bottom: var(--s-2); background: var(--ok-bg); color: var(--ok); }
.form-success .chip .icon { width: 2rem; height: 2rem; }
.form-success p { margin-inline: auto; }
.ref { display: inline-block; margin-top: var(--s-2); padding: .3rem .9rem; border-radius: var(--r-pill); background: var(--bg-alt); border: 1px solid var(--line); font-weight: 650; letter-spacing: .04em; color: var(--heading); }

/* footer */
.site-footer { background: var(--navy); color: #D5DAE8; margin-top: auto; border-top: 3px solid var(--gold); font-size: 1rem; line-height: 1.65; }
.footer-grid { display: grid; gap: var(--s-6); padding-block: var(--s-8) var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
@media (min-width: 62em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h2 { font-family: var(--font-body); font-size: .8125rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-2); }
.site-footer a { color: #fff; text-decoration-color: rgba(255,255,255,.35); }
.site-footer a:hover { text-decoration-color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li + li { margin-top: .45rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: var(--s-2); color: #fff; text-decoration: none; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; line-height: 1.1; }
.footer-brand img { width: 48px; height: 48px; }
.footer-blurb { color: #B8C0D4; max-width: 32ch; }
.footer-contact li { display: flex; gap: .65rem; align-items: baseline; }
.footer-contact .icon { color: var(--gold); transform: translateY(.2em); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); padding-block: var(--s-3); font-size: var(--fs-small); color: #B8C0D4; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; }
.footer-legal p { max-width: none; }
.footer-legal ul { display: flex; gap: 1.25rem; }
.footer-legal li + li { margin-top: 0; }

/* 404 */
.lost { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.lost .big { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 9rem); font-weight: 500; line-height: 1; color: var(--accent-text); letter-spacing: -.03em; }
.lost p { margin-inline: auto; margin-top: var(--s-2); color: var(--text-muted); }
.lost .btn-row { justify-content: center; margin-top: var(--s-4); }

/* reveal-on-scroll (classes are added by main.js only, so no-JS never hides content) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

/* 8. Utilities ----------------------------------------------------------- */
.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; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.measure { max-width: 68ch; }
.mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-6 { margin-top: var(--s-6); }

/* 9. Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .card:hover, .btn:hover, a.contact-item:hover { transform: none; }
}

/* 10. Print (people will print the price list) --------------------------- */
@media print {
  :root { --bg: #fff; --bg-alt: #fff; --surface: #fff; --text: #000; --heading: #000; --text-muted: #333; --line: #bbb; }
  .topbar, .site-header, .site-footer, .btn-row, .form-card, .panel-navy .btn-row, .theme-toggle { display: none !important; }
  body { font-size: 11.5pt; background: #fff; color: #000; }
  .section, .hero, .page-hero { padding-block: 1rem; background: none; }
  .card, .price-card, .faq-item { box-shadow: none; break-inside: avoid; }
  .price-promise, .panel-navy { background: #fff; color: #000; border: 1px solid #000; }
  .price-promise p, .panel-navy p, .panel-navy h2 { color: #000; }
  a { text-decoration: none; color: #000; }
  .faq-item > .faq-answer { display: block; }
  .chip, .hero-figure, .icon { display: none !important; }
  h1, h2, h3 { break-after: avoid; }
  .step, .trust-item { break-inside: avoid; }
}

/* 11. Icons (generated) -------------------------------------------------- */
.icon-phone{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>")}
.icon-mail{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><path d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/></svg>")}
.icon-whatsapp{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M7.9 20A9 9 0 1 0 4 16.1L2 22Z'/></svg>")}
.icon-facebook{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/></svg>")}
.icon-menu{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6h16M4 12h16M4 18h16'/></svg>")}
.icon-close{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M18 6 6 18M6 6l12 12'/></svg>")}
.icon-check{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>")}
.icon-chevron{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>")}
.icon-home{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><path d='M9 22V12h6v10'/></svg>")}
.icon-laptop{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 16V7a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v9m16 0H4m16 0 1.28 2.55a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45L4 16'/></svg>")}
.icon-smartphone{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='5' y='2' width='14' height='20' rx='2'/><path d='M12 18h.01'/></svg>")}
.icon-wrench{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/></svg>")}
.icon-shield{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/><path d='m9 12 2 2 4-4'/></svg>")}
.icon-wifi{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 20h.01M2 8.82a15 15 0 0 1 20 0M5 12.859a10 10 0 0 1 14 0M8.5 16.429a5 5 0 0 1 7 0'/></svg>")}
.icon-printer{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/><path d='M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6'/><rect x='6' y='14' width='12' height='8' rx='1'/></svg>")}
.icon-drive{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12H2M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11zM6 16h.01M10 16h.01'/></svg>")}
.icon-book{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 7v14M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z'/></svg>")}
.icon-building{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 22V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v18Z'/><path d='M6 12H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2M18 9h2a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-2M10 6h4M10 10h4M10 14h4M10 18h4'/></svg>")}
.icon-network{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='16' y='16' width='6' height='6' rx='1'/><rect x='2' y='16' width='6' height='6' rx='1'/><rect x='9' y='2' width='6' height='6' rx='1'/><path d='M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3M12 12V8'/></svg>")}
.icon-monitor{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='14' rx='2'/><path d='M8 21h8M12 17v4'/></svg>")}
.icon-lifebuoy{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='12' r='4'/><path d='M4.93 4.93l4.24 4.24M14.83 9.17l4.24-4.24M14.83 14.83l4.24 4.24M9.17 14.83l-4.24 4.24'/></svg>")}
.icon-lock{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='11' width='18' height='11' rx='2'/><path d='M7 11V7a5 5 0 0 1 10 0v4'/></svg>")}
.icon-heart{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z'/></svg>")}
.icon-pin{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0'/><circle cx='12' cy='10' r='3'/></svg>")}
.icon-card{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='5' width='20' height='14' rx='2'/><path d='M2 10h20'/></svg>")}
.icon-moon{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/></svg>")}
.icon-sun{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/><path d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41'/></svg>")}
.icon-clock{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><path d='M12 6v6l4 2'/></svg>")}
.icon-message{--icon:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/></svg>")}
