/* Puget Sound Roofing Solutions - contractor template system
   Brand tokens sampled from their logo: navy #00396C, gold #F5A203 */
:root {
  --navy: #00396c;
  --navy-dark: #002a50;
  --navy-mid: #0a4b86;
  --navy-soft: #e8f0f7;
  --gold: #f5a203;
  --gold-dark: #d98c00;
  --ink: #131415;
  --ink-2: #1a1b1c;
  --ink-3: #232425;
  --body: #5c5f63;
  --line: #e7e8ea;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --white: #ffffff;
  --radius: 16px;
  --star: #f5a203;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* height:auto is load-bearing: the HTML height attribute is a presentational
   hint that otherwise beats aspect-ratio and blows every image box out. */
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-size: 13px; font-weight: 700;
}
.skip:focus { left: 0; }

h1, h2 { font-weight: 800; text-transform: uppercase; line-height: 1.04; letter-spacing: -.01em; }
h2 { font-size: 40px; }
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }

/* eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  border: 1px solid var(--ink); border-radius: 999px; padding: 7px 16px;
  background: var(--white); color: var(--ink);
}
.eyebrow .spark { color: var(--gold); font-size: 12px; }
.eyebrow-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.center { text-align: center; }
.head-gap { margin-bottom: 46px; }
.head-gap h2 { margin-top: 18px; }
.lede { color: var(--body); line-height: 1.75; max-width: 720px; }
.center .lede { margin: 18px auto 0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 15px 26px; border-radius: 999px; border: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(245,162,3,.38); }
.btn-accent:hover { background: var(--gold-dark); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(0,57,108,.3); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; }
.btn .dot {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-dark .dot, .btn-navy .dot { background: var(--gold); color: var(--ink); }
.btn-accent .dot { background: var(--ink); color: var(--gold); }
.btn-white .dot { background: var(--navy); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,.5); color: #fff;
  font-size: 13px; font-weight: 700;
}
.btn-outline:hover { border-color: #fff; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
  background: #fff;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img { width: 108px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 232px;
  background: #fff; border-radius: 14px; padding: 10px; display: grid; gap: 2px;
  box-shadow: 0 18px 44px rgba(16,24,40,.16); border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; transform: none; }
.nav-drop a { padding: 10px 14px; border-radius: 9px; font-size: 13.5px; font-weight: 600; }
.nav-drop a:hover { background: var(--navy-soft); color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-call { display: flex; align-items: center; gap: 9px; }
.nav-call .nc-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-soft);
  color: var(--navy); display: flex; align-items: center; justify-content: center; flex: none;
}
.nav-call small { display: block; font-size: 10px; font-weight: 600; color: var(--body); text-transform: uppercase; letter-spacing: .06em; }
.nav-call strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); }
.nav-burger { display: none; background: none; border: none; color: var(--ink); }
.nav-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative; color: #fff;
  padding: 150px 0 118px;
  background: var(--ink-2) url('assets/hero.webp?v=2') center 38% / cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,20,38,.93) 0%, rgba(0,20,38,.78) 45%, rgba(0,20,38,.4) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 56px; align-items: start; }
.hero-ratings { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 26px; }
.hero-rating { display: flex; align-items: center; gap: 9px; }
.hero-rating .hr-logo {
  width: 30px; height: 30px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-rating .stars { display: flex; gap: 2px; color: var(--star); }
.hero-rating small { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); }
h1.hero-title { font-size: 60px; margin-bottom: 22px; }
h1.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 15.5px; font-weight: 500; line-height: 1.65; color: rgba(255,255,255,.88); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chip {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-radius: 999px; padding: 11px 20px 11px 13px;
}
@media (prefers-reduced-transparency: reduce) {
  .hero-chip { background: rgba(0,22,42,.94); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.hero-chip .hc-icon {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex: none;
}
.hero-chip strong { display: block; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.hero-chip small { display: block; font-size: 10.5px; font-weight: 500; color: rgba(255,255,255,.75); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; text-align: center; color: rgba(255,255,255,.8); }
.scroll-cue small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; margin-top: 8px; }
.sc-mouse { display: inline-block; width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.sc-mouse::after { content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; margin-left: -1.5px; border-radius: 2px; background: #fff; animation: scWheel 1.9s ease-in-out infinite; }
@keyframes scWheel { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(11px); opacity: .2; } 70% { transform: translateY(0); opacity: 0; } }

/* interior page hero */
.phero {
  position: relative; color: #fff; padding: 168px 0 76px;
  background: var(--navy-dark) center / cover no-repeat;
}
.phero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,25,48,.93) 0%, rgba(0,25,48,.78) 60%, rgba(0,25,48,.56) 100%); }
.phero .container { position: relative; z-index: 1; }
.phero h1 { font-size: 48px; max-width: 880px; }
.phero p { color: rgba(255,255,255,.85); max-width: 660px; margin-top: 18px; line-height: 1.7; }
.crumbs { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 16px; letter-spacing: .04em; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; padding: 0 6px; }
.phero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* lead form card */
.lead-card {
  background: #fff; color: var(--ink); border-radius: 20px;
  padding: 30px 28px; box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.lead-card h3 { font-size: 21px; font-weight: 800; text-transform: uppercase; line-height: 1.15; margin-bottom: 6px; }
.lead-card .lc-sub { font-size: 12.5px; color: var(--body); margin-bottom: 18px; }
.lead-card .lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-card input, .lead-card select, .lead-card textarea {
  width: 100%; font-family: inherit; font-size: 13.5px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  padding: 13px 14px; margin-bottom: 12px; outline: none;
  transition: border-color .15s ease;
}
.lead-card input:focus, .lead-card select:focus, .lead-card textarea:focus { border-color: var(--navy); }
.lead-card textarea { resize: vertical; min-height: 88px; }
.lead-card select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235c5f63' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.lead-submit { width: 100%; justify-content: center; }
.lead-note { display: none; margin-top: 12px; font-size: 13px; font-weight: 600; text-align: center; }
.lead-note.ok { display: block; color: #0d7a3f; }
.lead-note.err { display: block; color: #b3261e; }
.lead-fine { font-size: 11px; color: var(--body); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ============ WHY ============ */
.why-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; }
.why-img { position: relative; }
.why-img img { border-radius: 20px; aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.why-badge {
  position: absolute; left: -20px; bottom: 34px;
  background: var(--navy); color: #fff; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28); max-width: 210px;
}
.why-badge strong { display: block; font-size: 30px; font-weight: 800; line-height: 1; margin-bottom: 6px; color: var(--gold); }
.why-badge small { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); line-height: 1.45; }
.why-copy h2 { margin: 18px 0 20px; }
.why-copy p { color: var(--body); line-height: 1.7; margin-bottom: 26px; max-width: 540px; }
.why-list { list-style: none; margin-bottom: 32px; display: grid; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .01em; }
.why-list .wl-dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}

/* ============ STATS BAR ============ */
.stats { background: var(--navy); color: #fff; padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { display: flex; align-items: center; gap: 15px; justify-content: center; }
.stat .st-icon {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; flex: none; color: var(--gold);
}
.stat strong { display: block; font-size: 21px; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.stat small { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); }

/* ============ SERVICES CAROUSEL ============ */
.services { background: var(--bg-soft); }
.svc-track-wrap { position: relative; }
.svc-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 6px;
}
.svc-track::-webkit-scrollbar { display: none; }
.svc-card {
  flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start;
  background: #fff; border-radius: 18px; padding: 12px; box-shadow: 0 10px 30px rgba(19,20,21,.07);
  transition: box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover { box-shadow: 0 16px 38px rgba(0,57,108,.16); transform: translateY(-3px); }
.svc-card img { border-radius: 12px; aspect-ratio: 4/3.1; object-fit: cover; width: 100%; }
.svc-label {
  margin-top: -24px; position: relative; margin-left: 10px; margin-right: 34px;
  background: var(--navy); color: #fff; border-radius: 10px;
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  box-shadow: 0 10px 22px rgba(0,57,108,.35);
}
.svc-label svg { flex: none; color: var(--gold); }
.svc-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25); transition: background .15s ease;
}
.svc-nav:hover { background: var(--navy); }
.svc-nav.prev { left: -14px; }
.svc-nav.next { right: -14px; }

/* service grid (services hub / interior) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-tile {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.svc-tile:hover { box-shadow: 0 18px 40px rgba(0,57,108,.14); transform: translateY(-3px); border-color: var(--navy); }
.svc-tile img { aspect-ratio: 4/2.7; object-fit: cover; width: 100%; }
.svc-tile-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-tile h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .01em; }
.svc-tile p { font-size: 13.5px; color: var(--body); line-height: 1.65; flex: 1; }
.svc-tile .more { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; }
.svc-tile:hover .more { color: var(--gold-dark); }

/* ============ MARQUEE ============ */
.marquee { background: var(--navy); color: #fff; overflow: hidden; padding: 16px 0; }
.marquee-inner { display: flex; width: max-content; gap: 0; animation: mq 26s linear infinite; }
.marquee span {
  font-size: 20px; font-weight: 800; font-style: italic; text-transform: uppercase;
  letter-spacing: .02em; white-space: nowrap; padding-right: 26px;
}
.marquee .mq-star { color: var(--gold); font-style: normal; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ PROCESS BAND ============ */
.process-band {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: #fff; padding: 82px 0 90px;
}
.band-sub { color: rgba(255,255,255,.82); max-width: 600px; margin: 16px auto 0; line-height: 1.7; }
.pb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 56px; position: relative; }
.pb-line { position: absolute; left: 16%; right: 16%; top: 26px; height: 1px; background: rgba(255,255,255,.25); }
.pb-step { text-align: center; position: relative; }
.pb-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 19px; font-weight: 800; position: relative; z-index: 1;
  box-shadow: 0 10px 24px rgba(245,162,3,.4);
}
.pb-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.pb-step p { font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.65; max-width: 300px; margin: 0 auto; }

/* three-column why */
.why3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.why3-col { text-align: center; padding: 0 30px; }
.why3-col + .why3-col { border-left: 1px solid var(--line); }
.why3-col img { width: 100%; border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 24px; }
.why3-col h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.why3-col p { font-size: 13.5px; color: var(--body); line-height: 1.65; }

/* ============ OWNER STRIP ============ */
.owner-strip { background: var(--ink-2); color: #fff; padding: 74px 0; position: relative; overflow: hidden; }
.owner-strip::after {
  content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,57,108,.55) 0%, rgba(0,57,108,0) 70%); filter: blur(30px);
}
.owner-inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.owner-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(245,162,3,.45); border-radius: 999px; padding: 7px 16px; margin-bottom: 20px;
}
.owner-copy h2 { font-size: 36px; margin-bottom: 18px; }
.owner-copy p { color: rgba(255,255,255,.78); line-height: 1.75; max-width: 520px; margin-bottom: 22px; }
.owner-sign { font-size: 23px; font-weight: 800; font-style: italic; }
.owner-role { font-size: 12.5px; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.owner-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.owner-art img { border-radius: 20px; width: 100%; aspect-ratio: 1/1; object-fit: cover; box-shadow: 0 24px 60px rgba(0,0,0,.45); }

/* ============ CASE STUDIES ============ */
.cases { background: var(--ink); color: #fff; }
.cases .eyebrow { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.case-item { position: relative; border-radius: 14px; overflow: hidden; }
.case-item img { aspect-ratio: 4/3.9; object-fit: cover; width: 100%; transition: transform .35s ease; }
.case-item:hover img { transform: scale(1.04); }
.case-tag {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  background: var(--navy); color: #fff; border-radius: 9px; padding: 10px 12px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.case-tag svg { color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 22px; align-items: stretch; }
.testi-col { display: grid; gap: 22px; align-content: start; }
.t-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: #fff;
  display: flex; flex-direction: column; gap: 14px;
}
.t-card .stars { color: var(--star); display: flex; gap: 3px; }
.t-card p { font-size: 13.5px; color: var(--body); line-height: 1.65; flex: 1; }
.t-who { display: flex; align-items: center; gap: 12px; }
.t-ava {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; flex: none;
}
.t-ava.alt { background: var(--ink); }
.t-who strong { display: block; font-size: 13.5px; font-weight: 800; text-transform: uppercase; }
.t-who small { display: block; font-size: 11.5px; color: var(--body); }
.t-g { margin-left: auto; }
.g-card {
  background: var(--ink-2); color: #fff; border-radius: 20px; padding: 34px 30px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.g-card .g-pct { font-size: 56px; font-weight: 800; line-height: 1; color: var(--gold); }
.g-card .g-cap { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; }
.g-logo { margin: 8px 0 2px; }
.g-card .g-based { font-size: 12.5px; color: rgba(255,255,255,.72); margin-bottom: 12px; }
.g-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; margin-top: 18px; }
.g-photos img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ============ SERVICE AREAS ============ */
.areas { position: relative; padding: 0; min-height: 560px; display: flex; align-items: center; }
.areas-map { position: absolute; inset: 0; overflow: hidden; background: var(--bg-soft); }
.areas-map iframe {
  width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.92) brightness(1.04);
  pointer-events: none;
}
.areas .container { position: relative; z-index: 1; width: 100%; }
.areas-card {
  background: var(--ink); color: #fff; border-radius: 22px; padding: 38px 36px;
  max-width: 560px; box-shadow: 0 30px 70px rgba(0,0,0,.35); margin: 70px 0;
}
.areas-card h2 { font-size: 32px; margin-bottom: 24px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area-chip {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 8px 16px;
  color: rgba(255,255,255,.9); transition: border-color .15s ease, color .15s ease;
}
a.area-chip:hover { border-color: var(--gold); color: var(--gold); }
.area-chip.hot { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* city cards */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.city-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 24px; background: #fff;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.city-card:hover { border-color: var(--navy); box-shadow: 0 12px 28px rgba(0,57,108,.14); transform: translateY(-2px); }
.city-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; }
.city-card p { font-size: 12.5px; color: var(--body); line-height: 1.6; flex: 1; }
.city-card .city-tel { font-size: 13px; font-weight: 800; color: var(--navy); }

/* generic content cards */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; background: #fff;
  display: flex; flex-direction: column; gap: 12px; transition: box-shadow .2s ease, transform .2s ease;
}
.guide-card:hover { box-shadow: 0 14px 34px rgba(16,24,40,.1); transform: translateY(-3px); }
.guide-card .gi {
  width: 46px; height: 46px; border-radius: 12px; background: var(--navy-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.guide-card h3 { font-size: 15.5px; font-weight: 800; text-transform: uppercase; }
.guide-card p { font-size: 13.5px; color: var(--body); line-height: 1.65; }

/* prose blocks */
.prose-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 56px; align-items: start; }
.prose h2 { font-size: 30px; margin-bottom: 18px; }
.prose h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; margin: 34px 0 12px; }
.prose p { color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 20px 0; list-style: none; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--body); line-height: 1.65; font-size: 14.5px; }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 15px; height: 8px;
  border-left: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy);
  transform: rotate(-45deg);
}
.prose img { border-radius: 16px; margin: 8px 0 24px; }
.aside-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; background: var(--bg-soft);
  position: sticky; top: 100px;
}
.aside-card h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.aside-card p { font-size: 13.5px; color: var(--body); line-height: 1.65; margin-bottom: 18px; }
.aside-list { display: grid; gap: 9px; margin-bottom: 22px; }
.aside-list a { font-size: 13.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.aside-list a:hover { color: var(--navy); }
.aside-list a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.aside-card .btn { width: 100%; justify-content: center; }

/* signal / warning list */
.sig-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sig-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px;
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.sig-item .sn { font-size: 13px; font-weight: 800; color: var(--gold); flex: none; width: 26px; }
.sig-item strong { display: block; font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }
.sig-item p { font-size: 13px; color: var(--body); line-height: 1.6; }

/* pricing bands */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; background: #fff;
  display: flex; flex-direction: column; gap: 12px;
}
.price-card.hot { border: 2px solid var(--navy); box-shadow: 0 18px 44px rgba(0,57,108,.14); }
.price-card .pc-tag { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.price-card h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; }
.price-card .pc-num { font-size: 32px; font-weight: 800; line-height: 1; }
.price-card .pc-num small { font-size: 13px; font-weight: 600; color: var(--body); }
.price-card ul { list-style: none; display: grid; gap: 10px; margin: 6px 0 6px; }
.price-card li { font-size: 13.5px; color: var(--body); padding-left: 24px; position: relative; line-height: 1.55; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 13px; height: 7px;
  border-left: 2.2px solid var(--gold); border-bottom: 2.2px solid var(--gold); transform: rotate(-45deg);
}
.price-note { font-size: 12.5px; color: var(--body); text-align: center; margin-top: 26px; }
.price-note a { display: inline-block; padding: 10px 2px; margin: -10px -2px; }

