/* ═══════════════════════════════════════════════════════════════
   Best Drive Sea Point — mobile tyre fitment
   Palette taken from the client's own livery: BestDrive orange,
   signage charcoal, wordmark amber. Warm off-white, not grey.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces — base → elevated → floating */
  --ink:       #17181A;
  --ink-2:     #202225;
  --ink-3:     #2C2F34;
  --ink-4:     #3A3E45;

  --paper:     #FFFFFF;
  --off:       #F7F5F2;
  --off-2:     #EFECE6;
  --line:      #E2DDD4;
  --line-soft: rgba(255,255,255,.12);

  --text:      #17181A;
  --text-2:    #5C6068;
  --text-3:    #8B9099;
  --on-dark:   #F2EFEA;
  --on-dark-2: #A9AEB6;

  /* Brand */
  --o:         #F47B20;
  --o-d:       #D2620E;
  --o-l:       #FF9440;
  --o-tint:    #FFF2E6;
  --amber:     #FFC423;
  --wa:        #1FAF54;
  --wa-d:      #17903F;

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Source Sans 3', system-ui, -apple-system, sans-serif;

  --t-hero: clamp(2.5rem, 1.3rem + 5.4vw, 5.5rem);
  --t-h1:   clamp(2.15rem, 1.4rem + 3.4vw, 4.2rem);
  --t-h2:   clamp(1.75rem, 1.25rem + 2.2vw, 3rem);
  --t-h3:   clamp(1.08rem, 1rem + .35vw, 1.3rem);
  --t-body: clamp(1rem, .96rem + .18vw, 1.09rem);
  --t-sm:   .9rem;
  --t-xs:   .78rem;

  /* Rhythm — deliberate steps, not random Tailwind numbers */
  --gut:     clamp(1.25rem, .8rem + 2vw, 2.5rem);
  --sec:     clamp(3.75rem, 2.4rem + 5vw, 7.5rem);
  --stack:   clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
  --wrap:    1220px;

  --r:    4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --ease:  cubic-bezier(.22,1,.36,1);
  --fast:  160ms;
  --norm:  320ms;

  /* Layered, colour-tinted shadows */
  --sh-1: 0 1px 2px rgba(23,24,26,.05), 0 4px 12px -4px rgba(23,24,26,.10);
  --sh-2: 0 2px 4px rgba(23,24,26,.05), 0 18px 40px -18px rgba(23,24,26,.22);
  --sh-3: 0 4px 8px rgba(23,24,26,.06), 0 38px 80px -30px rgba(23,24,26,.34);
  --sh-o: 0 2px 6px rgba(210,98,14,.20), 0 20px 44px -18px rgba(210,98,14,.44);
}

*, *::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(--text);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -.015em; line-height: 1.25; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--on-dark);
  padding: .75rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .78rem 1.35rem;
  border: 1.5px solid transparent; border-radius: var(--r-md);
  font-family: var(--display); font-size: .93rem; font-weight: 700;
  letter-spacing: -.008em; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform var(--fast) var(--ease),
              box-shadow var(--norm) var(--ease),
              background-color var(--fast) var(--ease),
              border-color var(--fast) var(--ease),
              color var(--fast) var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn.lg { padding: .95rem 1.7rem; font-size: 1rem; }
.btn.full { width: 100%; }
.btn:active { transform: translateY(1px) scale(.995); }

.btn-o { background: var(--o); color: #fff; box-shadow: var(--sh-o); }
.btn-o:hover { background: var(--o-d); transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 14px 30px -14px rgba(31,175,84,.6); }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--on-dark); box-shadow: var(--sh-2); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn-ghost:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
.sec .btn-ghost:hover, .wrap > .btn-ghost:hover { background: var(--off-2); }

