/* Gold Hands Miami — redesign prototype
   Brand: orange #F15A24 · navy #1A2744 */

:root {
  --orange: #f15a24;
  --orange-hot: #ff6a33;
  --navy: #1a2744;
  --navy-deep: #0e1628;
  --ink: #101828;
  --muted: #4b5568;
  --paper: #f3f1ec;
  --white: #ffffff;
  --line: rgba(26, 39, 68, 0.1);
  --shadow: 0 24px 60px rgba(14, 22, 40, 0.16);
  --radius: 22px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; cursor: pointer; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— MOTION ——— */
@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatYSoft {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ——— NAV ——— */
.nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.nav-logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: rgba(255, 255, 255, .9);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange-hot);
  transition: width .25s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--orange-hot); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-phone {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 30px rgba(241, 90, 36, 0.35);
}

.btn-primary:hover { background: var(--orange-hot); }

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .2); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover { background: #243456; }

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(14, 22, 40, .9) 0%, rgba(14, 22, 40, .58) 46%, rgba(14, 22, 40, .2) 100%),
    linear-gradient(180deg, rgba(14, 22, 40, .28) 0%, rgba(14, 22, 40, .12) 42%, rgba(14, 22, 40, .86) 100%);
}

.hero.painting .hero-scrim {
  background:
    linear-gradient(105deg, rgba(14, 22, 40, .88) 0%, rgba(14, 22, 40, .45) 52%, rgba(241, 90, 36, .16) 100%),
    linear-gradient(180deg, rgba(14, 22, 40, .25) 0%, rgba(14, 22, 40, .78) 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  animation: orbDrift 10s ease-in-out infinite;
}

.hero-orbs span:nth-child(1) {
  width: 220px;
  height: 220px;
  background: rgba(241, 90, 36, .55);
  left: 8%;
  bottom: 18%;
}

.hero-orbs span:nth-child(2) {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, .18);
  right: 18%;
  top: 22%;
  animation-duration: 14s;
}

.hero-content {
  padding: 8.5rem 0 4.8rem;
  width: min(700px, 100%);
}

.hero-brand {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  animation: fadeUp .8s ease both;
}

.hero-brand span {
  color: var(--orange-hot);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 12ch;
  animation: fadeUp .85s ease .08s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-hot);
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 38ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
  animation: fadeUp .85s ease .16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.85rem;
  animation: fadeUp .85s ease .24s both;
}

.hero-float-icon {
  position: absolute;
  right: 6%;
  bottom: 14%;
  width: min(220px, 28vw);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .45));
  animation: floatYSoft 5.5s ease-in-out infinite;
}

.hero-float-icon img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero-float-icon { display: none; }
}

/* ——— SECTIONS ——— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.proof-bar {
  margin-top: -1px;
  background: var(--navy-deep);
  color: #fff;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.proof-bar .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.proof-bar span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, .68);
  font-size: 0.88rem;
}

.proof-bar a.proof-link {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}
.proof-bar a.proof-link:hover { opacity: .85; }
.proof-bar a.proof-link span { color: var(--orange-hot); }

/* Official review platform badges */
.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.7);
  color: #111;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.review-badge-stars { color: #fbbc04; letter-spacing: 0.04em; }
.review-badge img { display: block; height: 14px; width: auto; }
.review-badge-light {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(14,22,40,.06);
}
.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ——— 3D SERVICE CARDS ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(14, 22, 40, .05);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 36, .16), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1.15rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 25%, #fff 0%, #f4f0ea 70%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    0 14px 24px rgba(26, 39, 68, .1);
  overflow: hidden;
  animation: floatY 4.8s ease-in-out infinite;
}

.service-card:nth-child(2n) .service-icon { animation-delay: -.8s; }
.service-card:nth-child(3n) .service-icon { animation-delay: -1.6s; }
.service-card:nth-child(4n) .service-icon { animation-delay: -2.4s; }

.service-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(14, 22, 40, .18));
  transition: transform .35s ease;
}

.service-card:hover .service-icon img {
  transform: translateY(-4px) scale(1.06);
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}

