:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --black-card: #111111;
  --orange: #ff5700;
  --orange-light: #ff7a1a;
  --white: #ffffff;
  --off-white: #f3f1ed;
  --gray: #a7a7a7;
  --gray-dark: #6f6f6f;
  --line: rgba(255,255,255,.13);
  --dark-line: rgba(0,0,0,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: #111;
  background: var(--off-white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #050505;
  backdrop-filter: none;
}

.nav {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: block;
  width: 86px;
  height: 74px;
  overflow: hidden;
  background: #050505;
}

.nav-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #d5d5d5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-quote {
  padding: 13px 19px;
  color: var(--white) !important;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  padding: 155px 0 100px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,4,4,.98) 0%, rgba(4,4,4,.92) 49%, rgba(4,4,4,.72) 100%),
    radial-gradient(circle at 78% 35%, rgba(255,87,0,.2), transparent 28%),
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 650px;
  height: 650px;
  border: 90px solid rgba(255,255,255,.018);
  border-radius: 50%;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-glow-one {
  top: 20%;
  right: 10%;
  width: 340px;
  height: 340px;
  background: rgba(255,87,0,.13);
}

.hero-glow-two {
  right: 34%;
  bottom: -15%;
  width: 240px;
  height: 240px;
  background: rgba(255,87,0,.09);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 65px;
  align-items: center;
}

.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker {
  color: #d6d6d6;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,87,0,.8);
}

.hero h1,
.section h2,
.coverage h2,
.final-cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .94;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(66px, 7.6vw, 112px);
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 680px;
  margin: 28px 0 34px;
  color: #c4c4c4;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button-orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 14px 35px rgba(255,87,0,.22);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.025);
}

.button-outline:hover {
  border-color: rgba(255,255,255,.7);
}

.button-white {
  color: var(--black);
  background: var(--white);
}

.hero-proof {
  display: flex;
  gap: 42px;
  margin-top: 44px;
}

.hero-proof div {
  position: relative;
}

.hero-proof div + div::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 3px;
  width: 1px;
  height: 39px;
  background: rgba(255,255,255,.15);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 6px;
  color: #8e8e8e;
  font-size: 11px;
}

.hero-emblem {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-emblem > img {
  position: relative;
  z-index: 2;
  width: min(92%, 540px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}

.logo-halo {
  position: absolute;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,87,0,.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255,87,0,.025),
    0 0 0 70px rgba(255,255,255,.012),
    0 0 100px rgba(255,87,0,.16);
}


.scroll-prompt {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-prompt i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  background: #4b4b4b;
}

.scroll-prompt i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  transform: rotate(-45deg);
}

.proof-bar {
  color: var(--white);
  background: var(--orange);
}

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

.proof-bar-grid > div {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 15px;
  padding: 21px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.proof-bar-grid > div:last-child {
  border-right: 0;
}

.proof-bar svg {
  width: 28px;
  flex: 0 0 28px;
  fill: var(--white);
}

.proof-bar span,
.proof-bar strong {
  display: block;
}

.proof-bar strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.proof-bar span {
  color: rgba(255,255,255,.78);
  font-size: 11px;
}

.section {
  position: relative;
  padding: 118px 0;
}

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

.section-dark {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: stretch;
  margin-bottom: 54px;
}

.section h2,
.coverage h2 {
  font-size: clamp(52px, 6.5vw, 84px);
}

.section-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-intro-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: #656565;
  font-size: 17px;
  line-height: 1.75;
}

.owner-photo-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  background: #111;
  box-shadow: 0 28px 65px rgba(0,0,0,.16);
}

.owner-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.72), transparent 42%),
    linear-gradient(to right, rgba(255,87,0,.08), transparent 36%);
  pointer-events: none;
}

.owner-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 4px solid transparent;
  border-top-color: var(--orange);
  pointer-events: none;
}

.owner-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 40%;
}

.owner-photo-card figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 27px;
  color: var(--white);
}

