/* ============================================================================
   SHRED SAFE LLC — "The Vault & The Strip"
   Editorial security aesthetic · Fraunces + Hanken Grotesk
   Ink / Paper / Emerald / Brass
   ============================================================================ */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
  --ink:        #0A1822;
  --ink-800:    #0E212E;
  --ink-700:    #143040;
  --ink-600:    #1C4054;

  --paper:      #F5F2EA;
  --paper-2:    #EDE8DB;
  --paper-card: #FCFAF4;

  /* Brand red (from the Shred Safe logo), tuned richer / less pink. Variable
     names kept as --emerald* so every reference recolors at once.
     base = primary actions/fills; -deep = AA-legible crimson text on paper;
     -bright = a TRUE vivid red (low green/blue, so it never skews pink) for
     accents on the dark ink panels. */
  --emerald:       #D70E1A;
  --emerald-deep:  #8C0712;
  --emerald-bright:#FF3A33;

  /* Quiet secondary accent: warm stone/taupe (replaced the gold — red + gold
     read too "holiday"). --brass = taupe on light, --brass-soft = stone on dark. */
  --brass:      #6E6253;
  --brass-soft: #B6A795;

  --text:    #16242C;
  --muted:   #586871;
  --muted-2: #7E8C93;
  --line:    rgba(10, 24, 34, .12);
  --line-2:  rgba(10, 24, 34, .07);

  --on-ink:        #EAF1F0;
  --on-ink-muted:  #9DB2B6;
  --line-ink:      rgba(255, 255, 255, .12);

  --font-display: "Fraunces", Georgia, serif;
  --font-text:    "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);

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

  --shadow-sm: 0 1px 2px rgba(10,24,34,.05), 0 4px 14px rgba(10,24,34,.06);
  --shadow:    0 4px 10px rgba(10,24,34,.06), 0 24px 48px -20px rgba(10,24,34,.22);
  --shadow-lg: 0 30px 70px -28px rgba(10,24,34,.42);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --section-y: clamp(4.5rem, 9vw, 8.5rem);
}

/* ---- 2. Reset & base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-text);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 88% -10%, rgba(215,14,26,.07), transparent 60%),
    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='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

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

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---- 3. Typography ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
.display {
  font-weight: 900;
  font-size: clamp(2.7rem, 1.6rem + 5.2vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.032em;
}
.h2 { font-size: clamp(2rem, 1.3rem + 2.9vw, 3.35rem); font-weight: 600; }
.h3 { font-size: clamp(1.3rem, 1.1rem + .9vw, 1.7rem); font-weight: 600; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--emerald-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brass);
  display: inline-block;
}
.eyebrow--ink { color: var(--brass-soft); }
.lead { font-size: clamp(1.1rem, 1.02rem + .4vw, 1.32rem); color: var(--muted); line-height: 1.6; }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--emerald-deep); }

/* ---- 4. Layout helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-head { max-width: 44rem; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1.1rem; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .section-head { margin-inline: auto; }

.ink { background: var(--ink); color: var(--on-ink); position: relative; }
.ink h1, .ink h2, .ink h3 { color: #fff; }
.ink .lead { color: var(--on-ink-muted); }

/* shredder-blade vertical lines on ink panels */
.ink--blades::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(90deg,
    transparent 0 38px, rgba(255,255,255,.035) 38px 39px);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* torn / shredded edge dividers */
.edge-shred {
  position: relative;
  --strip: 26px;
}
.edge-shred::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 18px;
  background: var(--paper);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 calc(var(--strip) - 6px), transparent calc(var(--strip) - 6px) var(--strip));
  mask: repeating-linear-gradient(90deg, #000 0 calc(var(--strip) - 6px), transparent calc(var(--strip) - 6px) var(--strip));
}

