/* ==========================================================================
   Todd's Tech — North York Moors palette, workbench typography
   Design tokens. Change values here, never in components.
   ========================================================================== */

:root {
  /* --- Colour: drawn from the North York Moors, not from a circuit board --- */
  --ink:          #1A2333;  /* deep slate — Pickering stone at dusk */
  --ink-2:        #26334A;
  --ink-3:        #3E4E68;
  --paper:        #FBFAF7;  /* warm white */
  --paper-2:      #F0EEE8;  /* recessed panels */
  --paper-3:      #E2DFD6;  /* rules, borders */

  --heather:      #7A5C8E;  /* brand — moorland heather */
  --heather-text: #5E4470;  /* darkened for 4.5:1 body text on paper */
  --heather-soft: #EFE8F3;

  --gorse:        #E8B33D;  /* primary action — gorse in flower */
  --gorse-deep:   #C7912A;
  --moss:         #4A7C59;  /* available / success */
  --rust:         #96331D;  /* errors only — darkened to clear AAA at small sizes */

  /* --- Type --- */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'DM Mono', ui-monospace, 'Cascadia Mono', monospace;

  /* Fluid type scale, 1.25 ratio at the low end opening to 1.333 */
  --t-xs:   0.78rem;
  --t-sm:   0.9rem;
  --t-base: 1.0625rem;
  --t-md:   clamp(1.15rem, 0.5vw + 1.02rem, 1.3rem);
  --t-lg:   clamp(1.4rem,  1vw + 1.15rem,  1.75rem);
  --t-xl:   clamp(1.85rem, 2vw + 1.3rem,   2.6rem);
  --t-2xl:  clamp(2.4rem,  4vw + 1.4rem,   4.2rem);
  --t-3xl:  clamp(3rem,    6.5vw + 1.2rem, 5.8rem);

  /* --- Space: 4px base --- */
  --s-1: 0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;  --s-4: 1rem;
  --s-5: 1.5rem;   --s-6: 2rem;     --s-7: 3rem;     --s-8: 4rem;
  --s-9: 6rem;     --s-10: 8rem;

  --measure: 62ch;
  --wrap: 1180px;
  --wrap-tight: 780px;

  --radius:    10px;
  --radius-sm: 6px;
  --radius-lg: 18px;

  --ring: 0 0 0 3px rgba(122, 92, 142, 0.45);
  --lift: 0 1px 2px rgba(26,35,51,.06), 0 8px 24px -12px rgba(26,35,51,.18);
  --lift-lg: 0 2px 4px rgba(26,35,51,.05), 0 20px 48px -20px rgba(26,35,51,.28);

  --speed: 180ms;
  --ease: cubic-bezier(.32, .72, .28, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }

a { color: var(--heather-text); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--ink); }

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

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

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-tight { width: min(100% - 2.5rem, var(--wrap-tight)); margin-inline: auto; }

.section { padding-block: clamp(var(--s-8), 9vw, var(--s-10)); }
.section--tight { padding-block: clamp(var(--s-7), 6vw, var(--s-9)); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }

.skip {
  position: absolute; left: var(--s-4); top: -100px;
  background: var(--gorse); color: var(--ink);
  padding: var(--s-3) var(--s-5); border-radius: var(--radius-sm);
  font-weight: 600; z-index: 200; transition: top var(--speed) var(--ease);
}
.skip:focus { top: var(--s-4); }

/* Eyebrow — mono label, the job-card motif. Encodes a real category. */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heather-text);
  display: flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.eyebrow::after {
  content: ""; flex: 1; height: 1px; background: var(--paper-3);
}
.section--ink .eyebrow { color: var(--gorse); }
.section--ink .eyebrow::after { background: rgba(251,250,247,.16); }

.section-head { margin-bottom: var(--s-7); }
.section-head h2 { font-size: var(--t-xl); }
.section-head p {
  margin-top: var(--s-4); max-width: var(--measure);
  font-size: var(--t-md); color: var(--ink-3);
}
.section--ink .section-head p { color: rgba(251,250,247,.72); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--t-base);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--speed) var(--ease),
              color var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              transform var(--speed) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--gorse); color: var(--ink); border-color: var(--gorse); }
.btn--primary:hover { background: var(--gorse-deep); border-color: var(--gorse-deep); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(251,250,247,.32); }
.btn--ghost:hover { background: rgba(251,250,247,.1); border-color: var(--paper); color: var(--paper); }