/* ── Header ──────────────────────────────────────────────────── */
.bar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.bar-in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  border-radius: var(--r-md);
  background: var(--ink); color: var(--o);
}
.mark svg { width: 24px; height: 12px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-txt strong {
  font-family: var(--display); font-weight: 800; font-size: 1.16rem;
  letter-spacing: -.035em; font-style: italic; color: var(--ink);
}
.brand-txt strong span { color: var(--o); }
.brand-txt em {
  font-style: normal; font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
}

.links { display: none; align-items: center; gap: .15rem; margin-left: auto; }
.links > a, .sub-top {
  display: block; padding: .5rem .7rem; border-radius: var(--r);
  font-size: .92rem; font-weight: 600; color: var(--text-2); text-decoration: none;
  transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.links > a:hover, .sub-top:hover { color: var(--ink); background: var(--off-2); }
.links > a.on, .sub-top.on { color: var(--ink); }
.links > a.on::after, .sub-top.on::after {
  content: ''; display: block; height: 2px; margin-top: 3px;
  background: var(--o); border-radius: 2px;
}

.sub { position: relative; }
.sub-top { display: flex; align-items: center; gap: .35rem; }
.caret {
  width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform var(--fast) var(--ease);
}
.sub-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translate(-50%, 6px);
  min-width: 220px; padding: .5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease), visibility var(--fast);
}
.sub:hover .sub-menu, .sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.sub:hover .caret, .sub:focus-within .caret { transform: rotate(225deg) translate(-1px,-1px); }
.sub-menu a {
  display: block; padding: .55rem .75rem; border-radius: var(--r);
  font-size: .9rem; font-weight: 600; color: var(--text-2); text-decoration: none;
  transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.sub-menu a:hover { color: var(--ink); background: var(--o-tint); }

.bar-cta { display: none; align-items: center; gap: .7rem; }
.tel {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.tel svg { width: 17px; height: 17px; color: var(--o); }
.tel:hover { color: var(--o-d); }

.burger {
  margin-left: auto; display: grid; gap: 5px; place-content: center;
  width: 44px; height: 44px; padding: 0;
  background: var(--off-2); border: 0; border-radius: var(--r-md); cursor: pointer;
}
.burger span {
  display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sheet {
  position: sticky; top: 72px; z-index: 55;
  display: grid; gap: .1rem;
  padding: 1rem var(--gut) 1.6rem;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-2);
}
.sheet[hidden] { display: none; }
.sheet a {
  padding: .62rem .25rem; font-weight: 600; color: var(--text-2); text-decoration: none;
  border-bottom: 1px solid var(--off-2);
}
.sheet a:hover { color: var(--o-d); }
.sheet-h {
  margin: 1rem 0 .1rem; font-family: var(--display); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-3);
}
.sheet .sheet-tel {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  margin-top: 1.1rem; padding: .85rem 1rem; border: 0; border-radius: var(--r-md);
  background: var(--ink); color: var(--on-dark); font-family: var(--display); font-weight: 700;
}
.sheet .sheet-tel svg { width: 18px; height: 18px; color: var(--o); }
.sheet .sheet-tel:hover { color: var(--on-dark); background: var(--ink-3); }

/* ── Eyebrows & section heads ────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0 0 .9rem;
  font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--o-d);
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; background: var(--o); border-radius: 2px;
}
.eyebrow.on-dark { color: var(--o-l); }

.sec { padding-block: var(--sec); }
/* Two plain sections in a row would otherwise stack a double gap between them. */
.sec + .sec { padding-top: 0; }
.sec-head { max-width: 44rem; margin-bottom: var(--stack); }
.sec-head p:not(.eyebrow) { color: var(--text-2); font-size: 1.05rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-more { margin-top: var(--stack); }

.alt-sec { padding-block: var(--sec); background: var(--off); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: flex-end;
  min-height: min(84svh, 760px);
  padding-block: clamp(4rem, 3rem + 8vw, 8rem) clamp(2.75rem, 2rem + 4vw, 5rem);
  background: var(--ink); color: var(--on-dark);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 52%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(23,24,26,.95) 6%, rgba(23,24,26,.76) 42%, rgba(23,24,26,.46) 100%),
    linear-gradient(to right, rgba(23,24,26,.80), rgba(23,24,26,.16) 56%, transparent 80%),
    radial-gradient(120% 90% at 12% 100%, rgba(244,123,32,.26), transparent 62%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-in { position: relative; }
.hero h1 { font-size: var(--t-hero); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--o-l); display: inline-block; }
.hero-sub {
  max-width: 46ch; margin-top: 1.1rem;
  font-size: clamp(1.02rem, .95rem + .4vw, 1.22rem); color: var(--on-dark-2);
}
.hero-act { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }

/* The header phone number is hidden below 1080px, so the hero carries the
   landline itself rather than leaving phones with no visible number. */
.hero-call { margin-top: 1.1rem; font-size: var(--t-sm); color: var(--on-dark-2); }
.hero-call a {
  color: #fff; font-weight: 600; text-decoration: underline;
  text-decoration-color: var(--o); text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.hero-call a:hover { color: var(--o-l); }

.chips {
  display: flex; flex-wrap: wrap; gap: .5rem .55rem;
  margin-top: 2.1rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}
.chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .8rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; color: var(--on-dark);
}
.chips svg { width: 16px; height: 16px; color: var(--o-l); }

/* ── Page head (inner pages) ─────────────────────────────────── */
.pagehead {
  position: relative; isolation: isolate;
  padding-block: clamp(2.75rem, 2rem + 4vw, 5rem) clamp(3rem, 2.2rem + 4vw, 5.5rem);
  background: var(--ink); color: var(--on-dark);
  overflow: hidden;
}
.pagehead::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  /* Generated asphalt grain under the brand gradients. One texture carries all
     eight inner pages, which is where this site was thinnest. */
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(244,123,32,.26), transparent 58%),
    radial-gradient(90% 100% at 0% 100%, rgba(255,196,35,.10), transparent 60%),
    linear-gradient(rgba(23,24,26,.58), rgba(23,24,26,.74)),
    url("/tex-asphalt.webp") center / cover no-repeat var(--ink);
}
.pagehead h1 { max-width: 17ch; }
.pagehead-sub { max-width: 48ch; margin-top: 1rem; color: var(--on-dark-2); font-size: 1.08rem; }
.pagehead .hero-act { margin-top: 1.7rem; }

