:root {
  --navy: #102a43;
  --navy-deep: #081f33;
  --teal: #087f7b;
  --teal-dark: #056d69;
  --bright: #20b8ad;
  --aqua: #e7f7f5;
  --aqua-soft: #f3fbfa;
  --ink: #17324a;
  --muted: #5c6f7e;
  --line: #d8e3e8;
  --warm: #faf8f3;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(16, 42, 67, 0.08);
  --shadow-lg: 0 26px 70px rgba(16, 42, 67, 0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shell: min(1240px, calc(100% - 48px));
  --font: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
summary,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--bright);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.4vw, 4.9rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.utility-bar {
  color: var(--white);
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  font-size: 0.89rem;
  font-weight: 700;
}

.utility-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner > span,
.utility-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-inner > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 116px;
  grid-template-columns: minmax(250px, 350px) 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand img {
  width: min(100%, 340px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 750;
}

.primary-nav > a,
.services-menu > summary {
  position: relative;
  padding-block: 15px;
  cursor: pointer;
  list-style: none;
}

.services-menu > summary::-webkit-details-marker {
  display: none;
}

.services-menu > summary::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.services-menu[open] > summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.primary-nav > a::after,
.services-menu > summary::before {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.services-menu.active > summary::before,
.services-menu > summary:hover::before {
  transform: scaleX(1);
}

.services-menu {
  position: relative;
}

.services-popover {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  display: grid;
  width: 300px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}

.services-popover a {
  padding: 10px 12px;
  border-radius: 10px;
}

.services-popover a:hover {
  color: var(--teal-dark);
  background: var(--aqua);
}

.header-call {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-call:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--white) 0%, var(--white) 64%, var(--aqua-soft) 100%);
}

.home-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-image: radial-gradient(rgba(8, 127, 123, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  padding-block: 68px 72px;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.hero-copy h1 {
  max-width: 700px;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.6vw, 1.26rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: scale(0.985);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(8, 127, 123, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(8, 127, 123, 0.25);
}

.button-secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal);
}

.button-secondary:hover {
  background: var(--aqua);
}

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

.button-light:hover {
  background: var(--aqua);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-outline-light:hover {
  color: var(--navy);
  background: var(--white);
}

.trust-cards {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-cards > div {
  display: flex;
  min-height: 72px;
  padding: 12px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 127, 123, 0.28);
  border-radius: 12px;
}

.trust-cards .icon {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.trust-cards span {
  display: grid;
  line-height: 1.2;
}

.trust-cards strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.trust-cards small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual picture {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  object-fit: cover;
  object-position: 62% center;
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  display: grid;
  min-width: 220px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--navy);
  border: 5px solid var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.hero-image-note strong {
  font-size: 1.2rem;
}

.hero-image-note span {
  color: #d7e8ef;
  font-size: 0.8rem;
}

.section {
  padding-block: 104px;
}

.section-heading {
  margin-bottom: 46px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p,
.centered > p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-overview {
  background: var(--warm);
}

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

.service-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e8e1d5;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card p {
  color: var(--muted);
}

.service-card > a {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-card > a span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.service-card:hover > a span {
  transform: translateX(4px);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  color: var(--teal);
  background: var(--aqua);
  border-radius: 50%;
  place-items: center;
}

.service-icon .icon {
  width: 30px;
  height: 30px;
}

.service-icon.large {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.service-icon.large .icon {
  width: 38px;
  height: 38px;
}

.results-section {
  color: var(--white);
  background: var(--navy);
}

.results-section h2 {
  color: var(--white);
}

.results-section p:not(.eyebrow) {
  color: #c6d7df;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 88px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bright);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.results-list {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.results-list > div {
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.results-list dt {
  color: var(--bright);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1;
}

.results-list dd {
  margin: 10px 0 0;
  color: #d9e5ea;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  gap: 74px;
}

.check-list,
.feature-list {
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list .icon {
  margin-top: 2px;
  color: var(--bright);
}

.brand-panel {
  padding: 38px;
  background: var(--aqua-soft);
  border: 1px solid #cbe9e5;
  border-radius: var(--radius-lg);
}

.brand-list {
  display: flex;
  margin-block: 24px;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-list span,
.city-list span {
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.brand-panel > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.area-preview {
  padding-top: 0;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.area-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 44px;
  background: var(--warm);
  border-radius: var(--radius-lg);
}

.area-card > .icon {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--teal);
}

.area-card-dark {
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-dark), var(--navy));
}

.area-card-dark h2,
.area-card-dark .eyebrow {
  color: var(--white);
}

.area-card-dark > .icon {
  color: var(--bright);
}

.area-card-dark > a {
  display: inline-flex;
  margin-top: 12px;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

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

.process-list {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid #cfe7e4;
  border-radius: var(--radius);
}

.process-list li > span {
  display: block;
  margin-bottom: 40px;
  color: var(--bright);
  font-size: 1.75rem;
  font-weight: 850;
}

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

.cta-band {
  color: var(--white);
  background: linear-gradient(100deg, var(--teal-dark), var(--teal));
}

.cta-inner {
  display: flex;
  min-height: 260px;
  padding-block: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner .eyebrow,
.cta-inner h2 {
  color: var(--white);
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  padding-block: 18px;
  gap: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--teal-dark);
  font-weight: 750;
}

.interior-hero {
  overflow: hidden;
  padding-block: 76px;
  background: linear-gradient(135deg, var(--white), var(--aqua-soft));
}

.interior-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.interior-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.interior-proof {
  padding: 38px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.interior-proof h2,
.interior-proof p,
.interior-proof li {
  color: var(--white);
}

.interior-proof .service-icon {
  color: var(--navy);
  background: var(--bright);
}

.interior-proof .check-list {
  margin-top: 24px;
}

.compact-hero {
  padding-block: 64px;
}

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

.prose {
  font-size: 1.05rem;
}

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

.prose h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.prose h2 {
  margin-top: 48px;
}

.prose h3 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.prose a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list li {
  display: flex;
  min-height: 76px;
  padding: 18px;
  align-items: flex-start;
  gap: 12px;
  background: var(--aqua-soft);
  border: 1px solid #d3eae7;
  border-radius: 12px;
}

.feature-list .icon {
  margin-top: 3px;
  color: var(--teal);
}

.side-cta {
  position: sticky;
  top: 24px;
  display: grid;
  padding: 32px;
  background: var(--warm);
  border: 1px solid #e5dfd5;
  border-radius: var(--radius);
  gap: 16px;
}

.side-cta h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

.side-cta p,
.side-cta small {
  margin-bottom: 0;
  color: var(--muted);
}

.side-cta .text-link {
  justify-self: start;
}

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

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid #e2ddd3;
  border-radius: 14px;
}

.faq-list summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--teal);
  content: "+";
  font-size: 1.8rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: start;
  gap: 80px;
}

.quote-card {
  padding: 44px;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--navy));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-card p {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.45;
}

.quote-card span {
  color: #cde6e4;
  font-size: 0.85rem;
}

.area-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.area-detail-card {
  padding: 44px;
  background: var(--aqua-soft);
  border: 1px solid #cce7e4;
  border-radius: var(--radius-lg);
}

.area-detail-card > p:not(.eyebrow) {
  color: var(--muted);
}

.city-list {
  display: flex;
  margin-block: 28px 34px;
  flex-wrap: wrap;
  gap: 9px;
}

.dark-card {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.dark-card h2,
.dark-card .eyebrow,
.dark-card > p:not(.eyebrow) {
  color: var(--white);
}

.dark-card .city-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-section {
  padding-block: 70px 110px;
  background: linear-gradient(145deg, var(--white), var(--aqua-soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.contact-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.contact-methods {
  display: grid;
  margin-top: 38px;
  gap: 12px;
}

.contact-methods > a,
.contact-methods > div {
  display: flex;
  padding: 18px;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-methods > a:hover {
  border-color: var(--teal);
}

.contact-methods .icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.contact-methods span {
  display: grid;
  color: var(--navy);
}

.contact-methods small {
  color: var(--muted);
}

.appointment-note {
  margin-top: 24px;
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
}

.appointment-note h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.35rem;
}

.appointment-note p {
  margin-bottom: 0;
}

.request-form {
  position: relative;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-heading p:last-child {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field-grid label,
.consent {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 750;
}

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

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9cbd3;
  border-radius: 10px;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(32, 184, 173, 0.18);
  outline: none;
}

[aria-invalid="true"] {
  border-color: #b42318;
}

.consent {
  display: flex;
  margin-block: 24px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

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

.form-status {
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  padding-top: 70px;
  color: #c4d4dc;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.6fr repeat(3, 0.75fr);
  gap: 50px;
}

.footer-brand img {
  width: 330px;
  margin-bottom: 24px;
  padding: 10px;
  background: var(--white);
  border-radius: 12px;
}

.footer-brand p {
  max-width: 470px;
}

.license-note {
  color: var(--bright);
  font-weight: 750;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a:hover {
  color: var(--bright);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(240px, 310px) 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .header-call span {
    display: none;
  }

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

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .trust-cards > div {
    min-height: 58px;
  }

  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .utility-inner > span:last-child,
  .header-call {
    display: none;
  }

  .utility-inner {
    justify-content: space-between;
  }

  .header-inner {
    min-height: 94px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: min(290px, 70vw);
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a,
  .services-menu > summary {
    display: block;
    padding: 10px 12px;
  }

  .services-popover {
    position: static;
    width: 100%;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .hero-grid,
  .split-heading,
  .results-grid,
  .industries-grid,
  .interior-hero-grid,
  .content-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .split-heading,
  .results-grid,
  .industries-grid,
  .interior-hero-grid,
  .content-grid,
  .story-grid,
  .contact-grid {
    gap: 42px;
  }

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

  .side-cta {
    position: static;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 28px, 520px);
  }

  body {
    font-size: 15px;
  }

  .utility-detail {
    display: none;
  }

  .utility-inner {
    font-size: 0.78rem;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: min(250px, 72vw);
  }

  .home-hero::before {
    width: 100%;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 44px 56px;
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

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

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    border-radius: var(--radius);
  }

  .hero-image-note {
    right: 12px;
    bottom: 14px;
    min-width: 190px;
  }

  .section {
    padding-block: 72px;
  }

  .service-grid,
  .process-list,
  .results-list,
  .feature-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .area-card,
  .area-detail-card,
  .brand-panel,
  .quote-card,
  .interior-proof,
  .request-form {
    padding: 28px;
    border-radius: var(--radius);
  }

  .interior-hero {
    padding-block: 50px;
  }

  .interior-hero h1,
  .contact-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .full-field {
    grid-column: auto;
  }

  .contact-section {
    padding-block: 48px 74px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
