:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --muted: #eef1f7;
  --text: #142032;
  --text-muted: #5a6978;
  --accent: #b88917;
  --accent-hover: #9a7313;
  --border: #d8dfe9;
  --header-bg: rgba(255, 255, 255, 0.94);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.1);
  --on-accent: #ffffff;
  --container: 1440px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

body > main {
  flex: 1 0 auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-hover);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-block: 0.75rem;
}

.logo {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
}

.logo:hover {
  opacity: 0.94;
}

.logo:focus-visible {
  outline: none;
}

.logo img {
  display: block;
  height: clamp(34px, 4.2vw, 46px);
  width: auto;
}

.header-phone {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-phone a {
  color: var(--text-muted);
  text-decoration: none;
}

.header-phone a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  padding: 0.5rem 0.75rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  align-items: center;
  justify-content: center;
}

.site-nav > ul > li > a {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav > ul > li > a:hover {
  color: var(--accent);
  background-color: var(--muted);
}

.site-nav > ul > li > a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.site-nav > ul > li > a[aria-current="page"]:hover {
  color: var(--accent-hover);
  background-color: var(--muted);
}

.site-nav .submenu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-muted);
}

.site-nav .submenu a:hover,
.site-nav .submenu a[aria-current="page"] {
  color: var(--accent);
  background-color: transparent;
}

.has-sub {
  position: relative;
}

.has-sub > .submenu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 18rem;
  padding: 0.5rem 0;
  margin-top: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.has-sub > .submenu a {
  display: block;
  padding: 0.45rem 1rem;
  border-radius: 0;
}

.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu {
  display: block;
}

@media (max-width: 860px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    grid-column: unset;
    justify-self: unset;
  }

  .site-nav {
    grid-column: unset;
    justify-self: unset;
  }

  .header-phone {
    grid-column: unset;
    justify-self: unset;
    width: 100%;
    text-align: center;
    order: 3;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    padding-block: 0.75rem;
    border-top: 1px solid var(--border);
  }

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

  .site-nav > ul {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav > ul > li {
    width: 100%;
    max-width: 20rem;
    text-align: center;
  }

  .site-nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
  }

  .has-sub > .submenu {
    position: static;
    left: auto;
    transform: none;
    display: block;
    margin: 0.35rem 0 0.5rem;
    border: none;
    box-shadow: none;
    background: var(--muted);
    border-radius: 6px;
    text-align: left;
  }

  .has-sub > .submenu a {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
  }
}

.hero {
  padding: 0;
}

.hero-banner {
  position: relative;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hero-banner-viewport {
  overflow: hidden;
  width: 100%;
}

.hero-banner-track {
  display: flex;
  flex-flow: row nowrap;
  transition: transform 0.55s ease;
}

.hero-banner.is-motion-reduced .hero-banner-track {
  transition: none;
}

.hero-banner .hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: clamp(340px, 52vw, 620px);
  display: grid;
  align-items: center;
  justify-items: stretch;
}

.hero-slide-alt .hero-copy h1 {
  max-width: 14ch;
}

.hero-slide-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(15, 22, 32, 0.42) 0%,
    rgba(15, 22, 32, 0.18) 42%,
    transparent 78%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem 3rem;
}

.hero-banner .hero-copy {
  justify-self: start;
  align-self: center;
  z-index: 2;
  width: fit-content;
  max-width: min(calc(100% - 2rem), 40rem);
  margin-left: clamp(0.75rem, 2vw, 1.5rem);
  margin-right: auto;
  margin-top: 0;
  margin-bottom: clamp(2.75rem, 7vw, 4.5rem);
  padding: 0.75rem 1.25rem 0.75rem clamp(1.75rem, 5vw, 3.5rem);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(216, 223, 233, 0.45);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.hero-banner .hero-copy h1 {
  color: var(--text);
  text-shadow: none;
}

.hero-banner .hero-copy strong {
  color: #0a0a0a;
  font-weight: 700;
  text-shadow: none;
}

.hero-banner .hero-copy > p {
  margin: 0.65rem 0 0;
}

.hero-banner .hero-copy > p:last-child {
  margin-bottom: 0;
}

.hero-banner-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  pointer-events: none;
}

.hero-banner-controls > * {
  pointer-events: auto;
}

.hero-banner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.hero-banner-arrow svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.hero-banner-arrow:hover {
  color: var(--accent);
  background: var(--surface);
}

.hero-banner-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-banner-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease, background-color 0.15s ease;
}

.hero-banner-dot:hover {
  opacity: 0.75;
}

