/* ==========================================================================
   Fixing Masters — design system
   Palette derived from the logo: cyan #29ABE2, orange #F1592A, warm grey.
   Signature motif: the repair ticket — monospace data lines, perforated
   edges and a live status dot, used wherever the shop would hand you paper.
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */
:root {
  --ink:        #0C1A23;
  --ink-2:      #142936;
  --ink-3:      #1E3B4C;

  --cyan:       #29ABE2;
  --cyan-600:   #1189C4;
  --cyan-700:   #0C6E9E;
  --cyan-100:   #D6EEFA;
  --cyan-050:   #EFF8FD;

  --orange:     #F1592A;
  --orange-600: #D8441A;
  --orange-050: #FEF0EB;

  --grey:       #8C8C8C;
  --grey-2:     #5E6E78;
  --grey-3:     #93A3AC;

  --paper:      #FFFFFF;
  --surface:    #F1F6F9;
  --surface-2:  #E4EEF4;

  --line:       #DCE7ED;
  --line-2:     #C6D6E0;
  --line-dark:  rgba(255, 255, 255, .13);

  --display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  --shell:  1220px;
  --gutter: clamp(18px, 4vw, 40px);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-1: 0 1px 2px rgba(12, 26, 35, .06), 0 2px 8px rgba(12, 26, 35, .04);
  --sh-2: 0 2px 6px rgba(12, 26, 35, .06), 0 14px 34px rgba(12, 26, 35, .09);
  --sh-3: 0 4px 12px rgba(12, 26, 35, .10), 0 28px 60px rgba(12, 26, 35, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* Sprite icons carry no intrinsic size, so give them a sane default here.
   Kept as a bare type selector so every `.context svg` rule below wins. */
svg { width: 18px; height: 18px; flex: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0; line-height: 1.14; letter-spacing: -.022em; font-weight: 700; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a  { color: var(--cyan-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm);
  font-weight: 600; transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --- layout primitives -------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 7.5vw, 108px); }
.section--tight { padding-block: clamp(44px, 5vw, 72px); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: #C8DAE4; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* dot-grid "ESD mat" texture for dark bands */
.mat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.mat::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 22px 22px;
  color: rgba(255, 255, 255, .13);
}
.mat::after {
  content: '';
  position: absolute; z-index: -1;
  width: 62vw; height: 62vw; max-width: 780px; max-height: 780px;
  left: -14vw; bottom: -34vw;
  background: radial-gradient(circle, rgba(41, 171, 226, .34), transparent 62%);
  pointer-events: none;
}

/* --- section headings --------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan-700);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--cyan); }

.sh-head { max-width: 660px; margin-bottom: clamp(30px, 4vw, 52px); }
.sh-head--wide { max-width: 780px; }
.sh { font-size: clamp(28px, 3.6vw, 43px); }
.sh-sub { margin-top: 14px; color: var(--grey-2); font-size: 17.5px; }
.section--dark .sh-sub { color: #9FB6C4; }

.sh-row {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 22px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.sh-row .sh-head { margin-bottom: 0; }

/* --- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--cyan);
  --btn-fg: #fff;
  --btn-bd: var(--cyan);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd); border-radius: 100px;
  font-family: var(--display); font-weight: 600; font-size: 15.5px; letter-spacing: -.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .18s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--accent { --btn-bg: var(--orange); --btn-bd: var(--orange); }
.btn--accent:hover { --btn-bg: var(--orange-600); --btn-bd: var(--orange-600); }
.btn--solid:hover { --btn-bg: var(--cyan-600); --btn-bd: var(--cyan-600); }
.btn--line { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--line:hover { --btn-bd: var(--cyan); --btn-fg: var(--cyan-700); }
.btn--ghost { --btn-bg: rgba(255,255,255,.06); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.28); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.14); --btn-bd: rgba(255,255,255,.5); }
.btn--lg { padding: 16px 28px; font-size: 16.5px; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- the ticket motif --------------------------------------------------- */
/* A monospace data strip: what the shop writes on the docket. */
.ticket-line {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.ticket-line b { color: var(--cyan-700); font-weight: 600; }
.ticket-line .sep { color: var(--line-2); }

/* perforated edge — used only on the two "paper" cards */
.perf { position: relative; }
.perf::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 10px;
  background: radial-gradient(circle at 5px 10px, transparent 5px, currentColor 5.5px);
  background-size: 14px 10px;
  color: var(--paper);
}

.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #35D07F; flex: none;
  box-shadow: 0 0 0 3px rgba(53, 208, 127, .22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(53, 208, 127, .22); }
  50%      { box-shadow: 0 0 0 7px rgba(53, 208, 127, 0); }
}

/* --- header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}
.brand { flex: none; display: block; line-height: 0; }
.brand img { width: 178px; height: auto; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 100px;
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: var(--ink-2); text-decoration: none;
  background: none; border: 0; cursor: pointer;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.nav-link:hover { background: var(--cyan-050); color: var(--cyan-700); }
.nav-link[aria-current='page'] { color: var(--cyan-700); background: var(--cyan-050); }
.nav-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav-link[aria-expanded='true'] svg { transform: rotate(180deg); }

/* services mega-menu */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; translate: -50% 0;
  width: min(660px, 88vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; translate: -50% 8px;
  transition: opacity .18s var(--ease), translate .18s var(--ease), visibility .18s;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.mega[data-open='true'] { opacity: 1; visibility: visible; translate: -50% 0; }
/* Escape sets this so the menu closes even while the pointer is still on the
   trigger. Must follow the :hover rule — equal specificity, later wins. */
.has-mega.is-dismissed .mega { opacity: 0; visibility: hidden; translate: -50% 8px; }
.mega-item {
  display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start;
  padding: 12px; border-radius: var(--r); text-decoration: none; color: inherit;
  transition: background-color .16s var(--ease);
}
.mega-item:hover { background: var(--cyan-050); }
.mega-ic {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--cyan-050); color: var(--cyan-700);
  display: grid; place-items: center;
}
.mega-ic svg { width: 19px; height: 19px; }
.mega-item:hover .mega-ic { background: var(--cyan); color: #fff; }
.mega-t { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); display: block; }
.mega-d { font-size: 13.5px; color: var(--grey-2); line-height: 1.45; display: block; margin-top: 2px; }
.mega-foot {
  grid-column: 1 / -1; margin-top: 6px; padding: 13px 12px 6px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.mega-foot .ticket-line { margin: 0; }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-weight: 500; font-size: 14.5px;
  color: var(--ink); text-decoration: none;
  padding: 9px 15px; border-radius: 100px; border: 1.5px solid var(--line-2);
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.header-tel:hover { border-color: var(--cyan); color: var(--cyan-700); }
.header-tel svg { width: 16px; height: 16px; color: var(--cyan); }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--line-2); background: var(--paper);
  place-items: center; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* --- hero --------------------------------------------------------------- */
.hero {
  background: var(--ink);
  color: #BCD3E0;
  padding-block: clamp(52px, 6.5vw, 92px) clamp(64px, 8vw, 112px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 800;
  letter-spacing: -.032em;
  line-height: 1.04;
}
/* keep the emphasised phrase on one line so it never splits across a break */
.hero h1 em { font-style: normal; color: var(--cyan); white-space: nowrap; }
.hero-lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.5vw, 19.5px);
  color: #9FB8C7;
  max-width: 52ch;
}
.hero .btn-row { margin-top: 30px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px 7px 11px;
  border: 1px solid rgba(41, 171, 226, .34);
  border-radius: 100px;
  background: rgba(41, 171, 226, .09);
  margin-bottom: 24px;
}