.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--paper); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--paper-3); }
.btn--outline:hover { border-color: var(--ink); background: var(--paper); color: var(--ink); }

.btn--wide { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,35,51,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251,250,247,.1);
}
.header__inner {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: 68px;
}

.logo {
  display: flex; align-items: center; gap: var(--s-3);
  text-decoration: none; color: var(--paper);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.03em; font-size: 1.15rem;
  margin-right: auto;
}
.logo__mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gorse); color: var(--ink);
  display: grid; place-items: center;
  font-size: 0.9rem; letter-spacing: -0.06em;
  flex: none;
}
.logo__sub {
  display: block; font-family: var(--font-mono); font-weight: 400;
  font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(251,250,247,.6); margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav a {
  color: rgba(251,250,247,.82); text-decoration: none;
  font-size: var(--t-sm); font-weight: 500;
  padding: var(--s-2) 0; position: relative;
  transition: color var(--speed) var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gorse);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--speed) var(--ease);
}
.nav a:hover { color: var(--paper); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: var(--s-3); }

.header__phone {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono); font-size: var(--t-sm);
  color: var(--paper); text-decoration: none; font-weight: 500;
  padding: var(--s-2) var(--s-3); border-radius: var(--radius-sm);
  transition: background var(--speed) var(--ease);
}
.header__phone:hover { background: rgba(251,250,247,.1); color: var(--paper); }
.header__phone svg { width: 1em; height: 1em; color: var(--gorse); }

.burger {
  display: none; background: none; border: 1px solid rgba(251,250,247,.28);
  color: var(--paper); border-radius: var(--radius-sm);
  padding: var(--s-2) var(--s-3); cursor: pointer;
}
.burger svg { width: 22px; height: 22px; }

/* ==========================================================================
   Hero — the signature. "What's it doing?" is the first question Callum asks.
   ========================================================================== */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(var(--s-8), 8vw, var(--s-10)) clamp(var(--s-8), 7vw, var(--s-9));
  position: relative;
  overflow: hidden;
}
/* Contour lines — moorland map, extremely subtle. Decoration earning its place. */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 62% 44% at 78% 8%, rgba(122,92,142,.30), transparent 62%),
    radial-gradient(ellipse 44% 34% at 8% 92%, rgba(232,179,61,.10), transparent 65%);
  pointer-events: none;
}
.hero > * { position: relative; }

.hero__locale {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gorse);
  margin-bottom: var(--s-5);
}
.hero__locale svg { width: 1.05em; height: 1.05em; }

.hero h1 {
  font-size: var(--t-3xl);
  letter-spacing: -0.045em;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--gorse);
}

.hero__lede {
  margin-top: var(--s-5);
  font-size: var(--t-md);
  color: rgba(251,250,247,.78);
  max-width: 48ch;
}

