/* ==========================================================================
   AirDuct Directory — "Clean Utility / Trust" design direction (prototype v2)
   Self-contained, no build step. Hand-written CSS.
   Type:  Bricolage Grotesque (display) + Public Sans (body)
   Color: ink navy anchor + honey-amber warmth + teal-green CTA
   ========================================================================== */

@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=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* core palette */
  --ink:        #0E1B2A;   /* deep navy — anchor, text, footer */
  --ink-700:    #1C2D40;
  --ink-500:    #41546B;   /* muted body text */
  --ink-300:    #7C8AA0;   /* captions */
  --line:       #E3E8EF;   /* hairline borders */
  --line-soft:  #EEF2F7;
  --paper:      #FFFFFF;
  --paper-2:    #F6F8FB;   /* section wash */
  --paper-3:    #EFF3F8;

  /* accents */
  --teal:       #0F9D77;   /* primary CTA */
  --teal-700:   #0B7C5E;
  --teal-050:   #E6F6F0;
  --honey:      #FFC24B;   /* warmth, highlights, hero */
  --honey-soft: #FFF1D2;
  --honey-line: #F4D08A;
  --coral:      #F0654A;   /* urgency / phone */

  /* stars / rating */
  --star:       #F4A724;

  /* shape + depth */
  --r-xs: 6px;  --r-sm: 10px;  --r-md: 14px;  --r-lg: 20px;  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(14,27,42,.06), 0 1px 1px rgba(14,27,42,.04);
  --shadow-md: 0 8px 24px -12px rgba(14,27,42,.18), 0 2px 6px rgba(14,27,42,.05);
  --shadow-lg: 0 28px 60px -28px rgba(14,27,42,.34);
  --ring: 0 0 0 3px rgba(15,157,119,.22);

  --maxw: 1180px;
  --header-h: 70px;

  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Public Sans', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 16px -8px rgba(15,157,119,.7); }
.btn-primary:hover { background: var(--teal-700); box-shadow: 0 10px 22px -10px rgba(15,157,119,.75); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-700); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--ink-300); }
.btn-phone { background: var(--coral); color: #fff; box-shadow: 0 6px 16px -8px rgba(240,101,74,.7); }
.btn-phone:hover { filter: brightness(.96); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--ink);
  position: relative; overflow: hidden;
  flex: none;
}
.brand .mark svg { width: 19px; height: 19px; }
.brand .mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,194,75,.5));
}
.brand b { color: var(--teal); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a { padding: 9px 13px; border-radius: var(--r-sm); font-weight: 600; font-size: 14.5px; color: var(--ink-700); }
.nav a:hover { background: var(--paper-2); }
.header-cta { margin-left: 6px; }
.menu-btn { display: none; margin-left: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(255,194,75,.20), transparent 55%),
    radial-gradient(700px 460px at -8% 110%, rgba(15,157,119,.26), transparent 60%);
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding-top: 64px; padding-bottom: 70px; }
.hero-copy .eyebrow { color: var(--honey); }
.hero-copy .eyebrow::before { background: var(--honey); }
.hero h1 { color: #fff; font-size: clamp(38px, 5.4vw, 60px); font-weight: 800; margin: 18px 0 0; }
.hero h1 .hl { color: var(--honey); position: relative; white-space: nowrap; }
.hero p.lede { color: #C6D0DE; font-size: 18.5px; max-width: 46ch; margin: 18px 0 0; }

/* search box */
.searchbar {
  margin-top: 30px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1px 1fr auto;
  align-items: center;
  gap: 0;
}
.searchbar .field { display: flex; align-items: center; gap: 11px; padding: 8px 14px; }
.searchbar .field svg { width: 20px; height: 20px; color: var(--ink-300); flex: none; }
.searchbar .field input {
  border: 0; outline: none; width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: transparent;
}
.searchbar .field input::placeholder { color: var(--ink-300); }
.searchbar .field label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-300); margin-bottom: 1px; }
.searchbar .sep { width: 1px; height: 34px; background: var(--line); }
.searchbar .btn { margin: 4px; }
.search-hints { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.search-hints span { color: #9FAEC0; font-size: 13px; font-weight: 600; }
.chip-link { color: #D7E0EC; font-size: 13px; font-weight: 600; padding: 5px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; transition: .14s; }
.chip-link:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.32); }

/* hero visual */
.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/6;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,42,0) 40%, rgba(14,27,42,.45));
  mix-blend-mode: multiply;
}
.float-card {
  position: absolute; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 14px 16px; display: flex; gap: 12px; align-items: center;
}
.float-card .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-card .big { font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1; }
.float-card .lbl { font-size: 12px; color: var(--ink-500); font-weight: 600; }
.float-card.a { left: -26px; top: 40px; }
.float-card.b { right: -22px; bottom: 56px; }

