:root {
  --navy-950: #0d1f2d;
  --navy-800: #143247;
  --teal-600: #486f89;
  --teal-400: #8caabd;
  --gold-500: #b89a52;
  --gold-300: #d9c089;
  --sand-100: #f4eee3;
  --sand-200: #e6dccd;
  --mist-50: #f9fbfb;
  --slate-500: #62727f;
  --white: #ffffff;
  --line: rgba(13, 31, 45, 0.1);
  --shadow: 0 20px 60px rgba(13, 31, 45, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--navy-950);
  background: linear-gradient(180deg, #edf3f7 0%, var(--sand-100) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main section,
.contact-form-card,
#estimate-request {
  scroll-margin-top: 110px;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(140, 170, 189, 0.28), transparent 25%),
    radial-gradient(circle at 78% 30%, rgba(184, 154, 82, 0.12), transparent 16%),
    radial-gradient(circle at 88% 18%, rgba(20, 50, 71, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.topbar,
.nav-shell,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding-top: 16px;
}

.topbar-inner,
.nav-inner,
.section-card,
.contact-card,
.hero-panel,
.info-card,
.gallery-card,
.testimonial {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar-inner,
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  background: rgba(249, 251, 251, 0.78);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(360px, 56vw);
  height: auto;
}

.brand-since {
  margin: 0;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  display: block;
  font-size: 1.5rem;
  line-height: 0.9;
}

.brand small {
  color: var(--slate-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-meta,
.nav-inner,
.hero-actions,
.contact-panels {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-meta a,
.nav-inner a {
  color: var(--navy-950);
  text-decoration: none;
}

.pill-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pill-link:hover,
.button:hover {
  transform: translateY(-2px);
}

.pill-link {
  color: var(--navy-950);
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  border: 1px solid rgba(184, 154, 82, 0.18);
}

.nav-shell {
  padding-top: 8px;
  position: sticky;
  top: 8px;
  z-index: 20;
}

.nav-inner {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 50, 71, 0.08);
  background: rgba(20, 50, 71, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(184, 154, 82, 0.18),
    var(--shadow);
}

.nav-inner a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 154, 82, 0.18);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-inner a:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  border-color: rgba(184, 154, 82, 0.34);
}

.section {
  padding: 16px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.7fr 0.6fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
}

.hero-copy,
.hero-panel,
.about-copy,
.service-area,
.info-card,
.gallery-card,
.testimonial,
.contact-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.34),
    var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow,
.panel-kicker {
  margin: 0 0 8px;
  color: var(--gold-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.5rem;
  line-height: 0.95;
}

.lede,
.about-copy p,
.service-area p,
.info-card p,
.quote-author,
.contact-intro,
.contact-card p,
.hours-list li {
  color: var(--slate-500);
  line-height: 1.55;
}

.about-copy p,
.service-area p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.info-card p {
  font-size: 0.95rem;
}

.heritage-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-600), var(--navy-800));
  box-shadow: 0 14px 34px rgba(20, 50, 71, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(184, 154, 82, 0.18);
}

.hero-cta {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.button-secondary {
  color: var(--navy-950);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.text-link {
  color: var(--gold-500);
  font-weight: 700;
  text-decoration: none;
}

.inline-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.inline-link:hover {
  text-decoration: underline;
}

.theme-points,
.hours-list {
  padding-left: 18px;
  margin: 0;
}

.theme-points li,
.hours-list li {
  margin-bottom: 10px;
}

.section-card {
  padding: 24px;
  border-radius: 36px;
  background: rgba(249, 251, 251, 0.72);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.38),
    var(--shadow);
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.trust-row span {
  padding: 9px 14px;
  border: 1px solid rgba(184, 154, 82, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy-800);
  font-size: 0.92rem;
}

.lede {
  margin-bottom: 0;
}

.hero-actions {
  margin-top: 14px;
}

.hero-panel-grid {
  display: grid;
  gap: 14px;
}

.hero-panel-grid article {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 50, 71, 0.08);
}

.hero-panel-grid article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: 1rem;
}

.hero-panel-grid span {
  display: block;
  color: var(--slate-500);
  line-height: 1.5;
}

.section-heading h2::after,
.hero-copy h1::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.hero-city-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 154, 82, 0.55);
}

.hero-city-link:hover {
  color: var(--navy-800);
  border-bottom-color: var(--gold-500);
}

.rosamond-page .rosamond-services-heading h2 {
  white-space: nowrap;
}

