/* ==========================================================================
   Shock Force Electrical — production stylesheet
   Mobile-first. Structural breakpoints at 600 / 768 / 1024 / 1280.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root{
  /* colour */
  --ink:        #15161A;   /* primary dark / near-black charcoal */
  --ink-soft:   #4B4C50;   /* secondary charcoal (matches logo grey) */
  --paper:      #F7F5F1;   /* warm paper background */
  --white:      #FFFFFF;
  --red:        #E31E24;   /* brand signal red */
  --red-deep:   #B81419;   /* hover / pressed */
  --gold:       #F0B90B;   /* brand gold — used sparingly */
  --line:       #E1DED7;   /* hairline on paper */
  --line-dark:  #2B2C30;   /* hairline on ink */
  --muted:      #77787D;   /* tertiary text on paper */
  --muted-dark: #9C9DA3;   /* tertiary text on ink */

  /* type */
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* radius — one machined edge, used everywhere */
  --r: 3px;

  /* shadow — used once, for the sticky mobile bar only */
  --shadow-up: 0 -6px 24px rgba(21,22,26,0.12);

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --fast: .2s;
  --med: .5s;

  /* layout */
  --container: 1240px;
  --edge: clamp(20px, 5vw, 56px);
  --section-pad: clamp(56px, 9vw, 128px);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
* { margin: 0; padding: 0; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 66px; /* space for sticky mobile CTA */
}
@media (min-width: 900px){ body{ padding-bottom: 0; } }

img{ max-width: 100%; display: block; }
svg{ display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
h1,h2,h3,h4{ font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }

/* visible keyboard focus, always */
:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }
a:focus-visible, button:focus-visible{ border-radius: var(--r); }

