:root {
  --bg: #f8f7f4;
  --fg: #1c1917;
  --blue: #045a8d;
  --navy: #0b3d6e;
  --deep: #0a1a6b;
  --orange: #f0a202;
  --orange-hover: #d99200;
  --link: #4aa3e8;
  --footer: #141414;
  --stone-50: #fafaf9;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --max: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: #fff;
  color: var(--fg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

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

.site-main {
  flex: 1;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35), transparent);
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.site-logo img {
  height: 3.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  transition: color 0.15s ease;
}

.site-header.is-solid .nav-item > a {
  color: var(--stone-800);
  text-shadow: none;
}

.nav-item > a:hover {
  color: #fdba74;
}

.site-header.is-solid .nav-item > a:hover {
  color: #ea580c;
}

.nav-caret {
  display: inline-block;
  font-size: 0.7em;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-item:hover > a .nav-caret,
.nav-item:focus-within > a .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  list-style: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 60;
  min-width: 17.5rem;
  margin: 0;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 0.85rem;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 40px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.4rem);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  right: 1.25rem;
  width: 0.7rem;
  height: 0.7rem;
  background: #fff;
  border-left: 1px solid rgba(28, 25, 23, 0.08);
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  transform: rotate(45deg);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li + li {
  margin-top: 0.15rem;
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.95rem;
  border-radius: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    padding-left 0.15s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: linear-gradient(90deg, rgba(4, 90, 141, 0.1), rgba(4, 90, 141, 0.04));
  color: var(--blue);
  padding-left: 1.15rem;
  outline: none;
}

/* Mobile submenu polish — replaced below with full mobile nav */

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.lang-switch {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  padding: 0.35rem 0.25rem;
}

.site-header.is-solid .lang-switch {
  color: var(--stone-800);
  text-shadow: none;
}

.lang-switch:hover {
  color: #fdba74;
}

.site-header.is-solid .lang-switch:hover {
  color: #ea580c;
}

.btn-cta {
  display: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: background 0.15s ease;
}

.btn-cta:hover {
  background: var(--orange-hover);
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-header.is-solid .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  border-color: #d6d3d1;
  color: var(--stone-800);
  background: #fff;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.site-header.is-solid .menu-toggle[aria-expanded="true"],
.site-header.is-menu-open .menu-toggle[aria-expanded="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(231, 229, 228, 0.85);
  background: linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
  padding: 0.85rem 1rem 1.25rem;
  color: var(--fg);
  max-height: min(78vh, 40rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  display: block;
  animation: mobileNavIn 0.22s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.mobile-item {
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.mobile-row {
  display: flex;
  align-items: stretch;
}

.mobile-item > a,
.mobile-row > a {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.mobile-toggle {
  flex: 0 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px solid rgba(28, 25, 23, 0.08);
  background: rgba(4, 90, 141, 0.04);
  color: var(--blue);
  cursor: pointer;
  transition: background 0.15s ease;
}

.mobile-toggle:hover,
.mobile-item.is-open .mobile-toggle {
  background: rgba(4, 90, 141, 0.1);
}

.mobile-toggle__icon {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.15rem;
}

.mobile-item.is-open .mobile-toggle__icon {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

.mobile-submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.45rem 0.55rem;
  background: rgba(4, 90, 141, 0.04);
  border-top: 1px solid rgba(28, 25, 23, 0.06);
}

.mobile-item.is-open .mobile-submenu {
  display: grid;
  gap: 0.2rem;
  animation: mobileNavIn 0.18s ease;
}

.mobile-submenu a {
  display: block;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid transparent;
}

.mobile-submenu a:hover,
.mobile-submenu a:focus-visible {
  border-color: rgba(4, 90, 141, 0.18);
  background: linear-gradient(90deg, rgba(4, 90, 141, 0.08), #fff);
  color: var(--blue);
  outline: none;
}

.mobile-nav__actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.mobile-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.5rem;
  box-shadow: 0 8px 20px rgba(240, 162, 2, 0.28);
}

.mobile-cta:hover {
  background: var(--orange-hover);
}

.mobile-lang {
  display: flex;
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.5rem;
}

.mobile-lang:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Home hero */
.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding-top: 5rem;
}

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

.home-hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 4rem 0;
  text-align: center;
}

.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Home services */
.home-services {
  background: linear-gradient(to right, var(--blue), var(--deep));
  color: #fff;
}

.home-services__grid {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 3.5rem;
  padding: 5rem 0;
}

.home-services h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-services h2.is-featured {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

.home-services h2 a:hover {
  text-decoration: underline;
}

.home-services p {
  margin-top: 1.75rem;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 2;
}

/* Page hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  overflow: hidden;
  padding-top: 6rem;
}

.page-hero__overlay {
  background: rgba(0, 0, 0, 0.65);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

.breadcrumbs {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs .sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .current {
  color: #fff;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero__subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Inner content */
.inner-grid {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-kicker {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--stone-500);
}

.btn-dark {
  display: inline-flex;
  margin-top: 2rem;
  border-radius: 999px;
  background: #0c0a09;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  transition: background 0.15s ease;
}

.btn-dark:hover {
  background: var(--blue);
}

.lead {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--stone-700);
}

.lead-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}

.body-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--stone-700);
}

.bullet-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.bullet-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--stone-700);
}