/* ---- 5. Buttons --------------------------------------------------------- */
.btn {
  --bg: var(--emerald); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-text); font-weight: 600; font-size: 1rem;
  line-height: 1; letter-spacing: .005em;
  padding: 1.02em 1.6em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  position: relative; isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), background .25s;
  box-shadow: 0 1px 1px rgba(10,24,34,.16), 0 14px 26px -12px rgba(215,14,26,.7);
}
.btn .icon { width: 1.05em; height: 1.05em; transition: transform .35s var(--ease-out); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 1px 1px rgba(10,24,34,.16), 0 20px 34px -12px rgba(215,14,26,.85); }
.btn:hover .icon { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .72em 1.15em; font-size: .92rem; }
.btn--lg { padding: 1.15em 2em; font-size: 1.08rem; }
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: transparent; }
.ink .btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.ink .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; }

.textlink {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; color: var(--emerald-deep);
  border-bottom: 1.5px solid transparent; padding-bottom: 1px;
  transition: gap .3s var(--ease-out), border-color .3s;
}
.textlink .icon { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease-out); }
.textlink:hover { border-color: var(--emerald); }
.textlink:hover .icon { transform: translateX(3px); }
.ink .textlink { color: var(--brass-soft); }

/* ---- 6. Notice bar ------------------------------------------------------ */
.notice { background: var(--ink-800); color: var(--on-ink); font-size: .88rem; }
.notice__in { display: flex; align-items: center; justify-content: center; gap: .7rem; padding: .55rem 0; flex-wrap: wrap; }
.notice__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-bright); box-shadow: 0 0 0 0 rgba(255,58,51,.6); animation: pulse 2.4s infinite; }
.notice__link { display: inline-flex; align-items: center; gap: .35em; color: var(--brass-soft); font-weight: 600; }
.notice__link .icon { width: 1em; height: 1em; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(255,58,51,0); } 100% { box-shadow: 0 0 0 0 rgba(255,58,51,0); } }

/* ---- 7. Header ---------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  transition: box-shadow .4s var(--ease), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck { border-bottom-color: var(--line); box-shadow: 0 10px 30px -22px rgba(10,24,34,.5); }
/* Height stays constant on scroll — shrinking a sticky header reflows the page
   under it and causes a trigger feedback loop (the "bounce"). Only the
   shadow/blur change on scroll. */
