/* Gemini Floor Services — opt3 Contractor / speed + trust */
:root {
  --navy: #0B1F33;
  --cream: #F7F3EB;
  --gold: #C4A35A;
  --gold-dark: #A8883F;
  --ink: #122334;
  --muted: #5C6770;
  --white: #fff;
  --line: rgba(11, 31, 51, 0.14);
  --max: 1140px;
  --radius: 8px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* Loud phone topbar */
.topbar {
  background: var(--navy);
  color: var(--cream);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.topbar-brand { display: none; } /* brand in sticky header */
.topbar-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.phone-pill {
  display: inline-flex;
  flex-direction: column;
  background: rgba(247, 243, 235, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.4);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  min-width: 0;
  padding: 0.28rem 0.65rem;
}
.phone-pill .lbl {
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.phone-pill a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.phone-pill a:hover { color: var(--gold); }
.phone-pill.loud {
  background: var(--gold);
  border-color: var(--gold);
}
.phone-pill.loud .lbl { color: var(--navy); }
.phone-pill.loud a { color: var(--navy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
}

/* Brand punch: logo + wordmark dominate (mirror v2 /preview/ scale) */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
/* logo clean on cream — no plate */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-name {
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-header .nav {
  min-height: 104px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  align-items: center;
}
.site-header .nav-links {
  font-size: 0.88rem;
}
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.footer-brand .logo-mark {
  width: 72px;
  height: 72px;
}
.footer-brand .logo-name {
  font-size: 1.1rem;
  color: var(--cream);
}
@media (max-width: 900px) {
  .logo-mark { width: 78px; height: 78px; }
  .logo-name { font-size: 1.1rem; white-space: nowrap; }
  .site-header .nav { min-height: 78px; }
  .topbar-phones { justify-content: stretch; }
  .phone-pill { flex: 1; }
}
@media (max-width: 520px) {
  .logo-mark { width: 64px; height: 64px; }
  .logo-name { font-size: 0.95rem; max-width: 9.5rem; white-space: normal; line-height: 1.1; }
  .site-header .nav { min-height: 68px; }
}


.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links {
  display: flex;
  gap: 1rem;
  margin-right: auto;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.nav-links a:hover { color: var(--gold-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-lg { padding: 0.95rem 1.35rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 1.5rem; font-size: 1.05rem; width: 100%; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  width: 42px; height: 42px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero: form primary + floor beside */
.hero {
  background: var(--navy);
  color: var(--cream);
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 560px;
}
.hero-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.hero-visual[data-hero-rotator] { background: #0b1f33; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,31,51,0.55), transparent 55%);
}
.hero-form-wrap,
.hero-copy {
  padding: 2rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 560px;
  gap: 1.25rem;
}
.hero-copy-top { display: flex; flex-direction: column; gap: 0; }
.hero-form-wrap .eyebrow,
.hero-copy .eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.hero-form-wrap h1,
.hero-copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-form-wrap .lead,
.hero-copy .lead {
  margin: 0 0 1.1rem;
  color: rgba(247, 243, 235, 0.82);
  font-size: 0.98rem;
}
.hero-cta-row { margin: 0 0 0.85rem; }
.hero-copy-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(196,163,90,0.35);
  font-size: 0.82rem;
  color: rgba(247,243,235,0.78);
  font-weight: 700;
}
.hero-copy-trust strong { color: var(--gold); }
.hero-visual[data-hero-rotator] img {
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
}
.hero-visual[data-hero-rotator] img.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-rotator-dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}
.hero-rotator-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(247,243,235,0.45);
  cursor: pointer;
}
.hero-rotator-dots button.is-active { background: var(--gold); }
.estimate-box {
  background: var(--cream);
  color: var(--ink);
  border-radius: 10px;
  padding: 1.25rem;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.estimate-box h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  color: var(--navy);
}
.estimate-box form {
  display: grid;
  gap: 0.55rem;
}
.estimate-box label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}
.estimate-box input,
.estimate-box select,
.estimate-box textarea {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.quick-calls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.quick-calls a {
  text-align: center;
  padding: 0.65rem;
  border-radius: 6px;
  background: rgba(247,243,235,0.08);
  border: 1px solid rgba(196,163,90,0.35);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.88rem;
}
.quick-calls a:hover { border-color: var(--gold); color: var(--gold); }
.quick-calls span { display: block; font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }

/* Trust bar loud */
.trust-bar {
  background: var(--gold);
  color: var(--navy);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}
.trust-bar strong {
  font-size: inherit;
  font-weight: 800;
  text-transform: none;
}

.section {
  padding: 2.75rem 1.1rem;
}
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--navy);
}
.section-head p { margin: 0.35rem 0 0; color: var(--muted); max-width: 36rem; }

/* Recent work — Install / Refinish labels (honest, not fake B/A) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(11,31,51,0.12);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}
.work-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(transparent, rgba(11,31,51,0.9));
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Geo CTAs loud */
.geo {
  background: var(--navy);
  color: var(--cream);
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.geo-card {
  background: rgba(247,243,235,0.06);
  border: 2px solid rgba(196,163,90,0.4);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  text-align: center;
}
.geo-card h3 {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.geo-card a {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cream);
}
.geo-card a:hover { color: var(--gold); }
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.areas-chips span {
  background: rgba(196,163,90,0.15);
  color: var(--gold);
  border: 1px solid rgba(196,163,90,0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.services-short {
  background: var(--white);
}
.svc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.svc-item {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  background: var(--cream);
}
.svc-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: var(--navy);
}
.svc-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.cta-strip {
  background: var(--gold);
  padding: 1.5rem 1.1rem;
  text-align: center;
}
.cta-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cta-strip strong {
  font-size: 1.2rem;
  color: var(--navy);
}

.site-footer {
  background: var(--navy);
  color: rgba(247,243,235,0.75);
  padding: 2rem 1.1rem;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
}
.site-footer a:hover { color: var(--gold); }
.site-footer strong { color: var(--cream); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,31,51,0.55);
}
.mobile-nav.is-open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 92vw);
  height: auto;
  max-height: none;
  background: var(--cream);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}
.mobile-nav-panel > #navClose,
.mobile-nav-panel > .btn.btn-outline {
  flex: 0 0 auto;
  margin: 1rem 1rem 0.5rem;
}
.mobile-nav-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: 0.5rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-nav-panel a { font-weight: 750; color: var(--navy); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 260px; order: -1; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .phone-pill { min-width: 0; flex: 1; }
}
@media (max-width: 520px) {
  .quick-calls { grid-template-columns: 1fr; }
}

/* —— Multipage chrome extensions —— */
.nav-links a.is-active { color: var(--gold-dark); }
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 2.5rem 1.1rem 2rem;
  position: relative;
  overflow: hidden;
}
.page-hero.has-photo {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.page-hero.has-photo .page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero.has-photo .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.35), rgba(11,31,51,0.88));
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.page-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  color: rgba(247, 243, 235, 0.82);
  max-width: 40rem;
  font-size: 0.98rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-col h4 {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  margin: 0.25rem 0;
  color: rgba(247,243,235,0.8);
}
.footer-col .area {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-addr {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: rgba(247,243,235,0.55);
}
.footer-bottom {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(247,243,235,0.12);
  font-size: 0.8rem;
  color: rgba(247,243,235,0.5);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.review-card .stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}
.review-card blockquote {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.review-card cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}
.review-card cite strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
}
.review-source { font-size: 0.78rem; }

/* Services detail */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.svc-detail {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.svc-detail h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
}
.svc-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Areas / geo cards */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.area-card {
  display: block;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  transition: border-color 0.15s, transform 0.15s;
}
.area-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.area-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}
.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.area-card .phone {
  display: block;
  margin-top: 0.65rem;
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
}