/* gallery */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item { border-radius: 16px; overflow: hidden; position: relative; }
.gal-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease; }
.gal-item:hover img { transform: scale(1.04); }
.gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 16px;
  background: linear-gradient(to top, rgba(8,10,12,.88), rgba(8,10,12,0));
  color: #fff; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.gal-cap small { display: block; font-size: 11px; font-weight: 500; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,.75); margin-top: 4px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.contact-rows { display: grid; gap: 16px; margin: 26px 0 30px; }
.contact-row {
  position: relative; /* anchor for the stretched link */
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px;
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
/* the whole card is the tap target, not just the 19px text line */
.contact-row a::after { content: ''; position: absolute; inset: 0; border-radius: 14px; }
/* long unbreakable strings (the email address) must not widen the page */
.contact-row > span:last-child { min-width: 0; }
.contact-row a, .contact-row span, .footer-contact .fc-row span { overflow-wrap: anywhere; }
.contact-row .ci {
  width: 42px; height: 42px; border-radius: 11px; background: var(--navy-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-row strong { display: block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--body); margin-bottom: 4px; }
.contact-row span, .contact-row a { font-size: 15px; font-weight: 700; color: var(--ink); }
.contact-row a:hover { color: var(--navy); }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 15px; font-weight: 700; color: var(--ink);
}
.faq-q .fq-ico { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center; transition: transform .25s ease; }
/* grid-template-rows 0fr -> 1fr animates to the answer's real height, so there
   is no max-height magic number to clip a long answer at a narrow width. */
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > p { overflow: hidden; font-size: 14px; line-height: 1.7; padding: 0 24px; }
.faq-item.open { background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-q { color: #fff; }
.faq-item.open .fq-ico { border-color: var(--gold); color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 22px; color: rgba(255,255,255,.92); }
.faq-item:not(.open) .faq-a > p { color: var(--body); }

/* ============ CTA ============ */
.cta { position: relative; color: #fff; padding: 100px 0; background: var(--ink-2) url('assets/cta-bg.jpg?v=2') center / cover no-repeat; }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,20,38,.9), rgba(8,10,12,.78)); }
.cta .container { position: relative; z-index: 1; }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { font-size: 42px; max-width: 560px; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.8); max-width: 520px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-logo img { width: 168px; margin-bottom: 20px; }
.footer-blurb { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 22px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: var(--navy); border-color: var(--navy); }
.footer h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.68); transition: color .15s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 14px; margin-bottom: 20px; }
.footer-contact .fc-row { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.5; }
.footer-contact svg { flex: none; margin-top: 2px; color: var(--gold); }
.footer-contact a:hover { color: #fff; }
.footer-map iframe { width: 100%; height: 120px; border: 0; border-radius: 12px; filter: grayscale(.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: #fff; }

/* ============ STICKY MOBILE CALL BAR ============ */
.callbar { display: none; }

/* reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  h1.hero-title { font-size: 46px; }
  h2 { font-size: 33px; }
  .phero h1 { font-size: 38px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-card { max-width: 560px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { flex-basis: calc((100% - 24px) / 2); }
  .svc-grid, .guide-grid, .price-grid, .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .g-col { order: -1; grid-column: 1 / -1; }
  .g-card { max-width: 560px; margin: 0 auto; width: 100%; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prose-grid { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-badge { left: 12px; }
}
@media (max-width: 820px) {
  /* the sticky call bar already carries both CTAs down here, so the nav
     button only has room to collide with the logo. Drop it. */
  .nav-links, .nav-call, .nav-right > .btn { display: none; }
  /* 24px icon + padding = 48px tap box; negative margin keeps the layout put */
  .nav-burger { display: block; padding: 12px; margin: -8px; }
  .nav-logo img { width: 92px; }
  /* iOS Safari zooms the whole page when a focused field is under 16px.
     16px everywhere on touch kills the zoom without changing the desktop. */
  .lead-card input, .lead-card select, .lead-card textarea { font-size: 16px; }
  /* 92px logo -> 64px tall, + 2x10px nav padding = 84px of header */
  .nav-mobile {
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 99;
    display: grid; gap: 2px; padding: 18px 24px 40px; box-shadow: 0 20px 40px rgba(0,0,0,.15);
    align-content: start; overflow-y: auto;
  }
  .nav-mobile[hidden] { display: none !important; }
  .nav-mobile a { font-size: 15.5px; font-weight: 700; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-mobile a.sub { font-size: 14px; font-weight: 600; color: var(--body); padding-left: 16px; }
  .nav-mobile a.tel { color: var(--navy); border-bottom: none; }
  .why-grid, .prose-grid, .owner-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-badge { position: static; margin-top: -34px; margin-left: 20px; max-width: none; width: fit-content; }
  .why3-grid { grid-template-columns: 1fr; gap: 34px; }
  .why3-col { padding: 0; }
  .why3-col + .why3-col { border-left: none; border-top: 1px solid var(--line); padding-top: 34px; }
  .pb-grid { grid-template-columns: 1fr; gap: 34px; }
  .pb-line { display: none; }
  .owner-art { max-width: 340px; }
  .sig-grid { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .phero { padding: 128px 0 58px; }
  .cta { padding: 74px 0; }
  .cta h2 { font-size: 32px; }
  body { padding-bottom: 66px; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  }
  .callbar .btn { width: 100%; justify-content: center; padding: 13px 16px; font-size: 12px; }
}
@media (max-width: 620px) {
  h1.hero-title { font-size: 34px; }
  h2 { font-size: 27px; }
  .phero h1 { font-size: 30px; }
  .hero { padding: 122px 0 50px; }
  .hero-ratings { gap: 14px; }
  .hero-actions { margin-bottom: 34px; }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .stat { justify-content: flex-start; }
  .svc-card { flex-basis: 86%; }
  .svc-nav { display: none; }
  .svc-grid, .guide-grid, .price-grid, .gal-grid, .cases-grid, .city-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .g-col { order: 0; }
  .areas-card { padding: 30px 24px; margin: 44px 0; }
  .areas-card h2 { font-size: 26px; }
  .owner-copy h2 { font-size: 28px; }
  .lead-card .lf-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .scroll-cue { display: none; }
  /* chips repeat the ratings-row trust badges and push the lead form down a
     full screen; the stats band right below carries the same signals */
  .hero-chips { display: none; }
  .hero-actions { margin-bottom: 10px; }
  .marquee span { font-size: 16px; }
  .prose h2 { font-size: 24px; }
  /* touch comfort: every tappable thing at ~44px, supporting text legible */
  .footer-links { gap: 2px; }
  .footer-links a { padding: 10px 0; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-contact { gap: 6px; }
  .footer-contact .fc-row { padding: 11px 0; }
  .footer-bottom a { display: inline-block; padding: 10px 0; }
  /* padding + negative margin widens the tap box without moving the text */
  .crumbs a { display: inline-block; padding: 12px 4px; margin: -12px -4px; }
  .area-chip { padding: 12px 18px; font-size: 12.5px; }
  .aside-list { gap: 0; }
  .aside-list a { padding: 10px 0; }
  .hero-rating small, .hero-chip small { font-size: 11px; }
  .lead-fine { font-size: 12px; }
  /* primary actions become full-width thumb targets */
  .hero-actions, .phero-actions, .cta-actions, .owner-buttons { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .phero-actions .btn, .cta-actions .btn,
  .owner-buttons .btn, .owner-buttons .btn-outline { width: 100%; justify-content: center; }
}