.service-card .from {
  display: inline-block;
  margin-top: 1.05rem;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ——— STEPS ——— */
.steps {
  background:
    linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.step-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(14, 22, 40, .04);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(241, 90, 36, .12);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

/* ——— TRUST ——— */
.trust {
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.trust h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
}

.trust > .container > .trust-grid > div > p,
.trust-grid > div > p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  max-width: 40ch;
  font-size: 1.05rem;
}

.trust-logo {
  justify-self: end;
  width: min(300px, 100%);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .4));
  animation: floatY 6s ease-in-out infinite;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.trust-points div {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 1.05rem;
  transition: transform .25s ease, background .25s ease;
}

.trust-points div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
}

.trust-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-points span {
  color: rgba(255, 255, 255, .68);
  font-size: 0.9rem;
}

/* ——— REVIEWS ——— */
.section-head .eyebrow,
.eyebrow {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}

.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .85rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(14, 22, 40, .05);
}
.google-rating-stars { color: #fbbc04; letter-spacing: .06em; }
.google-rating-pill strong { font-weight: 800; }
.google-rating-pill span:last-child { color: var(--muted); font-weight: 600; }

.ghm-google-reviews {
  margin-top: .5rem;
  min-height: 220px;
}
.ghm-google-reviews .ti-widget,
.ghm-google-reviews iframe {
  max-width: 100%;
}
.g-rev-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: .25rem .15rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.g-rev-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 220px;
  box-shadow: 0 10px 28px rgba(14, 22, 40, .04);
}
.g-rev-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .65rem;
}
.g-rev-who {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.g-rev-who strong { display: block; font-size: .95rem; }
.g-rev-who span { display: block; color: var(--muted); font-size: .8rem; font-weight: 600; }
.g-rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}
.g-rev-initial {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f0fe;
  color: #1a73e8;
  font-weight: 800;
}
.g-rev-g { opacity: .85; margin-top: .15rem; }
.g-rev-stars {
  color: #fbbc04;
  letter-spacing: .08em;
  font-size: .9rem;
  margin-bottom: .55rem;
}
.g-rev-card p {
  margin: 0;
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-rev-footnote {
  margin: .25rem 0 0;
  text-align: center;
  font-weight: 700;
}
.g-rev-footnote a { color: var(--orange); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.reviews-grid[hidden] { display: none !important; }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(14, 22, 40, .04);
  transition: transform .3s ease;
}

.review-card:hover { transform: translateY(-6px); }

.stars {
  color: var(--orange);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.review-card p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.review-card cite {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

/* ——— AREAS ——— */
.areas-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

a.area-chip:hover {
  transform: translateY(-2px) rotate(-0.4deg);
  border-color: rgba(241, 90, 36, .45);
  color: var(--orange);
  box-shadow: 0 8px 18px rgba(14,22,40,.08);
}

.area-chip-more {
  background: rgba(241, 90, 36, .08);
  border-color: rgba(241, 90, 36, .35);
  color: var(--orange-hot);
}

/* ——— FAQ ——— */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 750;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

/* ——— QUOTE / CTA ——— */
.cta-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(241, 90, 36, .22), transparent 35%),
    linear-gradient(135deg, #18233d, #0e1628 60%);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.quote-grid h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.quote-grid > div > p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, .72);
  max-width: 36ch;
}

.quote-meta {
  display: grid;
  gap: 0.85rem;
}

.quote-meta div {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
}

.quote-meta strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
}

.quote-meta span,
.quote-meta a {
  color: rgba(255, 255, 255, .75);
  font-size: 0.92rem;
}

.quote-form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 1.35rem;
  backdrop-filter: blur(12px);
}

.quote-form h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(14, 22, 40, .45);
  color: #fff;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(241, 90, 36, .7);
  box-shadow: 0 0 0 3px rgba(241, 90, 36, .18);
}

.field textarea { min-height: 96px; resize: vertical; }

.quote-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .55);
}

/* ——— FOOTER ——— */
.footer {
  padding: 2.4rem 0 2.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: #ebe7e0;
}

.footer .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  height: 56px;
  width: auto;
}

.footer a { font-weight: 700; color: var(--navy); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(241, 90, 36, .08);
  border: 1px dashed rgba(241, 90, 36, .35);
  color: var(--navy);
  font-size: 0.86rem;
}

/* ——— MOBILE NAV DRAWER ——— */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(14, 22, 40, .96);
  padding: 5.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.mobile-nav .btn { width: fit-content; margin-top: 0.5rem; }

