/* ==========================================================================
   Professional Beverage Systems — v2
   Brand: real PBS red + white + ink. Whitespace-first, imagery-led, minimal copy.
   Type: Plus Jakarta Sans (display) + Inter (body).
   ========================================================================== */

:root {
  /* Brand */
  --red:       #e51e16;   /* primary brand red (from live logo) */
  --red-600:   #c4120c;   /* deep red — hovers, solid fills */
  --red-700:   #a10f0a;
  --red-50:    #fdebe9;   /* tint */

  /* Neutrals (warm) */
  --ink:       #16181d;   /* near-black, headings + dark sections */
  --ink-2:     #1e2129;
  --slate-700: #3b414c;   /* body text */
  --slate-500: #6c7280;   /* muted */
  --slate-400: #969ca6;
  --line:      #ebe8e2;   /* warm hairline */
  --paper:     #fbfaf8;   /* warm off-white page */
  --paper-2:   #f4f1ec;
  --white:     #ffffff;

  /* Type */
  --display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius */
  --r:    16px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;

  /* Shadow (soft, warm) */
  --sh-sm: 0 2px 8px rgba(22,24,29,.05);
  --sh-md: 0 18px 40px -20px rgba(22,24,29,.22);
  --sh-lg: 0 40px 80px -30px rgba(22,24,29,.30);
  --sh-red: 0 18px 38px -14px rgba(229,30,22,.45);

  --maxw: 1200px;
  --gutter: clamp(22px, 5vw, 60px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms!important; transition-duration:.001ms!important; } }

body {
  font-family: var(--body);
  color: var(--slate-700);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(15.5px, 1.05vw, 17.5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--display); color: var(--ink); line-height: 1.04; letter-spacing: -.025em; font-weight: 800; }
a { color: var(--red-600); text-decoration: none; transition: color .2s var(--ease); }
img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

/* ---- Layout primitives ---- */
[hidden] { display: none !important; }

.skip { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 12px; font-family: var(--display); font-weight: 700; font-size: .9rem; transition: top .2s var(--ease); }
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: 1340px; }
.section { padding-block: clamp(72px, 11vw, 150px); }
.section--sm { padding-block: clamp(48px, 7vw, 90px); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-600);
}
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.kicker--center::before { display: none; }