.owner-photo-card figcaption span,
.owner-photo-card figcaption strong {
  display: block;
}

.owner-photo-card figcaption span {
  margin-bottom: 5px;
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.owner-photo-card figcaption strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.service-card.featured {
  color: var(--white);
  border-color: var(--orange);
  background: var(--black);
}

.service-index {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.service-icon {
  width: 54px;
  margin: 38px 0 23px;
}

.service-icon svg {
  fill: var(--orange);
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #696969;
  font-size: 13px;
  line-height: 1.7;
}

.service-card.featured p {
  color: #a6a6a6;
}

.card-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(.28);
  transform-origin: left center;
  transition: transform .25s ease;
}

.service-card:hover .card-line {
  transform: scaleX(1);
}

.metal-panel {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(115deg, transparent 0 45%, rgba(255,255,255,.18) 46%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 5px);
}

.why-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 95px;
  align-items: center;
}

.why-logo {
  position: relative;
}

.why-logo::before {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border-radius: 50%;
  background: rgba(255,87,0,.12);
  filter: blur(60px);
}

.why-logo img {
  position: relative;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.6));
}

.section-label-light {
  color: var(--orange-light);
}

.why-lead {
  max-width: 690px;
  margin: 28px 0 36px;
  color: #b5b5b5;
  font-size: 18px;
  line-height: 1.8;
}

.why-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.why-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.why-list > div > span {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.why-list p {
  margin: 0;
  color: #949494;
  font-size: 13px;
}

.why-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.section-process {
  color: #111;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    repeating-linear-gradient(135deg, #eee 0, #eee 2px, #fff 2px, #fff 10px);
}

.process-heading {
  margin-bottom: 52px;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,87,0,.15));
}

.process-track article {
  position: relative;
  z-index: 2;
}

.process-number {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 15px 30px rgba(255,87,0,.2);
}

.process-content {
  min-height: 205px;
  margin-top: 24px;
  padding: 29px;
  border: 1px solid var(--dark-line);
  background: var(--white);
}

.process-content h3 {
  margin: 0 0 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.process-content p {
  margin: 0;
  color: #696969;
  font-size: 13px;
  line-height: 1.75;
}

.coverage {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: var(--white);
  background: #0b0b0b;
}

.coverage-bg {
  position: absolute;
  inset: 0;
  opacity: .15;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,87,0,.5), transparent 30%),
    linear-gradient(120deg, transparent 50%, rgba(255,255,255,.08) 50.2%, transparent 50.4%),
    linear-gradient(60deg, transparent 60%, rgba(255,255,255,.05) 60.2%, transparent 60.4%);
}

.coverage-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
}

.coverage h2 span {
  color: var(--orange);
}

.coverage-copy > p {
  max-width: 650px;
  margin: 27px 0 32px;
  color: #aaa;
  font-size: 17px;
  line-height: 1.75;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-list span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.15);
  color: #c2c2c2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coverage-stamp {
  display: grid;
  width: min(100%, 390px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255,87,0,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,87,0,.025), 0 0 100px rgba(255,87,0,.08);
}

.stamp-inner {
  display: flex;
  align-items: center;
  gap: 21px;
}

.stamp-inner strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 104px;
  font-weight: 900;
  line-height: .8;
}

.stamp-inner span {
  color: #aaa;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.quote-section {
  background: var(--off-white);
}

.quote-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.quote-copy > p {
  max-width: 540px;
  margin: 28px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.quote-tips {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}

.quote-tips div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  color: #666;
  font-size: 13px;
}

.quote-tips strong {
  color: #111;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.instagram-link svg {
  width: 19px;
  fill: var(--orange);
}

.quote-card {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
}

.quote-card-header {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 17px;
  padding: 19px 27px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #111, #090909);
}

.quote-card-header img {
  width: 76px;
  height: 66px;
  object-fit: contain;
}

.quote-card-header span,
.quote-card-header strong {
  display: block;
}

.quote-card-header span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-card-header strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