/* trust strip */
.trust-strip { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding: 18px 24px; justify-content: center; }
.trust-strip .ti { display: flex; align-items: center; gap: 9px; color: var(--ink-700); font-weight: 600; font-size: 14px; }
.trust-strip .ti svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* ---------- generic section ---------- */
section.block { padding: 76px 0; }
section.block.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.sec-head h2 { font-size: clamp(27px, 3.4vw, 38px); }
.sec-head p { color: var(--ink-500); margin: 9px 0 0; max-width: 52ch; }
.sec-head .link { color: var(--teal-700); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.sec-head .link:hover { gap: 9px; }

/* service tiles */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; display: block; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.svc-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-tile:hover img { transform: scale(1.06); }
.svc-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,42,0) 30%, rgba(14,27,42,.82));
}
.svc-tile .cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; }
.svc-tile .cap h3 { color: #fff; font-size: 19px; }
.svc-tile .cap .meta { font-size: 13px; color: #D7E0EC; font-weight: 600; margin-top: 3px; display: flex; align-items: center; gap: 7px; }
.svc-tile .badge-corner {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--ink); font-weight: 700; font-size: 11.5px;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .02em;
}

/* ---------- business card ---------- */
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.biz-card {
  display: grid; grid-template-columns: 132px 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: box-shadow .18s ease, transform .18s ease, border-color .18s;
}
.biz-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #D4DCE7; }
.biz-card .thumb { position: relative; overflow: hidden; }
.biz-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.biz-card .thumb .verified {
  position: absolute; top: 9px; left: 9px;
  background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 4px 8px; border-radius: 999px; display: flex; align-items: center; gap: 4px;
}
.biz-card .thumb .verified svg { width: 11px; height: 11px; color: var(--honey); }
.biz-body { padding: 16px 18px; display: flex; flex-direction: column; }
.biz-body .top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.biz-body h3 { font-size: 17.5px; letter-spacing: -.01em; }
.biz-body .loc { font-size: 13.5px; color: var(--ink-500); margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.biz-body .loc svg { width: 13px; height: 13px; color: var(--ink-300); }
.rating { display: inline-flex; align-items: center; gap: 6px; }
.rating .stars { display: inline-flex; gap: 1px; }
.rating .stars svg { width: 14px; height: 14px; color: var(--star); }
.rating .num { font-weight: 700; font-size: 14px; }
.rating .cnt { color: var(--ink-300); font-size: 12.5px; font-weight: 500; }
.rating.pill { background: var(--honey-soft); border: 1px solid var(--honey-line); padding: 4px 9px; border-radius: 999px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag { font-size: 12px; font-weight: 600; color: var(--ink-700); background: var(--paper-2); border: 1px solid var(--line); padding: 4px 9px; border-radius: 7px; }
.tag.more { color: var(--ink-300); background: transparent; border-color: transparent; }
.biz-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 14px; }
.biz-actions .btn { flex: 1; padding: 10px 12px; font-size: 13.5px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.cert { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; color: var(--teal-700); background: var(--teal-050); padding: 3px 8px; border-radius: 6px; }
.cert svg { width: 12px; height: 12px; }

/* ---------- browse by state ---------- */
.state-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.state-card {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 15px 17px; transition: .16s;
}
.state-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.state-card .name { font-weight: 700; font-family: var(--font-display); font-size: 16px; }
.state-card .cnt { font-size: 13px; color: var(--ink-300); font-weight: 600; }
.state-card .arrow { color: var(--teal); opacity: 0; transform: translateX(-4px); transition: .16s; }
.state-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; position: relative; }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--teal); width: 34px; height: 34px; border-radius: 10px; background: var(--teal-050); display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 19px; }
.step p { color: var(--ink-500); margin: 8px 0 0; font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--honey); border-radius: var(--r-xl); padding: 46px; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; position: relative; overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(14,27,42,.06); }
.cta-banner h2 { font-size: clamp(26px, 3.2vw, 34px); position: relative; }
.cta-banner p { color: var(--ink-700); margin: 8px 0 0; max-width: 50ch; position: relative; }
.cta-banner .actions { display: flex; gap: 12px; position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #B9C4D4; padding: 60px 0 28px; }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 36px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p.about { font-size: 14px; max-width: 34ch; color: #94A2B6; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer a:hover { color: #fff; }
.site-footer .legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7E8DA3; }

