/* ───────── AFFORDABLE ROOFING · Clean & Modern Design System ─────────
   Tailored to logo: navy + sky-blue + bold red on bone/cream.
   Type: Fraunces serif display + Inter sans body + JetBrains Mono for tags. */

:root {
  --navy: #0E2547;
  --navy-soft: #1F2F4B;
  --navy-deep: #0B1A33;
  --blue: #3D88E2;
  --blue-light: #6BA8EE;
  --red: #C8211D;
  --red-bright: #E63631;
  --red-dark: #951815;
  --red-soft: rgba(200,33,29,0.10);
  --red-glow: rgba(200,33,29,0.32);
  --bone: #F5F1EA;
  --bone-warm: #ECE5D8;
  --bone-soft: #FAF7F0;
  --paper: #FFFEFB;
  --ink: #0E1014;
  --ink-soft: #2A2C32;
  --muted: #7A7D86;
  --muted-deep: #4A4D54;
  --line: #D8D3C5;
  --line-soft: #E5E0D0;
  --silver: #C2BFB5;
  --star: #F5B82E;
  --yellow: #FFC81E;
  --yellow-soft: rgba(255,200,30,0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ───────── Announce bar ───────── */
.announce {
  background: var(--navy);
  border-top: 3px solid var(--yellow);
  color: rgba(245,241,234,0.94);
  padding: 11px 0;
  font-size: 12px;
  letter-spacing: 0.4px;
  border-bottom: 1px solid var(--red);
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.announce a {
  color: rgba(245,241,234,0.94);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  transition: color 0.2s;
}
.announce a:hover { color: var(--blue-light); }
.announce svg { width: 13px; height: 13px; color: var(--blue-light); }
.announce-left { display: flex; gap: 28px; flex-wrap: wrap; }
.announce-right {
  font-weight: 700; color: var(--silver);
  letter-spacing: 1.8px; text-transform: uppercase;
  font-size: 10.5px;
  display: inline-flex; align-items: center; gap: 8px;
}
.announce-right::before { content: '◆'; font-size: 9px; color: var(--yellow); }

/* ───────── Nav ───────── */
.nav-wrap {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 0;
}
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark img { height: 50px; width: auto; display: block; border-radius: 6px; }
.nav-links { display: flex; gap: 34px; justify-content: center; }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted-deep);
  transition: color 0.2s;
  position: relative; padding: 4px 0;
}
.nav-link:hover { color: var(--red-dark); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--red);
}
.nav-right { display: flex; align-items: center; gap: 16px; justify-self: end; }
.nav-phone {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); letter-spacing: -0.005em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--red-dark); }
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
}
.btn-red { background: var(--red); color: var(--bone); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px var(--red-glow); }
.btn-navy { background: var(--navy); color: var(--bone); }
.btn-navy:hover { background: #06121F; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--bone); border: 1.5px solid rgba(245,241,234,0.42); }
.btn-ghost-light:hover { border-color: var(--bone); color: var(--bone); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 28px; font-size: 13.5px; }
.btn-xl { padding: 20px 32px; font-size: 14px; letter-spacing: 2px; }

/* ───────── Drawer ───────── */
.burger { display: none; background: transparent; border: none; padding: 8px; cursor: pointer; color: var(--ink); }
.burger svg { width: 24px; height: 24px; }
.drawer {
  position: fixed; top: 0; right: 0; width: 84%; max-width: 380px; height: 100vh;
  background: var(--bone); border-left: 4px solid var(--red);
  z-index: 100; padding: 84px 32px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transform: translateX(100%); transition: transform 0.32s ease;
  box-shadow: -32px 0 60px rgba(14,16,20,0.32); overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500;
  color: var(--ink); padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.015em;
}
.drawer-phone { color: var(--red-dark) !important; font-size: 28px !important; border-bottom: none !important; margin-top: 14px; }
.drawer-cta { margin-top: 14px; }
.drawer-close { position: absolute; top: 22px; right: 22px; background: transparent; border: none; font-size: 22px; cursor: pointer; color: var(--ink); }

/* ───────── Eyebrow + headline ───────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red-dark); margin-bottom: 22px;
}
.eyebrow::before { content: '◆'; font-size: 8px; color: var(--red); }
.eyebrow.light { color: var(--blue-light); }
.eyebrow.light::before { color: var(--red-bright); }
.eyebrow.center { justify-content: center; }

.h2-display {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500; line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink); margin-bottom: 16px;
}
.h2-display em { color: var(--red-dark); font-style: italic; font-weight: 400; }
.sec-dark .h2-display { color: var(--bone); }
.sec-dark .h2-display em { color: var(--blue-light); }

.sec { padding: 80px 0; }
.sec-bone { background: var(--bone); }
.sec-bone-warm { background: var(--bone-warm); }
.sec-paper { background: var(--paper); }
.sec-dark { background: var(--navy); color: var(--bone); }

.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { font-size: 16.5px; line-height: 1.7; color: var(--muted-deep); margin-top: 10px; }
.sec-dark .sec-head p { color: rgba(245,241,234,0.74); }

/* ───────── HERO — centered, big logo, cinematic background ───────── */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background: var(--navy);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/hero-metal-home.jpg');
  background-size: cover;
  background-position: center 55%;
  z-index: -2;
  filter: saturate(0.92);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,37,71,0.62) 0%, rgba(14,37,71,0.82) 60%, rgba(14,37,71,0.95) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 880px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.hero-logo {
  background: var(--bone);
  border-radius: 18px;
  padding: 22px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.12);
  display: inline-flex;
}
.hero-logo img { height: 124px; width: auto; display: block; }
.hero-loc-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(245,241,234,0.10);
  border: 1px solid rgba(245,241,234,0.22);
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--bone);
}
.hero-loc-chip::before { content: '◆'; color: var(--red-bright); font-size: 8px; }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 0.98;
  color: var(--bone);
  max-width: 760px;
}
.hero h1 em { color: var(--red-bright); font-style: italic; font-weight: 400; }
.hero-lead {
  font-size: 17px; line-height: 1.7;
  color: rgba(245,241,234,0.86);
  margin: 0 auto; max-width: 580px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.hero-trust {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,241,234,0.74);
  justify-content: center;
}
.hero-trust .stars { color: var(--star); letter-spacing: 3px; font-size: 13px; }
.hero-trust .dot { width: 4px; height: 4px; background: var(--red-bright); border-radius: 50%; display: inline-block; }