/* ---------- Type scale (fluid) ---------- */
.h-display{ font-size: clamp(2.1rem, 3.6vw + 1rem, 3.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.h1{ font-size: clamp(2.1rem, 4.4vw + 1rem, 3.6rem); }
.h2{ font-size: clamp(1.7rem, 2.6vw + 1rem, 2.6rem); }
.h3{ font-size: clamp(1.25rem, 1.2vw + 1rem, 1.6rem); }
.lede{ font-size: clamp(1.05rem, 1vw + .9rem, 1.3rem); color: var(--ink-soft); line-height: 1.5; max-width: 62ch; }
.body-l{ font-size: 1.125rem; line-height: 1.6; }
.eyebrow{ font-size: .8125rem; font-weight: 700; color: var(--red); letter-spacing: 0; }
.mono-data{ font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace; font-size: .8125rem; letter-spacing: .01em; }

/* ---------- Layout helpers ---------- */
.container{ max-width: var(--container); margin-inline: auto; padding-inline: var(--edge); }
.section{ padding-block: var(--section-pad); }
.section-tight{ padding-block: clamp(40px, 6vw, 80px); }
.bleed{ width: 100%; }
.stack > * + *{ margin-top: 1em; }
.grid{ display: grid; gap: clamp(20px, 3vw, 40px); }
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
.grid-4{ grid-template-columns: 1fr 1fr; }
@media (min-width: 640px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1024px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(3,1fr); }
  .grid-4{ grid-template-columns: repeat(4,1fr); }
}
.ink-section{ background: var(--ink); color: var(--white); }
.ink-section .muted{ color: var(--muted-dark); }
.paper-section{ background: var(--paper); }
.muted{ color: var(--muted); }
.hr{ border: 0; border-top: 1px solid var(--line); }
.ink-section .hr{ border-top: 1px solid var(--line-dark); }
.sr-only{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link{ position: absolute; left: 0; top: -80px; background: var(--ink); color: var(--white); padding: 12px 18px; z-index: 999; border-radius: 0 0 var(--r) 0; transition: top var(--fast) var(--ease); }
.skip-link:focus{ top: 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 26px; border-radius: var(--r);
  font-weight: 700; font-size: 1rem; white-space: nowrap;
  transition: transform var(--fast) var(--ease), background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.btn:active{ transform: scale(.97); }
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: var(--red-deep); }
.btn-dark{ background: var(--ink); color: var(--white); }
.btn-dark:hover{ background: #000; }
.btn-outline{ background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline:hover{ border-color: var(--ink); }
.ink-section .btn-outline{ border-color: var(--line-dark); color: var(--white); }
.ink-section .btn-outline:hover{ border-color: var(--white); }
.btn-white{ background: var(--white); color: var(--ink); }
.btn-white:hover{ background: var(--paper); }
.btn-block{ width: 100%; }
.text-link{ font-weight: 700; border-bottom: 1.5px solid var(--line); padding-bottom: 2px; transition: border-color var(--fast) var(--ease); }
.text-link:hover{ border-color: currentColor; }

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.site-header{
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,245,241,0.92); backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--fast) var(--ease);
}
.site-header.is-scrolled{ box-shadow: 0 4px 24px rgba(21,22,26,0.08); }
.site-header .container{
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand img{ height: 34px; width: auto; }
.brand-word{ font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em; line-height: 1.05; }
.brand-word small{ display: block; font-weight: 600; font-size: .58rem; color: var(--muted); letter-spacing: .08em; }
@media (min-width: 480px){ .brand img{ height: 40px; } .brand-word{ font-size: 1.15rem; } }

.nav-desktop{ display: none; }
.header-actions{ display: flex; align-items: center; gap: 10px; }
.call-pill{
  display: none; align-items: center; gap: 8px; height: 46px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: var(--r); font-weight: 700;
}
.call-pill:hover{ border-color: var(--ink); }

@media (min-width: 1240px){
  .nav-desktop{ display: flex; align-items: center; gap: 20px; margin-inline: auto; padding-left: 28px; }
  .nav-desktop a{ font-weight: 600; font-size: .9rem; position: relative; padding: 6px 0; white-space: nowrap; }
  .nav-desktop a::after{
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left; transition: transform var(--fast) var(--ease);
  }
  .nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after{ transform: scaleX(1); }
  .call-pill{ display: flex; }

  /* Services dropdown — native <details>, works with zero JS */
  .nav-dropdown{ position: relative; }
  .nav-dropdown summary{
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: .9rem; padding: 6px 0; white-space: nowrap;
  }
  .nav-dropdown summary::-webkit-details-marker{ display: none; }
  .nav-dropdown .caret{ transition: transform var(--fast) var(--ease); }
  .nav-dropdown[open] .caret{ transform: rotate(180deg); }
  .nav-dropdown-panel{
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: var(--ink); color: var(--white); border-radius: var(--r);
    padding: 8px; min-width: 210px; display: grid; gap: 1px; z-index: 210;
    box-shadow: 0 18px 44px rgba(21,22,26,.24);
    animation: navDropIn .16s var(--ease) both;
  }
  .nav-dropdown-panel a{ padding: 10px 12px; border-radius: 4px; font-size: .875rem; font-weight: 600; white-space: nowrap; }
  .nav-dropdown-panel a:hover, .nav-dropdown-panel a:focus-visible{ background: rgba(255,255,255,.08); color: var(--gold); }
  .nav-dropdown-panel .nav-dropdown-all{
    color: var(--muted-dark); border-bottom: 1px solid var(--line-dark); margin-bottom: 4px; border-radius: 0; padding-bottom: 12px;
  }
  @keyframes navDropIn{ from{ opacity: 0; transform: translateX(-50%) translateY(-6px); } to{ opacity: 1; transform: translateX(-50%) translateY(0); } }
  @media (prefers-reduced-motion: reduce){ .nav-dropdown-panel{ animation: none; } }
}

.menu-btn{
  width: 48px; height: 48px; border: 1.5px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex-shrink: 0;
}
@media (min-width: 1240px){ .menu-btn{ display: none; } }
.menu-btn span{ display: block; width: 20px; height: 2px; background: var(--ink); transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease); }
.menu-btn span:nth-child(3){ background: var(--red); width: 12px; align-self: flex-end; margin-right: 2px; }
.menu-btn[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3){ width: 20px; margin-right: 0; transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

.mobile-nav{
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 190;
  background: var(--ink); color: var(--white);
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform var(--med) var(--ease), opacity var(--med) var(--ease), visibility 0s linear var(--med);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; transition: transform var(--med) var(--ease), opacity var(--med) var(--ease); }
.mobile-nav-inner{ padding: 8px var(--edge) 40px; }
.mobile-nav a.nav-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--line-dark);
  font-weight: 700; font-size: 1.375rem; min-height: 44px;
}
.mobile-nav a.nav-row .arrow{ color: var(--muted-dark); transition: transform var(--fast) var(--ease); }
.mobile-nav a.nav-row:active .arrow{ transform: translateX(4px); }
.mobile-nav a.nav-row-secondary{ font-size: 1.05rem; font-weight: 600; color: var(--muted-dark); }
.footer-social{ display: flex; gap: 14px; margin-top: 16px; }
.footer-social a{ color: var(--muted-dark); font-size: .85rem; font-weight: 600; }
.footer-social a:hover{ color: var(--white); }
.mobile-nav-cta{ margin-top: 22px; display: grid; gap: 12px; }
.mobile-nav-cta .btn-outline{ border-color: var(--line-dark); color: var(--white); }
.mobile-nav-meta{ margin-top: 28px; color: var(--muted-dark); font-size: .9rem; line-height: 1.7; }
.mobile-nav-meta a{ color: var(--white); font-weight: 700; }
body.menu-open{ overflow: hidden; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); box-shadow: var(--shadow-up);
}
.mobile-cta-bar a{
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 60px; font-weight: 700; font-size: 1rem;
}
.mobile-cta-bar a:first-child{ background: var(--ink); color: var(--white); }
.mobile-cta-bar a:last-child{ background: var(--red); color: var(--white); }
@media (min-width: 900px){ .mobile-cta-bar{ display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  display: grid; align-items: stretch;
  grid-template-columns: 1fr;
}
/* Image column holds to ~42-44% of the hero width on desktop, per brief:
   text and CTAs must never be pushed below the first screen. */
@media (min-width: 960px){ .hero{ grid-template-columns: 1.35fr 1fr; min-height: 0; max-height: 92vh; } }

.hero-copy{ display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,5vw,52px) var(--edge); gap: 16px; }
.hero-copy .h-display{ max-width: 18ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.hero-credentials{ display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.hero-credentials .item{ font-size: .875rem; }
.hero-credentials strong{ display: block; font-size: 1rem; }

.hero-media{ position: relative; overflow: hidden; height: 280px; background: var(--ink); }
@media (min-width: 960px){ .hero-media{ height: auto; } }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-media .badge{
  position: absolute; left: 20px; bottom: 20px; background: var(--white);
  padding: 12px 16px; border-radius: var(--r); font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-media .badge .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* Sub-page hero (shorter, single column) */
.page-hero{ padding: clamp(48px,8vw,88px) 0 clamp(32px,5vw,56px); }
.page-hero .eyebrow{ display: block; margin-bottom: 14px; }
.page-hero .lede{ margin-top: 16px; }
.page-hero-actions{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ==========================================================================
   Reveal / motion utility (used by js/main.js + js/animations.js)
   The brightness dip is the "circuit switching on" feel — deliberately
   subtle, never a flash or strobe.
   ========================================================================== */
[data-rv]{ opacity: 0; transform: translateY(28px); filter: brightness(.94); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
[data-rv="in"]{ opacity: 1; transform: translateY(0); filter: brightness(1); }
[data-rv-scale]{ opacity: 0; transform: scale(.94); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-rv-scale="in"]{ opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce){
  [data-rv], [data-rv-scale]{ opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Electrical accent system (restrained) ---------- */

/* Energy line — a controlled red/gold pulse that travels across a divider
   once, when it enters view. The static line is always visible; only the
   travelling highlight is animated. */
.energy-divider-top{ position: relative; overflow: hidden; }
.energy-divider-top::before{
  content: ""; position: absolute; top: 0; left: -22%; width: 22%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--red) 70%, transparent);
  opacity: 0; pointer-events: none;
}
.energy-divider-top[data-energize="in"]::before{ animation: energyTravel 1.3s cubic-bezier(.3,.7,.4,1) .1s both; }
@keyframes energyTravel{
  0%{ left: -22%; opacity: 0; }
  14%{ opacity: 1; }
  86%{ opacity: 1; }
  100%{ left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce){ .energy-divider-top::before{ animation: none !important; opacity: 0 !important; } }

/* Warm glow — a soft radial wash behind a heading or CTA cluster. Not a
   drop-shadow on the text itself; a diffuse light source behind it. */
.glow-warm{ position: relative; isolation: isolate; overflow: hidden; }
.glow-warm::before{
  content: ""; position: absolute; inset: -18% 0 auto 0; height: 140%; z-index: -1;
  background: radial-gradient(60% 60% at 30% 30%, rgba(240,185,11,.14), transparent 72%);
  filter: blur(6px); pointer-events: none;
}

/* Button illumination — soft glow on hover/focus, never on idle state. */
.btn-primary{ position: relative; }
.btn-primary:hover, .btn-primary:focus-visible{ box-shadow: 0 0 0 1px rgba(227,30,36,.35), 0 10px 28px -8px rgba(227,30,36,.6); }
.btn-glow{ box-shadow: 0 0 0 1px rgba(227,30,36,.22), 0 6px 22px -8px rgba(227,30,36,.4); }
.btn-outline:hover, .btn-outline:focus-visible{ box-shadow: 0 0 0 1px rgba(21,22,26,.12), 0 8px 22px -10px rgba(21,22,26,.35); }
.ink-section .btn-outline:hover, .ink-section .btn-outline:focus-visible{ box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 8px 24px -8px rgba(240,185,11,.28); }
@media (prefers-reduced-motion: reduce){ .btn-primary, .btn-outline{ transition: none; } }

/* Small spark / bolt accent — used sparingly next to an eyebrow or heading */
.spark{ display: inline-flex; color: var(--gold); vertical-align: -2px; margin-right: 6px; }
.spark svg{ display: block; }

/* ==========================================================================
   Components
   ========================================================================== */

/* Section heading block */
.section-head{ max-width: 640px; margin-bottom: clamp(32px,5vw,56px); }
.section-head.split{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; flex-wrap: wrap; }
.section-head .h2{ margin-top: 10px; }

/* Service tiles (home + services index) */
.service-row{
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child{ border-bottom: 1px solid var(--line); }
.service-tile{
  display: grid; grid-template-columns: 1fr; gap: 16px;
  padding: 28px 4px; align-items: center; position: relative;
}
@media (min-width: 760px){
  .service-tile{ grid-template-columns: 90px 1fr auto; gap: 28px; padding: 34px 4px; }
}
.service-tile .num{ font-weight: 800; font-size: 1.6rem; color: var(--line); }
.service-tile .title{ display: block; font-size: clamp(1.3rem,2vw,1.75rem); font-weight: 800; margin-bottom: 6px; }
.service-tile .blurb{ color: var(--ink-soft); max-width: 52ch; }
.service-tile .go{
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; white-space: nowrap;
  transition: gap var(--fast) var(--ease);
}
.service-tile:hover .go{ gap: 14px; }
.service-tile:hover .num{ color: var(--red); }

/* Credential / trust strip */
.trust-strip{ display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px){ .trust-strip{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .trust-strip{ grid-template-columns: repeat(4,1fr); } }
.trust-item{ padding-top: 18px; border-top: 2px solid var(--red); }
.trust-item strong{ display: block; font-size: 1.05rem; margin-bottom: 4px; }
.trust-item span{ color: var(--muted-dark); font-size: .9rem; }

/* Steps (genuine sequence — numbered) */
.steps-list{ display: grid; gap: 0; }
.step-row{ display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line-dark); }
.step-row:last-child{ border-bottom: 1px solid var(--line-dark); }
.step-row .num{ font-weight: 800; font-size: 1.1rem; color: var(--red); }
.step-row h3{ margin-bottom: 6px; }
.step-row p{ color: var(--muted-dark); max-width: 56ch; }
@media (min-width: 760px){ .step-row{ grid-template-columns: 80px 1fr; } }

/* Feature / editorial photo block — a contained, professionally-cropped
   media card alongside copy. Never full-bleed: images stay proportionate
   to the content, not the dominant element on the page. */
.feature-block{ display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 900px){ .feature-block{ grid-template-columns: 1fr 1fr; gap: 56px; } }
.feature-media{ position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.feature-media img{ width: 100%; height: 100%; object-fit: cover; }
.feature-copy{ display: flex; flex-direction: column; justify-content: center; gap: 14px; }

/* Contained media card — the general-purpose replacement for full-bleed
   banner photography. Fixed aspect ratio, rounded + bordered, sits inside
   the container instead of spanning the viewport. */
.media-card{ position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); background: var(--paper); }
.media-card img{ width: 100%; height: 100%; object-fit: cover; }
.media-card.ar-21-9{ aspect-ratio: 21 / 9; }
.media-card.ar-16-9{ aspect-ratio: 16 / 9; }
.media-card.ar-4-3{ aspect-ratio: 4 / 3; }
@media (max-width: 640px){ .media-card.ar-21-9{ aspect-ratio: 4 / 3; } }

/* Gallery grid */
.gallery-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(10px,1.6vw,20px); }
@media (min-width: 700px){ .gallery-grid{ grid-template-columns: repeat(3,1fr); } }
.gallery-item{ position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--paper); }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-cap{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(21,22,26,.82), transparent);
  color: var(--white);
}
.gallery-cap .t{ font-weight: 700; font-size: .92rem; }
.gallery-cap .m{ font-size: .75rem; color: var(--muted-dark); }

/* Team */
.team-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.4vw,28px); }
@media (min-width: 700px){ .team-grid{ grid-template-columns: repeat(3,1fr); } }
.team-card img{ width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 14px; }
.team-card strong{ display: block; font-size: 1.05rem; }
.team-card span{ color: var(--muted); font-size: .9rem; }

/* Brand marquee */
.brand-marquee{ overflow: hidden; position: relative; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.brand-track{ display: flex; width: max-content; gap: clamp(48px,7vw,96px); padding-block: 28px; animation: marquee 28s linear infinite; }
.brand-marquee:hover .brand-track, .brand-marquee:focus-within .brand-track{ animation-play-state: paused; }
.brand-track li{ font-weight: 800; font-size: clamp(1.1rem,2.4vw,1.6rem); color: var(--muted-dark); white-space: nowrap; letter-spacing: -0.01em; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .brand-track{ animation: none; flex-wrap: wrap; width: 100%; justify-content: center; } }

/* FAQ accordion */
.faq{ border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px; text-align: left; font-weight: 700; font-size: 1.05rem; min-height: 44px;
}
.faq-q .plus{ flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--ink); transition: transform var(--fast) var(--ease); }
.faq-q .plus::before{ left:0; right:0; top:50%; height:2px; transform: translateY(-1px); }
.faq-q .plus::after{ top:0; bottom:0; left:50%; width:2px; transform: translateX(-1px); }
.faq-item details[open] .plus::after{ transform: translateX(-1px) rotate(90deg); opacity: 0; }
.faq-a{ padding: 0 2px 22px; color: var(--ink-soft); max-width: 62ch; }

/* Review card */
.review-grid{ display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px){ .review-grid{ grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .review-grid{ grid-template-columns: repeat(3,1fr); } }
.review-card{ padding: 26px; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }
.review-card .stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: .95rem; }
.review-empty{
  padding: 48px 28px; text-align: center; border: 1.5px dashed var(--line); border-radius: var(--r); color: var(--muted);
}

/* Area list */
.area-grid{ display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px){ .area-grid{ grid-template-columns: 1fr 1fr; } }
.area-row{ display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.area-row .num{ font-weight: 800; color: var(--red); font-size: .95rem; }

/* Contact / quote form */
.contact-grid{ display: grid; grid-template-columns: 1fr; gap: clamp(32px,5vw,64px); }
@media (min-width: 960px){ .contact-grid{ grid-template-columns: 1fr 1.1fr; } }
.field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label{ font-weight: 700; font-size: .9rem; }
.field .req{ color: var(--red); }
.field input, .field textarea, .field select{
  min-height: 52px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--white); transition: border-color var(--fast) var(--ease);
}
.field textarea{ padding: 14px 16px; min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--ink); outline: none; }
.field-row{ display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 560px){ .field-row{ grid-template-columns: 1fr 1fr; } .field-row .field{ margin-bottom: 18px; } }
.form-note{ font-size: .85rem; color: var(--muted); margin-top: 4px; }
.form-status{ margin-top: 16px; font-weight: 700; }
.form-status[data-state="ok"]{ color: #157F3C; }
.form-status[data-state="err"]{ color: var(--red); }
.contact-info-card{ padding: 28px; background: var(--ink); color: var(--white); border-radius: var(--r); }
.contact-info-card .row{ display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.contact-info-card .row:first-of-type{ border-top: 0; }
.contact-info-card strong{ display: block; }
.contact-info-card .muted{ font-size: .9rem; }

/* CTA band (repeats above footer on every page) */
.cta-band{ text-align: left; }
.cta-band .h2{ max-width: 18ch; }
.cta-band-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* Footer */
.site-footer{ background: var(--ink); color: var(--white); }
.footer-top{ display: grid; grid-template-columns: 1fr; gap: 40px; padding-block: clamp(48px,6vw,80px); }
@media (min-width: 760px){ .footer-top{ grid-template-columns: 1.3fr repeat(3, 1fr); gap: 24px; } }
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand img{ height: 34px; filter: brightness(0) invert(1); }
.footer-brand p{ color: var(--muted-dark); max-width: 34ch; }
.footer-col h4{ font-size: .82rem; letter-spacing: .02em; color: var(--muted-dark); font-weight: 700; margin-bottom: 16px; }
.footer-col ul{ display: grid; gap: 12px; }
.footer-col a:hover{ color: var(--red); }
.footer-bottom{
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  padding-block: 22px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .82rem;
}
.footer-bottom .mono-data{ color: var(--muted-dark); }

/* Pinned storytelling — simple stacked cards on mobile, sticky pinned
   media with cross-fade on desktop (see js/animations.js). */
.pin-story{ display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px){ .pin-story{ grid-template-columns: 1fr 1fr; align-items: start; column-gap: clamp(32px,4vw,64px); } }

.pin-story .panel-media{ aspect-ratio: 4/3; overflow: hidden; margin-bottom: 18px; border-radius: var(--r); }
.pin-story .panel-media img{ width: 100%; height: 100%; object-fit: cover; }

.pin-story .pin-media{ display: none; }
@media (min-width: 1024px){
  .pin-story .panel-media{ display: none; }
  .pin-story .pin-media{
    display: block; position: sticky; overflow: hidden; border-radius: var(--r);
    top: calc(var(--header-h) + 24px); height: calc(100vh - var(--header-h) - 48px);
  }
  .pin-story .pin-media img{
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transform: scale(1.04); transition: opacity .6s ease, transform .8s ease;
  }
  .pin-story .pin-media img.is-active{ opacity: 1; transform: scale(1); }
}
.pin-panel{ padding-block: clamp(28px,5vw,56px); border-top: 1px solid var(--line); }
.pin-panel:first-of-type{ border-top: 0; }
@media (min-width: 1024px){ .pin-panel{ padding-block: clamp(40px,9vh,64px); min-height: 40vh; display: flex; flex-direction: column; justify-content: center; } }
.pin-panel .num{ color: var(--red); font-weight: 800; }

/* Utility */
.mt-0{ margin-top: 0 !important; }
.center{ text-align: center; margin-inline: auto; }
.max-56{ max-width: 56ch; }
.flex-between{ display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.btn-group{ display: flex; gap: 12px; flex-wrap: wrap; }
.point-row{ display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.point-list{ margin-top: 18px; border-bottom: 1px solid var(--line); }
.dash{ color: var(--red); font-weight: 800; }
.media-cover{ width: 100%; height: 100%; object-fit: cover; }
summary.faq-q{ list-style: none; cursor: pointer; }
summary.faq-q::-webkit-details-marker{ display: none; }

/* Compact service list under the hero CTAs — first-screen service summary */
.hero-services-compact{ font-size: .85rem; color: var(--muted); margin-top: 2px; }

/* Recent-work feature cards (contained media-card + caption, replaces
   the old full-bleed alternating band) */
.feature-card{ display: block; }
.feature-card .media-card img{ transition: transform .5s var(--ease); }
.feature-card:hover .media-card img{ transform: scale(1.03); }
.feature-card .eyebrow{ display: block; margin-top: 14px; }
.feature-card h3{ margin-top: 4px; }

/* ==========================================================================
   Get a Quote flow (js/quote.js)
   Bottom sheet on a phone, centred dialog from 720px up. Uses the existing
   tokens only — same ink, paper, red, gold, 3px edge and easing as the rest
   of the site.
   ========================================================================== */
.q-overlay{ position: fixed; inset: 0; z-index: 400; display: flex; align-items: flex-end; justify-content: center; }
.q-overlay[hidden]{ display: none; }
body.q-open{ overflow: hidden; }

.q-backdrop{ position: absolute; inset: 0; background: rgba(21,22,26,.55); backdrop-filter: blur(3px); animation: qFade .25s var(--ease) both; }

.q-panel{
  position: relative; width: 100%; max-width: 680px; max-height: 92dvh;
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--white); color: var(--ink);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -12px 60px rgba(21,22,26,.34);
  animation: qUp .34s var(--ease) both;
}
@media (min-width: 720px){
  .q-overlay{ align-items: center; padding: 24px; }
  .q-panel{ border-radius: var(--r); max-height: 88vh; animation: qIn .28s var(--ease) both; }
}
@keyframes qFade{ from{ opacity: 0; } to{ opacity: 1; } }
@keyframes qUp{ from{ transform: translateY(28px); opacity: 0; } to{ transform: translateY(0); opacity: 1; } }
@keyframes qIn{ from{ transform: translateY(10px) scale(.99); opacity: 0; } to{ transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce){
  .q-backdrop, .q-panel{ animation: none !important; }
}

/* header */
.q-head{
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px var(--edge); border-bottom: 1px solid var(--line); flex-shrink: 0;
  background: var(--paper);
}
.q-head-l{ display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.q-head-l strong{ font-size: .95rem; }
.q-crumb{ font-size: .82rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.q-crumb::before{ content: "\00b7  "; }
.q-close{ width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--r); transition: background var(--fast) var(--ease); }
.q-close svg{ width: 20px; height: 20px; }
.q-close:hover{ background: rgba(21,22,26,.07); }

/* body */
.q-body{ padding: clamp(20px,4vw,32px) var(--edge) calc(24px + env(safe-area-inset-bottom)); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.q-h{ font-size: clamp(1.35rem,1.4vw + 1rem,1.75rem); font-weight: 800; letter-spacing: -0.015em; line-height: 1.15; }
.q-sub{ color: var(--ink-soft); margin-top: 8px; max-width: 52ch; }
.q-note{ font-size: .82rem; color: var(--muted); margin-top: 14px; }
.q-error{ margin-top: 14px; color: var(--red); font-weight: 700; font-size: .9rem; }

/* progress */
.q-progress{ display: flex; gap: 6px; margin-bottom: 18px; }
.q-dot{ height: 3px; flex: 1; background: var(--line); border-radius: 2px; transition: background var(--med) var(--ease); }
.q-dot.is-done{ background: var(--ink); }
.q-dot.is-now{ background: var(--red); }

/* service tiles */
.q-tiles{ display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
@media (min-width: 520px){ .q-tiles{ grid-template-columns: 1fr 1fr; } }
.q-tile{
  display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto;
  column-gap: 12px; align-items: center; text-align: left;
  padding: 14px; min-height: 62px;
  border: 1.5px solid var(--line); border-radius: var(--r); background: var(--white);
  transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.q-tile:hover{ border-color: var(--ink); transform: translateY(-1px); box-shadow: 0 8px 22px -12px rgba(21,22,26,.45); }
.q-tile.is-selected{ border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.q-tile-ico{ grid-row: 1 / span 2; display: grid; place-items: center; width: 34px; height: 34px; color: var(--red); }
.q-tile-ico svg{ width: 21px; height: 21px; }
.q-tile-t{ font-weight: 700; font-size: .96rem; line-height: 1.2; }
.q-tile-n{ font-size: .78rem; color: var(--muted); line-height: 1.3; margin-top: 2px; }
.q-tile-emergency .q-tile-ico{ color: var(--gold); }
.q-tile-emergency{ border-color: rgba(240,185,11,.55); background: rgba(240,185,11,.05); }
.q-tile-emergency:hover{ border-color: var(--gold); }

/* emergency panel */
.q-emergency-call{
  display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 18px 20px;
  background: var(--ink); color: var(--white); border-radius: var(--r);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em;
  transition: transform var(--fast) var(--ease);
}
.q-emergency-call:hover{ transform: translateY(-1px); }
.q-emergency-call svg{ width: 26px; height: 26px; flex-shrink: 0; color: var(--gold); }
.q-emergency-call small{ display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; color: var(--muted-dark); margin-bottom: 2px; }
.q-emergency-note{ margin-top: 14px; font-size: .88rem; color: var(--ink-soft); }

/* fields */
.q-field{ display: flex; flex-direction: column; gap: 7px; margin-top: 18px; }
.q-field label, .q-label{ font-weight: 700; font-size: .875rem; }
.q-field .req{ color: var(--red); }
.q-field input, .q-field textarea{
  width: 100%; min-height: 52px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r); background: var(--white);
  font-size: 16px; /* stops iOS zooming the page on focus */
  transition: border-color var(--fast) var(--ease);
}
.q-field textarea{ resize: vertical; line-height: 1.5; }
.q-field input:focus, .q-field textarea:focus{ border-color: var(--ink); outline: none; }
.q-grid{ display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 560px){ .q-grid{ grid-template-columns: 1fr 1fr; } }

/* chips */
.q-chips{ display: flex; flex-wrap: wrap; gap: 8px; }
.q-chip{
  min-height: 44px; padding: 0 16px; border: 1.5px solid var(--line); border-radius: 999px;
  font-weight: 600; font-size: .9rem;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease), color var(--fast) var(--ease);
}
.q-chip:hover{ border-color: var(--ink); }
.q-chip.is-selected{ background: var(--ink); border-color: var(--ink); color: var(--white); }

/* photos */
.q-photos{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.q-thumb{ position: relative; width: 84px; height: 84px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.q-thumb img{ width: 100%; height: 100%; object-fit: cover; }
.q-thumb-x{
  position: absolute; top: 3px; right: 3px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(21,22,26,.78); color: var(--white); font-size: 15px; line-height: 1;
  display: grid; place-items: center;
}
.q-photo-add{
  width: 84px; height: 84px; border: 1.5px dashed var(--line); border-radius: var(--r);
  display: grid; place-items: center; align-content: center; gap: 2px; cursor: pointer; color: var(--muted);
  transition: border-color var(--fast) var(--ease), color var(--fast) var(--ease);
}
.q-photo-add:hover{ border-color: var(--ink); color: var(--ink); }
.q-photo-add span{ font-size: 22px; line-height: 1; }
.q-photo-add small{ font-size: .68rem; font-weight: 600; }

/* actions */
.q-actions{ display: flex; gap: 10px; margin-top: 26px; }
.q-actions .btn{ flex: 1; }
@media (min-width: 560px){
  .q-actions{ justify-content: flex-end; }
  .q-actions .btn{ flex: 0 0 auto; min-width: 132px; }
}
.q-spin{
  width: 15px; height: 15px; border-radius: 50%; margin-right: 8px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white);
  animation: qSpin .7s linear infinite;
}
@keyframes qSpin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .q-spin{ animation-duration: 2s; } }

/* confirmation */
.q-done{ text-align: center; padding: 18px 0 6px; }
.q-tick{
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(21,127,60,.1); color: #157F3C;
  animation: qPop .4s var(--ease) both;
}
.q-tick svg{ width: 30px; height: 30px; }
@keyframes qPop{ from{ transform: scale(.7); opacity: 0; } to{ transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce){ .q-tick{ animation: none; } }
.q-done .q-sub{ margin-inline: auto; }
.q-done-actions{ display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
@media (min-width: 560px){ .q-done-actions{ flex-direction: row; justify-content: center; } }

/* ==========================================================================
   Emergency strip — visible without making the page look alarming.
   Gold left edge, not a red banner.
   ========================================================================== */
.emergency-strip{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px;
  padding: 20px 22px; border-radius: var(--r);
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold);
}
.ink-section .emergency-strip{ background: rgba(255,255,255,.04); border-color: var(--line-dark); border-left-color: var(--gold); }
.emergency-strip .t{ font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; gap: 10px; }
.emergency-strip .t svg{ width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.emergency-strip .d{ font-size: .9rem; color: var(--ink-soft); margin-top: 4px; max-width: 54ch; }
.ink-section .emergency-strip .d{ color: var(--muted-dark); }
.emergency-strip .btn{ flex-shrink: 0; }

/* ==========================================================================
   Touch ergonomics
   Footer and inline text links were 16-27px tall, which is a small target on
   a phone. These give them a comfortable tap area without changing how the
   page looks: the padding grows the hit box, the text stays put.
   ========================================================================== */
@media (pointer: coarse){
  .footer-col ul{ gap: 2px; }
  .footer-col li a{ display: inline-block; padding-block: 11px; }
  .footer-brand .brand{ padding-block: 5px; }
  .site-header .brand{ padding-block: 5px; }
  .text-link{ display: inline-block; padding-top: 10px; padding-bottom: 5px; }
  .contact-info-card .row a{ display: inline-block; padding-block: 8px; }
  .footer-bottom{ line-height: 1.7; }
}

/* ==========================================================================
   Before / after comparison slider (js/ui.js)
   Both photos sit on top of each other and the top one is clipped, so they
   stay lined up at every screen size. Driven by a real range input, so
   arrow keys work and it is announced properly by a screen reader.
   ========================================================================== */
.ba{ margin: 0; }
.ba-frame{
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--paper);
  aspect-ratio: 4 / 3; cursor: ew-resize; touch-action: pan-y;
}
.ba-img{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; user-select: none; -webkit-user-drag: none;
}
/* the "before" photo is revealed from the left up to --ba-pos */
.ba-before{ clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0); }

.ba-tag{
  position: absolute; top: 12px; z-index: 2;
  padding: 5px 10px; border-radius: var(--r);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em;
  background: rgba(21,22,26,.78); color: var(--white); pointer-events: none;
}
.ba-t-before{ left: 12px; }
.ba-t-after{ right: 12px; }

.ba-line{
  position: absolute; top: 0; bottom: 0; z-index: 2; pointer-events: none;
  left: var(--ba-pos, 50%); width: 2px; margin-left: -1px;
  background: var(--white); box-shadow: 0 0 0 1px rgba(21,22,26,.18);
}
.ba-grip{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(21,22,26,.3);
}
.ba-grip svg{ width: 20px; height: 20px; }

/* The range sits under the photo as the visible, keyboard-operable control.
   It is deliberately not hidden: a slider people can see is a slider people
   use, and it keeps the interaction obvious on a touch screen. */
.ba-range{
  -webkit-appearance: none; appearance: none;
  width: 100%; margin-top: 14px; height: 28px; background: transparent; cursor: pointer;
}
.ba-range::-webkit-slider-runnable-track{ height: 3px; background: var(--line); border-radius: 2px; }
.ba-range::-moz-range-track{ height: 3px; background: var(--line); border-radius: 2px; }
.ba-range::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none; margin-top: -10px;
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(21,22,26,.35);
}
.ba-range::-moz-range-thumb{
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(21,22,26,.35);
}
.ba-range:focus-visible{ outline: 2px solid var(--red); outline-offset: 4px; border-radius: var(--r); }

.ba-cap{ margin-top: 12px; }
.ba-cap strong{ display: block; font-size: 1.05rem; font-weight: 800; }
.ba-cap span{ font-size: .85rem; color: var(--muted); }

.ba-grid{ display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,44px); }
@media (min-width: 900px){ .ba-grid{ grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Reviews carousel (js/ui.js)
   Native scroll-snap row: it already swipes before any script runs.
   ========================================================================== */
.rev-track{
  display: grid; grid-auto-flow: column; grid-auto-columns: 85%;
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.rev-track::-webkit-scrollbar{ display: none; }
@media (min-width: 700px){ .rev-track{ grid-auto-columns: calc(50% - 10px); } }
@media (min-width: 1024px){ .rev-track{ grid-auto-columns: calc(33.333% - 14px); } }

.rev-card{
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white);
}
.rev-stars{ color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.rev-card blockquote{ font-size: 1rem; line-height: 1.55; color: var(--ink); }
.rev-who{ margin-top: auto; padding-top: 6px; border-top: 1px solid var(--line); }
.rev-who strong{ display: block; font-size: .95rem; }
.rev-who span{ font-size: .82rem; color: var(--muted); }

.rev-nav{ display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.rev-arrow{
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1.5px solid var(--line); border-radius: var(--r);
  display: grid; place-items: center;
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.rev-arrow svg{ width: 18px; height: 18px; }
.rev-arrow:hover:not(:disabled){ border-color: var(--ink); }
.rev-arrow:disabled{ opacity: .3; cursor: default; }
.rev-dots{ display: flex; gap: 7px; margin-inline: auto; }
.rev-dot{
  width: 7px; height: 7px; border-radius: 50%; background: var(--line);
  transition: background var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.rev-dot.is-active{ background: var(--red); transform: scale(1.35); }
@media (pointer: coarse){
  /* keep the visual dot small but give it a real tap area */
  .rev-dot{ position: relative; }
  .rev-dot::after{ content: ""; position: absolute; inset: -16px; }
}

/* Placeholder notice — delete the element in the HTML once the reviews
   on the page are genuine. */
.sample-notice{
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; margin-bottom: 22px;
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--r); background: rgba(240,185,11,.07);
  font-size: .88rem; color: var(--ink-soft);
}
.sample-notice strong{ color: var(--ink); }
.rev-card .rev-sample{
  align-self: flex-start; font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  padding: 3px 7px; border-radius: 2px; background: var(--gold); color: var(--ink);
}

/* ---------- Booking: day strip and time slots (js/quote.js) ---------- */
.q-days{
  flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; margin-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.q-days::-webkit-scrollbar{ display: none; }
.q-days .q-chip{ flex: 0 0 auto; }
.q-slots{ margin-top: 10px; }
.q-slot{ min-width: 92px; justify-content: center; }
.q-chips.q-slots{ max-height: 168px; overflow-y: auto; }
