:root {
  --navy: #0a1628;
  --navy-2: #152338;
  --ink: #1a1c1e;
  --muted: #5c6168;
  --line: #ddd6c8;
  --line-dark: #243044;
  --cream: #f3eee4;
  --paper: #faf8f4;
  --white: #fff;
  --red: #c11f1f;
  --red-dark: #9a1818;
  --max: 1120px;
  --header: 72px;
  --section: clamp(4rem, 8vw, 6.5rem);
  --serif: "Outfit", system-ui, sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 18px 40px rgba(10, 22, 40, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + env(safe-area-inset-top, 0px) + 10px);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: calc(var(--header) + env(safe-area-inset-top, 0px));
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-intro {
  margin-bottom: 2.4rem;
  max-width: 40rem;
}

.section-intro h2 {
  margin-bottom: 0.85rem;
}

.section-intro p {
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

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

.btn-solid {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  gap: 0.45rem;
}

.btn-solid:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  gap: 0.45rem;
}

.btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-line {
  background: transparent;
  color: var(--cream);
  border-color: #5a6574;
}

.btn-line:hover {
  border-color: var(--cream);
  background: var(--navy-2);
}

.btn-lg {
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  color: #6b7280;
  font-weight: 500;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: #111;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-links {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  line-height: 1.2;
}

.phone-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  color: #111;
}

.phone-links a:hover {
  color: var(--red);
}

.phone-links a + a {
  border-left: 1px solid #d4d0c8;
  padding-left: 0.85rem;
}

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

.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  border-radius: 10px;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #111;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

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

.mobile-nav a {
  text-decoration: none;
  padding: 0.75rem 0;
  font-weight: 600;
  color: #111;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
  width: 100%;
}

.mobile-nav .btn-line {
  color: var(--navy);
  border-color: var(--navy);
  background: var(--white);
}

.mobile-nav .btn-line:hover {
  background: var(--navy);
  color: var(--white);
}

/* Hero */

.hero {
  display: grid;
  grid-template-areas:
    "media"
    "copy"
    "bar";
  background: var(--navy);
  color: var(--cream);
}

.hero-media {
  grid-area: media;
  display: grid;
  place-items: center;
  padding: 1.6rem 1.25rem 0.4rem;
}

.hero-portrait {
  width: min(72vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream);
  outline: 5px solid var(--red);
  outline-offset: 6px;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 8%;
}

.hero-copy {
  grid-area: copy;
  padding: 1.9rem 1.25rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.42rem 0.75rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.15rem, 7vw, 3.6rem);
  max-width: 18ch;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.15rem;
}

.hero .lede {
  font-size: 1rem;
  color: #c5c0b6;
  max-width: 38ch;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.05rem;
}

.hero-hours {
  font-size: 0.78rem;
  color: #9aa3b0;
  font-weight: 500;
}

.hero-hours a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #5a6574;
}

.hero-hours a:hover {
  color: #f0a0a0;
}

.hero-bar {
  grid-area: bar;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  color: var(--navy);
}

.hero-bar li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-bar li:nth-child(even) {
  border-right: 0;
}

.hero-bar li:nth-child(n + 3) {
  border-bottom: 0;
}

.hero-bar strong {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--red);
}

/* Strip */

.strip {
  background: var(--navy);
  color: var(--cream);
  padding: 0;
}

.strip-grid {
  display: flex;
  overflow-x: auto;
}

.strip-item {
  flex: 1 0 13.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem;
  border-right: 1px solid var(--line-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.strip-item:hover {
  background: var(--navy-2);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}

.strip-item span {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--red);
}

.strip-item p {
  font-size: 0.88rem;
  font-weight: 700;
}

.strip-item:hover p {
  color: #f0a0a0;
}

/* Services */

.services {
  padding: var(--section) 0;
}

.services-intro {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
}

.services-intro h2 {
  max-width: 14ch;
}

.services-intro p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-grid {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.service-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.45rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #e8cfc6;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.service-meta span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
}

.service-meta svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--red);
  background: #f8e8e4;
  border-radius: 10px;
}

.service-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

.service-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Areas */

.areas {
  background: var(--navy);
  color: var(--cream);
  padding: var(--section) 0;
}

.areas .eyebrow,
.contact .eyebrow {
  color: #f0a0a0;
}