.rosamond-page .rosamond-info-heading h2,
.rosamond-page .rosamond-cta-heading h2 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.02;
}

.about-grid,
.card-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mobile-section summary {
  display: none;
}

.mobile-preview {
  display: none;
}

.about-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.owner-photo-card {
  width: min(100%, 195px);
  margin: 0 0 8px;
}

.owner-photo {
  display: block;
  width: 100%;
  max-height: 145px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(20, 50, 71, 0.1);
}

.owner-caption {
  margin: 4px 0 0;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 6px 0;
  font-size: 0.82rem;
}

.service-area-links span {
  color: var(--teal-600);
  opacity: 0.75;
}

.service-area-label {
  color: var(--navy-800);
  font-weight: 800;
  opacity: 1;
}

.card-grid.process-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.card-grid.process-grid .info-card {
  height: 100%;
  padding: 12px;
}

#services .section-heading {
  max-width: 100%;
}

#services .section-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
}

#services .info-card h3 {
  font-size: 1.22rem;
  line-height: 1;
}

#services .info-card p {
  font-size: 0.82rem;
  line-height: 1.28;
  margin-bottom: 8px;
}

#about .section-heading {
  max-width: 40rem;
  margin-bottom: 8px;
}

#about .section-heading h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.02;
}

#about .about-grid {
  gap: 12px;
}

#proof .section-heading {
  max-width: 100%;
  margin-bottom: 8px;
}

#proof .section-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
}

.card-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote {
  max-width: 18ch;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1;
}

.quote-author {
  color: var(--gold-500);
  font-weight: 700;
}

.gallery-card {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 50, 71, 0.08), rgba(13, 31, 45, 0.55)),
    radial-gradient(circle at top, rgba(184, 154, 82, 0.2), transparent 30%),
    radial-gradient(circle at top, rgba(140, 170, 189, 0.45), transparent 45%),
    linear-gradient(135deg, #cad6dd, #4d6a7c);
  color: var(--white);
  font-weight: 700;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.04), rgba(13, 31, 45, 0.7));
}

.gallery-card span {
  position: relative;
  z-index: 1;
}

.contact-grid {
  grid-template-columns: 1fr;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-brand {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.contact-logo {
  width: min(360px, 100%);
  height: auto;
}

.contact-card-wide {
  width: 100%;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-owner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-owner p {
  margin: 0;
}

.contact-owner-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(20, 50, 71, 0.12);
}

.contact-card-wide p {
  margin-bottom: 8px;
  font-size: 0.94rem;
  line-height: 1.3;
}

.contact-card-wide .panel-kicker {
  margin-bottom: 6px;
}

.proof-card {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.34),
    var(--shadow);
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.proof-card span {
  display: block;
  color: var(--slate-500);
  line-height: 1.5;
}

.offer-terms {
  margin-top: 6px;
  padding: 4px 6px;
  border-radius: 8px;
  border: 0;
  background: rgba(237, 243, 247, 0.45);
  box-shadow: none;
}

.offer-terms-list {
  margin: 0;
  padding-left: 14px;
  color: var(--slate-500);
  font-size: 0.64rem;
}

.offer-terms-list li {
  margin-bottom: 2px;
  line-height: 1.1;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  margin: 4px 0 0;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.offer-badge-link {
  color: inherit;
  text-decoration: none;
}

.offer-badge-link:hover {
  text-decoration: underline;
}

.watermaster-card {
  padding: 8px 10px;
  border-radius: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(184, 154, 82, 0.18),
    var(--shadow);
}

.watermaster-card p {
  margin-bottom: 4px;
  color: var(--slate-500);
  line-height: 1.25;
  font-size: 0.8rem;
}

#watermaster .section-heading h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

#watermaster .contact-intro {
  font-size: 0.82rem;
  line-height: 1.28;
}

#work .section-heading {
  margin-bottom: 8px;
}

#work .section-heading h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
}

#contact .section-heading {
  margin-bottom: 8px;
}

#contact .contact-intro {
  font-size: 0.86rem;
  line-height: 1.28;
}

#watermaster .hero-actions {
  margin-top: 8px;
}

#watermaster .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.contact-form-card {
  scroll-margin-top: 120px;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.34),
    var(--shadow);
}

.contact-form {
  display: grid;
  gap: 8px;
}