/* ───────── Stats band ───────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bone-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat .k {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat .k em { color: var(--red-dark); font-style: italic; font-weight: 400; }
.stat .v {
  font-size: 11px;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--muted-deep);
  margin-top: 10px; font-weight: 800;
}

/* ───────── Services grid ───────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 24px 48px rgba(14,16,20,0.08);
}
.svc-img { height: 220px; overflow: hidden; background: var(--bone); position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.svc:hover .svc-img img { transform: scale(1.04); }
.svc-num {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(14,37,71,0.86); color: var(--bone);
  padding: 5px 10px;
}
.svc-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  margin-bottom: 8px; color: var(--ink);
}
.svc p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--muted-deep); flex: 1;
}
.svc-go {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed var(--line-soft);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-go::after { content: '→'; }

/* ───────── Why us 4-up ───────── */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,241,234,0.16);
  border-left: 1px solid rgba(245,241,234,0.16);
}
.why-cell {
  padding: 32px 26px;
  border-right: 1px solid rgba(245,241,234,0.16);
  border-bottom: 1px solid rgba(245,241,234,0.16);
}
.why-cell .num {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 12px; line-height: 1;
}
.why-cell h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 500;
  color: var(--bone); letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.why-cell p { font-size: 14px; line-height: 1.66; color: rgba(245,241,234,0.66); }