.site-head__in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__img { height: 56px; width: auto; display: block; }
@media (max-width: 560px) { .brand__img { height: 46px; } }
/* footer: logo sits on a clean white tile so it reads on the dark panel */
.brand-tile { display: inline-block; background: #fff; border-radius: 14px; padding: .85rem 1.05rem; box-shadow: 0 10px 24px -14px rgba(0,0,0,.6); }
.brand-tile img { width: 168px; height: auto; display: block; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__word { font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; letter-spacing: -.02em; color: var(--ink); }
.brand__tag { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; font-weight: 600; }

.nav { display: flex; gap: clamp(.5rem, 2vw, 1.3rem); margin-inline: auto; }
.nav__link {
  font-weight: 500; font-size: .96rem; color: var(--text);
  padding: .45rem .15rem; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .1rem; height: 2px;
  background: var(--emerald); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.site-head__cta { display: flex; align-items: center; gap: 1.1rem; }
.head-phone { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; font-size: .95rem; color: var(--ink); }
.head-phone .icon { color: var(--emerald); width: 1.1em; height: 1.1em; }
.head-phone:hover { color: var(--emerald-deep); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.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); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 70;
  background: var(--ink); color: var(--on-ink);
  padding: 6rem 2rem 2rem; transform: translateX(100%);
  transition: transform .45s var(--ease-out); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.mobile-menu[hidden] { display: flex; } /* keep transition; visibility via .is-open */
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: .35rem; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; padding: .55rem 0; border-bottom: 1px solid var(--line-ink); }
.mobile-menu__quote { color: var(--emerald-bright) !important; }
.mobile-menu__phone { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-text) !important; font-size: 1.05rem !important; border: 0 !important; margin-top: 1rem; color: var(--brass-soft) !important; }
.scrim { position: fixed; inset: 0; background: rgba(10,24,34,.5); z-index: 65; opacity: 0; transition: opacity .4s; }
.scrim.is-open { opacity: 1; }
body.menu-open { overflow: hidden; }

/* ---- 8. Hero ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 36rem; }

/* Shred-in headline: the H1 assembles from falling paper strips on load */
.shredline { position: relative; display: inline-block; }
.shredline__base, .shredline__strip > span { display: block; }
.shredline.is-shredding .shredline__base { opacity: 0; }
.shredline__strip { position: absolute; inset: 0; pointer-events: none; will-change: transform, opacity; }
@keyframes shredDrop {
  0%   { transform: translateY(-128%); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--emerald-deep); font-style: italic; font-weight: 500; }
.hero__lead { margin-bottom: 2.2rem; max-width: 30rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero__assure li { display: inline-flex; align-items: center; gap: .55em; font-size: .92rem; font-weight: 500; color: var(--muted); }
.hero__assure .icon { color: var(--emerald); width: 1.2em; height: 1.2em; }

/* Hero showcase: the shred truck cutout floating on the paper */
.hero-photo { position: relative; margin: 0; isolation: isolate; }
.hero-photo__glow {
  position: absolute; inset: 8% -6% 10% -6%; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 54% at 52% 46%, rgba(215,14,26,.18), transparent 70%);
  filter: blur(42px);
}
/* soft ground shadow so the truck reads as planted, not pasted */
.hero-photo__ground {
  position: absolute; left: 10%; right: 10%; bottom: 7%; height: 30px; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 100% at 50% 50%, rgba(10,24,34,.26), transparent 72%);
  filter: blur(9px);
}
.hero-photo__img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  filter: drop-shadow(0 22px 26px rgba(10,24,34,.22));
}
.hero-photo__tag {
  position: absolute; top: 5%; left: 0; z-index: 2;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: #fff; background: var(--emerald); padding: .42rem .85rem; border-radius: 999px;
  box-shadow: 0 12px 24px -8px rgba(215,14,26,.8);
}
.hero-photo__float {
  position: absolute; bottom: -16px; right: 0; z-index: 3;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem;
  border: 1px solid var(--line-2);
}
.hero-photo__float .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--emerald); color: #fff; display: grid; place-items: center; flex: none; }
.hero-photo__float .ic .icon { width: 21px; height: 21px; }
.hero-photo__float b { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); line-height: 1.1; }
.hero-photo__float span { font-size: .76rem; color: var(--muted); }
/* on load the truck drives in from the right, then settles into a gentle float */
.js-ready .hero-photo__img { animation: truckIn 1.5s var(--ease-out) both, heroFloat 8s ease-in-out 1.65s infinite; }
@keyframes truckIn { from { transform: translateX(118%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* the callout chips fade in once the truck has arrived */
.js-ready .hero-photo__tag, .js-ready .hero-photo__float { animation: chipIn .6s var(--ease-out) 1.5s both; }
@keyframes chipIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- 9. Trust bar ------------------------------------------------------- */
.trustbar { background: var(--ink); color: var(--on-ink); }
.trustbar__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; padding-block: 1.5rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: .65em; font-weight: 500; font-size: .96rem; color: var(--on-ink); }
.trustbar__item .icon { color: var(--emerald-bright); width: 1.3em; height: 1.3em; }
.trustbar__sep { width: 1px; height: 26px; background: var(--line-ink); }

/* ---- 10. Service cards -------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.card {
  position: relative; background: var(--paper-card); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 2.4vw, 2.3rem);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease), border-color .4s;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-deep));
  transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card__icon { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--ink), var(--ink-700)); color: var(--emerald-bright); margin-bottom: 1.4rem; }
.card__icon .icon { width: 27px; height: 27px; }
.card__eyebrow { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--brass); margin-bottom: .55rem; }
.card h3 { margin-bottom: .7rem; }
.card__blurb { color: var(--muted); margin-bottom: 1.3rem; }
.card__list { display: flex; flex-direction: column; gap: .6rem; margin-top: auto; }
.card__list li { display: flex; gap: .6em; font-size: .92rem; align-items: flex-start; }
.card__list .icon { color: var(--emerald); width: 1.15em; height: 1.15em; margin-top: .15em; }

/* ---- 11. Process -------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.6rem); counter-reset: step; }
.step { position: relative; }
.step__n { font-family: var(--font-display); font-weight: 900; font-size: 3.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--brass); margin-bottom: 1rem; display: block; }
.step h3 { margin-bottom: .6rem; }
.step p { color: var(--muted); }
.step__rule { position: absolute; top: 1.6rem; right: -1.3rem; width: 2.6rem; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 4px, transparent 4px 8px); }
.process .step:last-child .step__rule { display: none; }
.ink .step p { color: var(--on-ink-muted); }
.ink .step__n { -webkit-text-stroke-color: var(--brass-soft); }

/* ---- 12. Stats ---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.stat { text-align: center; position: relative; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: #fff; letter-spacing: -.03em; }
.stat__num .suffix { color: var(--emerald-bright); }
.stat__label { margin-top: .7rem; color: var(--on-ink-muted); font-size: .98rem; max-width: 16rem; margin-inline: auto; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--line-ink); }

/* ---- 13. Split / feature sections -------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.feature-list { display: grid; gap: 1.3rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: 1rem; }
.feature-list .fi { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(215,14,26,.1); color: var(--emerald-deep); }
.feature-list .fi .icon { width: 22px; height: 22px; }
.feature-list b { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); display: block; margin-bottom: .15rem; }
.feature-list p { color: var(--muted); font-size: .96rem; }

/* certificate visual */
.cert {
  position: relative; background: linear-gradient(160deg, var(--paper-card), var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem,3vw,2.6rem);
  box-shadow: var(--shadow); overflow: hidden;
}
.cert::before { content: ""; position: absolute; inset: 10px; border: 1.5px solid var(--brass); opacity: .35; border-radius: 14px; pointer-events: none; }
.cert__seal { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--emerald-bright), var(--emerald-deep)); color: #fff;
  box-shadow: 0 8px 18px -6px rgba(215,14,26,.55); margin-bottom: 1.3rem; }