.crumb {
  margin: 0 0 1.4rem; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .04em; color: var(--on-dark-2);
}
.crumb a { color: var(--on-dark-2); text-decoration: none; }
.crumb a:hover { color: var(--o-l); }
.crumb span[aria-hidden] { margin-inline: .3rem; opacity: .5; }

/* ── Size picker ─────────────────────────────────────────────── */
.picker { padding-block: var(--sec); background: var(--off); }
.picker-dark { background: var(--ink); color: var(--on-dark); }
.picker-dark .sec-head p:not(.eyebrow) { color: var(--on-dark-2); }
.picker-in { display: grid; gap: var(--stack); }
@media (min-width: 900px) {
  .picker-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(2rem, 4vw, 4rem); align-items: start; }
  .picker-in .sec-head { margin-bottom: 0; position: sticky; top: 96px; }
}
.picker h2 em { font-style: normal; color: var(--o-d); }
.picker-dark h2 em { color: var(--o-l); }

.picker-box {
  padding: clamp(1.25rem, 1rem + 1.4vw, 2rem);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-3);
  min-width: 0;
}
.picker-dark .picker-box { background: var(--ink-2); border-color: rgba(255,255,255,.10); color: var(--on-dark); }

.picker-lbl {
  display: flex; align-items: center; gap: .55rem;
  margin: 0 0 .8rem;
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-2);
}
.picker-dark .picker-lbl { color: var(--on-dark-2); }
.picker-lbl span {
  display: grid; place-items: center; width: 22px; height: 22px; flex: none;
  border-radius: 50%; background: var(--o); color: #fff; font-size: .72rem;
}
.picker-lbl + .chip-grid + .picker-lbl { margin-top: 1.6rem; }

.chip-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip-btn {
  padding: .55rem .85rem;
  background: var(--off); border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--display); font-size: .88rem; font-weight: 700; color: var(--text-2);
  cursor: pointer;
  transition: transform var(--fast) var(--ease), border-color var(--fast) var(--ease),
              background-color var(--fast) var(--ease), color var(--fast) var(--ease);
}
.picker-dark .chip-btn { background: var(--ink-3); border-color: rgba(255,255,255,.12); color: var(--on-dark-2); }
.chip-btn:hover { border-color: var(--o); color: var(--ink); transform: translateY(-1px); }
.picker-dark .chip-btn:hover { color: var(--on-dark); }
.chip-btn.on {
  background: var(--o); border-color: var(--o); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(210,98,14,.7);
}

.picker-out {
  display: grid; gap: 1rem; margin-top: 1.7rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.picker-dark .picker-out { border-top-color: rgba(255,255,255,.12); }
@media (min-width: 620px) { .picker-out { grid-template-columns: minmax(0,1fr) auto; align-items: center; } }
.picker-msg { margin: 0; font-size: var(--t-sm); color: var(--text-2); min-width: 0; }
.picker-dark .picker-msg { color: var(--on-dark-2); }
.picker-msg b { color: var(--o-d); }
.picker-dark .picker-msg b { color: var(--o-l); }
.picker-note { margin: 1rem 0 0; font-size: var(--t-xs); color: var(--text-3); }

/* ── Offer: one lead panel + a ruled index ───────────────────
   Replaces the five-card grid. Five equal boxes gave five equal
   weights, when mobile fitment is the whole proposition. */
.offer { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.75rem); }
@media (min-width: 900px) {
  .offer { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: stretch; }
}
.offer > * { min-width: 0; }