/* ===========================================================================
   CITY PAGE
   =========================================================================== */
.subnav { font-size: 13.5px; color: var(--ink-500); display: flex; align-items: center; gap: 8px; padding: 16px 0; }
.subnav a:hover { color: var(--teal-700); }
.subnav .sep { color: var(--ink-300); }
.city-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 8px 0 38px; }
.city-hero h1 { font-size: clamp(30px, 4vw, 44px); }
.city-hero .lede { color: var(--ink-500); max-width: 60ch; margin: 12px 0 0; font-size: 16.5px; }
.city-hero .stats { display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.city-hero .stat .v { font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.city-hero .stat .l { font-size: 12.5px; color: var(--ink-500); font-weight: 600; }

.layout { display: grid; grid-template-columns: 268px 1fr; gap: 32px; padding: 34px 0 80px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 4px 0; }
.filters .fg { padding: 18px 20px; border-bottom: 1px solid var(--line-soft); }
.filters .fg:last-child { border-bottom: 0; }
.filters h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-300); margin-bottom: 12px; }
.check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14.5px; color: var(--ink-700); cursor: pointer; }
.check input { appearance: none; width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 5px; display: grid; place-items: center; transition: .12s; flex: none; }
.check input:checked { background: var(--teal); border-color: var(--teal); }
.check input:checked::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 800; }
.check:hover { color: var(--ink); }
.check .c { margin-left: auto; color: var(--ink-300); font-size: 12.5px; font-weight: 600; }
.fdash { display:flex; align-items:center; gap:8px; }
.rng { width: 100%; accent-color: var(--teal); }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.results-bar .count { font-weight: 700; font-size: 15px; }
.results-bar .count b { font-family: var(--font-display); }
.seg { display: inline-flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 3px; gap: 2px; }
.seg button { border: 0; background: transparent; padding: 7px 12px; border-radius: 7px; font-weight: 600; font-size: 13.5px; color: var(--ink-500); }
.seg button.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.sortsel { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-500); }
.sortsel select { font-family: inherit; font-size: 14px; font-weight: 600; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px 11px; background: #fff; color: var(--ink); }

.city-list { display: grid; gap: 16px; }
.city-list .biz-card { grid-template-columns: 184px 1fr; }
.featured-row { position: relative; border-color: var(--honey-line); box-shadow: 0 0 0 1px var(--honey-line), var(--shadow-sm); }
.featured-tag { position: absolute; top: 12px; right: 14px; background: var(--honey); color: var(--ink); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; z-index: 3; letter-spacing: .03em; }

.pager { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pager a { min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--r-sm); font-weight: 600; color: var(--ink-700); }
.pager a:hover { border-color: var(--ink-300); }
.pager a.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===========================================================================
   LOCATION (DETAIL) PAGE
   =========================================================================== */
.loc-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.loc-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 360px at 88% -20%, rgba(255,194,75,.16), transparent 60%); }
.loc-hero .wrap { position: relative; padding: 8px 24px 0; }
.loc-hero .subnav a, .loc-hero .subnav { color: #9FB0C4; }
.loc-hero .subnav a:hover { color: #fff; }
.loc-top { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 14px 0 30px; align-items: end; }
.loc-id .kicker { display:flex; align-items:center; gap:10px; margin-bottom: 12px; flex-wrap: wrap; }
.kicker .cat { background: rgba(255,255,255,.1); color:#fff; font-weight:700; font-size:12.5px; padding:5px 11px; border-radius:999px; border:1px solid rgba(255,255,255,.16); }
.loc-id h1 { color: #fff; font-size: clamp(30px, 4.2vw, 46px); }
.loc-id .meta-line { display:flex; align-items:center; gap:16px; margin-top:14px; flex-wrap:wrap; color:#C6D0DE; font-size:15px; }
.loc-id .meta-line .rating .num, .loc-id .meta-line .rating .stars svg { }
.loc-id .meta-line .rating .num { color:#fff; }
.loc-id .meta-line .v { display:flex; align-items:center; gap:6px; }
.loc-id .meta-line svg { width:16px; height:16px; color:#9FB0C4; }
.loc-cta-card { background:#fff; color:var(--ink); border-radius: var(--r-lg); padding: 20px; width: 320px; box-shadow: var(--shadow-lg); }
.loc-cta-card .open { display:inline-flex; align-items:center; gap:7px; font-weight:700; color:var(--teal-700); font-size:14px; background:var(--teal-050); padding:6px 11px; border-radius:999px; }
.loc-cta-card .open .dotg { width:8px; height:8px; border-radius:50%; background:var(--teal); box-shadow:0 0 0 3px rgba(15,157,119,.2); }
.loc-cta-card .phone-big { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 14px 0 4px; letter-spacing:-.01em; }
.loc-cta-card .cta-stack { display:grid; gap:9px; margin-top:14px; }
.loc-cta-card .fineprint { font-size:12px; color:var(--ink-300); text-align:center; margin-top:10px; }

.loc-gallery { display:grid; grid-template-columns: 2fr 1fr 1fr; gap:8px; padding:18px 0 0; }
.loc-gallery .g { border-radius: var(--r-md); overflow:hidden; aspect-ratio: 16/10; position:relative; }
.loc-gallery .g.tall { grid-row: span 2; aspect-ratio: auto; }
.loc-gallery .g img { width:100%; height:100%; object-fit:cover; }
.loc-gallery .more-photos { position:absolute; inset:0; background:rgba(14,27,42,.55); color:#fff; display:grid; place-items:center; font-weight:700; }

.loc-body { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 40px 0 80px; align-items: start; }
.card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.card + .card { margin-top: 20px; }
.card h2 { font-size: 22px; margin-bottom: 6px; }
.card .sub { color: var(--ink-500); font-size: 14.5px; margin-bottom: 18px; }
.prose p { color: var(--ink-700); }

.svc-list { display:grid; grid-template-columns: repeat(2,1fr); gap:10px; }
.svc-item { display:flex; align-items:center; gap:11px; padding:13px 15px; border:1px solid var(--line); border-radius: var(--r-md); background: var(--paper); transition:.14s; }
.svc-item:hover { border-color:var(--teal); background:var(--teal-050); }
.svc-item .ic { width:34px; height:34px; border-radius:9px; background:var(--teal-050); color:var(--teal-700); display:grid; place-items:center; flex:none; }
.svc-item .ic svg { width:18px; height:18px; }
.svc-item .t { font-weight:600; font-size:14.5px; }
.svc-item .p { font-size:12px; color:var(--ink-300); font-weight:600; }

.cred-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.cred { border:1px solid var(--line); border-radius: var(--r-md); padding:16px; text-align:center; }
.cred .ic { width:42px; height:42px; border-radius:11px; margin:0 auto 10px; display:grid; place-items:center; background:var(--honey-soft); color:#A8761A; }
.cred .ic svg { width:22px; height:22px; }
.cred .t { font-weight:700; font-size:14px; }
.cred .d { font-size:12px; color:var(--ink-500); margin-top:2px; }

.area-grid { display:flex; flex-wrap:wrap; gap:8px; }
.area-chip { font-size:13.5px; font-weight:600; color:var(--ink-700); background:var(--paper-2); border:1px solid var(--line); padding:7px 13px; border-radius:999px; }
.area-chip:hover { border-color:var(--teal); color:var(--teal-700); }
.area-chip.hub { background:var(--ink); color:#fff; border-color:var(--ink); }

.hours-table { width:100%; border-collapse:collapse; }
.hours-table tr { border-bottom:1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom:0; }
.hours-table td { padding:11px 0; font-size:14.5px; }
.hours-table td.day { color:var(--ink-500); font-weight:600; }
.hours-table td.hrs { text-align:right; font-weight:600; }
.hours-table tr.today td { color:var(--ink); }
.hours-table tr.today td.day { color:var(--teal-700); }
.hours-table .now { display:inline-block; margin-left:8px; font-size:10.5px; font-weight:800; color:var(--teal-700); background:var(--teal-050); padding:2px 7px; border-radius:999px; vertical-align:middle; }

aside.rail .card { position: sticky; top: calc(var(--header-h) + 18px); }
.nap-row { display:flex; gap:13px; padding:14px 0; border-bottom:1px solid var(--line-soft); }
.nap-row:last-child { border-bottom:0; }
.nap-row .ic { width:36px; height:36px; border-radius:10px; background:var(--paper-2); display:grid; place-items:center; flex:none; color:var(--ink-500); }
.nap-row .ic svg { width:18px; height:18px; }
.nap-row .k { font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-300); font-weight:700; }
.nap-row .vv { font-weight:600; font-size:14.5px; margin-top:1px; }
.nap-row .vv a { color: var(--teal-700); }
.map-embed { border-radius: var(--r-md); overflow:hidden; aspect-ratio:16/9; position:relative; margin-top:4px; border:1px solid var(--line); }
.map-embed img { width:100%; height:100%; object-fit:cover; filter: saturate(.85); }
.map-embed .pin { position:absolute; left:50%; top:46%; transform:translate(-50%,-50%); }
.map-embed .pin .dot { width:18px; height:18px; border-radius:50%; background:var(--coral); border:3px solid #fff; box-shadow:var(--shadow-md); }

.review-card { border:1px solid var(--line); border-radius:var(--r-md); padding:18px; }
.review-card + .review-card { margin-top:12px; }
.review-card .rh { display:flex; align-items:center; gap:12px; }
.review-card .av { width:42px; height:42px; border-radius:50%; background:var(--ink); color:#fff; display:grid; place-items:center; font-weight:700; font-family:var(--font-display); flex:none; }
.review-card .who { font-weight:700; font-size:14.5px; }
.review-card .when { font-size:12.5px; color:var(--ink-300); }
.review-card .body { color:var(--ink-700); font-size:14.5px; margin-top:11px; }
.review-card .stars { display:inline-flex; gap:1px; margin-left:auto; }
.review-card .stars svg { width:14px; height:14px; color:var(--star); }

.claim-strip { background: linear-gradient(180deg,var(--paper-2),#fff); border:1px dashed var(--honey-line); border-radius: var(--r-lg); padding: 22px; text-align:center; }
.claim-strip .t { font-family:var(--font-display); font-weight:800; font-size:18px; }
.claim-strip .d { font-size:13.5px; color:var(--ink-500); margin:6px 0 14px; }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
  .reveal.d1 { animation-delay:.06s } .reveal.d2 { animation-delay:.12s }
  .reveal.d3 { animation-delay:.18s } .reveal.d4 { animation-delay:.24s }
  .reveal.d5 { animation-delay:.30s } .reveal.d6 { animation-delay:.36s }
  @keyframes rise { to { opacity:1; transform:none; } }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 460px; }
  .float-card.a { left: 0; } .float-card.b { right: 0; }
  .svc-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .state-grid { grid-template-columns: repeat(2,1fr); }
  .biz-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .loc-body { grid-template-columns: 1fr; }
  aside.rail .card { position: static; }
  .loc-top { grid-template-columns: 1fr; }
  .loc-cta-card { width: 100%; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 660px) {
  .nav { display:none; } .menu-btn { display:block; } .header-cta { display:none; }
  .searchbar { grid-template-columns: 1fr; }
  .searchbar .sep { display:none; }
  .searchbar .field { border-bottom: 1px solid var(--line-soft); }
  .svc-grid, .steps, .state-grid, .svc-list, .cred-grid, .loc-gallery { grid-template-columns: 1fr; }
  .loc-gallery .g.tall { grid-row: auto; }
  .cta-banner { grid-template-columns: 1fr; }
  .biz-card { grid-template-columns: 1fr; }
  .biz-card .thumb { aspect-ratio: 16/9; }
  .city-list .biz-card { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  section.block { padding: 54px 0; }
}