.h-xl { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; letter-spacing: -.035em; }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.red { color: var(--red); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--slate-500); line-height: 1.55; }
.muted { color: var(--slate-500); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--red { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn--red:hover { background: var(--red-600); color: #fff; transform: translateY(-2px); box-shadow: 0 24px 46px -14px rgba(229,30,22,.6); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.textlink { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; color: var(--red-600); }
.textlink svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topline { background: var(--ink); color: #c4c8cf; font-size: .82rem; }
.topline .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topline a { color: #c4c8cf; }
.topline a:hover { color: #fff; }
.topline__l { display: inline-flex; align-items: center; gap: 10px; }
.topline__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }
.topline__r { display: inline-flex; align-items: center; gap: 22px; }
.topline__r a { white-space: nowrap; }
.topline__short { display: none; }
@media (max-width: 680px) { .topline__hide { display: none; } }
@media (max-width: 640px) { .topline__long { display: none; } .topline__short { display: inline; } }

.header { position: sticky; top: 0; z-index: 100; background: rgba(251,250,248,.85); backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.header.stuck { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(22,24,29,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 24px; }
.brand img { height: 42px; width: auto; }

/* Logotype — vector lockup built from the brand type (Plus Jakarta Sans) */
.logo { display: inline-flex; align-items: center; gap: 11px; line-height: 1; }
.logo__word { font-family: var(--display); font-weight: 800; font-size: 33px; color: var(--red); letter-spacing: -.05em; line-height: .82; }
.logo__rule { width: 2.5px; align-self: stretch; min-height: 27px; background: var(--red); border-radius: 2px; }
.logo__sub { font-family: var(--display); font-weight: 700; font-size: 8.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink); line-height: 1.42; }
.logo--light .logo__sub { color: #fff; }
.logo--lg .logo__word { font-size: 42px; }
.logo--lg .logo__rule { min-height: 34px; }
.logo--lg .logo__sub { font-size: 10px; letter-spacing: .16em; }
@media (max-width: 560px) { .logo__word { font-size: 29px; } .logo__sub { font-size: 7.5px; } }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__cta { display: none; }
.nav__links a { font-family: var(--display); font-weight: 600; font-size: .96rem; color: var(--slate-700); padding: 9px 16px; border-radius: 999px; transition: background .2s, color .2s; }
.nav__links a:hover { color: var(--ink); background: rgba(22,24,29,.05); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1rem; }
.nav__phone svg { width: 18px; height: 18px; color: var(--red); }
.nav__toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  /* anchored to the sticky header (top: 100%) so it stays attached after scrolling */
  .nav__links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; padding: 16px var(--gutter) 26px; border-bottom: 1px solid var(--line); box-shadow: var(--sh-lg); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s; }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 16px; font-size: 1.08rem; }
  .nav__cta { display: grid; gap: 10px; margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
  .nav__phone span { display: none; }
}
@media (max-width: 560px) { .nav__right .btn { display: none; } .brand img { height: 38px; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding-block: clamp(40px, 7vw, 96px) clamp(56px, 9vw, 120px); }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 7px 8px 7px 16px; border-radius: 999px; font-size: .84rem; font-family: var(--display); font-weight: 600; color: var(--slate-700); box-shadow: var(--sh-sm); }
.hero__badge b { background: var(--red); color: #fff; font-size: .74rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; }
.hero h1 { margin-top: 26px; }
.hero p.lead { margin-top: 22px; max-width: 30ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 36px; }
.hero__facts li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--slate-700); font-weight: 500; }
.hero__facts svg { width: 19px; height: 19px; color: var(--red); flex: none; }

/* hero media */
.hero__media { position: relative; }
.hero__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/4.7; box-shadow: var(--sh-lg); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; }
.hero__blob { position: absolute; inset: auto -26px -26px auto; width: 62%; height: 62%; background: var(--red); border-radius: var(--r-lg); z-index: -1; }
.hero__chip {
  position: absolute; left: -22px; bottom: 34px; background: #fff; border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 14px; border: 1px solid var(--line);
}
.hero__chip .n { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.hero__chip .n span { color: var(--red); }
.hero__chip small { display: block; color: var(--slate-500); font-size: .8rem; max-width: 14ch; line-height: 1.3; }
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 460px; }
  .hero__blob { inset: auto -12px -12px auto; } /* keep within viewport at narrow widths */
  .hero p.lead { max-width: 46ch; }
}

/* ==========================================================================
   Certified brands strip
   ========================================================================== */
.certs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.certs .wrap { display: flex; align-items: center; gap: clamp(20px, 4vw, 50px); flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.certs__label { font-family: var(--display); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); }
.certs__list { display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center; }
.certs__list li { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--slate-500); letter-spacing: -.01em; }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.5vw, 30px); margin-top: clamp(40px, 5vw, 60px); }
.svc { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); min-height: 400px; display: flex; align-items: flex-end; box-shadow: var(--sh-md); }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,17,21,0) 28%, rgba(16,17,21,.55) 62%, rgba(16,17,21,.92) 100%); }
.svc:hover img { transform: scale(1.06); }
.svc__body { position: relative; z-index: 2; padding: 30px; color: #fff; }
.svc__num { font-family: var(--display); font-weight: 800; font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .1em; }
.svc h3 { color: #fff; font-size: 1.7rem; margin-top: 10px; }
.svc p { color: rgba(255,255,255,.82); font-size: .96rem; margin-top: 8px; max-width: 36ch; }
.svc__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: #fff; font-family: var(--display); font-weight: 700; font-size: .92rem; }
.svc__go svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.svc:hover .svc__go svg, .svc:focus-visible .svc__go svg { transform: translateX(4px); }
.svc:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.svc__tag { position: absolute; top: 24px; left: 24px; z-index: 2; background: var(--red); color: #fff; font-family: var(--display); font-weight: 700; font-size: .74rem; letter-spacing: .04em; padding: 7px 13px; border-radius: 999px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } .svc { min-height: 340px; } }

/* ==========================================================================
   Equipment tiles (image-led)
   ========================================================================== */
.equip { background: var(--paper-2); }
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(38px, 5vw, 56px); }
.tile { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--sh-sm); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,17,21,0) 45%, rgba(16,17,21,.86)); }
.tile:hover img { transform: scale(1.07); }
.tile span { position: absolute; z-index: 2; left: 20px; bottom: 18px; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.12rem; }
.tile span small { display: block; font-weight: 500; font-size: .82rem; color: rgba(255,255,255,.78); margin-top: 2px; }
@media (max-width: 760px) { .equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .equip-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .tile span { left: 14px; bottom: 14px; font-size: 1rem; } }