/* ───────── Split panels ───────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--ink); border: 1px solid var(--line);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.split h2 em { color: var(--red-dark); font-style: italic; font-weight: 400; }
.split-lead { font-size: 16.5px; line-height: 1.74; color: var(--muted-deep); margin-bottom: 16px; }
.split-list { list-style: none; }
.split-list li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft);
  display: flex; gap: 14px; align-items: flex-start;
}
.split-list li:last-child { border-bottom: none; }
.split-list .marker {
  width: 28px; height: 28px;
  border: 1.5px solid var(--red);
  color: var(--red-dark);
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.split-list .body strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500; font-size: 17px; color: var(--ink);
  margin-bottom: 4px;
}
.split-list .body span { font-size: 14.5px; color: var(--muted-deep); line-height: 1.66; }

/* ───────── Best-of award badge ───────── */
.award-banner {
  background: var(--navy);
  color: var(--bone);
  padding: 56px 0;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.award-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.award-medal {
  width: 180px; height: 180px;
  background: radial-gradient(circle at 35% 30%, #FFD86B 0%, #E0A218 40%, #B07208 80%, #6F4604 100%);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), inset 0 0 0 4px rgba(255,255,255,0.08), inset 0 0 0 10px rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.award-medal::before, .award-medal::after {
  content: '';
  position: absolute;
  top: 95%;
  width: 36px; height: 80px;
  background: var(--red);
}
.award-medal::before { left: 28px; transform: rotate(-12deg); clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%); }
.award-medal::after { right: 28px; transform: rotate(12deg); clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%); }
.award-medal .l1 { font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 800; letter-spacing: 2.6px; text-transform: uppercase; color: var(--navy-deep); }
.award-medal .l2 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--navy-deep); line-height: 1.04; margin-top: 4px; }
.award-medal .yr { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; color: var(--red); line-height: 1; margin-top: 8px; }
.award-medal .city { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--navy-deep); margin-top: 4px; }
.award-body { color: var(--bone); }
.award-body .eyebrow { color: var(--blue-light); }
.award-body .eyebrow::before { color: var(--red-bright); }
.award-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.award-body h2 em { color: var(--blue-light); font-style: italic; font-weight: 400; }
.award-body p { font-size: 15.5px; line-height: 1.72; color: rgba(245,241,234,0.78); margin-top: 12px; }

/* ───────── Process timeline ───────── */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.step::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 32px; height: 3px; background: var(--red);
}
.step .n {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 600;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 10px;
}
.step h4 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--ink); }
.step p { font-size: 13.5px; line-height: 1.66; color: var(--muted-deep); }

/* ───────── Reviews ───────── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--paper); border: 1px solid var(--line);
  padding: 26px 24px; display: flex; flex-direction: column;
}
.review .stars { color: var(--star); font-size: 16px; letter-spacing: 4px; margin-bottom: 14px; }
.review-text {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 400;
  line-height: 1.55; color: var(--ink); flex: 1;
}
.review-text::before { content: '"'; font-size: 30px; color: var(--red); margin-right: 2px; font-family: 'Fraunces', serif; }
.review-meta {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.review-meta .name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 15.5px; color: var(--ink); }
.review-meta .sub { font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted-deep); margin-top: 4px; font-weight: 700; }

/* ───────── FAQ ───────── */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 4px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red-dark); }
.faq summary::after {
  content: '+'; font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 400; color: var(--red);
  margin-top: -3px; transition: transform 0.25s; flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 20px; font-size: 15px; line-height: 1.72; color: var(--muted-deep); }