.hero-checks {
  list-style: none; margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.hero-checks li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 500; color: #B9CFDC;
}
.hero-checks svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

/* hero media + the signature live ticket */
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.hero-ticket {
  position: absolute; left: clamp(-8px, -1.4vw, 0px); bottom: -26px;
  width: min(290px, 78%);
  background: var(--paper);
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: var(--sh-3);
  color: var(--ink-2);
}
.hero-ticket-top {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 11px; margin-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
}
.hero-ticket-id { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--ink); letter-spacing: .04em; }
.hero-ticket-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: #1D8F58;
}
.hero-ticket-dev { font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.hero-ticket-job { font-size: 13.5px; color: var(--grey-2); margin-top: 2px; }
.hero-bar {
  height: 6px; border-radius: 100px; background: var(--surface-2);
  margin-top: 14px; overflow: hidden;
}
.hero-bar span {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  width: 0;
  animation: fill 2.2s .5s var(--ease) forwards;
}
@keyframes fill { to { width: 78%; } }
.hero-ticket-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--grey-3);
}
.hero-ticket-foot b { color: var(--orange); font-weight: 600; }

/* --- process (3 steps) -------------------------------------------------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.step::before {
  counter-increment: step;
  content: 'Step ' counter(step);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: 14px;
}
.step-ic {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--cyan-050); color: var(--cyan-700);
  display: grid; place-items: center; margin-bottom: 16px;
}
.step-ic svg { width: 22px; height: 22px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15.5px; color: var(--grey-2); }
/* the connecting rule between steps — a real sequence, so it earns the line */
.step:not(:last-child)::after {
  content: '';
  position: absolute; right: calc(-1 * clamp(18px, 2.4vw, 30px) - 1px); top: 52px;
  width: clamp(18px, 2.4vw, 30px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 10px);
}

