/* ==========================================================================
   DMV Tow Trucks — Manassas, VA
   Palette + type taken from the shop's own flyer: black, safety amber,
   heavy condensed caps. Industrial, high-contrast, built to last.
   ========================================================================== */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root{
  --ink:#0A0A0B;
  --steel:#131417;
  --steel-2:#1B1D22;
  --steel-3:#23262C;
  --line:#2C3037;
  --concrete:#9AA1AB;
  --bone:#E9E9E6;
  --amber:#FFC61A;
  --amber-2:#E0A800;
  --rust:#C1352A;

  --display:'Anton','Arial Narrow',Impact,sans-serif;
  --cond:'Barlow Condensed','Arial Narrow',sans-serif;
  --body:'Barlow',system-ui,sans-serif;

  --nav-h:66px;
  --wrap:1200px;
  --pad:clamp(1.1rem,4vw,2.5rem);
}

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

html{-webkit-text-size-adjust:100%}

body{
  margin:0;
  background:var(--ink);
  color:var(--bone);
  font-family:var(--body);
  font-size:clamp(1rem,.96rem + .2vw,1.075rem);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

/* faint asphalt grain over everything */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;
  opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img{display:block;max-width:100%;height:auto}

a{color:inherit}

h1,h2,h3,h4{margin:0;font-weight:400;line-height:.95;letter-spacing:.005em}

p{margin:0}

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

.sr-only{
  position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* parked ABOVE the viewport, never to the side — a negative `left` counts as
   horizontal overflow and blows out the page width check */
.skip{
  position:absolute;left:.5rem;top:0;z-index:200;
  transform:translateY(-250%);
  background:var(--amber);color:var(--ink);padding:.7rem 1.1rem;
  font-family:var(--cond);font-weight:700;text-transform:uppercase;
}
.skip:focus{transform:translateY(.5rem)}

:focus-visible{outline:3px solid var(--amber);outline-offset:3px}

/* ---------- shared type ---------- */
.eyebrow{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.78rem;
  color:var(--amber);
  margin:0 0 .9rem;
}

.h2{
  font-family:var(--display);
  text-transform:uppercase;
  font-size:clamp(2.1rem,6.4cqi,3.9rem);
  letter-spacing:.01em;
}

.lede{
  margin-top:1rem;
  max-width:56ch;
  color:var(--concrete);
  font-size:1.06rem;
}

.hl{color:var(--amber)}

.stars{color:var(--amber);letter-spacing:.12em;font-size:.95rem}

/* ---------- buttons ---------- */
.btn{
  --bg:var(--amber);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:1rem 1.7rem;
  border:2px solid var(--bg);
  background:var(--bg);
  color:var(--ink);
  font-family:var(--cond);
  font-weight:700;
  font-size:1.02rem;
  text-transform:uppercase;
  letter-spacing:.09em;
  text-decoration:none;
  border-radius:2px;
  cursor:pointer;
  transition:transform .16s ease,background .16s ease,color .16s ease,box-shadow .16s ease;
  box-shadow:0 0 0 rgba(255,198,26,0);
}
.btn:hover{transform:translateY(-2px);box-shadow:0 8px 22px -10px rgba(255,198,26,.75)}
.btn:active{transform:translateY(0)}

.btn--amber{--bg:var(--amber)}
.btn--amber:hover{background:#FFD24D;border-color:#FFD24D}

.btn--ghost{
  background:transparent;
  border-color:#4A4F58;
  color:var(--bone);
  box-shadow:none;
}
.btn--ghost:hover{border-color:var(--amber);color:var(--amber);background:rgba(255,198,26,.06);box-shadow:none}

.btn--sm{padding:.72rem 1.25rem;font-size:.9rem}

/* ---------- hazard stripe divider ---------- */
.hazard{
  height:12px;
  background:repeating-linear-gradient(-45deg,var(--amber) 0 18px,var(--ink) 18px 36px);
  opacity:.9;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,11,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav__in{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--pad);
  min-height:var(--nav-h);
  display:flex;
  align-items:center;
  gap:1.5rem;
}

/* The brand owns the only auto margin in the bar, so everything after it is
   pinned right whether or not .nav__links is displayed. Putting the auto margin
   on the trailing items instead breaks the moment the links are hidden: an
   adjacent-sibling rule still matches a display:none element. */
.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  color:var(--amber);
  flex:0 0 auto;
  margin-right:auto;
}
/* their real logo mark, hue-matched to the amber on their ad creative */
.brand__mark{width:62px;height:auto;display:block;flex:0 0 auto}

.brand__txt{
  font-family:var(--display);
  text-transform:uppercase;
  font-size:1.32rem;
  letter-spacing:.02em;
  color:var(--bone);
  line-height:1;
}
.brand__txt span{color:var(--amber)}

.nav__links{
  display:flex;
  gap:1.6rem;
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.88rem;
}
.nav__links a{
  text-decoration:none;
  color:var(--concrete);
  padding-block:.4rem;
  border-bottom:2px solid transparent;
  transition:color .16s,border-color .16s;
  white-space:nowrap;
}
.nav__links a:hover{color:var(--bone);border-bottom-color:var(--amber)}

.nav__cta{display:flex;align-items:center;gap:.9rem;flex:0 0 auto}

.tel{
  font-family:var(--cond);
  font-weight:700;
  letter-spacing:.06em;
  text-decoration:none;
  color:var(--bone);
  white-space:nowrap;
}
.tel:hover{color:var(--amber)}

.burger{
  display:none;
  width:44px;height:40px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:2px;
  cursor:pointer;
  padding:0;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.burger span{display:block;width:20px;height:2px;background:var(--bone);transition:transform .2s,opacity .2s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobilemenu{
  display:none;
  flex-direction:column;
  border-top:1px solid var(--line);
  background:var(--steel);
  padding:.5rem var(--pad) 1.1rem;
}
.mobilemenu.open{display:flex}
.mobilemenu a{
  padding:.85rem 0;
  text-decoration:none;
  color:var(--bone);
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em;
  border-bottom:1px solid var(--steel-3);
}
.mobilemenu__tel{color:var(--amber)!important;border-bottom:0!important}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  container-type:inline-size;
  min-height:calc(100svh - var(--nav-h));
  display:flex;
  align-items:center;
  overflow:clip;
  padding-block:clamp(2rem,5cqi,4.5rem);
  isolation:isolate;
}

.hero__media{position:absolute;inset:0;z-index:-2}
.hero__media picture{display:block;width:100%;height:100%}
.hero__media img{width:100%;height:100%;object-fit:cover;object-position:60% 55%;filter:grayscale(.35) contrast(1.05)}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(100deg,rgba(10,10,11,.96) 0%,rgba(10,10,11,.88) 42%,rgba(10,10,11,.42) 78%,rgba(10,10,11,.62) 100%),
    linear-gradient(to top,rgba(10,10,11,.9),transparent 45%);
}

.hero__in{
  position:relative;
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--pad);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:clamp(.85rem,2.2cqi,1.5rem);
}

.hero__h1{
  font-family:var(--display);
  text-transform:uppercase;
  font-size:clamp(2.5rem,11cqi,6.1rem);
  line-height:.9;
  letter-spacing:.005em;
  text-shadow:0 6px 30px rgba(0,0,0,.5);
}

.hero__sub{
  max-width:46ch;
  font-size:clamp(1rem,1.9cqi,1.22rem);
  color:#CBD0D7;
}
.hero__sub strong{color:var(--bone);font-weight:600}

.hero__cta{display:flex;flex-wrap:wrap;gap:.8rem}

.proof{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:.55rem 1.15rem;
  list-style:none;
  margin:0;
  padding:0;
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.84rem;
  color:var(--concrete);
}
.proof li{display:flex;align-items:center;gap:.4rem}
.proof li + li::before{
  content:"";
  width:4px;height:4px;
  background:var(--amber);
  transform:rotate(45deg);
  margin-right:.75rem;
}
.proof b{color:var(--bone);font-weight:700}

.hero__badge{
  position:absolute;
  right:var(--pad);
  bottom:clamp(1.5rem,4cqi,3rem);
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.05rem;
  padding:1.1rem 1.5rem;
  background:var(--amber);
  color:var(--ink);
  border-radius:2px;
  transform:rotate(-2.5deg);
  box-shadow:0 18px 40px -18px rgba(0,0,0,.9);
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  line-height:1.1;
}
.hero__badge b{
  font-family:var(--display);
  font-size:2.5rem;
  letter-spacing:.01em;
  line-height:1;
  margin-block:.15rem;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.sec{padding-block:clamp(4rem,9vw,7.5rem);container-type:inline-size}
.sec--dark{background:var(--steel)}

.sec__head{margin-bottom:clamp(2.2rem,5vw,3.4rem);max-width:62ch}

.note{
  margin-top:2.4rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:1.1rem;
  padding:1.4rem 1.6rem;
  border:1px solid var(--line);
  border-left:4px solid var(--amber);
  background:var(--steel);
  color:var(--concrete);
  border-radius:2px;
}

/* ---------- what we buy ---------- */
.grid4{display:grid;grid-template-columns:repeat(auto-fit,minmax(228px,1fr));gap:1.15rem}

.card{
  position:relative;
  padding:1.9rem 1.5rem 1.7rem;
  background:var(--steel);
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  transition:border-color .2s,transform .2s;
}
.card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:3px;
  background:var(--amber);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .28s ease;
}
.card:hover{border-color:#3A3F48;transform:translateY(-3px)}
.card:hover::before{transform:scaleY(1)}

.card__no{
  display:block;
  font-family:var(--display);
  font-size:1.05rem;
  color:var(--amber);
  letter-spacing:.14em;
  margin-bottom:.85rem;
}
.card h3{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.045em;
  font-size:1.3rem;
  line-height:1.1;
  margin-bottom:.6rem;
}
.card p{color:var(--concrete);font-size:.97rem;line-height:1.6}

/* ---------- stats ---------- */
.stats{
  background:var(--amber);
  color:var(--ink);
  padding-block:clamp(2.2rem,4.5vw,3.2rem);
}
.stats__in{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:1.6rem;
  text-align:center;
}
.stat b{
  display:block;
  font-family:var(--display);
  text-transform:uppercase;
  font-size:clamp(1.9rem,4.4vw,2.9rem);
  line-height:1;
  letter-spacing:.005em;
}
.stat span{
  display:block;
  margin-top:.4rem;
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.8rem;
  color:rgba(10,10,11,.72);
}

/* ---------- steps ---------- */
.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(255px,1fr));
  gap:1.4rem;
}
.step{
  position:relative;
  padding:2rem 1.6rem 1.8rem;
  background:var(--ink);
  border:1px solid var(--line);
  border-radius:2px;
}
.step__n{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;height:46px;
  background:var(--amber);
  color:var(--ink);
  font-family:var(--display);
  font-size:1.4rem;
  border-radius:2px;
  margin-bottom:1.15rem;
}
.step h3{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.045em;
  font-size:1.35rem;
  margin-bottom:.65rem;
}
.step p{color:var(--concrete);font-size:.99rem}