.hero-banner-dot[aria-current="true"] {
  opacity: 1;
  background: var(--accent);
  transform: scale(1.25);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 22ch;
  color: var(--text);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-copy strong {
  color: var(--accent);
  font-weight: 700;
}

.placeholder-img {
  background: linear-gradient(135deg, #e8ecf4 0%, var(--muted) 45%, #dde4f0 100%);
  border: 1px dashed var(--border);
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--muted);
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-media .media-placeholder {
  margin-bottom: 0;
}

.news-card .media-placeholder,
.card > .media-placeholder:first-child {
  margin-bottom: 0.85rem;
}


.hero-placeholder-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-placeholder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.ratio-experience-1024 {
  aspect-ratio: 1024 / 625;
}

.ratio-hero-slide-2 {
  aspect-ratio: 1024 / 664;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.ratio-21-9 {
  aspect-ratio: 21 / 9;
}

.page-hero-placeholder {
  border-radius: 8px;
  margin-block: 1rem 2rem;
}

.band {
  padding-block: 3.5rem;
}

.band-muted {
  background: var(--surface);
}

.band-accent {
  background: linear-gradient(160deg, var(--muted) 0%, var(--surface) 55%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.subsurface-services-overview {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.home-subsurface-inner {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.home-subsurface-col-offers h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  color: var(--text);
  line-height: 1.2;
}

.home-subsurface-lead {
  margin: 0 0 1rem;
}

.home-subsurface-offers {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-subsurface-offers li {
  margin: 0 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-subsurface-offers li:last-child {
  margin-bottom: 0;
}

.home-subsurface-col-services h3,
.home-subsurface-col-products h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
}

@media (max-width: 959px) {
  .home-subsurface-col-products {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
}

.home-subsurface-linklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-subsurface-linklist li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.home-subsurface-linklist a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.home-subsurface-linklist a:hover {
  color: var(--accent);
  border-bottom-color: rgba(184, 137, 23, 0.35);
}

@media (min-width: 960px) {
  .home-subsurface-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2rem 2rem;
    align-items: start;
  }

  .home-subsurface-col-products {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

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

.rfp-callout-banner {
  background: #1a3b50;
  color: #fff;
  padding-block: 2rem;
}

.rfp-callout-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.rfp-callout-copy {
  flex: 1 1 18rem;
  min-width: min(100%, 18rem);
}

.rfp-callout-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  color: #fff;
}

.rfp-callout-text a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.rfp-callout-text a:hover {
  color: #f0f4f8;
}

a.button.rfp-callout-button {
  flex-shrink: 0;
  background: #fff;
  color: #1a3b50;
  border: 2px solid #fff;
  text-decoration: none;
}

a.button.rfp-callout-button:hover,
a.button.rfp-callout-button:focus-visible {
  background: #e8f0f5;
  color: #142032;
  border-color: #e8f0f5;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.band-muted .card {
  background: var(--muted);
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.text-link {
  font-weight: 600;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 840px) {
  .split {
    grid-template-columns: 1fr 1.1fr;
  }

  .split.reverse {
    grid-template-columns: 1.1fr 1fr;
  }

  .split.reverse .split-media {
    order: 2;
  }
}

.split-text h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.split-text strong {
  color: var(--accent);
}

.news-preview .news-card h3 {
  margin: 0.5rem 0;
  font-size: 1.05rem;
}

.news-preview .news-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.news-preview .news-card h3 a:hover {
  color: var(--accent);
}

.process-section {
  max-width: 70rem;
  margin-inline: auto;
}

.process-section h2 {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.process-intro {
  max-width: 62ch;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  text-align: center;
}

.process-visual {
  margin: 0 auto 1.5rem;
  max-width: 1024px;
  overflow: hidden;
  border-radius: 12px;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.15rem 1.25rem;
}

.band-muted .process-step {
  background: #fff;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(184, 137, 23, 0.14);
  border: 1px solid rgba(184, 137, 23, 0.35);
  color: #7a5b08;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  color: var(--on-accent);
  background: var(--accent);
  border-radius: 8px;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.button-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.button-outline:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.page-main {
  padding-block: 2.5rem 4rem;
}

.about-page-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.about-page-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-page-split {
    grid-template-columns: 1fr minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.about-page-text h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.15rem;
  color: var(--text);
}

.about-page-text h2:first-child {
  margin-top: 0;
}

.about-page-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-page-text p:last-child {
  margin-bottom: 0;
}

.about-page-cta {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.about-page-aside .media-placeholder {
  margin-bottom: 0;
}

.service-detail-header {
  margin-bottom: 2rem;
}

.service-detail-header h1 {
  margin: 0 0 0.35rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.service-page-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-page-split {
    grid-template-columns: 1fr minmax(0, 1fr);
    gap: 2.5rem;
    align-items: stretch;
  }

  .service-page-media {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

.service-page-text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--text);
}

.service-page-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.service-page-text ul.service-bullet-list {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.service-page-text ul.service-bullet-list li {
  margin-bottom: 0.4rem;
}

.service-page-text ul.service-bullet-list li:last-child {
  margin-bottom: 0;
}

.service-page-text p:last-of-type {
  margin-bottom: 0;
}

.service-page-media .media-placeholder {
  margin-bottom: 0;
}

.service-page-text .button {
  margin-top: 0.5rem;
}

.service-page-addendum {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 65ch;
}

.service-page-addendum h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--text);
  line-height: 1.25;
}

.service-page-addendum p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.service-numbered-list {
  margin: 0.35rem 0 0;
  padding-left: 1.35rem;
  color: var(--text-muted);
}

.service-numbered-list li {
  margin-bottom: 0.55rem;
  padding-left: 0.3rem;
}

.service-numbered-list li:last-child {
  margin-bottom: 0;
}

.prose h1 {
  margin-top: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.prose h1 strong {
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.news-page-grid {
  display: grid;
  gap: 1rem 1.1rem;
  grid-template-columns: 1fr;
  margin-block: 1.5rem 1.25rem;
}

@media (min-width: 520px) {
  .news-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .news-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }
}

.news-page-card {
  scroll-margin-top: 5rem;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.news-page-card .media-placeholder {
  margin: 0;
}

.news-page-card-body {
  padding: 0.65rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.news-page-card .meta {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  line-height: 1.35;
}

.news-page-card h2 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text);
}

.news-page-card-preview {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  margin-block: 2rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 1rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.contact-page-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-page-split {
    grid-template-columns: 1fr minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

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

  .contact-page-media {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

.contact-page-media .media-placeholder {
  margin-bottom: 0;
}

.rfp {
  margin-block: 2rem;
  padding: 1.25rem;
  background: var(--muted);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.site-footer {
  padding-block: 2.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
}

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

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid strong {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-grid p {
  margin: 0;
  color: var(--text-muted);
}

.tagline {
  font-style: italic;
  color: var(--text-muted);
}
