:root {
  --navy: #002b5b;
  --navy-dark: #00192f;
  --navy-deep: #06131f;
  --orange: #f59e0b;
  --orange-dark: #d97706;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --line: #d8dee8;
  --light: #f5f7fa;
  --soft: #edf2f7;
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1160px;
  --shadow: 0 18px 45px rgba(0, 43, 91, 0.14);
  --shadow-strong: 0 24px 70px rgba(0, 18, 34, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

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

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

h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  letter-spacing: 0;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-dark);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #101828;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--orange);
  background: rgba(245, 158, 11, 0.12);
}

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

.btn--large {
  min-height: 54px;
  padding-inline: 22px;
}

.cta-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phone-link,
.phone-large {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.phone-link:hover,
.phone-large:hover {
  color: var(--orange-dark);
}

.phone-large {
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 8px 0 18px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  color: #475467;
  font-size: 1.08rem;
}

.section {
  padding: 74px 0;
  background: var(--white);
}

.section--grey {
  background:
    linear-gradient(90deg, rgba(0, 43, 91, 0.035) 1px, transparent 1px),
    var(--light);
  background-size: 34px 34px, auto;
}

.section--navy {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-header--split {
  display: grid;
  gap: 18px;
  align-items: end;
  max-width: none;
}

.section-header--split p {
  max-width: 560px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 43, 91, 0.1);
  box-shadow: 0 8px 28px rgba(0, 43, 91, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 245px;
}

.brand img {
  width: 235px;
  height: auto;
}

.nav-toggle {
  justify-self: end;
  width: 46px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}

.primary-nav {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 14px;
}

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

.primary-nav ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: block;
  padding: 10px 4px;
  color: var(--navy-dark);
  font-weight: 900;
  text-decoration: none;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--orange-dark);
}

.header-actions {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  min-height: 720px;
  background: var(--navy-dark);
  color: var(--white);
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 18, 34, 0.92) 0%, rgba(0, 43, 91, 0.78) 43%, rgba(0, 18, 34, 0.34) 68%, rgba(0, 18, 34, 0.82) 100%),
    linear-gradient(0deg, rgba(0, 18, 34, 0.72), rgba(0, 18, 34, 0.08) 48%);
}

.hero--home::before,
.page-hero::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.22));
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: 74px 0 66px;
}

.hero-copy {
  max-width: 780px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  background: rgba(0, 29, 61, 0.66);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(5px);
}

.hero-copy h1,
.hero-copy p {
  color: var(--white);
}

.hero-copy .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}

.proof-card {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 82px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(0, 43, 91, 0.72);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.proof-card span {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.proof-card strong {
  color: var(--orange);
  font-size: 1.02rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.proof-card--contact {
  border-color: rgba(245, 158, 11, 0.5);
}

.proof-card--email strong {
  font-size: 0.92rem;
}

.hero--home .slider-controls {
  position: absolute;
  right: 18px;
  top: 22px;
  z-index: 4;
}

.hero--home .slider-dots {
  position: absolute;
  right: 18px;
  top: 78px;
  z-index: 4;
  padding: 0;
  background: transparent;
}

.quick-contact {
  background: var(--orange);
  color: var(--navy-dark);
}

.quick-contact__inner {
  display: grid;
  gap: 8px;
  padding: 15px 0;
  font-weight: 900;
}

.quick-contact a {
  color: var(--navy-dark);
  text-decoration: none;
}

.quick-contact span {
  font-weight: 700;
}

/* Sliders */
.work-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.work-slider--feature {
  border: 1px solid rgba(0, 43, 91, 0.12);
}

.work-slide {
  position: relative;
  display: none;
  aspect-ratio: 16 / 9;
}

.work-slide.is-active {
  display: block;
}

.work-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 18, 34, 0.88), transparent);
}

.slide-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
}

.slide-caption strong,
.slide-caption span {
  display: block;
}

.slide-caption strong {
  font-size: 1.2rem;
  line-height: 1.12;
}

.slide-caption span {
  color: rgba(255, 255, 255, 0.78);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.work-slider .slider-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.slider-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 29, 61, 0.74);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.slider-button:hover {
  background: var(--orange);
  color: var(--navy-dark);
}

.slider-dots {
  display: flex;
  gap: 7px;
  padding: 12px 14px 14px;
  background: var(--navy-deep);
}

.work-slider .slider-dots {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 0;
  background: transparent;
}

.slider-dot {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--orange);
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 18, 34, 0.92), rgba(0, 43, 91, 0.74) 48%, rgba(0, 18, 34, 0.35)),
    linear-gradient(0deg, rgba(0, 18, 34, 0.66), rgba(0, 18, 34, 0.14));
}

.page-hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  padding: 78px 0 66px;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

/* Services */
.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 43, 91, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 43, 91, 0.2);
  border-left-color: var(--orange);
  box-shadow: 0 18px 38px rgba(0, 43, 91, 0.14);
}

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

.service-card__body {
  padding: 20px;
}

.service-card__body p {
  margin-bottom: 0;
}

.service-strip {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-pill-large {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 43, 91, 0.06);
}

.service-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 43, 91, 0.08);
}

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

