:root {
  --blue: #1852a3;
  --blue-strong: #0f3d80;
  --charcoal: #121820;
  --ink: #1f2933;
  --muted: #637083;
  --line: #d9e1e7;
  --soft: #f5f8fa;
  --pearl: #ffffff;
  --aqua: #159c91;
  --copper: #b86c49;
  --shadow: 0 18px 45px rgba(18, 24, 32, 0.15);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: #e8eef2;
}

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

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

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--pearl);
  background: var(--charcoal);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 32px), 1280px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--pearl);
  min-width: 210px;
}

.is-scrolled .brand,
.is-open .brand {
  color: var(--charcoal);
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: var(--pearl);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-family: Poppins, Arial, sans-serif;
  font-size: 1.02rem;
}

.brand small {
  font-size: 0.78rem;
  opacity: 0.78;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex: 1;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.86);
  padding: 0.62rem 0.7rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.is-scrolled .nav-menu a,
.is-open .nav-menu a {
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(24, 82, 163, 0.1);
  color: var(--pearl);
  outline: none;
}

.nav-menu a[aria-current="page"] {
  background: rgba(24, 82, 163, 0.14);
  color: var(--pearl);
}

.is-scrolled .nav-menu a:hover,
.is-scrolled .nav-menu a:focus-visible,
.is-open .nav-menu a:hover,
.is-open .nav-menu a:focus-visible,
.is-scrolled .nav-menu a[aria-current="page"],
.is-open .nav-menu a[aria-current="page"] {
  color: var(--blue);
}

.nav-call,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-call {
  padding: 0.75rem 1rem;
  color: var(--pearl);
  background: var(--blue);
  white-space: nowrap;
}

.button {
  padding: 0.95rem 1.15rem;
}

.button:hover,
.nav-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(18, 24, 32, 0.16);
}

.button-primary {
  color: var(--pearl);
  background: var(--blue);
}

.button-ghost {
  color: var(--pearl);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--pearl);
  background: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--pearl);
  background: rgba(255, 255, 255, 0.08);
}

.is-scrolled .nav-toggle,
.is-open .nav-toggle {
  color: var(--charcoal);
  border-color: var(--line);
  background: var(--pearl);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--pearl);
}

.hero picture,
.hero picture::after,
.hero picture img {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(6, 12, 20, 0.66), rgba(6, 12, 20, 0.18) 52%, rgba(6, 12, 20, 0.3));
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img[data-check-image] {
  background: var(--charcoal);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--container));
  margin: 6.5rem auto 5rem;
  max-width: 790px;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero .eyebrow,
.section-dark .eyebrow,
.cta-band .eyebrow {
  color: #81e1d9;
}

h1,
h2,
h3 {
  font-family: Poppins, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.07;
  margin: 0;
  color: inherit;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-lede {
  max-width: 620px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin: 2.8rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  padding: 1rem;
  background: rgba(8, 16, 27, 0.38);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.intro-strip {
  background: var(--charcoal);
  color: var(--pearl);
}

.page-hero {
  min-height: 56vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--pearl);
  background: var(--charcoal);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 20, 0.76), rgba(6, 12, 20, 0.28)),
    linear-gradient(0deg, rgba(6, 12, 20, 0.72), rgba(6, 12, 20, 0.04) 52%);
}

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

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 8rem 0 4.5rem;
}

.page-hero-content h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.page-hero-content p:last-child {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.strip-grid p {
  margin: 0;
  padding: 1.05rem;
  text-align: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.055);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-light {
  background: var(--pearl);
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  color: var(--pearl);
  background:
    linear-gradient(135deg, rgba(24, 82, 163, 0.9), rgba(18, 24, 32, 0.98)),
    var(--charcoal);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.2rem;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.align-left p:last-child {
  margin-left: 0;
}

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

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:last-child {
  aspect-ratio: 4 / 3;
  margin-top: 4rem;
}

.service-card,
.review-card,
.why-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pearl);
  box-shadow: 0 10px 28px rgba(18, 24, 32, 0.06);
}

.service-card {
  padding: 1.25rem;
}

.service-card p,
.review-card blockquote,
.review-card figcaption,
.why-panel li {
  color: var(--muted);
}

.service-icon {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 1rem;
  color: var(--blue);
  background: rgba(24, 82, 163, 0.1);
}

