:root {
  --ink: #081623;
  --navy: #102f45;
  --blue: #56a9d9;
  --blue-dark: #1d6f9b;
  --sky: #e7f6fd;
  --paper: #fbfdff;
  --white: #ffffff;
  --mist: #eef4f8;
  --line: #d9e5ed;
  --muted: #5f7180;
  --gold: #dca444;
  --coral: #ee735d;
  --shadow: 0 24px 70px rgba(8, 22, 35, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  color: var(--blue-dark);
  font-size: 0.95em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: rgba(8, 22, 35, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(251, 253, 255, 0.96);
  box-shadow: 0 14px 50px rgba(8, 22, 35, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  flex: 0 0 auto;
}

.brand span {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.primary-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: currentColor;
}

.primary-nav a[hidden] {
  display: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(86, 169, 217, 0.16);
  outline: none;
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(86, 169, 217, 0.35);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 22, 35, 0.9), rgba(8, 22, 35, 0.58) 45%, rgba(8, 22, 35, 0.16)),
    linear-gradient(0deg, rgba(8, 22, 35, 0.72), rgba(8, 22, 35, 0.08) 54%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.estimate-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  font-size: 68px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(86, 169, 217, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #73bee8;
}

.button-ghost,
.button-ghost-dark {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.button-ghost-dark {
  color: var(--ink);
  background: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  padding: 18px;
  background: rgba(8, 22, 35, 0.5);
}

.hero-proof dt {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.quick-contact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.quick-contact div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.quick-contact a {
  color: var(--sky);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section {
  padding: 88px max(20px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.section-heading h2,
.estimate-copy h2,
.contact-copy h2 {
  font-size: 44px;
}

.section-heading p,
.estimate-copy p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 254px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 22, 35, 0.07);
}

.service-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
}

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

.service-icon {
  width: 62px;
  height: 46px;
  display: grid;
  gap: 6px;
  padding: 7px;
  border: 2px solid var(--navy);
  border-radius: 5px;
  background: var(--sky);
}

.service-icon span {
  display: block;
  background: var(--blue);
  border-radius: 999px;
}

.service-icon-vertical {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.service-icon-vertical span {
  height: 100%;
}

.service-icon-frame,
.service-icon-commercial {
  grid-template-columns: repeat(3, 1fr);
}

.service-icon-frame span,
.service-icon-commercial span {
  background: var(--white);
  border: 1px solid var(--blue-dark);
}

.service-icon-drape {
  display: flex;
  align-items: stretch;
}

.service-icon-drape span {
  width: 33%;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--sky), var(--blue));
}

.service-icon-motor {
  grid-template-columns: 1.4fr 0.6fr;
}

.service-icon-motor span:last-child {
  background: var(--coral);
}

.estimate-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 78px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 47, 69, 0.98), rgba(8, 22, 35, 0.95)),
    var(--navy);
}

.estimate-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.estimate-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 7px;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: 2px solid var(--blue);
  background: var(--white);
}

.form-wide {
  grid-column: 1 / -1;
}

.portfolio-section {
  background: var(--paper);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.portfolio-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 18px;
  align-items: stretch;
}

.portfolio-stage {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.portfolio-stage img,
.portfolio-stage video {
  width: 100%;
  height: 100%;
  object-position: center center;
}

.portfolio-stage img[data-fit="cover"],
.portfolio-stage video[data-fit="cover"] {
  object-fit: cover;
}

.portfolio-stage img[data-fit="contain"],
.portfolio-stage video[data-fit="contain"] {
  object-fit: contain;
  background: var(--ink);
}

.portfolio-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.portfolio-panel h3 {
  margin: 8px 0 12px;
  font-size: 30px;
  line-height: 1.1;
}

.portfolio-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-panel span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--sky);
  font-weight: 900;
}

.portfolio-kicker {
  color: var(--gold) !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.portfolio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.portfolio-controls > span {
  min-width: 62px;
  justify-content: center;
  margin: 0;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
}

.icon-button:hover,
.icon-button:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.14);
}