/* --- Symptom picker: the customer's words, not the technician's --- */
.symptoms { margin-top: var(--s-7); }
.symptoms__label {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(251,250,247,.55);
  margin-bottom: var(--s-4);
}
.symptoms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: var(--s-3);
  max-width: 860px;
}
.symptom {
  display: flex; align-items: center; gap: var(--s-3);
  text-align: left;
  background: rgba(251,250,247,.06);
  border: 1px solid rgba(251,250,247,.16);
  color: var(--paper);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: var(--t-sm);
  font-weight: 500;
  transition: background var(--speed) var(--ease),
              border-color var(--speed) var(--ease),
              transform var(--speed) var(--ease);
}
.symptom__arrow {
  margin-left: auto; flex: none;
  width: 18px; height: 18px;
  color: var(--gorse);
  opacity: 0; transform: translateX(-4px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.symptom:hover {
  background: rgba(232,179,61,.14);
  border-color: var(--gorse);
  transform: translateY(-2px);
}
.symptom:hover .symptom__arrow { opacity: 1; transform: translateX(0); }
.symptom[aria-pressed="true"] {
  background: var(--gorse); color: var(--ink); border-color: var(--gorse);
}
.symptom[aria-pressed="true"] .symptom__arrow { opacity: 1; transform: translateX(0); color: var(--ink); }

.hero__or {
  display: flex; align-items: center; gap: var(--s-4);
  margin-top: var(--s-7); margin-bottom: var(--s-5);
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(251,250,247,.48);
  max-width: 860px;
}
.hero__or::before, .hero__or::after {
  content: ""; height: 1px; background: rgba(251,250,247,.16); flex: 1;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust {
  background: var(--paper-2);
  border-bottom: 1px solid var(--paper-3);
  padding-block: var(--s-5);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s-5);
}
.trust__item { display: flex; align-items: flex-start; gap: var(--s-3); }
.trust__item svg {
  width: 21px; height: 21px; flex: none; color: var(--heather); margin-top: 3px;
}
.trust__item strong {
  display: block; font-family: var(--font-display); font-size: var(--t-sm);
  letter-spacing: -0.01em;
}
.trust__item span { font-size: var(--t-xs); color: var(--ink-3); line-height: 1.5; }

/* ==========================================================================
   Services
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-4);
}
.service {
  background: var(--paper);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  transition: border-color var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              transform var(--speed) var(--ease);
}
.section--paper2 .service { background: var(--paper); }
.service:hover {
  border-color: var(--heather);
  box-shadow: var(--lift);
  transform: translateY(-3px);
}
.service__icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--heather-soft); color: var(--heather-text);
  display: grid; place-items: center; margin-bottom: var(--s-5);
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 { font-size: var(--t-md); margin-bottom: var(--s-3); }
.service p { font-size: var(--t-sm); color: var(--ink-3); }
.service__link {
  margin-top: var(--s-5);
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--heather-text); text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: none; border: 0; padding: 0; cursor: pointer;
  align-self: flex-start;
}
.service__link svg { width: 14px; height: 14px; transition: transform var(--speed) var(--ease); }
.service:hover .service__link svg { transform: translateX(3px); }

/* ==========================================================================
   Process — numbered because it genuinely is a sequence
   ========================================================================== */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--s-6); }
.step { position: relative; padding-top: var(--s-6); border-top: 2px solid var(--gorse); }
.step__num {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.12em; color: var(--gorse);
  margin-bottom: var(--s-3);
}
.step h3 { font-size: var(--t-lg); margin-bottom: var(--s-3); }
.step p { color: rgba(251,250,247,.72); font-size: var(--t-sm); }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); }
.price {
  border: 1px solid var(--paper-3); border-radius: var(--radius-lg);
  padding: var(--s-6); background: var(--paper);
  display: flex; flex-direction: column;
}
.price--feature { border-color: var(--ink); border-width: 2px; position: relative; }
.price__tag {
  position: absolute; top: -11px; left: var(--s-6);
  background: var(--gorse); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: var(--s-1) var(--s-3); border-radius: 100px;
}
.price h3 { font-size: var(--t-md); margin-bottom: var(--s-2); }
.price__amount {
  font-family: var(--font-display); font-size: var(--t-xl);
  letter-spacing: -0.04em; margin-block: var(--s-3);
}
.price__amount small {
  font-family: var(--font-body); font-size: var(--t-sm);
  font-weight: 400; color: var(--ink-3); letter-spacing: 0;
}
.price p { font-size: var(--t-sm); color: var(--ink-3); margin-bottom: var(--s-5); }
.price ul { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: var(--s-3); }
.price li { display: flex; gap: var(--s-3); font-size: var(--t-sm); align-items: flex-start; }
.price li svg { width: 17px; height: 17px; color: var(--moss); flex: none; margin-top: 4px; }
.price .btn { margin-top: auto; }

/* Travel zones — the surcharge is shown openly because being able to
   justify it is the point. */
.travel {
  margin-top: var(--s-6);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  background: var(--paper);
}
.travel__head h3 { font-size: var(--t-md); margin-bottom: var(--s-3); }
.travel__head p { font-size: var(--t-sm); color: var(--ink-3); max-width: 62ch; }

.zones { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: 0; }
.zones li {
  display: flex; align-items: baseline; gap: var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--paper-3);
  font-size: var(--t-sm);
}
.zones li:last-child { border-bottom: 1px solid var(--paper-3); }
.zones span { flex: 1; }
.zones strong {
  font-family: var(--font-mono); font-size: var(--t-sm);
  color: var(--ink); white-space: nowrap;
}
.zones strong.is-free { color: var(--moss); }

.travel__foot {
  margin-top: var(--s-5); font-size: var(--t-xs); color: var(--ink-3);
}