@media (max-width: 980px) {
  .services-grid,
  .steps-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .trust-logo { justify-self: start; }
  .nav-links,
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .proof-bar .row { grid-template-columns: 1fr; gap: 0.85rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services-grid,
  .steps-grid,
  .reviews-grid,
  .trust-points { grid-template-columns: 1fr; }
  .hero-content { padding-top: 7.2rem; }
  .nav-logo img { height: 52px; }
  .footer-brand img { height: 48px; }
  .service-icon { width: 88px; height: 88px; }
}

/* SMS consent */
.sms-consent { margin-top: 0.35rem; }
.sms-label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.62) !important;
  line-height: 1.45;
  cursor: pointer;
}
.sms-label input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}
.sms-label a { color: var(--orange-hot); text-decoration: underline; }

/* Floating Call + Instagram (mobile only) — compact icon chips */
.floating-actions {
  position: fixed;
  right: .75rem;
  bottom: .85rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: flex-end;
}
.floating-call,
.floating-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-width: 0;
  width: auto;
  height: 42px;
  padding: 0 .85rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .01em;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(14, 22, 40, .2);
  text-decoration: none;
}
.floating-call svg,
.floating-ig svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: block;
}
.floating-call {
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(241,90,36,.4);
}
.floating-call:hover { background: var(--orange-hot); }
.floating-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.floating-ig:hover { filter: brightness(1.06); }
/* Legacy WA class — hide if any stale markup remains */
.floating-wa { display: none !important; }

@media (min-width: 981px) {
  .floating-actions { display: none; }
}
@media (max-width: 380px) {
  .floating-call span,
  .floating-ig span { display: none; }
  .floating-call,
  .floating-ig {
    width: 42px;
    height: 42px;
    padding: 0;
  }
}