.cert__seal .icon { width: 38px; height: 38px; }
.cert h3 { font-style: italic; font-weight: 500; }
.cert__meta { margin-top: 1.4rem; display: grid; gap: .55rem; }
.cert__meta div { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; border-bottom: 1px dashed var(--line); padding-bottom: .55rem; }
.cert__meta span:first-child { color: var(--muted); }
.cert__meta span:last-child { font-weight: 600; color: var(--ink); }

/* ---- 14. Testimonials --------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.quote { background: var(--paper-card); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2.2rem); display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: .15rem; color: var(--emerald); margin-bottom: 1rem; }
.quote__stars .icon { width: 1.05em; height: 1.05em; fill: var(--emerald); }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; color: var(--ink); font-weight: 500; }
.quote__by { margin-top: auto; padding-top: 1.3rem; display: flex; align-items: center; gap: .8rem; }
.quote__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(145deg, var(--ink), var(--ink-700)); color: var(--brass-soft); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote__by b { font-size: .95rem; color: var(--ink); }
.quote__by span { font-size: .82rem; color: var(--muted); display: block; }
.placeholder-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 1.6rem; font-style: italic; }

/* ---- 15. FAQ ------------------------------------------------------------ */
.faq { max-width: 56rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  text-align: left; padding: 1.5rem 0; font-family: var(--font-display); font-size: clamp(1.1rem,1.5vw,1.35rem); font-weight: 600; color: var(--ink); }
.faq__sign { position: relative; width: 26px; height: 26px; flex: none; }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; background: var(--emerald); border-radius: 2px; transition: transform .4s var(--ease-out); }
.faq__sign::before { top: 50%; left: 0; right: 0; height: 2.4px; transform: translateY(-50%); }
.faq__sign::after { left: 50%; top: 0; bottom: 0; width: 2.4px; transform: translateX(-50%); }
.faq__item.is-open .faq__sign::after { transform: translateX(-50%) scaleY(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { color: var(--muted); padding-bottom: 1.5rem; max-width: 50rem; }
.faq__q:hover { color: var(--emerald-deep); }

/* ---- 16. CTA band ------------------------------------------------------- */
.cta { position: relative; overflow: hidden; }
.cta__card {
  position: relative; background: linear-gradient(150deg, var(--ink) 0%, var(--ink-700) 100%);
  border-radius: var(--r-lg); padding: clamp(2.4rem, 5vw, 4.5rem); color: var(--on-ink);
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center; overflow: hidden;
}
.cta__card::after { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 30px, rgba(255,58,51,.06) 30px 31px); }
.cta__card h2 { color: #fff; position: relative; }
.cta__card .lead { position: relative; margin-top: 1rem; }
.cta__actions { position: relative; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta__phone { font-family: var(--font-display); font-size: 1.6rem; color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: .5rem; }
.cta__phone .icon { color: var(--emerald-bright); }
.cta__sub { font-size: .9rem; color: var(--on-ink-muted); }

/* ---- 17. Page hero (inner pages) --------------------------------------- */
.page-hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; }
.page-hero__in { max-width: 50rem; }
.page-hero h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.2rem); font-weight: 900; letter-spacing: -.03em; margin-block: 1.1rem; }
.crumbs { font-size: .82rem; color: var(--muted); display: flex; gap: .5rem; align-items: center; }
.crumbs a:hover { color: var(--emerald-deep); }
.crumbs span { color: var(--muted-2); }