.geo-loud {
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0;
}
.geo-loud strong { font-size: 1.15rem; }
.geo-loud .addr { font-weight: 700; }

/* Contact split */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
}
.contact-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.contact-card h3 { margin: 0 0 0.35rem; color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card a.big {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cream);
  margin: 0.25rem 0 0.5rem;
}
.contact-card a.big:hover { color: var(--gold); }
.contact-card p { margin: 0; color: rgba(247,243,235,0.75); font-size: 0.9rem; }
.contact-form-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
}
.contact-form-card h2 { margin: 0 0 0.85rem; color: var(--navy); font-size: 1.15rem; }
.contact-form-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--cream);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}
.about-prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem;
}
.about-prose p { margin: 0 0 1rem; color: var(--ink); }
.about-prose p:last-child { margin-bottom: 0; }
.about-aside {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}
.about-aside h3 { margin: 0 0 0.65rem; color: var(--gold); }
.about-aside ul { margin: 0; padding: 0; }
.about-aside li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(247,243,235,0.12);
  font-weight: 700;
}

.about-owner {
  margin: 0 0 1.1rem;
}
.about-owner img {
  display: block;
  width: 100%;
  max-width: 147px; /* ~35% of prior live 420px display */
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-owner figcaption {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid .work-card { aspect-ratio: 4/3; }

/* Quote / IPE tool */
.quote-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1.1rem 5.5rem;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.15rem;
  align-items: start;
}
.quote-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 12px 32px rgba(11,31,51,0.08);
}
.quote-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--navy);
}
.quote-card .hint {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.quote-card .form-group {
  margin-bottom: 0.75rem;
}
.quote-card .form-group label,
.quote-card > label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}
.quote-card input[type="text"],
.quote-card input[type="email"],
.quote-card input[type="tel"],
.quote-card input[type="number"],
.quote-card select,
.quote-card textarea {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--cream);
}
.quote-card .req { color: #b33; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.unit-toggle {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  background: var(--cream);
  padding: 0.25rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.unit-toggle button {
  border: 0;
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
}
.unit-toggle button.active {
  background: var(--navy);
  color: var(--cream);
}
.dims-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.55rem;
  align-items: end;
}
.dims-grid .sqft-out {
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
  min-width: 6.5rem;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip-wrap { position: relative; }
.chip-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--cream);
  font-weight: 750;
  font-size: 0.82rem;
  color: var(--navy);
  cursor: pointer;
}
.chip-input:checked + .chip,
.chip.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.quote-summary {
  background: var(--navy);
  color: var(--cream);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
  position: sticky;
  top: 72px;
}
.quote-summary h2 { margin: 0 0 0.45rem; color: var(--gold); font-size: 1.1rem; }
.quote-summary .note { margin: 0 0 1rem; font-size: 0.85rem; color: rgba(247,243,235,0.7); }
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(247,243,235,0.12);
  font-size: 0.9rem;
}
.summary-line span:first-child { color: rgba(247,243,235,0.6); }
.summary-line span:last-child { font-weight: 700; text-align: right; }
.summary-total {
  margin-top: 1rem;
  padding-top: 0.85rem;
}
.summary-total .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 800;
}
.summary-total .value {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--cream);
  margin: 0.25rem 0;
}
.summary-total .disclaimer {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(247,243,235,0.55);
}
.form-actions { margin-top: 1rem; }
.state-hint { font-size: 0.8rem; color: var(--muted); margin: 0.5rem 0 0; }
.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  color: #1b5e20;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* Compact IPE on homepage hero */
.hero .quote-card {
  background: var(--cream);
  margin-top: 0.25rem;
}
.hero .quote-summary {
  margin-top: 0.75rem;
  position: static;
}
.hero-ipe {
  display: grid;
  gap: 0.75rem;
}
.btn-block { width: 100%; }