/* ==========================================================================
   Stat band (red)
   ========================================================================== */
.stats { background: var(--red); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat__n { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: -.04em; line-height: 1; }
.stat__l { margin-top: 10px; color: #fff; font-size: .96rem; }
@media (max-width: 720px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; } .stat:last-child { grid-column: 1 / -1; } }

/* ==========================================================================
   Van / local trust (dark, real photo)
   ========================================================================== */
.local { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.local__bg { position: absolute; inset: 0; z-index: 0; }
.local__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 42%; }
.local::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(16,17,21,.95) 0%, rgba(16,17,21,.88) 36%, rgba(16,17,21,.5) 66%, rgba(16,17,21,.12) 100%); }
.local .wrap { position: relative; z-index: 2; }
.local__inner { max-width: 540px; }
.local h2 { color: #fff; }
.local p { margin-top: 18px; color: #dfe2e7; max-width: 44ch; }
.local__pts { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 26px; }
.local__pts li { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: .95rem; }
.local__pts svg { width: 19px; height: 19px; color: var(--red); flex: none; }
.local__area { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); font-size: .92rem; color: #c8ccd3; max-width: 48ch; }
.local__area b { color: #fff; }
.local__area a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 700px) { .local::after { background: linear-gradient(180deg, rgba(16,17,21,.72), rgba(16,17,21,.93)); } }

/* ==========================================================================
   Who we serve (full-bleed band)
   ========================================================================== */
.serve { position: relative; color: #fff; text-align: center; }
.serve__bg { position: absolute; inset: 0; z-index: 0; }
.serve__bg img { width: 100%; height: 100%; object-fit: cover; }
.serve::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,17,21,.78), rgba(16,17,21,.82)); z-index: 1; }
.serve .wrap { position: relative; z-index: 2; }
.serve h2 { color: #fff; }
.serve__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.serve__chips span { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); color: #fff; font-family: var(--display); font-weight: 600; padding: 10px 20px; border-radius: 999px; font-size: .95rem; backdrop-filter: blur(4px); }

/* ==========================================================================
   Process
   ========================================================================== */
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); margin-top: clamp(40px, 5vw, 60px); }
.pstep { position: relative; }
.pstep__n { width: 52px; height: 52px; border-radius: 50%; background: var(--red-50); color: var(--red-600); font-family: var(--display); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 20px; flex: none; }
.pstep h3 { font-size: 1.3rem; }
.pstep p { margin-top: 10px; color: var(--slate-500); }
@media (max-width: 720px) {
  .process__grid { grid-template-columns: 1fr; gap: 24px; }
  .pstep { display: flex; align-items: flex-start; gap: 16px; }
  .pstep__n { margin-bottom: 0; }
  .pstep__body { flex: 1; min-width: 0; }
}

/* ==========================================================================
   CTA + contact
   ========================================================================== */