/* ---------- gallery ---------- */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1rem;
}
.shot{
  margin:0;
  aspect-ratio:4/3;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:2px;
  background:var(--steel);
}
.shot picture{display:block;width:100%;height:100%}
.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease,filter .5s ease;
  filter:grayscale(.15);
}
.shot:hover img{transform:scale(1.04);filter:grayscale(0)}

/* At two columns an odd-numbered grid strands its last card beside an empty
   cell — iPad portrait is exactly this width, so let the odd one run full. */
@media (min-width:600px) and (max-width:899px){
  .gallery{grid-template-columns:repeat(2,1fr)}
  .shot:last-child{grid-column:1 / -1;aspect-ratio:3/2}
  .steps > :last-child,
  .grid3 > :last-child{grid-column:1 / -1}
}

@media (min-width:900px){
  .gallery{grid-template-columns:repeat(3,1fr)}
  /* two columns wide, so it needs twice the 4/3 ratio to keep the row even --
     `aspect-ratio:auto` here lets it size to the image and strands a tall gap
     beside its single-column neighbour */
  .shot--wide{grid-column:span 2;aspect-ratio:8/3}
}

/* ---------- reviews ---------- */
.grid3{display:grid;grid-template-columns:repeat(auto-fit,minmax(275px,1fr));gap:1.2rem}