.areas-intro {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
}

.areas-intro h2 {
  max-width: 14ch;
}

.areas .answer {
  color: #c5c0b6;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.areas-body {
  display: grid;
  gap: 1.15rem;
}

.areas-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid #2a3648;
  background: var(--navy-2);
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.areas-panel-head {
  padding: 1.4rem 1.4rem 1.15rem;
}

.panel-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0a0a0;
  margin-bottom: 0.75rem;
}

.areas-panel-head p {
  color: #c5c0b6;
  font-size: 0.92rem;
  max-width: 36ch;
}

.areas address {
  font-style: normal;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 1.05rem;
}

.areas-map {
  flex: 1;
  min-height: 240px;
  border-top: 1px solid #2a3648;
}

.areas iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  padding: 0 1.4rem;
  border-top: 1px solid #2a3648;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 0.4rem 0.82rem 0;
  border-bottom: 1px solid #2a3648;
  font-size: 0.92rem;
  font-weight: 600;
}

.area-list li:nth-child(odd) {
  padding-right: 0.9rem;
}

.area-list li:nth-child(even) {
  padding-left: 0.9rem;
  border-left: 1px solid #2a3648;
}

.area-list span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 1.35rem;
}

.areas-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 1.05rem 1.4rem 1.2rem;
  border-top: 1px solid #2a3648;
}

.areas-phones a {
  font-weight: 700;
  text-decoration: none;
}

.areas-phones a:hover {
  color: #f0a0a0;
}

/* About */

.about {
  padding: var(--section) 0;
  background: var(--cream);
}

.about-intro {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
}

.about-intro h2 {
  max-width: 14ch;
}

.about-copy {
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
}

.about-points li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.facts > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.3rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.facts > div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #e8cfc6;
}

.facts dt {
  display: grid;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f8e8e4;
  color: var(--red);
  display: grid;
  place-items: center;
}

.fact-icon svg {
  width: 20px;
  height: 20px;
}

.facts dd {
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.3;
}

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.6rem;
  padding: 1.3rem 1.4rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
}

.cta-bar p {
  font-weight: 700;
  font-size: 1.05rem;
}

.cta-bar span {
  display: block;
  margin-top: 0.25rem;
  color: #9aa3b0;
  font-size: 0.85rem;
  font-weight: 500;
}

.cta-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* FAQ */

.faq {
  padding: var(--section) 0;
}

.faq-intro {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2.2rem;
}

.faq-intro h2 {
  max-width: 14ch;
}

.faq-intro > p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-col {
  display: grid;
  align-content: start;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.15rem 2.6rem 1.15rem 1.2rem;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 1.5rem;
  padding-top: 0.18rem;
}

.faq-list summary:hover {
  color: var(--red);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 1.05rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}

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

.faq-list details[open] {
  border-color: #e8cfc6;
  box-shadow: var(--shadow);
}

.faq-list details[open] summary {
  color: var(--navy);
}

.faq-list details p {
  padding: 0 1.2rem 1.25rem 3.6rem;
  color: var(--muted);
  max-width: 62ch;
}

/* Contact */

.contact {
  padding: var(--section) 0;
  background: var(--navy);
  color: var(--cream);
}

.contact-layout {
  display: grid;
  gap: 2.4rem;
}

.contact h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
}

.contact header > p {
  color: #c5c0b6;
  max-width: 38ch;
  margin-bottom: 1.6rem;
}

.contact-direct {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.contact-direct li {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid #2a3648;
  background: var(--navy-2);
  border-radius: 10px;
}

.contact-direct span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0a0a0;
}

.contact-direct a {
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
}

.contact-direct a:hover {
  color: #f0a0a0;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  border: 1px solid var(--line-dark);
  background: var(--navy-2);
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius);
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  font: 500 1rem/1.4 var(--sans);
  padding: 0.8rem 0.85rem;
  border: 1px solid #3a4658;
  background: var(--navy);
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  width: 100%;
  border-radius: 8px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8b93a0;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 1px solid var(--red);
  border-color: var(--red);
}

.quote-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

/* Footer */

.site-footer {
  background: #070f1b;
  color: #c8c3b8;
  font-size: 0.9rem;
}

.site-footer .brand-text strong {
  color: var(--cream);
}

.site-footer .brand-text em {
  color: #9aa3b0;
}