#quoteForm {
  display: grid;
  gap: 15px;
  padding: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#quoteForm .hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#quoteForm label {
  display: grid;
  gap: 7px;
}

#quoteForm label > span {
  color: #aaa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: #151515;
  padding: 13px 14px;
  font-size: 13px;
}

#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
  border-color: var(--orange);
  background: #181818;
}

#quoteForm select {
  appearance: none;
}

#quoteForm textarea {
  resize: vertical;
}

.quote-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #777;
  font-size: 10px;
  text-align: center;
}

.form-status.success {
  color: var(--orange-light);
}

.form-status.error {
  color: #e05a5a;
}

.final-cta {
  padding: 58px 0;
  color: var(--white);
  background: var(--orange);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 27px;
  align-items: center;
}

.final-cta img {
  width: 105px;
  height: 90px;
  object-fit: contain;
}

.final-cta span {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: 5px;
  font-size: 55px;
}

footer {
  color: #aaa;
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .55fr .55fr 1fr;
  gap: 55px;
  padding: 65px 0 46px;
}

.footer-brand img {
  width: 170px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-message strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-message p {
  margin: 7px 0 0;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 21px 0 27px;
  border-top: 1px solid var(--line);
  color: #666;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .hero-layout,
  .why-layout,
  .quote-layout {
    gap: 45px;
  }

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

  .proof-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-bar-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-bar-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

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

@media (max-width: 850px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 22px;
    background: rgba(5,5,5,.98);
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav-links.open {
    max-height: 480px;
    padding-block: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-quote {
    margin-top: 12px;
    padding: 14px !important;
    border-bottom: 0 !important;
    text-align: center;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-layout,
  .section-intro,
  .why-layout,
  .coverage-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-emblem {
    min-height: 480px;
  }

  .hero-emblem > img {
    width: min(90%, 530px);
  }

  .section-intro {
    gap: 36px;
  }

  .owner-photo-card,
  .owner-photo-card img {
    min-height: 620px;
  }

  .why-logo {
    width: min(520px, 90%);
    margin-inline: auto;
  }

  .coverage-stamp {
    justify-self: start;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-track article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
  }

  .process-content {
    margin-top: 0;
  }

  .final-cta-inner {
    grid-template-columns: 90px 1fr;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 74px;
  }

  .nav-brand {
    width: 72px;
    height: 62px;
  }

  .nav-links {
    top: 74px;
  }

  .hero {
    padding: 116px 0 70px;
  }

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

  .hero-copy > p {
    font-size: 16px;
  }

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

  .hero-proof {
    gap: 25px;
  }

  .hero-proof div + div::before {
    display: none;
  }

  .hero-emblem {
    min-height: 390px;
  }

  .scroll-prompt {
    display: none;
  }

  .proof-bar-grid,
  .services-grid,
  .field-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .proof-bar-grid > div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .proof-bar-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .coverage {
    padding: 82px 0;
  }

  .section h2,
  .coverage h2 {
    font-size: 49px;
  }

  .owner-photo-card,
  .owner-photo-card img {
    min-height: 500px;
  }

  .owner-photo-card img {
    object-position: center 34%;
  }

  .owner-photo-card figcaption {
    padding: 20px;
  }

  .service-card {
    min-height: 290px;
  }

  .why-layout {
    gap: 45px;
  }

  .process-track article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .process-number {
    width: 58px;
    height: 58px;
  }

  .process-track::before {
    left: 28px;
  }

  .process-content {
    min-height: auto;
    padding: 24px;
  }

  .coverage-stamp {
    width: min(100%, 320px);
  }

  .stamp-inner strong {
    font-size: 82px;
  }

  .stamp-inner span {
    font-size: 18px;
  }

  .quote-card-header {
    padding-inline: 19px;
  }

  #quoteForm {
    padding: 21px;
  }

  .final-cta-inner {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .final-cta img {
    width: 72px;
    height: 72px;
  }

  .final-cta h2 {
    font-size: 39px;
  }

  .footer-main {
    gap: 34px;
    padding-top: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}