.bullet-list li::before {
  content: "";
  margin-top: 0.65rem;
  width: 0.375rem;
  height: 0.375rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--blue);
}

.bullet-list a {
  font-weight: 500;
  color: var(--blue);
}

.bullet-list a:hover {
  text-decoration: underline;
}

.product-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--link);
}

.product-link:hover {
  text-decoration: underline;
}

.brand-logo {
  margin-top: 2rem;
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.extra-section {
  border-top: 1px solid var(--stone-200);
  background: var(--stone-50);
}

.extra-section__inner {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0;
}

.extra-section h2 {
  font-family: var(--font-display);
  max-width: 48rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.extra-section p {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--stone-600);
}

/* Antenna features */
.antenna-features {
  border-top: 1px solid var(--stone-200);
  background: var(--stone-50);
}

.antenna-features__grid {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

.antenna-features h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

.antenna-features h3 a:hover {
  color: var(--blue);
}

.antenna-features p {
  margin-top: 1rem;
  max-width: 24rem;
  color: var(--stone-600);
  line-height: 1.75;
}

.antenna-features__media {
  margin-top: 2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
}

.antenna-features__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brands */
.brand-logos {
  border-top: 1px solid var(--stone-200);
}

.brand-logos__inner {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 3rem 0 3.5rem;
}

.brand-logos h2 {
  font-family: var(--font-display);
  max-width: 48rem;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--navy);
}

.brand-logos p {
  margin-top: 1rem;
  max-width: 48rem;
  color: var(--stone-600);
  line-height: 2;
}

.brand-logos__row {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem 3rem;
}

.brand-logos__row img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

/* Stairs */
.stair-block {
  border-top: 1px solid var(--stone-200);
}

.stair-block__grid {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.stair-block__media {
  margin-top: 2.5rem;
  width: 100%;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-grid:not(.is-compact) {
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item__label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone-800);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.gallery-item:hover .gallery-item__label {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: #f5f5f4;
  color: var(--stone-800);
  font-weight: 600;
  cursor: pointer;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.lightbox__nav {
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__figure {
  position: relative;
  width: min(100%, 64rem);
  height: 78vh;
}

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

/* Contact */
.contact-people {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0;
}

.contact-people__grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 1rem;
}

.contact-people h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-people .role {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--stone-500);
}

.contact-people .phone {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-people .email {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--link);
  word-break: break-all;
}

.contact-blurb {
  margin-top: 3.5rem;
  max-width: 56rem;
  color: var(--link);
  line-height: 2;
}

.contact-blurb a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-section {
  border-top: 1px solid var(--stone-200);
  background: var(--stone-50);
}

.contact-form-section__grid {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  padding: 3.5rem 0;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--stone-500);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--stone-200);
  border-radius: 0.375rem;
  background: #fff;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  color: var(--fg);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.contact-form button {
  justify-self: start;
  border: 0;
  border-radius: 0.375rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: #034a73;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--footer);
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}

.site-footer .logo img {
  height: 3.5rem;
  width: auto;
}

.site-footer .meta {
  font-size: 1rem;
  line-height: 2;
  color: #e7e5e4;
}

.site-footer .meta a {
  transition: color 0.15s ease;
}

.site-footer .meta a:hover {
  color: #fff;
}

.site-footer .meta .email {
  font-weight: 500;
  color: var(--link);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-weight: 500;
  color: var(--link);
}

.footer-nav a:hover {
  color: #fff;
}

/* Default page / 404 */
.page-content {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
  padding: 3.5rem 0 5rem;
}

.page-content .entry-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.page-content .entry-body {
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--stone-700);
}

.page-content .entry-body p + p {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .site-logo img {
    height: 3.5rem;
  }

  .btn-cta {
    display: inline-flex;
  }

  .home-hero {
    min-height: 520px;
    padding-top: 6rem;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 280px;
  }

  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form .full {
    grid-column: 1 / -1;
  }

  .brand-logos__row img {
    height: 6rem;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .home-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }

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

  .contact-people__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

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

  .menu-toggle {
    display: none;
  }

  .header-actions {
    margin-left: 0.5rem;
  }

  .site-logo img {
    height: 4rem;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-hero__titles {
    max-width: 36rem;
    text-align: right;
  }

  .inner-grid,
  .stair-block__grid,
  .contact-form-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
  }

  .stair-block__sticky {
    position: sticky;
    top: 7rem;
    align-self: start;
  }

  .brand-logos__row img {
    height: 7rem;
  }
}