.footer-banner {
  background: var(--cream);
  color: var(--navy);
  border-top: 4px solid var(--red);
}

.footer-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.5rem;
  padding: 1.5rem 0;
}

.footer-banner .eyebrow {
  margin-bottom: 0.35rem;
}

.footer-banner strong {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
}

.footer-main {
  padding: 2.2rem 0 1.3rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #1c2838;
  margin-bottom: 1.6rem;
}

.footer-calls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-wa {
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #5a6574;
}

.footer-wa:hover {
  color: #f0a0a0;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
}

.footer-grid span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.footer-grid p {
  line-height: 1.65;
}

.footer-grid a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
}

.footer-grid a:hover {
  color: #f0a0a0;
}

.footer-panel {
  border: 1px solid #2a3648;
  background: var(--navy-2);
  padding: 1.2rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.45rem;
  border-radius: var(--radius);
}

.footer-panel span {
  margin-bottom: 0.35rem;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
  font-size: 0.8rem;
}

.footer-base strong {
  color: var(--cream);
  font-weight: 700;
}

.footer-base a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}

.footer-base a:hover {
  color: #f0a0a0;
}

@media (max-width: 799px) {
  :root {
    --header: 64px;
  }

  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }

  .header-inner {
    gap: 0.65rem;
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.8rem;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .hero-copy {
    padding: 1.4rem 1.25rem 1.35rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
    max-width: none;
  }

  .hero .lede {
    font-size: 0.95rem;
    max-width: none;
  }

  .hero-cta {
    display: grid;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-portrait {
    width: min(58vw, 220px);
  }

  .strip-grid {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .strip-item {
    scroll-snap-align: start;
  }

  .cta-bar {
    padding: 1.1rem 1.05rem 1.15rem;
  }

  .cta-bar-actions {
    width: 100%;
  }

  .cta-bar-actions .btn {
    flex: 1 1 9rem;
  }

  .quote-form input,
  .quote-form textarea {
    font-size: 16px;
  }

  .quote-form .btn {
    width: 100%;
    justify-self: stretch;
  }

  .footer-calls {
    width: 100%;
  }

  .footer-calls .btn {
    flex: 1 1 9rem;
  }
}

@media (max-width: 420px) {
  .brand-text em {
    display: none;
  }

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

  .area-list {
    grid-template-columns: 1fr;
  }

  .area-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 800px) {
  .nav {
    display: flex;
  }

  .phone-links {
    display: flex;
  }

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

  .menu-btn,
  .mobile-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: 1fr auto;
    grid-template-areas:
      "copy media"
      "bar bar";
    min-height: calc(100vh - var(--header));
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.2rem 2.4rem 2rem max(1.5rem, calc((100vw - 1120px) / 2));
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.4vw, 4rem);
  }

  .hero-media {
    padding: 2.4rem 2.4rem 2.4rem 1rem;
  }

  .hero-portrait {
    width: min(42vw, 460px);
  }

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

  .hero-bar li {
    border-bottom: 0;
    align-items: center;
    text-align: center;
    padding: 1.15rem 1rem;
  }

  .hero-bar li:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .hero-bar li:last-child {
    border-right: 0;
  }

  .strip-grid {
    overflow: visible;
  }

  .strip-item {
    flex: 1 1 0;
    justify-content: center;
    padding: 1.2rem 1rem;
    margin: 0;
    border-right: 1px solid var(--line-dark);
  }

  .strip-item:last-child {
    border-right: 0;
    margin-right: 0;
  }

  .services-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 2.6rem;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.1rem;
  }

  .service-grid li {
    padding: 1.5rem 1.4rem 1.55rem;
  }

  .areas-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 2.6rem;
  }

  .areas-body {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .areas-map,
  .areas iframe {
    min-height: 320px;
  }

  .about-intro,
  .faq-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2.6rem;
  }

  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .facts {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .facts > div {
    padding: 1.4rem 1.25rem 1.5rem;
  }

  .quote-form {
    grid-template-columns: 1fr 1fr;
    padding: 1.6rem;
    margin-top: 0;
  }

  .quote-form .full,
  .quote-form button {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 0.85fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .service-grid li,
  .facts > div {
    transition: none;
  }

  .btn:hover,
  .service-grid li:hover,
  .facts > div:hover {
    transform: none;
  }
}