/* ---- 18. Service detail blocks ----------------------------------------- */
.svc { padding-block: clamp(2.2rem, 4vw, 3.6rem); border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.svc:last-of-type { border-bottom: 0; }
.svc__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.3rem; }
.svc__icon { width: 64px; height: 64px; border-radius: 16px; flex: none; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--ink), var(--ink-700)); color: var(--emerald-bright); box-shadow: var(--shadow-sm); }
.svc__icon .icon { width: 30px; height: 30px; }
.svc__title { margin: 0; }
.svc__blurb { font-size: 1.12rem; max-width: 62ch; }
.svc__list { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 2rem; margin-top: 1.7rem; max-width: 56rem; }
.svc__list li { display: flex; gap: .6em; align-items: flex-start; font-size: .98rem; }
.svc__list .icon { color: var(--emerald); width: 1.15em; height: 1.15em; margin-top: .2em; flex: none; }
.svc__cta { margin-top: 1.9rem; }
@media (max-width: 640px) {
  .svc__list { grid-template-columns: 1fr; }
  .svc__head { gap: 1rem; }
  .svc__icon { width: 54px; height: 54px; border-radius: 14px; }
  .svc__icon .icon { width: 26px; height: 26px; }
}

/* ---- 19. Contact / forms ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text); background: var(--paper-card);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .85rem 1rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(215,14,26,.12); background: #fff;
}
.field--error input, .field--error select, .field--error textarea { border-color: #C0492F; box-shadow: 0 0 0 4px rgba(192,73,47,.1); }
.field__err { color: #C0492F; font-size: .82rem; margin-top: .4rem; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; }
.form-card { background: var(--paper-card); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.5rem); box-shadow: var(--shadow-sm); }

.form-banner { padding: 1rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 1.5rem; font-weight: 600; font-size: .92rem; display: flex; gap: .6rem; align-items: center; }
.form-banner--err { background: rgba(192,73,47,.1); color: #9b3621; }
.form-banner .icon { flex: none; }

.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.ci-item:last-child { border-bottom: 0; }
.ci-item .ci-ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--ink); color: var(--emerald-bright); }
.ci-item .ci-ic .icon { width: 22px; height: 22px; }
.ci-item b { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); display: block; margin-bottom: .15rem; }
.ci-item a, .ci-item p { color: var(--muted); }
.ci-item a:hover { color: var(--emerald-deep); }

.thanks { text-align: center; max-width: 36rem; margin-inline: auto; padding-block: clamp(2rem,5vw,4rem); }
.thanks__seal { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1.6rem; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--emerald-bright), var(--emerald-deep)); color: #fff; box-shadow: 0 16px 34px -12px rgba(215,14,26,.6); }
.thanks__seal .icon { width: 44px; height: 44px; }

/* paper-strip confetti on the quote-success screen */
.confetti { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 50; }
.confetti i {
  position: absolute; top: -8%; width: 7px; height: 20px; border-radius: 1px;
  opacity: 0; will-change: transform, opacity;
  animation: confettiFall var(--dur, 2.6s) var(--ease-out) var(--delay, 0s) forwards;
}
@keyframes confettiFall {
  0%   { opacity: 0; transform: translateY(-10vh) rotate(0deg); }
  8%   { opacity: 1; }
  100% { opacity: 0; transform: translateY(108vh) rotate(var(--spin, 540deg)); }
}