.service-detail-card > div {
  padding: 22px;
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-weight: 900;
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.service-detail-card a {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

/* Trust */
.why-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.trust-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.trust-card {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.trust-card strong {
  color: var(--white);
  font-size: 1.25rem;
}

.trust-card span,
.trust-card a {
  color: rgba(255, 255, 255, 0.78);
}

.trust-card a {
  font-weight: 900;
  text-decoration: none;
}

/* Photos */
.photo-grid {
  display: grid;
  gap: 12px;
}

.photo-card,
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius-lg);
  background: var(--navy-dark);
  box-shadow: 0 10px 26px rgba(0, 43, 91, 0.1);
}

.photo-card {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.photo-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 240ms ease;
}

.photo-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(0, 18, 34, 0.82), transparent);
}

.photo-card:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
}

.photo-card span,
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}

.gallery-masonry {
  display: grid;
  gap: 14px;
}

.gallery-item {
  margin: 0;
  min-height: 260px;
}

.gallery-item--wide {
  min-height: 300px;
}

.gallery-item--tall {
  min-height: 420px;
}

/* Areas */
.areas-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-grid li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

/* Quote and contact */
.quote-section {
  background:
    linear-gradient(90deg, rgba(0, 43, 91, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #f8fafc, #eef3f9);
  background-size: 34px 34px, auto;
}

.quote-layout,
.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.quote-copy {
  max-width: 610px;
}

.quote-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 22px;
}

.quote-card--compact {
  align-self: center;
}

.contact-panel {
  padding: 24px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-list a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.contact-photo {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--light);
}

.contact-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.contact-photo span {
  color: var(--navy);
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 11px 12px;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(245, 158, 11, 0.25);
  border-color: var(--orange);
}

.hidden-field {
  display: none;
}

.form-status,
.quote-note {
  color: var(--muted);
  font-weight: 800;
}

.quote-note a {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--orange);
}

.final-cta {
  display: grid;
  justify-items: start;
  gap: 10px;
  text-align: left;
}

.final-cta h2,
.final-cta p,
.final-cta .phone-large {
  color: var(--white);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 22px;
  background:
    linear-gradient(135deg, #00192f, #002b5b 58%, #06131f);
  color: var(--white);
}

.site-footer > * {
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  width: min(100%, 245px);
  height: auto;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.site-footer .btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.site-footer p,
.footer-list li,
.footer-bottom {
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-list li,
.footer-list a,
.site-footer p {
  overflow-wrap: anywhere;
}

.footer-list a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.mobile-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--navy-dark);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(0, 18, 34, 0.34);
}

@media (min-width: 560px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-contact__inner {
    grid-template-columns: auto auto 1fr;
    align-items: center;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid--tight,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid .btn,
  .form-grid .form-status {
    grid-column: 1 / -1;
  }

  .photo-grid--preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card--large {
    grid-column: span 2;
  }
}

@media (min-width: 760px) {
  .section-header--split {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  }

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

  .why-grid,
  .quote-layout,
  .contact-layout,
  .areas-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

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

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 275px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: block;
    grid-column: auto;
    padding: 0;
  }

  .primary-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .primary-nav a {
    position: relative;
    padding: 28px 0;
  }

  .primary-nav a[aria-current="page"]::after,
  .primary-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 4px;
    border-radius: 999px;
    background: var(--orange);
  }

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

  .hero-proof {
    grid-template-columns: minmax(170px, 0.9fr) minmax(320px, 1.65fr) repeat(4, minmax(118px, 0.72fr));
    align-items: stretch;
  }

  .proof-card {
    min-height: 96px;
  }

  .hero--home .slider-controls {
    right: 28px;
    top: 30px;
  }

  .hero--home .slider-dots {
    right: 28px;
    top: 88px;
  }

  .service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-detail-card {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  }

  .service-detail-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  }

  .service-detail-card:nth-child(even) img {
    order: 2;
  }

  .service-detail-card img {
    height: 100%;
    min-height: 340px;
  }

  .mobile-call {
    display: none;
  }
}

@media (min-width: 1120px) {
  .footer-grid {
    grid-template-columns: minmax(250px, 1.25fr) minmax(215px, 1fr) minmax(160px, 0.78fr) minmax(235px, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .photo-grid--preview {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .photo-card--large {
    grid-row: span 2;
    grid-column: auto;
    min-height: 496px;
  }
}

@media (max-width: 899px) {
  body {
    padding-bottom: 76px;
  }

  .hero--home {
    min-height: 0;
  }

  .hero-content {
    min-height: 680px;
    padding: 42px 0 34px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 9vw, 3.35rem);
  }

  .hero-proof {
    display: flex;
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .hero-proof::-webkit-scrollbar {
    display: none;
  }

  .proof-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .proof-card--contact {
    flex-basis: 250px;
  }

  .proof-card--email {
    flex-basis: 310px;
  }

  .hero--home .slider-controls,
  .hero--home .slider-dots {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand img {
    width: 202px;
  }

  .hero-content {
    min-height: 720px;
  }

  .hero-copy {
    padding: 16px;
  }

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

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

  .section {
    padding: 54px 0;
  }
}