.offer-lead {
  position: relative; isolation: isolate; display: flex; align-items: flex-end;
  min-height: clamp(360px, 46vw, 520px);
  padding: clamp(1.4rem, 1.1rem + 1.4vw, 2.25rem);
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--ink); color: var(--on-dark); text-decoration: none;
  box-shadow: var(--sh-3);
  transition: transform var(--norm) var(--ease), box-shadow var(--norm) var(--ease);
}
.offer-lead-media { position: absolute; inset: 0; z-index: -2; }
.offer-lead-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  transition: transform 700ms var(--ease);
}
.offer-lead::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(23,24,26,.96) 12%, rgba(23,24,26,.62) 52%, rgba(23,24,26,.28) 100%),
    radial-gradient(90% 70% at 0% 100%, rgba(244,123,32,.34), transparent 62%);
}
.offer-lead:hover { transform: translateY(-3px); box-shadow: var(--sh-3), 0 0 0 1.5px var(--o); }
.offer-lead:hover .offer-lead-media img { transform: scale(1.04); }
.offer-lead-body { display: flex; flex-direction: column; min-width: 0; }

.offer-n {
  font-family: var(--display); font-weight: 800; font-size: .84rem;
  letter-spacing: .06em; color: var(--o); flex: none;
}
.offer-kicker {
  margin-top: .35rem; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-2);
}
.offer-lead-name {
  margin-top: .5rem;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
  line-height: 1.02; letter-spacing: -.035em;
}
.offer-lead-blurb {
  margin-top: .7rem; max-width: 38ch;
  font-size: var(--t-sm); color: var(--on-dark-2);
}
.offer-go {
  margin-top: 1.2rem;
  font-family: var(--display); font-size: .9rem; font-weight: 700; color: var(--o-l);
}
.offer-lead:hover .offer-go span { display: inline-block; transform: translateX(4px); transition: transform var(--fast) var(--ease); }

.offer-list { border-top: 1px solid var(--line); }
.offer-list li { border-bottom: 1px solid var(--line); }
.offer-list a {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .9rem; align-items: baseline;
  padding: clamp(1.05rem, .9rem + .6vw, 1.5rem) .25rem;
  text-decoration: none; color: inherit;
  transition: padding-left var(--norm) var(--ease), background-color var(--fast) var(--ease);
}
.offer-list a:hover { padding-left: .9rem; background: var(--o-tint); }
.offer-list .offer-n { color: var(--text-3); transition: color var(--fast) var(--ease); }
.offer-list a:hover .offer-n { color: var(--o-d); }
.offer-txt { display: block; min-width: 0; }
.offer-name {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.6rem);
  line-height: 1.12; letter-spacing: -.025em;
}
.offer-blurb {
  display: block; margin-top: .3rem; max-width: 52ch;
  font-size: var(--t-sm); color: var(--text-2);
}
.offer-arrow {
  font-family: var(--display); font-size: 1.15rem; color: var(--text-3);
  transition: transform var(--norm) var(--ease), color var(--fast) var(--ease);
}
.offer-list a:hover .offer-arrow { transform: translateX(5px); color: var(--o); }

/* On a service page the same index runs the full width. */
.offer-list.wide .offer-blurb { max-width: 68ch; }

/* ── Strip ───────────────────────────────────────────────────── */
.strip { background: var(--ink); color: var(--on-dark); }
.strip-in {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  padding-block: clamp(2rem, 1.4rem + 2vw, 3.25rem);
}
.strip-in > div { min-width: 0; padding-block: .5rem; }
.strip-in strong {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem); letter-spacing: -.03em; color: var(--o-l);
}
.strip-in span { display: block; margin-top: .25rem; font-size: var(--t-sm); color: var(--on-dark-2); }

/* ── Split ───────────────────────────────────────────────────── */
.split { display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3.75rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.split > * { min-width: 0; }
.split-media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-3);
}
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,24,26,.34), transparent 55%);
  pointer-events: none;
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 880px) { .split-flip .split-media { order: 2; } }