.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--navy);
  padding: 0.65rem 0.85rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  gap: 0.55rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.sticky-cta .btn { flex: 1; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .reviews-grid,
  .svc-detail-grid,
  .area-cards,
  .contact-grid,
  .about-grid,
  .gallery-grid,
  .quote-layout { grid-template-columns: 1fr; }
  .quote-summary { position: static; }
  .dims-grid { grid-template-columns: 1fr 1fr; }
  .dims-grid .sqft-out { grid-column: 1 / -1; }
  .form-row.two { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 4.5rem; }
  .area-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .area-cards,
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

.areas-chips a span {
  background: rgba(196,163,90,0.15);
  color: var(--gold);
  border: 1px solid rgba(196,163,90,0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
}
.logo, .logo-mark, .logo-wordmark {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.trust-bar-inner span {
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: normal;
}
.trust-bar-inner strong {
  font-weight: 900;
  font-size: inherit;
  text-transform: none;
}


/* —— Topbar socials + loud LI —— */
.topbar-inner {
  justify-content: space-between;
  flex-wrap: wrap;
}
.topbar-phones {
  width: auto;
  flex: 1 1 auto;
  justify-content: flex-start;
}
.topbar-socials {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin-left: auto;
}
.topbar-socials a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(247,243,235,0.1);
  border: 1px solid rgba(196,163,90,0.35);
}
.topbar-socials a:hover { background: rgba(196,163,90,0.25); }
.topbar-socials img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  filter: brightness(1.15);
}
@media (max-width: 900px) {
  .topbar-socials { width: 100%; justify-content: center; margin-left: 0; margin-top: 0.15rem; }
  .topbar-phones { width: 100%; justify-content: stretch; }
  .hero-copy, .hero-form-wrap { min-height: 0; }
}

/* —— Footer socials + payments —— */
.footer-socials {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.25rem 0;
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(247,243,235,0.08);
  border: 1px solid rgba(196,163,90,0.35);
  overflow: hidden;
}
.footer-socials a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-brand-logos {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding: 0 1.25rem;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  background: transparent;
}
.footer-brand-logos img {
  max-width: min(720px, 100%);
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 0.65rem 0.85rem;
  box-shadow: none;
}
.footer-brand-logos .pay {
  max-width: min(360px, 100%);
  background: #fff;
}


/* Nav: Recent work single line */
.nav-links a {
  white-space: nowrap;
}
.nav-links {
  flex-wrap: nowrap;
  gap: 0.75rem;
  font-size: 0.84rem;
}

.geo-addr {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(247,243,235,0.55);
}
.geo-page-chips { margin: 1.1rem 0 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.areas-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center; margin-top: 1.25rem; }

.quick-calls { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .quick-calls { grid-template-columns: 1fr; }
}

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.area-card h2 { margin: 0.25rem 0 0.5rem; color: var(--navy); font-size: 1.25rem; }
.area-card .work-meta { color: var(--gold-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.area-card .contact-addr { margin: 0; font-weight: 700; color: var(--ink); }
.area-card .contact-phone { margin: 0.25rem 0; font-weight: 800; }
.area-card .contact-phone a { color: var(--navy); }
.area-card .contact-meta { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.area-card p { color: var(--muted); font-size: 0.92rem; }
.area-card .btn { margin-top: 0.75rem; }

.page-hero.has-photo { min-height: 280px; }
.page-hero.has-photo .page-hero-bg img {
  object-fit: cover;
  object-position: center;
}

/* Geo local customization */
.local-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}
.local-callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
}
.local-callout strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.local-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.area-card .famous-for {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.88rem;
  margin: 0.35rem 0 0.55rem;
}
@media (max-width: 900px) {
  .local-callouts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .local-callouts { grid-template-columns: 1fr; }
}


/* Reviews: dual GBP CTAs — clear buttons */
.gbp-review-ctas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.gbp-cta {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 10px;
  text-decoration: none;
  color: var(--cream);
  box-shadow: 0 2px 0 rgba(11, 31, 51, 0.25);
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  cursor: pointer;
}
.gbp-cta:hover {
  background: #132a44;
  border-color: #d4b56e;
  transform: translateY(-1px);
}
.gbp-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.gbp-cta img {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  filter: brightness(1.15);
}
.gbp-cta span {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.gbp-cta strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}
.gbp-cta em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(247, 243, 235, 0.78);
  line-height: 1.35;
}
.gbp-cta::after {
  content: "→";
  margin-left: auto;
  align-self: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.section.geo .gbp-review-ctas,
.section .gbp-review-ctas {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .gbp-review-ctas { grid-template-columns: 1fr; }
}

/* Homepage financing trust badge */
.financ-badge-wrap {
  display: flex;
  justify-content: center;
  padding: 0.35rem 1.25rem 1.25rem;
  background: var(--cream);
}
.financ-badge {
  max-width: min(420px, 92%);
  width: 100%;
  height: auto;
  display: block;
}

/* Topbar socials — full set, no crushed tags */
.topbar-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  margin-left: auto;
  max-width: min(420px, 100%);
}
.topbar-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
}
.topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(247,243,235,0.08);
  border: 1px solid rgba(196,163,90,0.35);
  overflow: hidden;
}
.topbar-socials a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.topbar-socials a:hover { background: rgba(196,163,90,0.25); }
.topbar-gbp-chips,
.footer-gbp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}
.gbp-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  border: 1px solid rgba(11,31,51,0.12);
}
.gbp-chip:hover {
  background: #d4b56e;
  color: var(--navy);
}
.footer-gbp-chips {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}
.footer-socials .gbp-chip {
  background: rgba(247,243,235,0.12);
  color: var(--cream);
  border-color: rgba(196,163,90,0.45);
}
.footer-socials .gbp-chip:hover {
  background: var(--gold);
  color: var(--navy);
}
/* kill crushed inline tags if any remain */
.topbar-socials .gbp-tag,
.topbar-socials .gbp-link { display: none; }
.topbar-socials a.gbp-link { display: none; }
@media (max-width: 900px) {
  .topbar-social-wrap {
    width: 100%;
    align-items: center;
    margin-left: 0;
    max-width: none;
  }
  .topbar-socials { justify-content: center; }
  .topbar-gbp-chips { justify-content: center; }
}
@media (max-width: 640px) {
  .topbar-socials { gap: 0.35rem; }
  .topbar-socials a { width: 32px; height: 32px; }
}