/* About page */
.about-facts .proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.25rem;
}
.about-facts .proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  text-align: center;
}
.about-facts .proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.about-facts .proof-card span {
  color: var(--muted);
  font-size: .92rem;
}
.about-nap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
}
.about-nap ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.about-nap li { margin: .45rem 0; }
.about-nap strong { color: var(--ink); }
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
}
@media (max-width: 820px) {
  .about-facts .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Compact page hero (Areas, etc.) */
.hero-compact {
  min-height: auto;
  align-items: end;
}
.hero-compact .hero-content {
  padding: 7.5rem 0 3.2rem;
  width: min(760px, 100%);
}
.hero-compact h1 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.crumb {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}
.crumb a { color: var(--orange-hot); }

/* ZIP search */
.zip-search-section { padding-top: 2.4rem; }
.zip-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: 0 10px 28px rgba(14,22,40,.04);
  max-width: 720px;
}
.zip-search-label {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.zip-search-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.zip-search-row input {
  flex: 1 1 10rem;
  min-width: 8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--sand, #f7f4ef);
}
.zip-search-row input:focus {
  outline: 2px solid rgba(241,90,36,.35);
  border-color: var(--orange);
}
.zip-search-row .btn { flex: 0 0 auto; }
.zip-search-hint {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.zip-search-msg {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}
.zip-search-msg.is-error { color: #b42318; }
.zip-search-msg a { color: var(--orange-hot); font-weight: 800; }

/* Compact region foldables */
.region-folds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.region-fold {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(14,22,40,.03);
  overflow: hidden;
  margin: 0;
}
.region-fold > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  user-select: none;
}
.region-fold > summary::-webkit-details-marker { display: none; }
.region-fold .zip-fold-title { font-size: 0.98rem; }
.region-fold[open] .zip-fold-chev {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.region-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0.85rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  padding-top: 0.7rem;
}
.region-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: baseline;
  padding: 0.2rem 0;
}
.region-list .city {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}
.region-list .zips { display: inline-flex; flex-wrap: wrap; gap: 0.3rem; }
.zip-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding: 0.18rem 0.38rem;
  border-radius: 6px;
  background: var(--sand, #f7f4ef);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}
a.zip-mini:hover {
  border-color: var(--orange);
  color: var(--orange-hot);
}

@media (max-width: 800px) {
  .region-folds { grid-template-columns: 1fr; }
  .zip-search-row .btn { width: 100%; }
}

/* ZIP SEO foldables */
.zip-fold {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 22px rgba(14,22,40,.03);
  overflow: hidden;
}
.zip-fold > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  user-select: none;
}
.zip-fold > summary::-webkit-details-marker { display: none; }
.zip-fold-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.zip-fold-meta {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.zip-fold-chev {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex: 0 0 auto;
  opacity: .55;
}
.zip-fold[open] .zip-fold-chev {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}
.zip-fold .zip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
a.zip-tag { text-decoration: none; }
a.zip-tag:hover {
  border-color: var(--orange);
  color: var(--orange-hot);
}
.zip-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: var(--sand, #f7f4ef);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Blog — premium cards with light shake */
.blog-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.35rem;
  box-shadow: 0 16px 40px rgba(14,22,40,.06);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.blog-feature:hover {
  transform: translateY(-6px) rotate(-0.35deg);
  box-shadow: 0 22px 50px rgba(14,22,40,.12);
}
.blog-feature-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.blog-feature:hover .blog-feature-media img {
  transform: scale(1.05) translateX(1.5%);
}
.blog-feature-body {
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-feature-body h2 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.blog-feature-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.blog-read {
  font-weight: 800;
  color: var(--orange-hot);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(14,22,40,.04);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  will-change: transform;
}
.blog-card:nth-child(3n+1):hover { transform: translateY(-8px) rotate(-0.7deg); }
.blog-card:nth-child(3n+2):hover { transform: translateY(-8px) rotate(0.55deg); }
.blog-card:nth-child(3n):hover { transform: translateY(-8px) rotate(-0.4deg); }
.blog-card:hover { box-shadow: 0 20px 44px rgba(14,22,40,.12); }
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e4dc;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.07) rotate(0.6deg);
}
.blog-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.blog-date {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orange-hot);
  letter-spacing: 0.02em;
}
.blog-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.blog-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature-media { min-height: 220px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-card:hover,
  .blog-feature:hover,
  .blog-card:hover .blog-card-media img,
  .blog-feature:hover .blog-feature-media img {
    transform: none;
  }
}

/* Service landing pages */
.service-hero-content { width: min(720px, 100%); }
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.service-hero-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.service-hero-badge span {
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.include-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.2rem;
  box-shadow: 0 10px 28px rgba(14,22,40,.04);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.include-card:hover {
  transform: translateY(-5px) rotate(-0.35deg);
  box-shadow: 0 18px 40px rgba(14,22,40,.1);
}
.include-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.include-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.services-grid-compact .service-card p { display: none; }
.proof-bar .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  flex-wrap: wrap;
}
.proof-bar .row > div { min-width: 140px; }

@media (max-width: 900px) {
  .include-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .include-grid { grid-template-columns: 1fr; }
}

/* Painting page — details + calculator */
a.service-card { text-decoration: none; color: inherit; }
.paint-kicker {
  margin: 0 0 0.45rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-hot);
}
.paint-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}
.paint-detail h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.paint-detail > .container > div > p,
.paint-detail-grid > div > p {
  color: var(--muted);
  line-height: 1.55;
}
.paint-bullets {
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.paint-bullets li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.paint-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}
.paint-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
  box-shadow: 0 12px 30px rgba(14,22,40,.05);
}
.paint-detail-card h3 {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
}
.paint-detail-card h3:first-child { margin-top: 0; }
.paint-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-hot);
}
.paint-note { font-size: 0.88rem; color: var(--muted); }

.paint-calc {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(241,90,36,.28);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: 0 16px 40px rgba(241,90,36,.08);
}
.paint-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.paint-calc label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.paint-calc select,
.paint-calc input[type="number"] {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--sand, #f7f4ef);
  color: var(--navy);
}
.paint-calc-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.paint-calc-checks input { margin-right: 0.35rem; }
.paint-calc-out {
  margin-top: 1.15rem;
  text-align: center;
  background: rgba(241,90,36,.06);
  border-radius: 14px;
  padding: 1.1rem 1rem;
}
.paint-calc-label { font-size: 0.85rem; color: var(--muted); }
.paint-calc-price {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--orange-hot);
}
.paint-calc-note { margin-top: 0.25rem; font-size: 0.88rem; color: var(--muted); }
.paint-calc-disclaimer { margin-top: 0.4rem; font-size: 0.78rem; color: var(--muted); }
.paint-calc-cta { display: flex; justify-content: center; margin-top: 1rem; width: 100%; }