.quote{
  margin:0;
  padding:1.9rem 1.6rem 1.6rem;
  background:var(--ink);
  border:1px solid var(--line);
  border-top:3px solid var(--amber);
  border-radius:2px;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.quote blockquote{margin:0;flex:1}
.quote blockquote p{color:#C3C9D1;font-size:.98rem;line-height:1.68}
.quote figcaption{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.86rem;
  color:var(--amber);
}

/* ---------- owner ---------- */
.owner{
  background:
    linear-gradient(rgba(10,10,11,.9),rgba(10,10,11,.9)),
    repeating-linear-gradient(-45deg,#141519 0 12px,#101115 12px 24px);
  padding-block:clamp(3.5rem,8vw,6rem);
  border-block:1px solid var(--line);
  container-type:inline-size;
}
.owner__in{max-width:820px;text-align:center;margin-inline:auto}
.owner__q{margin:0}
.owner__q p{
  font-family:var(--cond);
  font-weight:500;
  font-size:clamp(1.25rem,3.4cqi,1.95rem);
  line-height:1.35;
  color:var(--bone);
}
.owner__q p::before{content:"“"}
.owner__q p::after{content:"”"}
.owner__by{margin-top:1.6rem;display:flex;flex-direction:column;gap:.15rem}
.owner__by b{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--amber);
  font-size:.95rem;
}
.owner__by span{
  font-family:var(--cond);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  color:var(--concrete);
}

/* ---------- visit ---------- */
.visit{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2.4rem}
.visit__col .h2{margin-bottom:1rem;font-size:clamp(1.8rem,4.6cqi,2.5rem)}
.visit__addr{font-family:var(--cond);font-size:1.2rem;line-height:1.45;margin-bottom:1.2rem}

.hours{margin:0}
.hours div{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.7rem 0;
  border-bottom:1px solid var(--line);
}
.hours dt{
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.92rem;
}
.hours dd{margin:0;color:var(--amber);font-family:var(--cond);font-weight:600;font-size:.95rem;white-space:nowrap}

.visit__note{margin-top:1.1rem;color:var(--concrete);font-size:.93rem}

.contactlist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.7rem}
.contactlist a{
  text-decoration:none;
  font-family:var(--cond);
  font-weight:600;
  font-size:1.08rem;
  letter-spacing:.04em;
  border-bottom:1px solid var(--line);
  padding-bottom:.6rem;
  display:inline-block;
  transition:color .16s,border-color .16s;
}
.contactlist a:hover{color:var(--amber);border-color:var(--amber)}

/* ---------- final CTA ---------- */
.cta{
  background:var(--amber);
  color:var(--ink);
  padding-block:clamp(3.4rem,7vw,5.4rem);
  container-type:inline-size;
}
.cta__in{text-align:center;max-width:760px;margin-inline:auto}
.cta__h{
  font-family:var(--display);
  text-transform:uppercase;
  font-size:clamp(2rem,7cqi,3.6rem);
  margin-bottom:.9rem;
}
.cta__in > p{color:rgba(10,10,11,.78);font-size:1.06rem;max-width:52ch;margin-inline:auto}
.cta__row{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:1.9rem}
.cta .btn--amber{background:var(--ink);border-color:var(--ink);color:var(--amber)}
.cta .btn--amber:hover{background:#000;border-color:#000;box-shadow:0 8px 22px -10px rgba(0,0,0,.7)}
.cta .btn--ghost{border-color:rgba(10,10,11,.45);color:var(--ink)}
.cta .btn--ghost:hover{border-color:var(--ink);background:rgba(10,10,11,.07);color:var(--ink)}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot{background:var(--ink);border-top:1px solid var(--line);padding-top:clamp(2.8rem,6vw,4.2rem)}
.foot__in{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;
  padding-bottom:2.4rem;
}
.foot__logo{width:min(200px,70%);height:auto}
.foot__brand p{margin-top:1.1rem;color:var(--concrete);font-size:.94rem;max-width:38ch}
.foot__col h4{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.8rem;
  color:var(--amber);
  margin-bottom:1rem;
}
.foot__col a,.foot__col p{
  display:block;
  text-decoration:none;
  color:var(--concrete);
  font-size:.96rem;
  margin-bottom:.55rem;
}
.foot__col a:hover{color:var(--amber)}

.foot__bar{
  border-top:1px solid var(--line);
  padding-block:1.4rem;
  color:#6E747E;
  font-size:.85rem;
}

/* ==========================================================================
   MOBILE STICKY CTA
   Desktop keeps the nav button; on a phone that button is dropped so the
   burger owns the top-right corner, and this takes over instead.
   Deliberately animates transform + visibility rather than opacity — an
   opacity-0 element with a transition reads as a scroll-reveal to tooling.
   ========================================================================== */
.mcta{
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:95;
  padding:.7rem var(--pad);
  padding-bottom:calc(.7rem + env(safe-area-inset-bottom,0px));
  background:rgba(10,10,11,.93);
  backdrop-filter:blur(12px);
  border-top:1px solid var(--line);
  box-shadow:0 -14px 30px -18px rgba(0,0,0,.95);
  transform:translateY(115%);
  visibility:hidden;
  transition:transform .3s ease,visibility .3s;
}
.mcta.is-on{transform:none;visibility:visible}
.mcta .btn{width:100%}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s ease,transform .65s ease}
.reveal.in{opacity:1;transform:none}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1040px){
  .nav__links{display:none}
  .burger{display:flex}
}