.section-sub {
  margin: 0.35rem 0 0;
  color: var(--muted, #5a6570);
  font-size: 0.95rem;
  max-width: 36rem;
}
.review-source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Soft polish — Master PASS optional (2026-09-10) */
.site-header .nav-links,
.nav-links {
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}
@media (min-width: 1100px) {
  .site-header .nav-links,
  .nav-links { gap: 0.65rem; font-size: 0.82rem; }
}
.site-header .nav .btn-gold {
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  font-size: 0.82rem;
}
.quote-card .form-group label {
  overflow: visible;
  white-space: normal;
  line-height: 1.25;
  padding-bottom: 0.1rem;
}
.quote-card .form-row.two {
  align-items: start;
}
.quote-card select {
  text-overflow: ellipsis;
  overflow: hidden;
}


/* Reviews filter — 160 five-star grid */
.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.reviews-filter .chip {
  cursor: pointer;
  border: 1px solid var(--line, #d9d2c5);
  background: var(--cream, #F7F3EB);
  color: var(--navy, #0B1F33);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
}
.reviews-filter .chip.selected {
  background: var(--navy, #0B1F33);
  color: var(--cream, #F7F3EB);
  border-color: var(--navy, #0B1F33);
}
.review-card blockquote {
  max-height: 12.5rem;
  overflow: auto;
}


/* Nav as clickable buttons — enlarge + texture (2026-09-11 Darren) */
.site-header .nav-links,
.nav-links {
  gap: 0.4rem;
  font-size: 0.92rem;
  letter-spacing: 0;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 51, 0.14);
  background: linear-gradient(180deg, #fffef9 0%, #f0eadf 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,0.85) inset, 0 1px 2px rgba(11,31,51,0.08);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.nav-links a:hover {
  color: var(--navy);
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #f4e8cf 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 2px 6px rgba(196,163,90,0.28);
}
.nav-links a.is-active {
  color: var(--navy);
  border-color: var(--gold);
  background: linear-gradient(180deg, #f8e7c0 0%, #e8d19a 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.65) inset, 0 1px 3px rgba(11,31,51,0.12);
}
.mobile-nav a {
  display: block;
  margin: 0.35rem 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  background: linear-gradient(180deg, #fffef9 0%, #f0eadf 100%);
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(11,31,51,0.06);
}
@media (max-width: 1100px) {
  .nav-links a {
    padding: 0.4rem 0.62rem;
    font-size: 0.82rem;
  }
}

/* Ultra-narrow / Fold-Flip fixes 2026-09-11 */
/* Gemini Floors Opt3 — minimal responsive fixes for <600 / Fold cover 280
   Root cause: .nav .btn-gold stays flex-shrink:0 nowrap under the 900px
   hamburger breakpoint, so logo + CTA (~244px) + .nav-toggle ≈ 562px
   min content width → horizontal scroll and off-screen hamburger on phones.
*/

/* Hide redundant header gold CTA once sticky CTA is active (<900).
   Sticky bar + hero CTA already cover "Instant Preliminary Estimate". */
@media (max-width: 600px) {
  .site-header .nav > a.btn.btn-gold,
  .site-header .nav .btn-gold {
    display: none !important;
  }
  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }
  .logo {
    min-width: 0;
    max-width: calc(100% - 56px);
  }
}

/* Topbar: stop crushing 3 phone pills into unreadable columns */
@media (max-width: 520px) {
  .topbar-phones {
    flex-direction: column;
    width: 100%;
  }
  .phone-pill {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* Fold cover / ultra-narrow */
@media (max-width: 360px) {
  .logo-mark { width: 52px; height: 52px; }
  .logo-name {
    font-size: 0.85rem;
    max-width: 7.25rem;
    white-space: normal;
    line-height: 1.1;
  }
  .site-header .nav { min-height: 60px; gap: 0.5rem; padding-left: 0.75rem; padding-right: 0.75rem; }
  .sticky-cta {
    padding: 0.45rem 0.55rem;
    padding-bottom: max(0.45rem, env(safe-area-inset-bottom));
    gap: 0.4rem;
  }
  .sticky-cta .btn {
    font-size: 0.85rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }
  body { padding-bottom: 3.75rem; }
  .topbar-socials a { width: 28px; height: 28px; }
  .work-badge { font-size: 0.6rem; padding: 0.22rem 0.4rem; }
}


/* Mobile drawer scroll4 — Samsung Fold / Android 2026-09-11 */
html.nav-open,
body.nav-open {
  overflow: hidden !important;
}
body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
.mobile-nav.is-open {
  overflow: hidden;
}
.mobile-nav-scroll {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  min-height: 0;
}