@media (max-width: 800px) {
  .paint-detail-grid { grid-template-columns: 1fr; }
  .paint-calc-grid { grid-template-columns: 1fr; }
}


/* ——— Airo parity pack ——— */
.promo-strip {
  background: linear-gradient(90deg, #f15a24 0%, #ff6a33 55%, #f15a24 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 2px 0 rgba(14, 22, 40, .12);
  position: relative;
  z-index: 40;
}
.promo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  padding: .8rem 0;
}
.promo-strip strong {
  font-size: 1.05em;
  background: rgba(0,0,0,.16);
  padding: .12rem .45rem;
  border-radius: 6px;
}
.promo-strip a {
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-weight: 800;
  white-space: nowrap;
}
.promo-strip a:hover { background: rgba(255,255,255,.14); }

.offer-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 14px 36px rgba(14, 22, 40, .06);
}
.offer-hero h2 {
  margin: .25rem 0 .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
}
.offer-lead { margin: 0 0 1rem; font-size: 1.05rem; color: var(--ink); }
.offer-terms {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.offer-terms li { margin: .4rem 0; }
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
}
.step-num {
  display: inline-flex;
  width: 2rem; height: 2rem;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  margin-bottom: .65rem;
}
.step-card h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.step-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.section-alt { background: rgba(26, 39, 68, .03); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.promise-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}
.promise-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.promise-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.work-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 180px;
  display: block;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}
.work-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .85rem 1rem;
  background: linear-gradient(transparent, rgba(14,22,40,.85));
  color: #fff;
  font-weight: 800;
}
.guide-body {
  max-width: 760px;
  margin: 0 auto;
}
.guide-body h2 { margin-top: 2rem; }
.guide-body ul { color: var(--muted); }
@media (max-width: 900px) {
  .steps-grid, .promise-grid, .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .steps-grid, .promise-grid, .work-grid { grid-template-columns: 1fr; }
}

/* ——— AI Painting Estimator ——— */
.ae-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 18px 48px rgba(14, 22, 40, .08);
}
.ae-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.75rem;
  min-width: 0;
}
.ae-col { min-width: 0; max-width: 100%; }
.ae-step {
  margin: 1.25rem 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}
.ae-step:first-child { margin-top: 0; }
.ae-step span {
  display: block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: .15rem;
}
.ae-help { margin: 0 0 .75rem; color: var(--muted); font-size: .9rem; }
.ae-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.ae-fields-2 { margin-top: .75rem; }
.ae-shell label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.ae-shell input[type="text"],
.ae-shell input[type="number"],
.ae-shell input[type="search"],
.ae-shell select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .7rem .85rem;
  font: inherit;
  background: #faf9f7;
}
.ae-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-top: .85rem;
}
.ae-checks label {
  flex-direction: row;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}