/* --- bento service grid ------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.7vw, 20px);
}
.svc {
  grid-column: span 2;
  position: relative; display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--cyan-100); }
.svc-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface-2); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc-media img { transform: scale(1.045); }
.svc-tag {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(12, 26, 35, .78); color: #fff;
  padding: 6px 11px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.svc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { font-size: 20px; }
.svc p { font-size: 15px; color: var(--grey-2); margin-top: 8px; }
.svc-meta {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px dashed var(--line-2);
}
.svc-from { font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.svc-from span { color: var(--grey-3); font-weight: 400; }
.svc-go {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--cyan-700);
}
.svc-go svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.svc:hover .svc-go svg { transform: translateX(4px); }

/* the feature card: wide, image right, dark */
.svc--feature {
  grid-column: span 4; grid-row: span 1;
  flex-direction: row; align-items: stretch;
  background: var(--ink); border-color: var(--ink-3);
}
.svc--feature .svc-media { aspect-ratio: auto; flex: 0 0 44%; }
.svc--feature .svc-body { padding: clamp(24px, 2.6vw, 34px); }
.svc--feature h3 { color: #fff; font-size: clamp(21px, 2.1vw, 27px); }
.svc--feature p { color: #9FB8C7; font-size: 15.5px; }
.svc--feature .svc-meta { border-top-color: var(--line-dark); }
.svc--feature .svc-from { color: #fff; }
.svc--feature .svc-from span { color: var(--grey-3); }
.svc--feature .svc-go { color: var(--cyan); }
.svc--feature:hover { border-color: var(--cyan-700); }

/* the closing card: full width, image on the right, so the grid ends square */
.svc--wide { grid-column: span 6; flex-direction: row-reverse; align-items: stretch; }
.svc--wide .svc-media { aspect-ratio: auto; flex: 0 0 38%; }
.svc--wide .svc-body { padding: clamp(24px, 2.6vw, 34px); justify-content: center; }
.svc--wide h3 { font-size: clamp(21px, 2.1vw, 26px); }
.svc--wide p { max-width: 60ch; }

/* --- stats -------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.stat { background: var(--paper); padding: clamp(24px, 3vw, 34px) clamp(18px, 2vw, 26px); }
.stat b {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -.03em; color: var(--ink);
}
.stat b .u { color: var(--orange); }
.stat span {
  display: block; margin-top: 12px; padding-top: 12px;
  border-top: 2px solid var(--orange);
  width: fit-content;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey-2);
}

/* --- brands strip ------------------------------------------------------- */
.brands { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--grey-2);
  padding: 9px 16px; border-radius: 100px;
  border: 1px solid var(--line-2); background: var(--paper);
}
.section--dark .brand-chip { color: #9FB8C7; border-color: var(--line-dark); background: rgba(255,255,255,.04); }

/* --- price table -------------------------------------------------------- */
.price-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1); overflow: hidden;
}
.price-card-head {
  padding: 20px 24px; border-bottom: 1px dashed var(--line-2);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.price-card-head h3 { font-size: 19px; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td { text-align: left; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.ptable th {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--grey-3);
  background: var(--surface);
}
.ptable td { font-size: 15.5px; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable td:last-child, .ptable th:last-child { text-align: right; }
.ptable .p-amt { font-family: var(--mono); font-weight: 600; color: var(--ink); white-space: nowrap; }
.ptable .p-time { font-family: var(--mono); font-size: 13px; color: var(--grey-2); white-space: nowrap; }
.price-note { padding: 16px 24px; background: var(--surface); font-size: 13.5px; color: var(--grey-2); }

/* --- reviews ------------------------------------------------------------ */
.rev-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 34px;
  padding: 22px 26px; margin-bottom: clamp(20px, 2.6vw, 30px);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1);
}
.rev-num { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--ink); letter-spacing: -.03em; }
.rev-num sub { font-family: var(--mono); font-size: 13px; font-weight: 400; color: var(--grey-3); vertical-align: baseline; margin-left: 4px; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; color: #E4EEF4; }
.stars svg.on { color: #F5A623; }
.rev-head-meta { font-size: 14.5px; color: var(--grey-2); margin-top: 6px; }

.rev-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
}
.rev {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 24px 22px;
  display: flex; flex-direction: column;
}
.rev-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.rev-date { font-family: var(--mono); font-size: 11.5px; color: var(--grey-3); }
.rev blockquote { margin: 0; font-size: 16px; color: var(--ink-2); }
.rev-who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.rev-av {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--cyan-050); color: var(--cyan-700);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
}
.rev-name { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); }
.rev-ctx { font-size: 13px; color: var(--grey-3); }