/* the nav has to survive a 390px phone: brand + CTA + burger all on one row */
@media (max-width:560px){
  .nav__in{gap:.6rem}
  .nav__cta{gap:.5rem}
  .brand{gap:.5rem}
  /* the nav button is gone at this width, so the logo gets the room back */
  .brand__mark{width:54px}
  .brand__txt{font-size:1.12rem}
  .burger{width:40px;height:38px}
}

@media (max-width:720px){
  .tel{display:none}
  /* the burger gets the top-right corner to itself; the quote CTA moves to
     the sticky bottom bar */
  .nav__cta .btn{display:none}
  .mcta{display:block}
  /* No room for it beside the headline on a phone, and un-absoluting it makes
     it a flex sibling of .hero__in that runs off the edge. The $2,500 figure
     leads the amber stats band immediately below, so nothing is lost. */
  .hero__badge{display:none}
  .note{flex-direction:column;align-items:flex-start}
}

@media (max-width:420px){
  .hero__cta{flex-direction:column;align-self:stretch}
  .hero__cta .btn{width:100%}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important;
    scroll-behavior:auto!important;
  }
  .reveal{opacity:1;transform:none}
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.phead{
  padding-block:clamp(3rem,8vw,5.5rem);
  container-type:inline-size;
  background:
    linear-gradient(rgba(10,10,11,.92),rgba(10,10,11,.97)),
    repeating-linear-gradient(-45deg,#141519 0 12px,#101115 12px 24px);
}
.phead__h1{
  font-family:var(--display);
  text-transform:uppercase;
  font-size:clamp(2.3rem,9cqi,4.6rem);
  line-height:.92;
}
.phead__sub{margin-top:1.1rem;max-width:56ch;color:var(--concrete);font-size:1.06rem}

.contact{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(0,.85fr);
  gap:clamp(1.6rem,4vw,3.2rem);
  align-items:start;
}
@media (max-width:860px){
  .contact{grid-template-columns:1fr}
}

.contact__form .lede{margin-bottom:2rem}

#estimate-form{
  display:flex;
  flex-direction:column;
  gap:1.15rem;
  padding:clamp(1.4rem,3.4vw,2.2rem);
  background:var(--steel);
  border:1px solid var(--line);
  border-top:3px solid var(--amber);
  border-radius:2px;
}