.price-note {
  margin-top: var(--s-5); padding: var(--s-5);
  background: var(--heather-soft); border-radius: var(--radius);
  font-size: var(--t-sm); color: var(--ink-2);
  display: flex; gap: var(--s-4); align-items: flex-start;
}
.price-note svg { width: 20px; height: 20px; color: var(--heather-text); flex: none; margin-top: 2px; }

/* ==========================================================================
   Areas covered
   ========================================================================== */

.areas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.area {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--paper); border: 1px solid var(--paper-3);
  padding: var(--s-3) var(--s-5); border-radius: 100px;
  font-size: var(--t-sm); font-weight: 500;
}
.area svg { width: 15px; height: 15px; color: var(--heather); }
.area--more { background: var(--heather-soft); border-color: transparent; color: var(--heather-text); }

/* ==========================================================================
   About
   ========================================================================== */

.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s-6), 6vw, var(--s-9)); align-items: start; }
.about__body p + p { margin-top: var(--s-4); }
.about__body p { color: var(--ink-2); }

/* Credentials — the reason to trust a one-man band with your machine. */
.creds {
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 2px solid var(--paper-3);
}
.creds__intro {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-md);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.creds ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-5); }
.creds li { display: grid; gap: var(--s-1); padding-left: var(--s-5); position: relative; }
.creds li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--gorse);
}
.creds strong { font-size: var(--t-sm); letter-spacing: -0.005em; }
.creds span { font-size: var(--t-sm); color: var(--ink-3); }

.card-callum {
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg); padding: var(--s-6);
  position: sticky; top: 92px;
}
.card-callum__top { display: flex; align-items: center; gap: var(--s-4); margin-bottom: var(--s-5); }
.card-callum__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gorse); color: var(--ink);
  display: grid; place-items: center; flex: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: -0.04em;
}
.card-callum__name { font-family: var(--font-display); font-weight: 700; font-size: var(--t-md); }
.card-callum__role {
  font-family: var(--font-mono); font-size: var(--t-xs);
  color: rgba(251,250,247,.6); letter-spacing: 0.08em; text-transform: uppercase;
}
.card-callum dl { display: grid; gap: var(--s-4); margin: 0 0 var(--s-6); }
.card-callum dt {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(251,250,247,.5); margin-bottom: 2px;
}
.card-callum dd { margin: 0; font-size: var(--t-sm); }
.card-callum dd a { color: var(--gorse); }
.card-callum dd a:hover { color: var(--paper); }

.status { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--t-sm); }
.status__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--moss);
  box-shadow: 0 0 0 3px rgba(74,124,89,.28);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--paper-3);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--s-5) 0;
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--t-md); letter-spacing: -0.015em;
  display: flex; align-items: center; gap: var(--s-4);
  transition: color var(--speed) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--heather-text); }
.faq summary svg {
  width: 20px; height: 20px; margin-left: auto; flex: none;
  color: var(--heather); transition: transform var(--speed) var(--ease);
}
.faq details[open] summary svg { transform: rotate(45deg); }
.faq__answer { padding-bottom: var(--s-5); color: var(--ink-3); max-width: var(--measure); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s-6), 6vw, var(--s-9)); align-items: start; }

