/* ============================================================
   DUCTWORKS — "The Clean-Air Index"
   Bold Modern Brand direction for airductcleaningservices.co
   Shared stylesheet. Self-contained. No build step.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Spline+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Ink + paper */
  --ink:        #0d0f0c;   /* near-black, faint warm-green cast */
  --ink-2:      #16191450; /* translucent ink for overlays */
  --paper:      #f4f1e9;   /* warm bone, NOT pure white */
  --paper-2:    #eae6da;   /* slightly deeper bone */
  --line:       #d8d2c2;   /* hairline on paper */
  --line-dark:  #2a2e26;   /* hairline on ink */

  /* Signature palette — deliberately NOT HVAC-blue, NOT AI-purple */
  --ozone:      #d8fe57;   /* electric acid-citron — the brand mark */
  --ozone-deep: #b6e02e;
  --teal:       #0c5c4f;   /* deep clean teal */
  --teal-bright:#19a98e;
  --clay:       #e8552f;   /* warning/accent orange-red */

  /* Functional */
  --star:       #f2b705;

  /* Type */
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body:    "Spline Sans", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(18px, 4vw, 56px);
  --radius: 4px; /* hard-ish edges; brand uses sharp corners */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

/* Grain overlay — gives photos + flat fills a printed texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 9vw, 130px); }

/* ---------- Type system ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: currentColor; opacity: 0.5;
}
h1, h2, h3 { font-family: var(--display); margin: 0; line-height: 0.96; letter-spacing: -0.02em; font-weight: 700; }
.display-xxl { font-size: clamp(52px, 11vw, 168px); font-weight: 800; letter-spacing: -0.045em; }
.display-xl  { font-size: clamp(38px, 6.5vw, 92px);  font-weight: 700; }
.display-l   { font-size: clamp(30px, 4.4vw, 60px);  font-weight: 700; }
.display-m   { font-size: clamp(22px, 2.6vw, 34px);  font-weight: 700; }
.lede { font-size: clamp(17px, 1.6vw, 21px); max-width: 56ch; color: #3a3d35; }
.mono { font-family: var(--mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-weight: 500; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 26px; border: 1.5px solid var(--ink);
  background: var(--ink); color: var(--paper);
  border-radius: 2px;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, background .18s, color .18s;
  position: relative;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ozone-deep); }
.btn--ozone { background: var(--ozone); color: var(--ink); border-color: var(--ink); }
.btn--ozone:hover { box-shadow: 4px 4px 0 var(--ink); background: var(--ozone); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { box-shadow: 4px 4px 0 var(--ink); }
.btn--on-ink { background: var(--ozone); color: var(--ink); border-color: var(--ozone); }
.btn--ghost-on-ink { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ghost-on-ink:hover { box-shadow: 4px 4px 0 var(--ozone); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1.5px solid var(--ink);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.brand .mark {
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--ink); color: var(--ozone); border-radius: 3px;
  font-size: 18px; transform: rotate(-6deg);
}
.brand small { font-family: var(--mono); font-weight: 400; font-size: 10px; letter-spacing: 0.16em; color: var(--teal); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14px; font-weight: 500; position: relative; }
.nav a::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background: var(--ozone-deep); transition: width .2s; }
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 11px 18px; }
.head-tools { display: flex; align-items: center; gap: 18px; }
@media (max-width: 860px){ .nav .nav-link { display:none; } }

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden; white-space: nowrap; border-bottom: 1.5px solid var(--ink);
}
.marquee__inner { display: inline-flex; gap: 48px; padding-block: 11px; animation: slide 32s linear infinite; }
.marquee span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; display:inline-flex; align-items:center; gap:48px; }
.marquee b { color: var(--ozone); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 84px); padding-bottom: clamp(48px,7vw,96px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px,4vw,60px); align-items: end; }
.hero__title { position: relative; }
.hero__title .line { display: block; }
.hero__title .stroke {
  -webkit-text-stroke: 2px var(--ink); color: transparent;
}
.hero__title em { font-style: normal; color: var(--teal); position: relative; }
.hero__title .swoop { color: var(--ink); background: var(--ozone); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; align-items: center; }
.hero__lede { margin-top: 26px; }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* hero image block — signature duotone treatment */
.duo {
  position: relative; overflow: hidden; background: var(--teal);
  border: 1.5px solid var(--ink);
}
.duo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.18) brightness(0.92);
  mix-blend-mode: luminosity;
  opacity: 0.9;
}
.duo::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(150deg, var(--teal) 0%, transparent 55%, var(--ozone) 165%);
  mix-blend-mode: multiply; opacity: 0.65;
}
.duo--ozone { background: var(--ozone-deep); }
.duo--ozone::after { background: linear-gradient(150deg, var(--ozone) 0%, transparent 60%, var(--teal) 175%); opacity:.5; }
.hero__img { aspect-ratio: 4/5; border-radius: var(--radius); transform: rotate(1.5deg); }
.hero__img-tag {
  position: absolute; left: -1.5px; bottom: 22px; z-index: 3;
  background: var(--ink); color: var(--ozone);
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 14px;
}
.hero__badge {
  position: absolute; top: -18px; right: -14px; z-index: 4;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--ozone); color: var(--ink); border: 1.5px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 800; line-height: 0.92;
  transform: rotate(8deg);
  animation: spinwob 9s ease-in-out infinite alternate;
}
.hero__badge small { display:block; font-family: var(--mono); font-weight:500; font-size:8.5px; letter-spacing:.1em; margin-top:3px; }
@keyframes spinwob { from{ transform: rotate(6deg);} to{ transform: rotate(-8deg);} }

