:root {
  --ink: #102033;
  --muted: #617083;
  --line: rgba(16, 32, 51, 0.12);
  --panel: #ffffff;
  --soft: #f5f8fb;
  --deep: #0e2539;
  --brand: #1664c5;
  --brand-2: #12a7a4;
  --gold: #c6922d;
  --success: #14845c;
  --shadow: 0 2px 8px rgba(16, 32, 51, 0.06), 0 10px 32px rgba(16, 32, 51, 0.12), 0 32px 64px rgba(16, 32, 51, 0.12);
  --small-shadow: 0 1px 4px rgba(16, 32, 51, 0.05), 0 4px 16px rgba(16, 32, 51, 0.09), 0 14px 32px rgba(16, 32, 51, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #dce9f6 0%, #d0e2f2 44%, #dbe8f5 100%);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

p {
  margin: 0;
}

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

.top-strip {
  background: var(--deep);
  color: #fff;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.top-strip a {
  font-weight: 800;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(248, 251, 255, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #314156;
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(22, 100, 197, 0.1);
  color: var(--brand);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0b4aa0);
  box-shadow: 0 16px 35px rgba(22, 100, 197, 0.28);
}

.btn-dark {
  color: #fff;
  background: var(--deep);
  box-shadow: var(--small-shadow);
}

.btn-soft {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

.btn-outline {
  color: var(--brand);
  background: #fff;
  border-color: rgba(22, 100, 197, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  min-height: calc(100dvh - 122px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0e2539;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 32, 0.9) 0%, rgba(8, 24, 39, 0.72) 45%, rgba(8, 24, 39, 0.2) 100%),
    url("/assets/photos/hero-loft-boarding.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: end;
  gap: 28px;
  padding: 70px 0 34px;
}

.hero-grid > *,
.split > *,
.content-grid > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 8px 11px;
  color: #eaf6ff;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-weight: 850;
  font-size: 0.9rem;
}

.eyebrow.dark {
  color: var(--brand);
  border-color: rgba(22, 100, 197, 0.18);
  background: rgba(22, 100, 197, 0.08);
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.h1-accent {
  color: #3d9be9;
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  overflow-wrap: anywhere;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.trust-pill strong {
  display: block;
  font-size: 1.05rem;
}

.trust-pill span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.quote-card,
.panel,
.service-card,
.review-card,
.legal-card,
.form-panel {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote-card {
  color: var(--ink);
  padding: 26px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.18),
    0 28px 56px rgba(0, 0, 0, 0.24),
    0 64px 100px rgba(0, 0, 0, 0.18);
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  background: #edf3fb;
  border: 1.5px solid rgba(16, 32, 51, 0.26);
  box-shadow: inset 0 1px 3px rgba(16, 32, 51, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: inset 0 1px 2px rgba(16, 32, 51, 0.04), 0 0 0 3px rgba(22, 100, 197, 0.14);
}

.quote-card h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.quote-card .micro {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 650;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.84rem;
  font-weight: 800;
  color: #34445a;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 98px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.quote-card button,
.form-panel button {
  width: 100%;
  margin-top: 12px;
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 52px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 430px;
  color: var(--muted);
  font-weight: 650;
}

.band {
  background: #fff;
}

.deep-band {
  background: linear-gradient(135deg, #091a2c 0%, #0e2539 60%, #0a2030 100%);
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(218, 237, 255, 0.6), rgba(240, 249, 255, 0.95));
}

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

.metric {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at top right, rgba(22, 100, 197, 0.07), transparent 70%);
  pointer-events: none;
}

.metric strong {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -0.03em;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.service-card {
  display: grid;
  min-height: 330px;
  overflow: hidden;
  background: #fff;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-card-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.service-card h3,
.review-card h3,
.panel h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

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

.feature-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: #34445a;
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 34px;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  position: absolute;
  width: 76%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  top: 0;
  right: 0;
}

.image-stack img:last-child {
  left: 0;
  bottom: 0;
}

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

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: var(--small-shadow);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep);
  font-weight: 900;
}

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

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

.review-score-band {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.score-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.score-big {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1;
}

.score-denom {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.score-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.score-detail strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.score-detail span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.score-cta {
  flex-shrink: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.score-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.review-rating {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 3px 10px;
  background: rgba(22, 100, 197, 0.1);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review-card {
  padding: 22px;
  background: #fff;
  box-shadow: var(--small-shadow);
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--small-shadow);
}

.gallery-grid img:first-child {
  height: 576px;
  grid-row: span 2;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(22, 100, 197, 0.18);
  border-radius: 40px;
  padding: 10px 20px;
  background: rgba(22, 100, 197, 0.05);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.area-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.area-chip--more {
  border-style: dashed;
  color: var(--muted);
  background: transparent;
}

.area-chip--more::before {
  background: var(--muted);
  opacity: 0.5;
}

.cta-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.92), rgba(8, 24, 39, 0.72)),
    url("/assets/photos/loft-ladder-install.jpg") center / cover no-repeat;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 58px 0;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-inner p {
  max-width: 660px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--small-shadow);
}

summary {
  padding: 18px 20px;
  font-weight: 850;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.92), rgba(8, 24, 39, 0.62)),
    url("/assets/photos/hero-loft-boarding.jpg") center / cover no-repeat;
}

.page-hero .container {
  padding: 88px 0 64px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.legal-card,
.form-panel,
.panel {
  padding: 26px;
  background: #fff;
  box-shadow: var(--small-shadow);
}

.legal-card h2,
.legal-card h3 {
  margin: 26px 0 10px;
  line-height: 1.2;
}

.legal-card h2:first-child,
.legal-card h3:first-child {
  margin-top: 0;
}

.legal-card ul,
.legal-card ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.side-card {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}

.mini-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: var(--muted);
}

.mini-list strong {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.checkatrade-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  border: 1px solid rgba(0, 177, 64, 0.35);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(0, 177, 64, 0.1);
  color: #fff;
  transition: background 0.18s ease;
}

.checkatrade-badge:hover {
  background: rgba(0, 177, 64, 0.18);
}

.checkatrade-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #00b140;
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.checkatrade-badge strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.checkatrade-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 600;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  gap: 32px;
  padding: 54px 0 36px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  line-height: 1.2;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.88rem;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: 112px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .hero-grid,
  .split,
  .content-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 58px;
  }

  .metric-grid,
  .process,
  .review-grid,
  .review-grid-large,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: grid;
  }

  .side-card {
    position: static;
  }

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

  .gallery-grid img:first-child {
    height: 360px;
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .top-strip .container {
    display: grid;
    gap: 4px;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    max-width: min(100%, 330px);
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .page-hero p {
    max-width: min(100%, 292px);
    font-size: 0.98rem;
  }

  .quote-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    overflow: hidden;
  }

  .hero .quote-card {
    margin-top: 84px;
  }

  .quote-card .micro {
    max-width: 300px;
  }

  .hero-grid {
    padding: 42px 0 172px;
  }

  .hero-copy {
    max-width: min(100%, 292px);
    font-size: 0.98rem;
  }

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

  .hero-actions .btn {
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.9rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .trust-row,
  .metric-grid,
  .process,
  .review-grid,
  .review-grid-large,
  .service-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-score-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .score-cta {
    width: 100%;
    justify-content: center;
  }

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

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .trust-pill {
    padding: 12px;
  }

  .section {
    padding: 58px 0;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .image-stack img {
    position: static;
    width: 100%;
    height: 260px;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 260px;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-mobile {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sticky-mobile .btn {
    box-shadow: 0 14px 35px rgba(16, 32, 51, 0.26);
  }
}