.ticks { display: grid; gap: .9rem; margin: 1.4rem 0; }
.ticks li { display: flex; gap: .75rem; font-size: var(--t-sm); color: var(--text-2); }
.ticks strong { color: var(--text); }
.ticks svg {
  width: 20px; height: 20px; flex: none; margin-top: 2px;
  padding: 2px; border-radius: 50%; background: var(--o-tint); color: var(--o-d);
}
.ticks + .btn, .ticks + p + .btn { margin-top: .5rem; }

.area-cols { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
@media (min-width: 560px) { .area-cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); } }
.area-cols > div { min-width: 0; }
.area-cols h3 {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--o-d); margin-bottom: .3rem;
}
.area-cols p { font-size: var(--t-sm); color: var(--text-2); }

/* ── Dark section / steps ────────────────────────────────────── */
.dark-sec {
  position: relative; isolation: isolate;
  padding-block: var(--sec);
  background: var(--ink); color: var(--on-dark);
}
.dark-sec::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  /* Generated rubber-tread texture, flipped so the amber raking light falls
     right of the left-aligned heading. Heavily scrimmed — it is depth, not a
     photograph, and nothing in it is claimed to be the client's own kit. */
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(244,123,32,.16), transparent 60%),
    /* Extra weight over the top third only, where the heading sits. Keeps the
       tread at full strength across the cards while holding the H2 clear of
       the amber highlight. */
    linear-gradient(to bottom, rgba(23,24,26,.50) 0%, rgba(23,24,26,.14) 40%, transparent 58%),
    linear-gradient(rgba(23,24,26,.55), rgba(23,24,26,.70)),
    url("/tex-tread.webp") center / cover no-repeat var(--ink);
}
.dark-sec .sec-head p:not(.eyebrow) { color: var(--on-dark-2); }

.steps { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.steps li {
  min-width: 0; padding: 1.5rem 1.3rem;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg);
}
.step-n {
  display: block; margin-bottom: .8rem;
  font-family: var(--display); font-size: 1.5rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--o);
}
.steps h3 { margin-bottom: .4rem; }
.steps p { font-size: var(--t-sm); color: var(--on-dark-2); }

/* ── Scope ───────────────────────────────────────────────────── */
.scope { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.scope-i { display: flex; gap: .9rem; min-width: 0; }
.scope-ico {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none; margin-top: 2px;
  border-radius: 50%; background: var(--o); color: #fff;
}
.scope-ico svg { width: 16px; height: 16px; }
.scope-i h3 { margin-bottom: .3rem; }
.scope-i p { font-size: var(--t-sm); color: var(--text-2); }

/* ── Size + brand strips ─────────────────────────────────────── */
.size-row, .brand-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.size-row li a, .brand-row li {
  display: inline-block; padding: .55rem 1rem;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--display); font-size: .92rem; font-weight: 700; color: var(--text);
  text-decoration: none;
  transition: transform var(--fast) var(--ease), border-color var(--fast) var(--ease), color var(--fast) var(--ease);
}
.size-row li a:hover { border-color: var(--o); color: var(--o-d); transform: translateY(-2px); }
.brand-row li { background: var(--off); }
.size-row .more a, .brand-row .more {
  background: transparent; border-style: dashed; color: var(--text-3);
}

/* ── Size cards ──────────────────────────────────────────────── */
.size-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.size-card {
  display: flex; flex-direction: column; min-width: 0;
  padding: 1.4rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform var(--norm) var(--ease), box-shadow var(--norm) var(--ease), border-color var(--norm) var(--ease);
}
.size-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--o); }
.size-ico, .brand-ico {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: .9rem;
  border-radius: var(--r-md); background: var(--o-tint); color: var(--o-d);
}
.size-ico svg, .brand-ico svg { width: 22px; height: 22px; }
.size-card h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.size-card p, .brand-card p { font-size: var(--t-sm); color: var(--text-2); }
.size-card-alt, .brand-card-alt { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.size-card-alt p, .brand-card-alt p { color: var(--on-dark-2); }
.size-card-alt .size-ico, .brand-card-alt .brand-ico { background: rgba(244,123,32,.18); color: var(--o-l); }

.size-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: auto; padding-top: 1.1rem;
  font-family: var(--display); font-size: .85rem; font-weight: 700; color: var(--o-d);
  text-decoration: none;
}
.size-cta svg { width: 17px; height: 17px; }
.size-cta:hover { color: var(--o); text-decoration: underline; text-underline-offset: 3px; }
.size-card-alt .size-cta, .brand-card-alt .size-cta { color: var(--o-l); }