/* Big stat ticker */
.statline { display:flex; flex-direction: column; }
.statline .num { font-family: var(--display); font-weight: 800; font-size: clamp(30px,3.4vw,46px); line-height: 1; letter-spacing: -0.03em; }
.statline .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-top: 6px; }

/* Search affordance */
.search {
  margin-top: 30px; display: flex; align-items: stretch; gap: 0;
  border: 1.5px solid var(--ink); background: var(--paper); border-radius: 3px; overflow: hidden;
  max-width: 520px; box-shadow: 5px 5px 0 var(--ink);
}
.search input {
  flex: 1; border: 0; background: transparent; padding: 16px 18px;
  font-family: var(--body); font-size: 16px; color: var(--ink); outline: none; min-width: 0;
}
.search input::placeholder { color: #7c7d72; }
.search button {
  border: 0; background: var(--ozone); color: var(--ink); padding: 0 22px;
  font-family: var(--mono); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  border-left: 1.5px solid var(--ink);
}
.search button:hover { background: var(--ink); color: var(--ozone); }

/* ---------- Section headers ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head .idx { font-family: var(--mono); font-size: 12px; color: var(--teal); letter-spacing: .16em; }

/* ---------- Services tiles ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.svc {
  position: relative; overflow: hidden; border: 1.5px solid var(--ink); border-radius: var(--radius);
  background: var(--ink); color: var(--paper); min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.svc:hover { transform: translateY(-6px); }
.svc:hover .svc__img { transform: scale(1.06); }
.svc__img { position: absolute; inset: 0; z-index: 0; transition: transform .5s; }
.svc__img img { width:100%; height:100%; object-fit: cover; filter: grayscale(1) contrast(1.15); opacity:.5; }
.svc::before { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(180deg, transparent 20%, var(--ink) 96%); }
.svc__no { position: relative; z-index:2; font-family: var(--mono); font-size: 11px; color: var(--ozone); letter-spacing:.16em; }
.svc h3 { position: relative; z-index:2; font-size: clamp(20px,2vw,26px); margin-top: 8px; }
.svc p { position: relative; z-index:2; font-size: 13.5px; color: #c9c9bf; margin: 10px 0 0; max-width: 30ch; }
.svc .go { position:absolute; top: 18px; right: 18px; z-index:2; width: 38px; height: 38px; border: 1.5px solid var(--paper); border-radius: 50%; display:grid; place-items:center; transition: background .2s, color .2s; }
.svc:hover .go { background: var(--ozone); color: var(--ink); border-color: var(--ozone); }
/* spans */
.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; } .span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; } .span-12 { grid-column: span 12; }
.svc--tall { min-height: 420px; }
@media (max-width: 900px){ .svc-grid { grid-template-columns: 1fr 1fr; } .svc { grid-column: span 1 !important; } }
@media (max-width: 560px){ .svc-grid { grid-template-columns: 1fr; } }