/* ---- 20. Map / area ----------------------------------------------------- */
.area-card { background: linear-gradient(150deg, var(--ink), var(--ink-700)); color: var(--on-ink); border-radius: var(--r-lg); padding: clamp(2rem,4vw,3.5rem); position: relative; overflow: hidden; }
.area-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.04) 34px 35px); opacity: .6; }
.area-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; position: relative; }
.area-badges span { font-size: .85rem; padding: .45rem .9rem; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid var(--line-ink); }

/* coverage map card (service area) */
.coverage { position: relative; height: 100%; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--ink), var(--ink-700)); color: var(--on-ink); }
.coverage::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.04) 34px 35px); }
.coverage__map { position: relative; padding: clamp(1.2rem,3vw,2rem) clamp(1.2rem,3vw,2rem) 0; text-align: center;
  border-bottom: 1px solid var(--line-ink); }
.coverage__svg { width: 100%; max-width: 300px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.3)); }
.coverage__legend { display: inline-flex; align-items: center; gap: .45em; margin: .4rem 0 1.4rem;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--brass-soft); }
.coverage__legend .icon { width: 1em; height: 1em; color: var(--emerald-bright); }
.coverage__body { position: relative; padding: clamp(1.5rem,3vw,2.2rem); }
.coverage__pulse { transform-box: fill-box; transform-origin: center; opacity: 0; }
.js-ready .coverage__pulse { animation: coveragePulse 3.4s var(--ease-out) infinite; }
@keyframes coveragePulse {
  0% { transform: scale(1); opacity: .6; }
  70% { opacity: 0; }
  100% { transform: scale(2.7); opacity: 0; }
}

/* compliance chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.chip { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; font-size: .85rem; padding: .5rem 1rem; border-radius: 999px; background: rgba(215,14,26,.1); color: var(--emerald-deep); }
.chip .icon { width: 1.05em; height: 1.05em; }

/* ---- 21. Reveal animation ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .24s; }

/* ---- 22. Footer --------------------------------------------------------- */
.site-foot { background: var(--ink); color: var(--on-ink); padding-top: clamp(3.5rem,6vw,5.5rem); position: relative; }
.site-foot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 16px; background: var(--paper);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 20px, transparent 20px 26px);
  mask: repeating-linear-gradient(90deg, #000 0 20px, transparent 20px 26px); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.foot-tag { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--brass-soft); margin-top: 1rem; }
.foot-blurb { color: var(--on-ink-muted); font-size: .92rem; margin-top: .8rem; max-width: 26rem; }
.foot-compliance { display: inline-flex; align-items: center; gap: .5em; margin-top: 1.4rem; font-size: .85rem; color: var(--on-ink-muted); }
.foot-compliance .icon { color: var(--emerald-bright); }
.foot-h { font-family: var(--font-text); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 1.1rem; font-weight: 700; }
.foot-col ul { display: grid; gap: .7rem; }
.foot-col a { color: var(--on-ink-muted); font-size: .95rem; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-contact a { display: inline-flex; align-items: center; gap: .6em; }
.foot-contact .icon { color: var(--emerald-bright); width: 1.1em; height: 1.1em; flex: none; }
.foot-hours { margin-top: 1.3rem; display: grid; gap: .45rem; }
.foot-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--on-ink-muted); }
.foot-base { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.6rem; border-top: 1px solid var(--line-ink); font-size: .85rem; color: var(--on-ink-muted); }
.foot-base__recycle { display: inline-flex; align-items: center; gap: .5em; }
.foot-base__recycle .icon { color: var(--emerald-bright); }

/* ---- 23. Responsive ----------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { order: -1; max-width: 540px; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .cta__card { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav, .site-head__cta { display: none; }
  /* center the logo, pin the burger to the right edge */
  .site-head__in { position: relative; justify-content: center; }
  .brand { margin-inline: auto; }
  .nav-toggle { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split__media { order: -1 !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 2rem; }
  .step__rule { display: none !important; }
  .trustbar__sep { display: none; }
}
@media (max-width: 560px) {
  .cards, .quotes, .stats { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stats { gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* ---- 24. Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .notice__dot { animation: none; }
}