.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: var(--s-2); }
.field label {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.field label .req { color: var(--rust); }
.field input, .field textarea, .field select {
  font: inherit; font-size: var(--t-base);
  padding: 0.8rem 1rem;
  border: 1px solid var(--paper-3); border-radius: var(--radius);
  background: var(--paper); color: var(--ink);
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--heather); box-shadow: var(--ring);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--rust); }
.field__error { font-size: var(--t-xs); color: var(--rust); min-height: 1em; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__note { font-size: var(--t-xs); color: var(--ink-3); }

.form__status {
  padding: var(--s-4) var(--s-5); border-radius: var(--radius);
  font-size: var(--t-sm); display: none;
}
.form__status[data-state="ok"] { display: block; background: rgba(74,124,89,.12); color: #2F5A3C; }
.form__status[data-state="err"] { display: block; background: rgba(180,71,47,.1); color: var(--rust); }

/* Direct-contact rail */
.direct { display: grid; gap: var(--s-4); }
.direct__card {
  display: flex; align-items: center; gap: var(--s-4);
  padding: var(--s-5);
  border: 1px solid var(--paper-3); border-radius: var(--radius-lg);
  background: var(--paper); text-decoration: none; color: var(--ink);
  transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.direct__card:hover { border-color: var(--heather); transform: translateY(-2px); box-shadow: var(--lift); color: var(--ink); }
.direct__icon {
  width: 46px; height: 46px; border-radius: var(--radius); flex: none;
  display: grid; place-items: center;
  background: var(--heather-soft); color: var(--heather-text);
}
.direct__icon svg { width: 22px; height: 22px; }
.direct__card--wa .direct__icon { background: rgba(74,124,89,.14); color: var(--moss); }
.direct__label {
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.direct__value { font-family: var(--font-display); font-weight: 600; font-size: var(--t-md); letter-spacing: -0.02em; }

.hours { border: 1px solid var(--paper-3); border-radius: var(--radius-lg); padding: var(--s-5); background: var(--paper); }
.hours h3 { font-size: var(--t-sm); margin-bottom: var(--s-3); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); font-weight: 400; }
.hours__lede { font-size: var(--t-sm); color: var(--ink-2); margin-bottom: var(--s-5); }
.hours__foot {
  margin-top: var(--s-4); padding-top: var(--s-4);
  border-top: 1px solid var(--paper-3);
  font-size: var(--t-xs); color: var(--ink-3);
}
.hours dl { display: grid; gap: var(--s-2); margin: 0; }
.hours .row { display: flex; justify-content: space-between; gap: var(--s-4); font-size: var(--t-sm); }
.hours dt { color: var(--ink-3); }
.hours dd { margin: 0; font-family: var(--font-mono); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--ink); color: rgba(251,250,247,.72); padding-block: var(--s-8) var(--s-6); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-6);
  padding-bottom: var(--s-7); border-bottom: 1px solid rgba(251,250,247,.12);
}
.footer h4 {
  font-family: var(--font-mono); font-size: var(--t-xs); font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(251,250,247,.5); margin-bottom: var(--s-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.footer a { color: rgba(251,250,247,.78); text-decoration: none; font-size: var(--t-sm); transition: color var(--speed) var(--ease); }
.footer a:hover { color: var(--gorse); }
.footer__blurb { font-size: var(--t-sm); max-width: 34ch; margin-top: var(--s-4); color: rgba(251,250,247,.6); }
.footer__bottom {
  padding-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-4);
  justify-content: space-between; font-size: var(--t-xs); color: rgba(251,250,247,.5);
}
.footer__social { display: flex; gap: var(--s-3); }
.footer__social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1px solid rgba(251,250,247,.16);
  display: grid; place-items: center;
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.footer__social a:hover { border-color: var(--gorse); background: rgba(232,179,61,.12); }
.footer__social svg { width: 17px; height: 17px; }

/* Sticky mobile call bar */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 1px;
  background: rgba(26,35,51,.14);
  border-top: 1px solid var(--paper-3);
  backdrop-filter: blur(10px);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-4); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: var(--t-sm);
  background: var(--paper); color: var(--ink);
}
.callbar a.is-primary { background: var(--gorse); }
.callbar svg { width: 18px; height: 18px; }

/* ==========================================================================
   Motion — reveal on scroll, one orchestrated moment
   ========================================================================== */

[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .about, .contact { grid-template-columns: 1fr; }
  .card-callum { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 68px 0 auto 0;
    background: var(--ink);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: var(--s-4);
    border-bottom: 1px solid rgba(251,250,247,.12);
    transform: translateY(-120%);
    transition: transform 260ms var(--ease);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: var(--s-4) var(--s-2); border-bottom: 1px solid rgba(251,250,247,.08); font-size: var(--t-base); }
  .nav a::after { display: none; }
  .burger { display: block; }
  .header__cta .btn, .header__phone { display: none; }
  .header__inner { gap: var(--s-3); }

  .symptoms__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .callbar { display: flex; }
  body { padding-bottom: 62px; }
  .hero h1 { max-width: 100%; }
}

@media (max-width: 400px) {
  .wrap, .wrap-tight { width: min(100% - 1.75rem, var(--wrap)); }
}

/* Print */
@media print {
  .header, .callbar, .hero__actions, .symptoms, .footer__social { display: none; }
  body { background: #fff; color: #000; }
  .hero, .section--ink, .footer { background: #fff !important; color: #000 !important; }
}