.chevron {
  width: 12px;
  height: 12px;
  display: block;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.chevron-left {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.chevron-right {
  transform: rotate(45deg);
  margin-right: 5px;
}

.portfolio-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.thumb-button {
  position: relative;
  height: 86px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  background: var(--ink);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.thumb-button:hover img,
.thumb-button.is-active img {
  opacity: 1;
  transform: scale(1.04);
}

.thumb-button.is-active {
  border-color: var(--blue);
}

.thumb-button[data-type="video"]::after {
  content: "PLAY";
  position: absolute;
  inset: auto 8px 8px auto;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.reviews-section {
  background: var(--mist);
}

.reviews-section[hidden] {
  display: none;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: -8px 0 22px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(8, 22, 35, 0.07);
}

.google-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-weight: 900;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.14);
}

.reviews-summary strong,
.reviews-summary span {
  display: block;
}

.reviews-summary strong {
  font-size: 16px;
}

.reviews-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.summary-stars {
  display: flex;
  gap: 2px;
  margin-left: 4px;
}

.testimonial-carousel {
  --review-gap: 18px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--review-gap);
  align-items: stretch;
  transition: transform 240ms ease;
  will-change: transform;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--review-card-width, calc((100% - 36px) / 3));
  min-height: 260px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(8, 22, 35, 0.07);
}

.testimonial-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-person img,
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.reviewer-meta {
  min-width: 0;
  flex: 1;
}

.reviewer-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviewer-name-row strong {
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.review-source {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--sky);
  font-size: 11px;
  font-weight: 900;
}

.review-date {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 10px 0 12px;
}

.star {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.star::before {
  content: "★";
  position: absolute;
  inset: 0;
  color: #d4dde5;
}

.star::after {
  content: "★";
  position: absolute;
  inset: 0;
  width: var(--fill, 100%);
  overflow: hidden;
  color: var(--gold);
}

.review-rating-number {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.review-text {
  flex: 1;
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.testimonial-card.is-expanded .review-text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-footer span {
  margin-left: auto;
  color: var(--blue-dark);
}

.review-expand {
  min-height: 32px;
  padding: 0;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 900;
}

.review-expand:hover,
.review-expand:focus-visible {
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.review-expand[hidden] {
  display: none;
}

.testimonial-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonial-toolbar[hidden],
.testimonial-dots[hidden] {
  display: none;
}

.review-control {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 22, 35, 0.08);
}

.review-control:hover,
.review-control:focus-visible {
  outline: none;
  border-color: var(--blue);
  background: var(--sky);
}

.review-control:disabled {
  cursor: default;
  opacity: 0.45;
  background: var(--white);
}

.testimonial-toolbar > span {
  min-width: 86px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c7d5df;
}

.testimonial-dot.is-active {
  width: 26px;
  background: var(--blue-dark);
}

.why-section {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--line);
}

.why-grid div {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.why-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 640px;
  color: var(--white);
  background: var(--ink);
}

.contact-media {
  min-height: 520px;
  overflow: hidden;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(20px, calc((100vw - 1180px) / 2)) 80px 56px;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy address {
  margin-top: 28px;
  color: var(--sky);
  font-style: normal;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px max(20px, calc((100vw - 1180px) / 2)) 92px;
  color: var(--white);
  background: #050b12;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 900;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .brand span {
    font-size: 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-call {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: flex-start;
    border-radius: 7px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .section-heading h2,
  .estimate-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-band,
  .portfolio-shell,
  .contact-section,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .portfolio-panel,
  .portfolio-stage {
    min-height: auto;
  }

  .portfolio-panel {
    padding: 24px;
  }

  .portfolio-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-summary {
    width: 100%;
  }

  .contact-copy {
    padding: 56px 20px 76px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .quick-contact {
    display: grid;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2,
  .estimate-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .section-heading p,
  .estimate-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .estimate-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .estimate-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .portfolio-stage {
    aspect-ratio: 4 / 3;
  }

  .portfolio-panel h3 {
    font-size: 25px;
  }

  .portfolio-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .summary-stars {
    width: 100%;
    margin-left: 54px;
  }

  .thumb-button {
    height: 72px;
  }

  .contact-section {
    min-height: 0;
  }

  .contact-media {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 90px;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 28;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: var(--navy);
    box-shadow: 0 18px 44px rgba(8, 22, 35, 0.28);
  }

  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