/* ───────── Area grid ───────── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area {
  padding: 20px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.area:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 12px 24px rgba(14,16,20,0.06); }
.area.flag { background: var(--navy); color: var(--bone); border-color: var(--navy); }
.area-l { font-size: 9.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--muted-deep); font-weight: 800; margin-bottom: 6px; }
.area.flag .area-l { color: var(--blue-light); }
.area h4 { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.area.flag h4 { color: var(--bone); }
.area-sub { font-size: 12px; color: var(--muted-deep); margin-top: 5px; line-height: 1.5; }
.area.flag .area-sub { color: rgba(245,241,234,0.74); }

/* ───────── Final CTA ───────── */
.final-cta {
  background: var(--navy); color: var(--bone);
  padding: 84px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500; letter-spacing: -0.022em; line-height: 1.04;
  color: var(--bone);
}
.final-cta h2 em { color: var(--red-bright); font-style: italic; font-weight: 400; }
.final-cta p { font-size: 16.5px; line-height: 1.72; color: rgba(245,241,234,0.74); margin-top: 14px; }
.cta-ctas { display: flex; flex-direction: column; gap: 12px; }
.cta-line {
  padding: 20px 22px;
  border: 1.5px solid rgba(245,241,234,0.16);
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.cta-line:hover { border-color: var(--red-bright); background: rgba(200,33,29,0.06); }
.cta-line .l { font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: rgba(245,241,234,0.5); font-weight: 800; }
.cta-line .v {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 600;
  color: var(--bone); letter-spacing: -0.015em;
}

/* ───────── Footer ───────── */
.footer {
  background: var(--navy); color: rgba(245,241,234,0.72);
  padding: 80px 0 28px; position: relative; overflow: hidden;
  border-top: 1px solid var(--navy-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-mark { margin-bottom: 20px; display: inline-flex; border-radius: 10px; overflow: hidden; }
.footer-brand-mark img { height: 60px; width: auto; display: block; }
.footer-about { font-size: 14px; line-height: 1.78; color: rgba(245,241,234,0.62); }
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-heading::before { content: '◆'; font-size: 8px; color: var(--red-bright); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(245,241,234,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item .l { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; color: rgba(245,241,234,0.5); margin-bottom: 4px; }
.footer-contact-item .v { font-size: 14px; color: rgba(245,241,234,0.94); font-weight: 500; line-height: 1.55; }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(245,241,234,0.10);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(245,241,234,0.42);
  letter-spacing: 0.4px;
}

/* ───────── Page hero (sub-pages) ───────── */
.page-hero {
  background: var(--bone-warm); color: var(--ink);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 880px; }
.breadcrumb {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; font-weight: 700;
}
.breadcrumb a { color: var(--red-dark); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 10px; color: var(--muted); }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--ink);
}
.page-hero h1 em { color: var(--red-dark); font-style: italic; font-weight: 400; }
.page-hero-sub {
  font-size: 17px; line-height: 1.72;
  color: var(--muted-deep);
  margin-top: 22px; max-width: 640px;
}

/* ───────── Service detail (services page) ───────── */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail.reverse > :first-child { order: 2; }
.svc-detail:last-child { border-bottom: none; }
.svc-detail-img { aspect-ratio: 4/3; overflow: hidden; background: var(--ink); }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 12px; color: var(--ink);
}
.svc-detail h2 em { color: var(--red-dark); font-style: italic; font-weight: 400; }
.svc-detail-lead { font-size: 16px; line-height: 1.72; color: var(--muted-deep); margin-bottom: 16px; }
.svc-detail ul { list-style: none; }
.svc-detail li {
  padding: 8px 0; font-size: 14.5px;
  color: var(--ink); display: flex; gap: 10px;
}
.svc-detail li::before { content: '◆'; color: var(--red); font-size: 8px; margin-top: 7px; flex-shrink: 0; }

/* ───────── Contact ───────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.form-card { background: var(--paper); border: 1px solid var(--line); padding: 40px; }
.form-card h2 { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; color: var(--ink); }
.form-card > p { font-size: 14.5px; color: var(--muted-deep); margin-bottom: 26px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-deep); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 0;
  font-family: inherit; font-size: 15px;
  background: var(--bone-soft); color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--red); background: var(--paper); }
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.65; }
.form-submit {
  margin-top: 10px; width: 100%; padding: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: var(--bone);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 32px var(--red-glow); }
.form-honey { position: absolute; left: -9999px; }
.info-card { background: var(--navy); color: var(--bone); padding: 40px; }
.info-card h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--bone); margin-bottom: 18px; }
.info-row { list-style: none; }
.info-row li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed rgba(245,241,234,0.14); align-items: flex-start; }
.info-row li:last-child { border-bottom: none; }
.info-row .ico {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(200,33,29,0.18); color: var(--red-bright);
  flex-shrink: 0; margin-top: 2px;
}
.info-row .ico svg { width: 18px; height: 18px; }
.info-row strong { display: block; font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(245,241,234,0.5); font-weight: 800; margin-bottom: 4px; }
.info-row a, .info-row .body {
  color: var(--bone); font-size: 15.5px; line-height: 1.5;
  font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.005em;
}
.info-row a:hover { color: var(--blue-light); }

/* ───────── Sticky mobile CTA ───────── */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 0;
  background: var(--navy); border-top: 2px solid var(--red);
  box-shadow: 0 -10px 32px rgba(0,0,0,0.32);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mcta-btn {
  flex: 1; padding: 16px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--bone);
}
.mcta-btn svg { width: 16px; height: 16px; }
.mcta-call { background: var(--navy-soft); }
.mcta-quote { background: var(--red); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .container { padding: 0 22px; }
  .sec { padding: 68px 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > :first-child { order: 0; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; gap: 18px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
  .svc-detail.reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .award-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 72px; }  /* gap covers the hanging ribbons */
  .award-body .eyebrow { justify-content: center; }
}
@media (max-width: 720px) {
  .announce { font-size: 11px; padding: 9px 0; }
  .announce-inner { gap: 8px; justify-content: center; }
  .announce-left { gap: 16px; justify-content: center; flex-wrap: wrap; }
  .announce-right { font-size: 9.5px; letter-spacing: 1.4px; width: 100%; text-align: center; justify-content: center; }

  .nav { padding: 12px 0; gap: 12px; }
  .brand-mark img { height: 38px; }
  .burger { padding: 6px; }
  .container { padding: 0 16px; }
  .sec { padding: 40px 0; }
  .sec-head { margin-bottom: 22px; }
  .sec-head p { font-size: 14.5px; line-height: 1.6; margin-top: 6px; }
  .h2-display { font-size: 28px; line-height: 1.06; }

  .hero { padding: 50px 0 40px; }
  .hero-inner { gap: 20px; padding: 0 18px; }
  .hero-logo { padding: 16px 22px; border-radius: 14px; }
  .hero-logo img { height: 92px; }
  .hero h1 { font-size: 36px; line-height: 1.02; }
  .hero-lead { font-size: 14.5px; line-height: 1.65; }
  .hero-ctas { gap: 10px; flex-direction: column; width: 100%; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 380px; padding: 15px 22px; font-size: 12.5px; }
  .hero-trust { gap: 14px; font-size: 10px; letter-spacing: 1.6px; }
  .hero-trust .stars { font-size: 12px; }

  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 14px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat .k { font-size: 30px; }

  .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-img { height: 200px; }
  .svc-body { padding: 20px 20px 22px; }
  .svc h3 { font-size: 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-cell { padding: 22px 20px; }

  .award-banner { padding: 36px 0; }
  .award-grid { gap: 64px; }   /* re-tune gap for smaller medal (150px) */
  .award-medal { width: 150px; height: 150px; }
  .award-medal .l2 { font-size: 18px; }
  .award-medal .yr { font-size: 28px; }
  .award-medal::before, .award-medal::after { height: 56px; }   /* shorter ribbons on phone */

  .split h2 { font-size: 26px; }
  .split-lead { font-size: 14.5px; line-height: 1.66; }
  .split-list li { padding: 9px 0; gap: 11px; }
  .split-list .body strong { font-size: 15px; }

  .process { grid-template-columns: 1fr; gap: 12px; }
  .step { padding: 20px 18px; }
  .step .n { font-size: 28px; }

  .review { padding: 22px 20px; }
  .review-text { font-size: 15px; }

  .faq summary { font-size: 15.5px; padding: 16px 4px; gap: 12px; }
  .faq summary::after { font-size: 22px; }
  .faq .a { font-size: 13.5px; padding-bottom: 16px; }

  .area-grid { grid-template-columns: 1fr; gap: 10px; }
  .area { padding: 16px 16px; }

  .final-cta { padding: 48px 0; }
  .final-cta h2 { font-size: 28px; }
  .cta-line { padding: 16px 18px; }
  .cta-line .v { font-size: 21px; }

  .form-card { padding: 24px 20px; }
  .form-card h2 { font-size: 22px; }
  .form-card > p { font-size: 13.5px; margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; padding: 13px 14px; }
  .form-group { margin-bottom: 12px; }
  .form-submit { padding: 15px; font-size: 12.5px; letter-spacing: 1.6px; }
  .info-card { padding: 24px 20px; }

  .footer { padding: 40px 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; margin-bottom: 26px; }
  .footer-brand-mark { padding: 8px 14px; }
  .footer-brand-mark img { height: 46px; }
  .footer-bottom { font-size: 10.5px; flex-direction: column; gap: 4px; text-align: center; padding-top: 20px; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 64px; }

  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 32px; line-height: 1.04; }
  .page-hero-sub { font-size: 14.5px; margin-top: 12px; line-height: 1.6; }
  .breadcrumb { font-size: 10px; letter-spacing: 1.6px; margin-bottom: 12px; }
  .eyebrow { font-size: 10px; letter-spacing: 2.2px; margin-bottom: 12px; gap: 10px; }
}
@media (max-width: 420px) {
  .h2-display { font-size: 24px; }
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 28px; }
  .hero-logo img { height: 76px; }
  .container { padding: 0 14px; }
  .sec { padding: 34px 0; }
}