/* ---------- States browse ---------- */
.states {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 0;
  border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden;
}
.state {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 20px; transition: background .18s, color .18s; position: relative;
}
.state:hover { background: var(--ink); color: var(--paper); }
.state:hover .state__n { color: var(--ozone); }
.state .abbr { font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1; letter-spacing: -.03em; }
.state .name { font-size: 13px; margin-top: 8px; }
.state__n { font-family: var(--mono); font-size: 11px; color: var(--teal); margin-top: 4px; transition: color .18s; }

/* ---------- Trust band ---------- */
.trust { background: var(--ink); color: var(--paper); border-block: 1.5px solid var(--ink); }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,70px); align-items: center; }
.cert-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cert {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1.5px solid var(--line-dark); padding: 10px 15px; border-radius: 2px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
}
.cert .dot { width: 8px; height: 8px; background: var(--ozone); border-radius: 50%; }
.bigquote { font-family: var(--display); font-weight: 700; font-size: clamp(26px,3vw,42px); line-height: 1.05; letter-spacing: -.02em; }
.bigquote b { color: var(--ozone); }

/* ---------- Business card (city + featured) ---------- */
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px){ .biz-grid { grid-template-columns: 1fr; } }
.card {
  display: grid; grid-template-columns: 132px 1fr; gap: 0;
  border: 1.5px solid var(--ink); border-radius: var(--radius); overflow: hidden;
  background: var(--paper); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--ink); }
.card__media { position: relative; overflow: hidden; border-right: 1.5px solid var(--ink); background: var(--teal); }
.card__media img { width:100%; height:100%; object-fit: cover; filter: grayscale(1) contrast(1.12); mix-blend-mode: luminosity; opacity:.92; }
.card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg,var(--teal),transparent 70%, var(--ozone)); mix-blend-mode: multiply; opacity:.55; }
.card__rank { position:absolute; top:0; left:0; z-index:2; background: var(--ozone); color: var(--ink); font-family: var(--mono); font-weight:700; font-size: 12px; padding: 4px 8px; }
.card__body { padding: 18px 20px; display:flex; flex-direction:column; }
.card__name { font-family: var(--display); font-weight: 700; font-size: 19px; line-height: 1.04; letter-spacing: -.02em; }
.card__loc { font-size: 13px; color: #5b5d52; margin-top: 5px; }
.card__rate { display:flex; align-items:center; gap:8px; margin-top: 12px; font-family: var(--mono); font-size: 13px; }
.card__rate .stars { color: var(--star); letter-spacing: 1px; }
.card__rate .n { color: var(--teal); }
.chips { display:flex; flex-wrap:wrap; gap:6px; margin-top: 14px; }
.chip { font-family: var(--mono); font-size: 10.5px; letter-spacing:.04em; padding: 4px 9px; border:1px solid var(--line); border-radius: 100px; color:#444; background: var(--paper-2); }
.chip--cert { background: var(--ink); color: var(--ozone); border-color: var(--ink); }
.card__foot { margin-top: auto; padding-top: 16px; display:flex; gap: 10px; align-items:center; }
.card__foot .tel { font-family: var(--mono); font-size: 13px; font-weight: 600; }
.card__foot .view { margin-left:auto; font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--teal); display:inline-flex; gap:6px; align-items:center; }
.card:hover .view .arrow { transform: translateX(3px); }
@media (max-width: 460px){ .card { grid-template-columns: 1fr; } .card__media { aspect-ratio: 16/7; border-right:0; border-bottom: 1.5px solid var(--ink);} }

/* ---------- Filters ---------- */
.filters { display:flex; flex-wrap:wrap; gap:10px; align-items:center; padding: 16px 0 30px; border-bottom: 1.5px solid var(--ink); margin-bottom: 30px; }
.filters .lbl { font-family: var(--mono); font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: var(--teal); margin-right: 6px; }
.pill {
  font-family: var(--mono); font-size: 12px; padding: 9px 15px; border:1.5px solid var(--ink);
  border-radius: 100px; background: transparent; transition: all .15s; letter-spacing:.02em;
}
.pill:hover { background: var(--paper-2); }
.pill[aria-pressed="true"] { background: var(--ink); color: var(--ozone); }
.filters .count { margin-left: auto; font-family: var(--mono); font-size: 13px; color:#5b5d52; }

/* ---------- City hero ---------- */
.city-hero { position: relative; background: var(--ink); color: var(--paper); overflow: hidden; }
.city-hero__bg { position:absolute; inset:0; z-index:0; }
.city-hero__bg img { width:100%; height:100%; object-fit:cover; filter: grayscale(1) contrast(1.2); opacity:.32; }
.city-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, var(--ink) 30%, transparent 120%); }
.city-hero .wrap { position: relative; z-index:1; padding-block: clamp(48px,8vw,110px); }
.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing:.08em; color: #b9c0ab; margin-bottom: 22px; }
.crumbs a:hover { color: var(--ozone); }
.crumbs .sep { opacity:.4; margin: 0 8px; }
.city-stats { display:flex; flex-wrap:wrap; gap: clamp(26px,5vw,64px); margin-top: 30px; }
.city-stats .num { color: var(--ozone); }
.city-stats .lbl { color:#b9c0ab; }

/* ---------- Location (detail) ---------- */
.loc-hero { border-bottom: 1.5px solid var(--ink); }
.loc-hero .wrap { padding-top: 36px; padding-bottom: 0; }
.loc-top { display:grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px,4vw,56px); align-items: stretch; }
.loc-head__rate { display:flex; align-items:center; gap: 14px; flex-wrap:wrap; margin: 18px 0 22px; }
.ratebox { display:flex; align-items:baseline; gap:8px; }
.ratebox .big { font-family: var(--display); font-weight:800; font-size: 56px; line-height:.9; letter-spacing:-.03em; }
.ratebox .stars { color: var(--star); font-size: 18px; letter-spacing: 2px; }
.ratebox .rc { font-family: var(--mono); font-size: 13px; color: var(--teal); }
.loc-cta { display:flex; flex-wrap:wrap; gap: 12px; margin: 8px 0 30px; }
.loc-photo { position: relative; align-self: stretch; min-height: 320px; }
.loc-photo .duo { height:100%; aspect-ratio: auto; border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; }
.loc-photo .hero__img-tag { bottom: auto; top: 18px; }