.brand-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
@media (min-width: 900px) {
  .brand-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* The open-ended "and more" card closes the row rather than dangling. */
  .brand-card-alt { grid-column: 1 / -1; }
}
.brand-card {
  display: flex; flex-direction: column; min-width: 0;
  padding: clamp(1.4rem, 1.2rem + .8vw, 2rem);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform var(--norm) var(--ease), box-shadow var(--norm) var(--ease), border-color var(--norm) var(--ease);
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--o); }
.brand-card h2 { font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem); margin-bottom: .45rem; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gal { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.gal figure { margin: 0; min-width: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.gal img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 480ms var(--ease);
}
.gal figure:hover img { transform: scale(1.035); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { max-width: 54rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.15rem .25rem; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.02rem; font-weight: 700; letter-spacing: -.015em;
  transition: color var(--fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--o-d); }
.chev {
  position: relative; width: 18px; height: 18px; flex: none; margin-top: 3px;
  transition: transform var(--norm) var(--ease);
}
.chev::before, .chev::after {
  content: ''; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--o); border-radius: 2px;
}
.chev::before { width: 14px; height: 2px; }
.chev::after  { width: 2px; height: 14px; transition: opacity var(--fast) var(--ease); }
.faq details[open] .chev::after { opacity: 0; }
.ans { padding: 0 .25rem 1.3rem; max-width: 62ch; font-size: var(--t-sm); color: var(--text-2); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); align-items: start; } }
.h-sm { font-size: clamp(1.35rem, 1.2rem + .6vw, 1.7rem); }

.contact-list { display: grid; gap: 1.1rem; margin-bottom: 1.5rem; }
.contact-list li { display: flex; gap: .85rem; min-width: 0; }
.contact-list svg {
  width: 34px; height: 34px; flex: none; padding: 8px;
  border-radius: var(--r-md); background: var(--o-tint); color: var(--o-d);
}
.contact-list span:first-child {
  display: block; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-3);
}
.contact-list a, .contact-list .plain {
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  color: var(--text); text-decoration: none; overflow-wrap: anywhere;
}
.contact-list .plain { font-family: var(--body); font-weight: 400; font-size: var(--t-sm); color: var(--text-2); }
.contact-list a:hover { color: var(--o-d); }

.contact-social { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.contact-social a {
  display: inline-block; padding: .45rem .9rem;
  background: var(--off); border: 1px solid var(--line); border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; color: var(--text-2); text-decoration: none;
}
.contact-social a:hover { border-color: var(--o); color: var(--o-d); }

.contact-note {
  padding: 1.15rem 1.25rem;
  background: var(--o-tint); border-left: 3px solid var(--o); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--t-sm); color: var(--text-2);
}