/* ───────── Google reviews — band + cards ─────────
   Inline-G logo on left, "Read all" on right, horizontal scroll-snap row of cards. */
.g-reviews-band {
  padding: 40px 0 48px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.g-reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0 4px;
}
.g-reviews-rating {
  display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.g-logo {
  display: inline-flex; align-items: center; gap: 9px;
}
.g-logo svg { display: block; }
.g-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.005em; color: var(--ink-soft);
}
.g-rating {
  display: inline-flex; align-items: center; gap: 8px;
}
.g-score {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.015em;
}
.g-stars-big {
  color: #FBBC04;
  font-size: 16px;
  letter-spacing: 2px;
}
.g-count-meta {
  font-size: 12px;
  color: var(--muted-deep);
  font-weight: 600;
}
.g-see-all {
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red-dark);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.g-see-all:hover { background: var(--bone-warm); border-color: var(--red); color: var(--red-dark); }

/* Horizontal scroll-snap track */
.g-reviews-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px;
  scrollbar-width: thin;
}
.g-reviews-scroll::-webkit-scrollbar { height: 6px; }
.g-reviews-scroll::-webkit-scrollbar-track { background: var(--bone-warm); }
.g-reviews-scroll::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 3px; }

/* Grid layout for testimonials page */
.g-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Individual review card */
.g-review {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 20px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.g-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14,16,20,0.06);
  border-color: var(--red);
}
.g-review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.g-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.g-review-who { min-width: 0; }
.g-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-count {
  font-size: 11px;
  color: var(--muted-deep);
  font-weight: 500;
  margin-top: 1px;
}
.g-icon { flex-shrink: 0; opacity: 0.85; }
.g-stars {
  color: #FBBC04;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
.g-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Pill on testimonials page hero */
.g-rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
}
.g-rating-pill .g-score-inline {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
}
.g-rating-pill .g-stars-inline {
  color: #FBBC04; font-size: 14px; letter-spacing: 2px;
}
.g-rating-pill .g-count-inline {
  font-size: 11.5px; font-weight: 600;
  color: var(--muted-deep);
}