.contact { background: var(--paper-2); }
.contact__card { background: var(--ink); border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; box-shadow: var(--sh-lg); }
.contact__left { padding: clamp(34px, 4vw, 60px); color: #c8ccd3; }
.contact__left h2 { color: #fff; }
.contact__left .lead { color: #aab0b9; margin-top: 16px; }
.contact__info { display: grid; gap: 16px; margin-top: 30px; }
.contact__info li { display: flex; align-items: center; gap: 14px; }
.contact__info .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; flex: none; }
.contact__info .ic svg { width: 21px; height: 21px; color: var(--red); }
.contact__info small { display: block; color: #8a909a; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--display); font-weight: 600; }
.contact__info a, .contact__info b { color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.contact__info a:hover { color: var(--red); }

.contact__right { background: #fff; padding: clamp(30px, 3.5vw, 48px); }
.contact__right h3 { font-size: 1.4rem; }
.contact__right > p { color: var(--slate-500); margin-top: 6px; font-size: .95rem; }
.form { margin-top: 22px; }
.form__fields { display: grid; gap: 15px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--display); font-weight: 600; font-size: .84rem; color: var(--slate-700); }
.field input, .field select, .field textarea { font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s, background .2s; }
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(229,30,22,.12); }
/* honeypot — visually removed, still in the DOM for bots */
.field--hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form__err { display: flex; align-items: flex-start; gap: 12px; padding: 15px 18px; border-radius: 14px; background: #fdebe9; border: 1px solid #f3c1bd; color: #8c1812; font-size: .95rem; }
.form__err svg { width: 22px; height: 22px; flex: none; color: var(--red-600); }
.form__err a { color: inherit; text-decoration: underline; }

.form__done { min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 20px; }
.form__done-ic { width: 64px; height: 64px; border-radius: 50%; background: #eafaf0; border: 1px solid #bfead0; display: grid; place-items: center; margin-bottom: 10px; }
.form__done-ic svg { width: 30px; height: 30px; color: #2b9d5c; }
.form__done h4 { font-size: 1.3rem; }
.form__done p { color: var(--slate-500); max-width: 34ch; }
.form__done .btn { margin-top: 16px; }
.form__again { margin-top: 10px; background: none; border: none; padding: 6px; font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--slate-500); text-decoration: underline; text-underline-offset: 3px; }
.form__again:hover { color: var(--ink); }
@media (max-width: 900px) { .contact__card { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .form__row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials (section ships commented out in index.html until real quotes exist)
   ========================================================================== */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); margin-top: clamp(38px, 5vw, 56px); }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; box-shadow: var(--sh-sm); margin: 0; }
.quote blockquote { margin: 0; }
.quote p { color: var(--slate-700); }
.quote figcaption { margin-top: 18px; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .94rem; }
.quote figcaption small { display: block; color: var(--slate-500); font-weight: 500; margin-top: 2px; }
@media (max-width: 760px) { .quotes__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: #9aa0a9; padding-block: clamp(54px, 7vw, 84px) 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { height: 46px; }
.footer__brand p { margin-top: 18px; max-width: 32ch; font-size: .92rem; color: #868d97; }
.footer h4 { color: #fff; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--display); }
.footer__links { display: grid; gap: 11px; }
.footer__links a, .footer address a { color: #9aa0a9; font-size: .94rem; font-style: normal; }
.footer__links a:hover, .footer address a:hover { color: #fff; }
.footer address { font-style: normal; display: grid; gap: 11px; font-size: .94rem; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .85rem; color: #767d87; }
.footer__bottom a { color: #9aa0a9; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }

/* ==========================================================================
   Print — browsers strip backgrounds, so dark sections must fall back to ink-on-white,
   and scroll-reveal content must be forced visible.
   ========================================================================== */
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .topline, .nav__toggle, .nav__right, .skip, .hero__blob, .local__bg, .serve__bg, .local::after, .serve::after { display: none !important; }
  .local, .serve, .stats, .contact__card, .footer { background: #fff !important; }
  .local h2, .local p, .local__pts li, .local__area, .local__area b,
  .serve h2, .serve .kicker, .serve__chips span,
  .stats, .stat__l,
  .contact__left, .contact__left h2, .contact__left .lead, .contact__info a, .contact__info b, .contact__info small,
  .footer, .footer h4, .footer__links a, .footer address a, .logo--light .logo__sub { color: var(--ink) !important; }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal__head { background: var(--ink); color: #fff; padding-block: clamp(54px,8vw,100px) clamp(34px,5vw,56px); }
.legal__head h1 { color: #fff; }
.legal__head p { color: #aab0b9; margin-top: 12px; }
.legal__body { max-width: 760px; margin-inline: auto; }
.legal__body h2 { font-size: 1.4rem; margin-top: 40px; }
.legal__body p, .legal__body li { color: var(--slate-700); margin-top: 14px; }
.legal__body ul { list-style: disc; padding-left: 22px; }
.back { display: inline-flex; align-items: center; gap: 8px; color: #c8ccd3; font-family: var(--display); font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.back:hover { color: #fff; }
.back svg { width: 16px; height: 16px; }