/* --- location ----------------------------------------------------------- */
.loc-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3.4vw, 48px); align-items: center;
}
.loc-map {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-2);
  background: var(--surface-2);
}
.loc-map iframe { display: block; width: 100%; height: clamp(300px, 40vw, 420px); border: 0; }
.info-list { list-style: none; display: grid; gap: 2px; margin-top: 26px; }
.info-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--cyan-050); color: var(--cyan-700); display: grid; place-items: center; }
.info-ic svg { width: 19px; height: 19px; }
.info-k { display: block; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-3); }
.info-v { display: block; font-size: 16px; color: var(--ink-2); margin-top: 3px; }
.info-v a { color: inherit; text-decoration: none; }
.info-v a:hover { color: var(--cyan-700); text-decoration: underline; }
.section--dark .info-list li { border-bottom-color: var(--line-dark); }
.section--dark .info-ic { background: rgba(41,171,226,.14); color: var(--cyan); }
.section--dark .info-v { color: #DCE9F0; }

/* --- blog cards --------------------------------------------------------- */
.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.post {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--cyan-100); }
.post-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post-media img { transform: scale(1.045); }
.post-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-cat {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan-700); background: var(--cyan-050);
  padding: 5px 10px; border-radius: 100px; margin-bottom: 12px;
}
.post h3 { font-size: 19px; line-height: 1.28; }
.post p { font-size: 15px; color: var(--grey-2); margin-top: 9px; }
.post-meta {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--grey-3);
}
.post-meta .go { color: var(--cyan-700); display: inline-flex; align-items: center; gap: 5px; }
.post-meta .go svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.post:hover .post-meta .go svg { transform: translateX(3px); }

/* --- page head (inner pages) -------------------------------------------- */
.page-head {
  background: var(--ink); color: #A9C4D3;
  padding-block: clamp(30px, 4vw, 46px) clamp(38px, 5vw, 60px);
}
.crumbs { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 20px; }
.crumbs li { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-3); }
.crumbs a { color: var(--cyan); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs li + li::before { content: '/'; margin-right: 8px; color: var(--ink-3); }
.crumbs [aria-current] { color: #fff; }
.page-head h1 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; letter-spacing: -.03em; max-width: 18ch; }
.page-head .lead { margin-top: 16px; max-width: 62ch; font-size: 17.5px; color: #9FB8C7; }
.page-head .btn-row { margin-top: 26px; }

/* --- service page ------------------------------------------------------- */
.svc-page {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(30px, 4vw, 60px); align-items: start;
}
.aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.aside-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1); overflow: hidden;
}
.aside-card h2, .aside-card h3 {
  font-size: 12px; font-family: var(--mono); font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--grey-3);
  padding: 16px 20px 12px;
}
.aside-nav { list-style: none; padding: 0 10px 12px; }
.aside-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 12px; border-radius: 10px;
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  color: var(--ink-2); text-decoration: none;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.aside-nav a:hover { background: var(--cyan-050); color: var(--cyan-700); }
.aside-nav a[aria-current='page'] { background: var(--cyan); color: #fff; }
.aside-nav svg { width: 14px; height: 14px; opacity: .55; }

.aside-quote {
  background: var(--ink); color: #A9C4D3; padding: 24px 22px;
  border: 0; border-radius: var(--r-lg);
}
.aside-quote h3 { color: #fff; font-family: var(--display); font-size: 19px; letter-spacing: -.02em; padding: 0; text-transform: none; margin-bottom: 8px; }
.aside-quote p { font-size: 14.5px; color: #9FB8C7; }
.aside-quote .btn-row { margin-top: 18px; display: grid; gap: 9px; }
.aside-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cyan);
  border: 1px solid rgba(41,171,226,.34); background: rgba(41,171,226,.1);
  padding: 6px 12px; border-radius: 100px; margin-bottom: 14px;
}

.svc-hero-img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  margin-bottom: clamp(26px, 3vw, 38px);
}