@media (max-width: 1080px) {
  .g-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .g-reviews-band { padding: 28px 0 32px; }
  .g-reviews-head { margin-bottom: 14px; gap: 12px; }
  .g-reviews-rating { gap: 12px; }
  .g-logo-text { display: none; }
  .g-score { font-size: 18px; }
  .g-stars-big { font-size: 14px; }
  .g-count-meta { font-size: 11px; }
  .g-see-all { font-size: 11px; padding: 7px 10px; letter-spacing: 1.6px; }
  .g-reviews-scroll {
    grid-auto-columns: 85vw;
    gap: 10px;
    padding: 2px 2px 12px;
  }
  .g-review { padding: 18px 16px; }
  .g-reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .g-rating-pill { padding: 6px 12px; gap: 8px; margin-bottom: 16px; }
  .g-rating-pill .g-score-inline { font-size: 14px; }
}

/* ───────── Carousel controls (arrows + dots) ───────── */
.g-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.g-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, background 0.18s, color 0.18s;
}
.g-arrow:hover { border-color: var(--red); color: var(--red-dark); transform: translateY(-1px); }
.g-arrow:active { transform: translateY(0); }
.g-arrow svg { width: 16px; height: 16px; }
.g-dots {
  display: inline-flex; align-items: center; gap: 8px;
}
.g-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}
.g-dot.on { background: var(--red); width: 22px; border-radius: 4px; }
.g-dot:hover:not(.on) { background: var(--silver); }
@media (max-width: 720px) {
  .g-controls { gap: 10px; margin-top: 10px; }
  .g-arrow { width: 34px; height: 34px; }
}