.form-hidden {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy-950);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(20, 50, 71, 0.12);
  border-radius: 16px;
  background: rgba(249, 251, 251, 0.9);
  color: var(--navy-950);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.faq-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.34),
    var(--shadow);
}

.testimonial {
  padding: 18px 20px;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  color: var(--navy-950);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

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

.faq-card summary::after {
  content: "+";
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eadcb7, #d5c39a);
  color: var(--navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

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

.faq-card p {
  margin: 10px 0 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.footer {
  padding: 6px 0 22px;
  color: var(--slate-500);
  text-align: center;
}

.footer-contact {
  max-width: 64rem;
  margin: 0 auto 10px;
  color: var(--navy-800);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-credit {
  margin: 6px 0 0;
  color: var(--slate-500);
  font-size: 0.78rem;
  line-height: 1.3;
}

.thank-you-page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: 100%;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(249, 251, 251, 0.8);
  box-shadow:
    inset 0 0 0 3px rgba(184, 154, 82, 0.38),
    var(--shadow);
}

.thank-you-logo {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero,
  .about-grid,
  .card-grid,
  .gallery-grid,
  .faq-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .contact-top {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 12px;
    padding-top: 18px;
  }

  .section {
    padding: 10px 0;
  }

  .section-heading {
    margin-bottom: 10px;
  }

  .about-grid,
  .card-grid,
  .gallery-grid,
  .contact-grid,
  .faq-list {
    gap: 12px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-actions,
  .topbar-meta,
  .contact-details-grid {
    align-items: stretch;
  }

  .hero-actions .button,
  .topbar-meta .pill-link {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }

  .contact-logo {
    width: min(300px, 90%);
  }

  #services .section-heading h2 {
    white-space: normal;
  }

  #proof .section-heading h2 {
    white-space: normal;
  }

  .rosamond-page .rosamond-services-heading h2 {
    white-space: normal;
  }

  .rosamond-page .rosamond-info-heading h2,
  .rosamond-page .rosamond-cta-heading h2 {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .nav-shell {
    top: 6px;
  }

  .nav-inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
  }

  .nav-inner::-webkit-scrollbar {
    display: none;
  }

  .nav-inner a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .reveal,
  .reveal-delay,
  .reveal-delay-2 {
    transition-duration: 260ms;
  }

  .mobile-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    padding: 4px 0;
    color: var(--navy-950);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
  }

  .mobile-section summary::-webkit-details-marker {
    display: none;
  }

  .mobile-section summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eadcb7, #d5c39a);
    color: var(--navy-950);
    font-family: "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-section[open] summary::after {
    content: "-";
  }

  .mobile-section > .section-heading {
    display: none;
  }

  .mobile-section:not([open]) > :not(summary) {
    display: none;
  }

  .mobile-work-preview {
    display: block;
    margin-top: 10px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .mobile-work-preview img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
  }

  .mobile-section[open] .mobile-work-preview {
    display: none;
  }
}

@media (max-width: 680px) {
  .topbar,
  .nav-shell,
  .section,
  .footer {
    width: min(100% - 20px, 1120px);
  }

  .topbar-inner,
  .topbar-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-since {
    margin-top: 8px;
  }

  .brand-logo {
    width: min(240px, 72vw);
  }

  .nav-inner {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .section-card,
  .hero-copy,
  .hero-panel,
  .about-copy,
  .service-area,
  .info-card,
  .faq-card,
  .gallery-card,
  .contact-card {
    padding: 14px;
  }

  .testimonial {
    padding: 12px 14px;
  }

  .contact-form-card {
    padding: 14px;
  }

  .topbar {
    padding-top: 10px;
  }

  .topbar-inner,
  .nav-inner {
    padding: 12px 14px;
  }

  .hero-copy .lede,
  .about-copy p,
  .info-card p,
  .contact-card p,
  .hours-list li {
    font-size: 0.98rem;
  }

  .button,
  .pill-link {
    min-height: 50px;
  }

  main section,
  .contact-form-card,
  #estimate-request {
    scroll-margin-top: 90px;
  }

  .hero-panel-grid {
    gap: 10px;
  }

  .hero-panel-grid article {
    padding-bottom: 10px;
  }

  .quote {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    margin-bottom: 8px;
  }

  .gallery-card {
    min-height: 120px;
  }

  .faq-card h3,
  .info-card h3,
  .service-area h3 {
    font-size: 1.55rem;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .theme-points li,
  .hours-list li,
  .footer-contact {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-delay,
  .reveal-delay-2 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
