:root {
  --navy: #0B1F33;
  --navy-2: #202A33;
  --slate: #5E6B75;
  --slate-dark: #202A33;
  --warm-white: #F3F1EC;
  --stone: #D9D6CF;
  --stone-2: #C7C2B8;
  --orange: #B85C2E;
  --orange-dark: #94451F;
  --green: #5E6B75;
  --ink: #111820;
  --muted: #5E6B75;
  --light: #F7F5F0;
  --line: rgba(17, 24, 32, 0.16);
  --shadow: 0 22px 60px rgba(11, 31, 51, 0.18);
  --max-width: 1180px;
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 92, 46, 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 241, 236, 0.94);
  border-bottom: 1px solid rgba(11, 31, 51, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.1);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--light);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.35rem);
}

.nav-menu > a:not(.button) {
  color: var(--slate-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu > a:not(.button):hover {
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  padding: 0.82rem 1.25rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.68rem 1rem;
  font-size: 0.92rem;
}

.button-accent {
  background: var(--orange);
  color: var(--light);
}

.button-accent:hover {
  background: var(--orange-dark);
}

.button-ghost {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.button-ghost:hover,
.button-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--light);
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.hero .button-ghost,
.final-cta .button-ghost {
  color: var(--light);
  border-color: rgba(247, 245, 240, 0.62);
  background: rgba(11, 31, 51, 0.16);
}

.hero .button-ghost:hover,
.final-cta .button-ghost:hover {
  background: var(--light);
  border-color: var(--light);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 80vh;
  min-height: max(680px, 80vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.hero-media,
.final-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #18293b;
}

.hero-media img,
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay,
.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.94) 0%, rgba(32, 42, 51, 0.7) 42%, rgba(11, 31, 51, 0.14) 100%),
    linear-gradient(0deg, rgba(11, 31, 51, 0.82) 0%, rgba(11, 31, 51, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero h1,
.final-content h2 {
  max-width: 880px;
  margin: 0;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy,
.final-content p {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #D08358;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-strip {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 31, 51, 0.56);
  backdrop-filter: blur(10px);
}

.trust-strip li {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip li:last-child {
  border-right: 0;
}

h2,
h3 {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--navy);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p {
  margin: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p:not(.eyebrow),
.intro-copy p,
.area-panel p,
.contact-copy p {
  color: var(--slate);
  font-size: 1.04rem;
}

.heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.intro-copy p {
  margin-top: 1.25rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-weight: 800;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(32, 42, 51, 0.78)),
    var(--stone);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.18), transparent 58%),
    radial-gradient(circle at 74% 18%, rgba(184, 92, 46, 0.16), transparent 28%);
  pointer-events: none;
}

.image-frame img {
  position: relative;
  z-index: 1;
  transition: transform 500ms ease, opacity 220ms ease;
}

.image-frame img.is-missing {
  opacity: 0;
}

.intro-image {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.services {
  background: #E7E4DC;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  align-items: stretch;
}

.service-block {
  min-height: 260px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.62);
  overflow: hidden;
}

.service-block-image {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.service-block:not(.service-block-image) {
  justify-content: center;
}

.service-block h3 {
  max-width: 12rem;
  margin: 0;
  line-height: 1.2;
}

.service-block p {
  margin-top: 0.75rem;
  color: var(--slate);
}

.service-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--stone);
  border-radius: calc(var(--radius) - 2px);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.project-card {
  display: grid;
  gap: 0.85rem;
}

.project-joinery {
  grid-column: span 7;
}

.project-painting {
  grid-column: span 5;
}

.project-garden {
  grid-column: span 5;
}

.project-shelving {
  grid-column: span 7;
}

.project-finished {
  grid-column: span 12;
}

.project-card .image-frame {
  aspect-ratio: 4 / 3;
}

.project-joinery .image-frame,
.project-shelving .image-frame {
  aspect-ratio: 16 / 10;
}

.project-painting .image-frame,
.project-garden .image-frame {
  aspect-ratio: 4 / 3;
}

.project-finished .image-frame {
  aspect-ratio: 16 / 9;
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card h3 {
  font-size: 1.12rem;
}

.before-after {
  background: var(--navy);
  color: white;
}

.before-after h2,
.before-after h3 {
  color: white;
}

.before-after .section-heading p:not(.eyebrow),
.finished-card p {
  color: rgba(255, 255, 255, 0.72);
}

.finished-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.finished-card {
  display: grid;
  gap: 1.1rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.finished-card .image-frame {
  aspect-ratio: 4 / 3;
}

.finished-card-wide .image-frame {
  aspect-ratio: 16 / 10;
}

.finished-card p {
  margin-top: 0.55rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.why-us {
  background: var(--warm-white);
  color: var(--navy);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.why-us .section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.why-us .eyebrow {
  color: var(--orange);
}

.why-us h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.97;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-grid article {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.48);
}

.trust-grid p {
  margin-top: 0.65rem;
  color: var(--slate);
}

.reviews {
  background: #E7E4DC;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.review {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 4px solid var(--orange);
  background: rgba(247, 245, 240, 0.76);
}

.stars {
  color: var(--orange-dark);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

blockquote {
  margin: 1rem 0;
  color: var(--slate-dark);
  font-size: 1.08rem;
  line-height: 1.55;
}

figcaption {
  color: var(--navy);
  font-weight: 800;
}

.area-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--navy);
  color: white;
}

.area-panel h2,
.area-panel p {
  color: white;
}

.area-panel p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.process {
  padding-top: 0;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.process-intro .section-heading {
  margin-bottom: 1.5rem;
}

.process-image {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 245px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--warm-white);
}

.process-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.process-list p {
  margin-top: 0.7rem;
  color: var(--slate);
}

.contact {
  background: #E7E4DC;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.contact-details div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-image {
  aspect-ratio: 16 / 10;
}

.quote-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  color: var(--navy);
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 35, 49, 0.18);
  border-radius: 0;
  background: white;
  color: var(--ink);
  padding: 0.85rem 0.9rem;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  background: #E7E4DC;
}

.form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(94, 107, 117, 0.14);
  color: var(--navy);
  font-weight: 800;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.final-media {
  background-color: #172638;
}

.final-media img {
  object-position: center;
}

.final-content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.final-content h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 5.5vw, 4.9rem);
}

.footer {
  background: #07111D;
  color: rgba(255, 255, 255, 0.76);
  padding: clamp(3.5rem, 7vw, 5rem) 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 2rem;
}

.footer h2,
.footer h3 {
  color: white;
}

.footer h2 {
  font-size: 1.6rem;
}

.footer h3 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.footer p {
  margin-top: 0.45rem;
}

.footer a {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 1200px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 20px 1.25rem;
    border-bottom: 1px solid var(--line);
    background: var(--warm-white);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 200ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu > a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(23, 35, 49, 0.1);
  }

  .nav-menu .button {
    margin-top: 0.8rem;
  }

  .heading-row,
  .split-layout,
  .trust-layout,
  .area-panel,
  .contact-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 2.5rem;
  }

  .service-grid,
  .finished-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-block {
    min-height: 240px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 3.8rem 0;
  }

  .nav {
    min-height: 72px;
  }

  .nav-menu {
    top: 72px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-media {
    background-position: center top;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-overlay,
  .final-overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 29, 0.28) 0%, rgba(7, 17, 29, 0.74) 45%, rgba(7, 17, 29, 0.94) 100%);
  }

  .hero-content {
    padding: 7rem 0 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    text-align: left;
  }

  .trust-strip li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-grid,
  .finished-grid,
  .review-grid,
  .trust-grid,
  .process-list,
  .area-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-block {
    min-height: auto;
    padding: 1.35rem;
  }

  .project-card,
  .project-card-wide,
  .project-card-tall,
  .project-joinery,
  .project-painting,
  .project-garden,
  .project-shelving,
  .project-finished {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card .image-frame,
  .project-card-wide .image-frame,
  .project-card-tall .image-frame,
  .project-joinery .image-frame,
  .project-painting .image-frame,
  .project-garden .image-frame,
  .project-shelving .image-frame,
  .project-finished .image-frame {
    aspect-ratio: 4 / 3;
  }

  .service-block-image {
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .service-media {
    aspect-ratio: 16 / 10;
  }

  .area-panel {
    padding: 1.5rem;
  }

  .process {
    padding-top: 0;
  }

  .process-list li {
    min-height: auto;
  }

  .contact-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 15.5px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand {
    max-width: 260px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-copy,
  .final-content p {
    font-size: 1rem;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quote-form {
    padding: 1rem;
  }
}