.form {
  padding: clamp(1.4rem, 1.2rem + 1vw, 2.1rem);
  background: var(--off); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
}
.f-row { display: grid; gap: 1rem; }
@media (min-width: 520px) { .f-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.f { margin-bottom: 1rem; min-width: 0; }
.f-row .f { margin-bottom: 0; }
.f-row { margin-bottom: 1rem; }
.f label {
  display: block; margin-bottom: .35rem;
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-2);
}
.opt { text-transform: none; letter-spacing: 0; color: var(--text-3); font-weight: 400; }
.f input, .f select, .f textarea {
  width: 100%; padding: .72rem .85rem;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--body); font-size: 1rem; color: var(--text);
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.f textarea { min-height: 110px; resize: vertical; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; border-color: var(--o); box-shadow: 0 0 0 3px rgba(244,123,32,.18);
}
.f-err { margin: 0 0 .8rem; font-size: var(--t-sm); font-weight: 600; color: #C0392B; }
.f-note { margin: .85rem 0 0; font-size: var(--t-xs); color: var(--text-3); }

.area-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.area-card {
  min-width: 0; padding: 1.4rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.area-card h3 {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--o-d); margin-bottom: .6rem;
}
.area-card li {
  padding: .3rem 0; font-size: var(--t-sm); color: var(--text-2);
  border-bottom: 1px solid var(--off-2);
}
.area-card li:last-child { border-bottom: 0; }

/* ── Band CTA ────────────────────────────────────────────────── */
.band {
  position: relative; isolation: isolate;
  background: var(--o); color: #fff; overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(255,196,35,.5), transparent 58%),
    radial-gradient(70% 100% at 0% 100%, rgba(23,24,26,.28), transparent 62%);
}
.band-in {
  display: grid; gap: var(--stack); align-items: center;
  padding-block: clamp(2.75rem, 2rem + 3.5vw, 5rem);
}
@media (min-width: 880px) { .band-in { grid-template-columns: minmax(0, 1.35fr) minmax(0, auto); } }
.band-in > * { min-width: 0; }
.band .eyebrow { color: #fff; }
.band .eyebrow::before { background: #fff; }
.band h2 { max-width: 22ch; }
.band-sub { max-width: 52ch; margin-top: .75rem; color: rgba(255,255,255,.9); }
.band-act { display: flex; flex-wrap: wrap; gap: .75rem; }
.band .btn-o { background: var(--ink); color: #fff; box-shadow: var(--sh-3); }
.band .btn-o:hover { background: var(--ink-3); }
.band .btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.band .btn-ghost:hover { background: rgba(255,255,255,.16); }

/* ── Footer ──────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--on-dark-2); }
.foot-in {
  display: grid; gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem);
}
.foot-in > * { min-width: 0; }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 900px) { .foot-brand { grid-column: span 1; } }
.foot .brand-txt strong { color: var(--on-dark); }
.foot .brand-txt em { color: var(--text-3); }
.foot .mark { background: var(--ink-3); }
.foot-blurb { margin-top: 1rem; font-size: var(--t-sm); max-width: 40ch; }
.foot-social { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.foot-social a {
  display: inline-block; padding: .35rem .8rem;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  font-size: var(--t-xs); font-weight: 600; text-decoration: none; color: var(--on-dark-2);
}
.foot-social a:hover { border-color: var(--o); color: var(--o-l); }
.foot h3 {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-dark); margin-bottom: .8rem;
}
.foot h3.mt { margin-top: 1.6rem; }
.foot li { margin-bottom: .45rem; font-size: var(--t-sm); }
.foot li a { text-decoration: none; color: var(--on-dark-2); }
.foot li a:hover { color: var(--o-l); }
.foot-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.foot-contact .who { font-style: normal; font-size: var(--t-xs); color: var(--text-3); }
.foot-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--o); }
.foot-areas li { color: var(--text-3); }
.foot-base {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--t-xs); color: var(--text-3);
}
.foot-base p { margin: 0; }
.foot-credit a { text-decoration: none; opacity: .85; transition: opacity var(--fast) var(--ease); }
.foot-credit a:hover, .foot-credit a:focus-visible { opacity: 1; text-decoration: underline; }
/* The WhatsApp FAB is fixed to the viewport corner and lands on top of this
   row once you scroll to the bottom. Reserve its height so the last line —
   including the credit link — is never sitting underneath it. */
@media (min-width: 700px) { .foot-base { padding-bottom: 5.5rem; } }

/* ── Floating WhatsApp ───────────────────────────────────────── */
.fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem; border-radius: 999px;
  background: var(--wa); color: #fff; text-decoration: none;
  box-shadow: 0 4px 10px rgba(23,24,26,.2), 0 18px 40px -14px rgba(31,175,84,.75);
  transition: transform var(--norm) var(--ease), background-color var(--fast) var(--ease);
}
.fab svg { width: 26px; height: 26px; flex: none; }
.fab span { display: none; font-family: var(--display); font-weight: 700; font-size: .9rem; padding-right: .35rem; }
.fab:hover { transform: translateY(-3px); background: var(--wa-d); }
@media (min-width: 700px) {
  .fab { right: 1.5rem; bottom: 1.5rem; padding: .8rem 1.1rem .8rem .9rem; }
  .fab span { display: inline; }
}

/* ── Reveal ──────────────────────────────────────────────────── */
.js-on .rise { opacity: 0; transform: translateY(18px); }
.js-on .rise.in {
  opacity: 1; transform: none;
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.js-on .rise.d1.in { transition-delay: 80ms; }
.js-on .rise.d2.in { transition-delay: 160ms; }
.js-on .rise.d3.in { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .js-on .rise { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Desktop nav switch ──────────────────────────────────────── */
@media (min-width: 1080px) {
  .links, .bar-cta { display: flex; }
  .burger { display: none; }
  .sheet { display: none !important; }
}