.napbar { display:grid; grid-template-columns: repeat(4,1fr); border: 1.5px solid var(--ink); border-radius: var(--radius); overflow:hidden; margin-top: 26px; background: var(--paper); }
.napbar .cell { padding: 18px 20px; border-right: 1px solid var(--line); }
.napbar .cell:last-child { border-right: 0; }
.napbar .k { font-family: var(--mono); font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--teal); }
.napbar .v { font-size: 15px; font-weight: 500; margin-top: 7px; line-height: 1.35; }
.napbar .v.open { color: var(--teal-bright); font-weight:600; }
@media (max-width: 820px){ .napbar { grid-template-columns: 1fr 1fr; } .napbar .cell:nth-child(2n){border-right:0;} }
@media (max-width: 760px){ .loc-top { grid-template-columns: 1fr; } .loc-photo { min-height: 280px; } }

.loc-body { display:grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
@media (max-width: 880px){ .loc-body { grid-template-columns: 1fr; } }
.block { margin-bottom: 48px; }
.block h2 { font-size: clamp(24px,2.6vw,34px); margin-bottom: 20px; display:flex; align-items:center; gap:14px; }
.block h2 .tick { font-family: var(--mono); font-size: 13px; color: var(--teal); font-weight:400; }
.svc-list { display:grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border:1.5px solid var(--ink); border-radius: var(--radius); overflow:hidden; }
.svc-list li { background: var(--paper); padding: 15px 18px; display:flex; align-items:center; gap:12px; font-size: 14.5px; font-weight: 500; transition: background .15s; }
.svc-list li:hover { background: var(--ozone); }
.svc-list .n { font-family: var(--mono); font-size: 11px; color: var(--teal); }
@media (max-width:520px){ .svc-list { grid-template-columns: 1fr; } }

.badges { display:flex; flex-wrap:wrap; gap:10px; }
.badge {
  display:inline-flex; align-items:center; gap:9px; border:1.5px solid var(--ink);
  padding: 11px 16px; border-radius: 2px; font-family: var(--mono); font-size: 12.5px; font-weight:500;
  background: var(--paper);
}
.badge svg { color: var(--teal-bright); }
.badge--filled { background: var(--ink); color: var(--paper); }
.badge--filled svg { color: var(--ozone); }

.areas { display:flex; flex-wrap:wrap; gap:8px; }
.area-tag { font-family: var(--mono); font-size: 12px; padding: 8px 13px; border:1px solid var(--line); border-radius: 100px; background: var(--paper-2); }
.area-tag:hover { background: var(--ink); color: var(--ozone); border-color: var(--ink); }

/* aside */
.aside { position: sticky; top: 92px; }
.quote-card { border: 1.5px solid var(--ink); border-radius: var(--radius); overflow:hidden; box-shadow: 7px 7px 0 var(--ink); }
.quote-card__top { background: var(--ozone); color: var(--ink); padding: 22px 24px; border-bottom: 1.5px solid var(--ink); }
.quote-card__top h3 { font-size: 24px; }
.quote-card__top p { font-family: var(--mono); font-size: 12px; margin: 8px 0 0; }
.quote-card__body { padding: 22px 24px; background: var(--paper); }
.field { margin-bottom: 14px; }
.field label { display:block; font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--teal); margin-bottom:6px; }
.field input, .field select { width:100%; border:1.5px solid var(--ink); border-radius:2px; padding: 12px 13px; font-family: var(--body); font-size:15px; background: var(--paper); outline:none; }
.field input:focus, .field select:focus { box-shadow: 3px 3px 0 var(--ozone-deep); }
.quote-card .btn { width:100%; justify-content:center; }
.claim-strip { margin-top: 16px; border:1.5px dashed var(--ink); border-radius: var(--radius); padding: 16px 18px; font-size: 13.5px; }
.claim-strip b { font-family: var(--display); }
.claim-strip a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* hours table */
.hours { width:100%; border-collapse: collapse; font-size: 14px; }
.hours td { padding: 9px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 13px; }
.hours td:last-child { text-align:right; }
.hours tr.today td { font-weight: 700; }
.hours tr.today td:first-child::before { content:"› "; color: var(--teal-bright); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ozone); border-block: 1.5px solid var(--ink); position: relative; overflow:hidden; }
.cta-band .wrap { position: relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap: wrap; padding-block: clamp(40px,6vw,72px); }
.cta-band h2 { font-size: clamp(30px,5vw,64px); max-width: 16ch; }
.cta-band .ghost-num { position:absolute; right: -2%; top: 50%; transform: translateY(-50%); font-family: var(--display); font-weight:800; font-size: 30vw; color: var(--ink); opacity:.06; z-index:0; line-height:1; pointer-events:none; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: var(--paper); }
.foot__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(48px,6vw,80px); }
.foot h4 { font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform:uppercase; color: var(--ozone); margin: 0 0 18px; }
.foot ul li { margin-bottom: 11px; }
.foot a { font-size: 14px; color: #cfd3c6; }
.foot a:hover { color: var(--ozone); }
.foot .brand { color: var(--paper); margin-bottom: 18px; }
.foot .blurb { font-size: 14px; color: #aab09c; max-width: 38ch; }
.foot__bot { border-top: 1px solid var(--line-dark); padding-block: 22px; display:flex; justify-content:space-between; gap: 16px; flex-wrap:wrap; font-family: var(--mono); font-size: 12px; color:#8a8f7e; }
.foot__bot b { color: var(--ozone); }
@media (max-width: 760px){ .foot__top { grid-template-columns: 1fr 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes rise { to { opacity:1; transform:none; } }
.d1{animation-delay:.05s}.d2{animation-delay:.12s}.d3{animation-delay:.2s}.d4{animation-delay:.28s}.d5{animation-delay:.36s}.d6{animation-delay:.44s}
@media (prefers-reduced-motion: reduce){
  .reveal, .marquee__inner, .hero__badge { animation: none !important; opacity:1 !important; transform:none !important; }
  * { scroll-behavior:auto; }
}

/* ---------- Hero responsive ---------- */
@media (max-width: 880px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { max-width: 360px; }
}