.ae-exterior {
  margin-top: .5rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(26, 39, 68, .03);
  border: 1px dashed rgba(26, 39, 68, .15);
}
.ae-brands { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .65rem; }
.ae-brand {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-weight: 800;
  font-size: .8rem;
  color: var(--navy);
}
.ae-brand.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.ae-swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  max-height: 260px;
  overflow: auto;
  margin: .65rem 0;
  padding-right: .25rem;
}
.ae-swatch {
  display: flex;
  gap: .55rem;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: .45rem .55rem;
}
.ae-swatch.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(241, 90, 36, .2);
}
.ae-swatch-chip {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.12);
  flex: 0 0 auto;
  display: inline-block;
}
.ae-swatch-meta { display: flex; flex-direction: column; min-width: 0; }
.ae-swatch-meta strong {
  font-size: .78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ae-swatch-meta small { color: var(--muted); font-size: .7rem; }
.ae-selected {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  min-height: 2rem;
}
.ae-selected strong { color: var(--navy); }
.ae-upload {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1.5px dashed rgba(26, 39, 68, .25);
  border-radius: 14px;
  padding: 1rem;
  background: #faf9f7;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.ae-upload input { display: none; }
.ae-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin: .85rem 0;
  min-height: 160px;
  position: relative;
}
.ae-preview figure { margin: 0; }
.ae-preview figcaption {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .3rem;
}
.ae-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #eee;
}
.ae-preview img.ae-zoomable:not([hidden]) {
  cursor: zoom-in;
}
.ae-preview img.ae-zoomable:not([hidden]):hover {
  box-shadow: 0 0 0 2px var(--orange);
}
.ae-zoom-hint {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
  margin-left: .35rem;
}
.ae-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 22, 40, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.ae-lightbox[hidden] { display: none !important; }
.ae-lightbox img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  cursor: default;
  background: #111;
}
.ae-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.ae-lightbox-close:hover { background: rgba(255,255,255,.28); }
/* Google Places dropdown above estimator card */
.pac-container { z-index: 10000 !important; }
.ae-preview-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(26, 39, 68, .04);
  color: var(--muted);
  font-size: .9rem;
  padding: 2rem 1rem;
  text-align: center;
}
.ae-btn { width: 100%; margin-top: .5rem; justify-content: center; }
.ae-price-card {
  margin-top: 1.25rem;
  padding: 1.15rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff5ef, #ffe8dc);
  border: 1px solid rgba(241, 90, 36, .2);
}
.ae-price-label {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #9a4a28;
}
.ae-special {
  display: inline-block;
  margin: .4rem 0 0;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .2rem .55rem;
  border-radius: 999px;
}
/* Global `img { display:block }` / `.ae-special { display:inline-block }`
   override the HTML hidden attribute — force hide. */
.ae-special[hidden],
.ae-special-tip[hidden],
.ae-per-sqft[hidden],
.ae-preview img[hidden],
.ae-preview-empty[hidden],
#ae-exterior-extra[hidden],
#ae-streetview[hidden],
.ae-share-actions[hidden],
.ae-addr-suggestions[hidden] {
  display: none !important;
}
.ae-special-tip {
  margin: .4rem 0 0;
  font-size: .82rem;
  font-weight: 700;
  color: #9a4a28;
}
.ae-check-inline {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: .45rem;
  margin: .65rem 0 .35rem;
  font-size: .85rem !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
}
.ae-autofill-trap {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
.ae-addr-wrap { position: relative; margin-bottom: .35rem; }
.ae-shell input#ae-address {
  -webkit-text-security: none !important;
  text-security: none !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
  width: 100%;
}
.ae-addr-suggestions {
  list-style: none;
  margin: .35rem 0 0;
  padding: .35rem;
  position: absolute;
  left: 0; right: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid #d7dde8;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20, 28, 45, .12);
  max-height: 240px;
  overflow: auto;
}
.ae-addr-suggestions[hidden] { display: none !important; }
.ae-addr-suggestions li {
  padding: .65rem .75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.ae-addr-suggestions li:hover,
.ae-addr-suggestions li.is-active {
  background: #fff1ea;
  color: #c2410c;
}
.ae-progress {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.ae-progress li {
  flex: 1 1 auto;
  min-width: 5.5rem;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .55rem .4rem;
  border-radius: 999px;
  background: #f1f3f7;
  border: 1px solid transparent;
}
.ae-progress li.is-active {
  color: #fff;
  background: var(--navy);
}
.ae-progress li.is-done {
  color: #1f7a4c;
  background: #e8f7ef;
  border-color: #b7e4c7;
}
.ae-btn-hero {
  width: 100%;
  margin-top: .75rem;
  font-size: 1.05rem !important;
  padding: .95rem 1.2rem !important;
}
.ae-btn-quiet { margin-top: .5rem; }
.ae-meta-fields { opacity: .92; }
.ae-share-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: .55rem;
  margin: .85rem 0 .55rem;
}
.ae-share-actions[hidden] { display: none !important; }
.ae-share-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 18, 32, .72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1rem 2rem;
  overflow: auto;
}
.ae-share-sheet[hidden] { display: none !important; }
.ae-share-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .25rem 0 1rem;
  width: min(210mm, 100%);
  position: sticky;
  top: 0;
  z-index: 2;
}
/* Screen preview of A4 */
.ae-a4 {
  width: min(210mm, 100%);
  min-height: 297mm;
  background: #fff;
  color: #1a2744;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  padding: 14mm 14mm 12mm;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.ae-a4-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-bottom: .85rem;
  border-bottom: 2px solid #1a2744;
}
.ae-share-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}
.ae-a4-brand { flex: 1; min-width: 0; }
.ae-a4-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}
.ae-a4-brand span {
  display: block;
  color: #5b657a;
  font-size: .9rem;
  font-weight: 600;
}
.ae-a4-contact { margin-top: .15rem !important; color: #1a2744 !important; font-weight: 800 !important; }
.ae-a4-badge {
  flex: 0 0 auto;
  background: #fff1ea;
  color: #c2410c;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .65rem;
  border-radius: 999px;
  border: 1px solid #ffd4bf;
}
.ae-a4-title {
  margin: 1.1rem 0 .25rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}
.ae-a4-sub {
  margin: 0 0 1rem;
  color: #5b657a;
  font-weight: 600;
  font-size: .95rem;
}
.ae-share-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.ae-share-photos figure { margin: 0; }
.ae-share-photos figcaption {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #5b657a;
  margin-bottom: .35rem;
}
.ae-share-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  background: #eef1f6;
  border: 1px solid #e6e9f0;
}
.ae-a4-body {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: start;
  flex: 1;
}
.ae-share-meta {
  font-size: .95rem;
  line-height: 1.5;
  font-weight: 600;
  color: #1a2744;
}
.ae-share-meta div { margin-bottom: .35rem; }
.ae-a4-price-block {
  background: linear-gradient(160deg, #fff8f3, #fff1ea);
  border: 1px solid #ffd4bf;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.ae-a4-price-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9a4a28;
  margin-bottom: .35rem;
}
.ae-share-price {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
}
.ae-share-disclaimer {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: #5b657a;
  line-height: 1.4;
}
.ae-share-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid #e6e9f0;
  font-weight: 800;
  font-size: .95rem;
}
.ae-share-foot a { color: var(--orange); text-decoration: none; }
@media (max-width: 700px) {
  .ae-a4-body { grid-template-columns: 1fr; }
  .ae-a4 { min-height: auto; padding: 1.1rem; }
}
@media print {
  @page { size: A4 portrait; margin: 10mm; }
  html, body {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body * { visibility: hidden !important; }
  #ae-share-sheet,
  #ae-share-sheet .ae-a4,
  #ae-share-sheet .ae-a4 * {
    visibility: visible !important;
  }
  #ae-share-sheet {
    position: static !important;
    background: #fff !important;
    padding: 0 !important;
    display: block !important;
    overflow: visible !important;
  }
  .ae-share-toolbar,
  .no-print { display: none !important; }
  .ae-a4 {
    width: 100% !important;
    min-height: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}