.form-fields{display:flex;flex-direction:column;gap:1.15rem}
.form-fields[hidden]{display:none}

.field{display:flex;flex-direction:column;gap:.45rem}
.field label{
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.82rem;
  color:var(--amber);
}
.field input,
.field textarea{
  width:100%;
  padding:.85rem .95rem;
  background:var(--ink);
  border:1px solid var(--line);
  border-radius:2px;
  color:var(--bone);
  font-family:var(--body);
  font-size:1rem;
  line-height:1.5;
  transition:border-color .16s,box-shadow .16s;
}
.field textarea{resize:vertical;min-height:120px}
.field input::placeholder,
.field textarea::placeholder{color:#6E747E}
.field input:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--amber);
  box-shadow:0 0 0 3px rgba(255,198,26,.16);
}

#estimate-form .btn{align-self:flex-start}
#estimate-form .btn.is-sent{
  background:#2E7D32;
  border-color:#2E7D32;
  color:#fff;
  opacity:1;
  transform:none;
  box-shadow:none;
}
#estimate-form .btn:disabled{cursor:default}

.form-status{
  margin:0;
  padding:.95rem 1.1rem;
  border-radius:2px;
  font-size:.98rem;
  line-height:1.55;
}
.form-status.is-ok{background:rgba(46,125,50,.14);border:1px solid rgba(46,125,50,.5);color:#BEE7C0}
.form-status.is-err{background:rgba(193,53,42,.14);border:1px solid rgba(193,53,42,.55);color:#F3B7B2}

.turnstile-box{margin:.2rem 0}

/* ---------- side ---------- */
.contact__side{display:flex;flex-direction:column;gap:1rem}

.sidecard{
  padding:1.3rem 1.4rem;
  background:var(--steel);
  border:1px solid var(--line);
  border-left:3px solid var(--amber);
  border-radius:2px;
}
.sidecard h3{
  font-family:var(--cond);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.8rem;
  color:var(--amber);
  margin-bottom:.6rem;
}
.sidecard p{color:var(--concrete);font-size:.95rem}
.sidecard a{
  display:inline-block;
  margin-top:.15rem;
  text-decoration:none;
  font-family:var(--cond);
  font-weight:600;
  font-size:1.05rem;
  letter-spacing:.03em;
  color:var(--bone);
}
.sidecard a:hover{color:var(--amber)}
.sidecard__big{
  font-family:var(--display)!important;
  font-size:1.65rem!important;
  letter-spacing:.02em!important;
  color:var(--amber)!important;
  margin-bottom:.35rem;
}

.ticks{
  list-style:none;
  margin:0;
  padding:1.2rem 1.4rem;
  border:1px dashed var(--line);
  border-radius:2px;
  display:flex;
  flex-direction:column;
  gap:.6rem;
}
.ticks li{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-family:var(--cond);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.87rem;
  color:var(--concrete);
}
.ticks li::before{
  content:"";
  flex:0 0 auto;
  width:7px;height:7px;
  background:var(--amber);
  transform:rotate(45deg);
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}

/* Shares the footer's own copyright row: sits opposite it rather than adding a
   third line under the page. The parent is reached with :has() so no client
   class name has to be guessed, and the rule cannot fire on a footer that has
   no inline credit in it. */
.site-credit--inline {
  margin: 0;
  padding: 0;
  text-align: right;
}
footer :has(> .site-credit--inline) {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1.5rem;
}
/* === end site credit === */

/* === nav toggle right — injected by nav_toggle_right.py; do not hand-edit ===
   Below this breakpoint the desktop links are hidden, and any rule keyed off
   them (`.links + .cta { margin-left: 0 }` and friends) keeps matching because
   display:none leaves the element in the DOM. That silently cancels the push
   that puts the hamburger in the corner. Give it back.

   !important on purpose: the whole failure mode is another rule winning this
   exact property, and that rule may outrank this one on specificity.
   margin-inline-start rather than margin-left so the toggle sits at the END of
   the bar, which stays correct if the page is ever served RTL. */
@media (max-width: 1040px) {
  .nav__in > .nav__cta { margin-inline-start: auto !important; }
}
/* === end nav toggle right === */