.about-layout,
.area-layout,
.contact-layout,
.faq-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-panel {
  padding: 1.5rem;
  color: var(--charcoal);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.72rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(21, 156, 145, 0.12);
}

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

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

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--pearl);
  background: var(--charcoal);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 32, 0) 42%, rgba(18, 24, 32, 0.78));
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-weight: 900;
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.source-note {
  margin-top: 1rem;
  color: var(--muted);
}

.source-note a {
  color: var(--blue);
  font-weight: 900;
}

.split-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.split-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.split-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-gallery figcaption {
  padding: 0.85rem 1rem;
  font-weight: 900;
}

.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.suburb-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--pearl);
  font-weight: 800;
  color: var(--ink);
}

.map-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.map-figure img {
  width: 100%;
  aspect-ratio: 35 / 18;
  object-fit: cover;
}

.map-figure figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-card {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24, 82, 163, 0.12), rgba(21, 156, 145, 0.12)),
    var(--pearl);
  box-shadow: var(--shadow);
}

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

.map-card .button {
  justify-self: start;
}

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

.review-card {
  margin: 0;
  padding: 1.35rem;
}

.review-card::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 0.85rem;
  color: var(--copper);
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
}

.review-card figcaption {
  margin-top: 1rem;
  font-weight: 900;
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.4rem) 0;
  color: var(--pearl);
  background:
    linear-gradient(135deg, rgba(18, 24, 32, 0.96), rgba(24, 82, 163, 0.92)),
    var(--charcoal);
}

.cta-layout {
  grid-template-columns: 1fr auto;
}

.cta-layout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid rgba(24, 82, 163, .14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 47, 78, .06);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(24, 82, 163, .44);
  box-shadow: 0 14px 32px rgba(18, 47, 78, .1);
}

.faq-list summary {
  padding: 1.2rem 3.3rem 1.2rem 1.25rem;
  font-weight: 750;
  color: #12365f;
  position: relative;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: .8rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf2fb;
  color: #1852a3;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after { content: '–'; }

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: #52697d;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pearl);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.contact-layout {
  align-items: start;
}

.contact-details p {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.detail-list a,
.detail-list p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.detail-list svg {
  color: var(--blue);
  flex: 0 0 auto;
}

.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd5dd;
  border-radius: 6px;
  padding: 0.72rem 0.82rem;
  background: var(--pearl);
  color: var(--ink);
}

textarea {
  resize: vertical;
  margin-top: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(24, 82, 163, 0.18);
  border-color: var(--blue);
}

.quote-form .button {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand {
  color: var(--pearl);
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--pearl);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
}

.site-footer a:hover {
  color: var(--pearl);
}

.source-list {
  display: grid;
  gap: 1rem;
}

.source-list article {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pearl);
}

.source-list h2 {
  font-size: 1.1rem;
}

.source-list p {
  margin: 0;
  color: var(--muted);
}

.source-list a {
  color: var(--blue);
  font-weight: 900;
}

.source-list code {
  display: block;
  overflow-wrap: anywhere;
  padding: 0.75rem;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.socials a {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--pearl);
}

.copyright {
  width: min(calc(100% - 32px), var(--container));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4rem 1rem 1rem;
  background: rgba(8, 12, 18, 0.88);
}

.modal[hidden] {
  display: none;
}

.modal figure {
  width: min(1040px, 100%);
  margin: 0;
  color: var(--pearl);
}

.modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal figcaption {
  margin-top: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--pearl);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.image-fallback {
  object-fit: contain !important;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(24, 82, 163, 0.18), rgba(21, 156, 145, 0.18)),
    #eef4f6;
}

@media (max-width: 1040px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--pearl);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-active {
    display: flex;
  }

  .nav-menu a {
    color: var(--ink);
  }

  .nav-call {
    display: none;
  }

  .service-grid,
  .gallery-grid,
  .gallery-grid-large,
  .reviews-grid,
  .footer-grid,
  .feature-layout,
  .split-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .area-layout,
  .contact-layout,
  .faq-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-top: 5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-stats,
  .strip-grid,
  .service-grid,
  .gallery-grid,
  .gallery-grid-large,
  .reviews-grid,
  .footer-grid,
  .form-grid,
  .check-list,
  .feature-layout,
  .split-gallery,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 50vh;
  }

  .page-hero-content {
    padding: 6rem 0 3rem;
  }

  .image-stack img:last-child {
    margin-top: 0;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 230px;
  }

  .quote-form {
    padding: 1rem;
  }
}