/* --- prose -------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(23px, 2.6vw, 31px); margin-top: clamp(36px, 4vw, 52px); }
.prose h3 { font-size: clamp(19px, 2vw, 22px); margin-top: clamp(28px, 3vw, 38px); }
.prose p  { font-size: 17px; color: var(--ink-2); }
.prose a  { color: var(--cyan-700); font-weight: 500; }
/* `.checks` brings its own tick marker, so it opts out of the prose bullet */
.prose > ul:not(.checks) { list-style: none; display: grid; gap: 11px; }
.prose > ul:not(.checks) > li { position: relative; padding-left: 30px; font-size: 16.5px; }
.prose > ul:not(.checks) > li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px var(--cyan-050);
}
.prose figure { margin: clamp(28px, 3vw, 40px) 0; }
.prose figure img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); }
.prose figcaption { margin-top: 10px; font-size: 13.5px; color: var(--grey-3); font-family: var(--mono); }

.lede { font-size: clamp(18px, 1.8vw, 20.5px); color: var(--ink-2); font-weight: 400; }

/* checklist — "what's included" */
.checks { list-style: none; display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; font-size: 16px; }
.checks svg { width: 24px; height: 24px; padding: 4px; border-radius: 50%; background: var(--cyan-050); color: var(--cyan-700); flex: none; }