.ae-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--orange);
  margin: .35rem 0;
  line-height: 1.1;
}
.ae-per-sqft {
  margin: 0 0 .35rem;
  font-weight: 800;
  color: var(--navy);
  font-size: .95rem;
}
.ae-note { margin: 0; color: var(--ink); font-size: .9rem; }
.ae-disclaimer { margin: .45rem 0 0; color: var(--muted); font-size: .78rem; }
.ae-status {
  min-height: 1.25rem;
  margin: .75rem 0 0;
  font-size: .88rem;
  color: var(--muted);
}
.ae-status[data-kind="ok"] { color: #1f7a4c; }
.ae-status[data-kind="err"] { color: #b42318; }
@media (max-width: 900px) {
  .ae-grid { grid-template-columns: minmax(0, 1fr); }
  .ae-fields { grid-template-columns: minmax(0, 1fr); }
  .ae-shell { overflow-x: clip; }
  .ae-shell input,
  .ae-shell select,
  .ae-shell button { max-width: 100%; }
}

/* ——— MOBILE UX OVERHAUL ———
   Readable type scale, compact sticky chrome, usable estimator.
   Desktop rules above stay intact; these only tighten ≤780px. */
@media (max-width: 780px) {
  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  body { font-size: .97rem; line-height: 1.55; }

  .hero {
    min-height: auto;
    align-items: end;
  }
  .hero .nav {
    padding-left: .75rem;
    padding-right: .75rem;
  }
  .hero-content {
    padding: 6.4rem 0 2.6rem;
    width: 100%;
  }
  .hero h1,
  .hero-compact h1 {
    font-size: clamp(1.65rem, 7.2vw, 1.9rem);
    line-height: 1.12;
    letter-spacing: -0.028em;
    max-width: 14ch;
  }
  .hero-lead {
    font-size: .98rem;
    margin-top: .9rem;
    max-width: 36ch;
  }
  .hero-brand {
    font-size: .78rem;
  }
  .hero-actions {
    margin-top: 1.25rem;
    gap: .55rem;
  }
  .hero-actions .btn {
    padding: .82rem 1.1rem;
    font-size: .92rem;
    width: 100%;
  }

  .section { padding: 3.4rem 0; }
  .section-head { margin-bottom: 1.6rem; gap: .55rem; }
  .section-head h2,
  .trust > .container > .trust-grid > div > h2,
  .paint-detail > .container > div > h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.55rem);
    line-height: 1.18;
  }
  .section-head p {
    font-size: .95rem;
  }

  .btn {
    padding: .82rem 1.15rem;
    font-size: .92rem;
  }

  .offer-banner h2,
  .offer-title,
  .offer-hero h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.7rem);
  }
  .offer-lead { font-size: .95rem; }

  .promo-strip {
    font-size: .74rem;
    line-height: 1.3;
  }
  .promo-strip-inner {
    flex-wrap: wrap;
    gap: .3rem .65rem;
    justify-content: center;
    text-align: center;
    padding: .55rem 0;
  }
  .promo-strip strong {
    font-size: 1em;
    padding: .08rem .35rem;
  }
  .promo-strip a {
    padding: .22rem .6rem;
    font-size: .7rem;
  }

  .service-card h3,
  .step-card h3,
  .promise-card h3 {
    font-size: 1.02rem;
  }
  .service-card p,
  .step-card p,
  .promise-card p {
    font-size: .9rem;
  }

  .nav-logo img { height: 46px; }
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .quote-card h3 { font-size: 1.15rem; }
  .form-card label,
  .quote-form label { font-size: .82rem; }
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    font-size: 1rem; /* iOS zoom guard */
    padding: .75rem .85rem;
  }

  /* Estimator mobile clarity */
  .ae-shell {
    padding: 1rem .9rem;
    border-radius: 18px;
  }
  .ae-progress {
    gap: .3rem;
    margin-bottom: 1rem;
  }
  .ae-progress li {
    min-width: 0;
    flex: 1 1 calc(33.33% - .3rem);
    font-size: .6rem;
    padding: .42rem .15rem;
    letter-spacing: .01em;
  }
  .ae-step span { font-size: .78rem; }
  .ae-help { font-size: .86rem; }
  .ae-shell input[type="text"],
  .ae-shell input[type="number"],
  .ae-shell input[type="search"],
  .ae-shell select {
    font-size: 1rem;
    padding: .75rem .8rem;
  }
  .ae-swatches {
    grid-template-columns: 1fr;
    max-height: 220px;
  }
  .ae-preview { grid-template-columns: 1fr 1fr; min-height: 120px; }
  .ae-price {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }
  .ae-btn-hero {
    font-size: .98rem !important;
    padding: .88rem 1rem !important;
  }
  .ae-share-actions {
    grid-template-columns: 1fr;
  }
  .ae-share-toolbar {
    width: 100%;
  }
  .ae-share-toolbar .btn {
    flex: 1 1 auto;
  }
  .ae-a4-title {
    font-size: 1.35rem;
  }
  .ae-a4-brand strong { font-size: 1.15rem; }
  .ae-share-logo { width: 56px; height: 56px; }

  /* Footer breathing room above floating chips */
  .footer { padding-bottom: 5.5rem; }

  .about-facts .proof-grid { grid-template-columns: 1fr 1fr; }
  .about-facts .proof-card strong { font-size: 1.35rem; }

  .mobile-nav a { font-size: 1.15rem; }
  .mobile-nav { padding-top: 4.5rem; }
}

@media (max-width: 430px) {
  .hero-content { padding-top: 5.9rem; padding-bottom: 2.2rem; }
  .hero h1,
  .hero-compact h1 {
    font-size: 1.7rem;
    max-width: 12ch;
  }
  .proof-bar { padding: 1rem 0; }
  .service-icon { width: 72px; height: 72px; }
}