/* fault grid — common symptoms */
.faults { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.fault {
  padding: 18px 20px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
}
.fault b { display: block; font-family: var(--display); font-size: 15.5px; color: var(--ink); }
.fault span { display: block; margin-top: 5px; font-size: 14px; color: var(--grey-2); }

/* callout — the one "paper docket" moment inside an article */
.callout {
  position: relative;
  background: var(--cyan-050);
  border: 1px solid var(--cyan-100);
  border-radius: var(--r-lg);
  padding: 24px 26px;
}
.callout .ticket-line { margin-bottom: 10px; }
.callout h3 { font-size: 18px; margin-bottom: 8px; }
.callout p { font-size: 15.5px; color: var(--ink-2); }

/* --- FAQ ---------------------------------------------------------------- */
.faq-list { display: grid; gap: 10px; max-width: 860px; }
.faq-list details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.faq-list details[open] { border-color: var(--cyan-100); box-shadow: var(--sh-1); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 16.5px; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--cyan-700); }
.faq-ic {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--cyan-050); color: var(--cyan-700);
  display: grid; place-items: center;
  transition: transform .22s var(--ease), background-color .18s var(--ease);
}
.faq-ic svg { width: 15px; height: 15px; }
.faq-list details[open] .faq-ic { transform: rotate(180deg); background: var(--cyan); color: #fff; }
.faq-a { padding: 0 22px 20px; font-size: 16px; color: var(--grey-2); max-width: 68ch; }
.faq-a > * + * { margin-top: 12px; }

/* --- forms -------------------------------------------------------------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
  padding: clamp(24px, 3vw, 36px);
}
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > label {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--grey-3);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 16px;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--paper); border-color: var(--cyan); outline: none;
  box-shadow: 0 0 0 4px rgba(41, 171, 226, .16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13.5px; color: var(--grey-3); margin-top: 14px; }

/* --- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--ink); color: #A9C4D3; }
.cta-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.cta-inner h2 { color: #fff; font-size: clamp(27px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.03em; }
.cta-inner p { margin-top: 16px; font-size: 17.5px; color: #9FB8C7; }
.cta-inner .btn-row { margin-top: 28px; justify-content: center; }
.cta-tick { margin-top: 24px; justify-content: center; }

/* --- footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #8FAABA; padding-block: clamp(48px, 6vw, 72px) 28px; border-top: 1px solid var(--ink-3); }
.foot-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 3vw, 44px);
  padding-bottom: clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line-dark);
}
.foot-brand img { width: 190px; background: #fff; padding: 12px 16px; border-radius: var(--r); }
.foot-brand p { margin-top: 18px; font-size: 15px; max-width: 38ch; }
.foot-social { display: flex; gap: 8px; margin-top: 18px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: #8FAABA;
  display: grid; place-items: center;
  transition: background-color .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}
.foot-social a:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.foot-social svg { width: 17px; height: 17px; }
.foot-col h2, .foot-col h3 {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: #8FAABA; text-decoration: none; font-size: 15px; }
.foot-col a:hover { color: #fff; }
.foot-hours { display: grid; gap: 9px; font-size: 15px; }
.foot-hours div { display: flex; justify-content: space-between; gap: 14px; }
.foot-hours dt { color: #8FAABA; }
.foot-hours dd { margin: 0; font-family: var(--mono); font-size: 13.5px; color: #C8DAE4; }
.foot-hours .closed { color: var(--orange); }
.foot-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 24px; font-size: 14px;
}
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-bottom a { color: #8FAABA; text-decoration: none; }
.foot-bottom a:hover { color: #fff; }

/* --- cookie bar --------------------------------------------------------- */
/* Anchored right so it never sits on top of the hero's call to action. */
.cookie {
  position: fixed; right: 16px; bottom: 16px; left: auto; z-index: 150;
  width: min(400px, calc(100vw - 32px));
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3);
  padding: 18px 20px;
}
.cookie p { font-size: 14px; color: var(--grey-2); }
.cookie .btn-row { margin-top: 14px; }
.cookie .btn { padding: 9px 18px; font-size: 14px; }

/* --- 404 ---------------------------------------------------------------- */
.nf { text-align: center; max-width: 560px; margin-inline: auto; }
.nf-code {
  font-family: var(--mono); font-size: clamp(64px, 12vw, 128px); font-weight: 700;
  line-height: 1; color: var(--cyan); letter-spacing: -.04em;
}

/* --- motion & responsive ------------------------------------------------ */
@media (max-width: 1080px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .svc-page { grid-template-columns: 1fr; }
  .aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 74px 0 auto; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-2);
    padding: 12px var(--gutter) 22px;
    max-height: calc(100dvh - 74px); overflow-y: auto;
    display: none;
  }
  .nav[data-open='true'] { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { justify-content: space-between; padding: 13px 14px; font-size: 16px; }
  .mega {
    position: static; translate: none; width: auto;
    opacity: 1; visibility: visible; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0;
    margin: 4px 0 8px 14px; padding: 4px 0 4px 8px;
    grid-template-columns: 1fr;
    display: none;
  }
  .mega[data-open='true'] { display: grid; }
  .has-mega:hover .mega:not([data-open='true']) { display: none; }
  .header-cta .btn { display: none; }
  .header-inner { min-height: 66px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-ticket { left: auto; right: 12px; bottom: -22px; }
  .loc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .svc--feature, .svc--wide { grid-column: span 4; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .brand img { width: 152px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc, .svc--feature, .svc--wide { grid-column: span 1; }
  .svc--feature, .svc--wide { flex-direction: column; }
  .svc--feature .svc-media, .svc--wide .svc-media { flex: none; aspect-ratio: 3 / 2; }
  .aside { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-ticket { position: static; width: 100%; margin-top: 14px; }
  .header-tel span { display: none; }
  .header-tel { padding: 10px 12px; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .ptable th, .ptable td { padding: 12px 16px; }
  .ptable .p-time { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-bar span { width: 78%; }
}

@media print {
  .site-header, .site-footer, .cookie, .cta-band, .btn { display: none !important; }
  body { color: #000; }
}
