:root {
  --ink: #141820;
  --navy: #102039;
  --paper: #f5f2eb;
  --surface: #ffffff;
  --line: #d9d1c2;
  --muted: #5e6673;
  --copper: #a84d2a;
  --teal: #176d77;
  --sage: #6f8178;
  --shadow: 0 24px 70px rgba(20, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

figure {
  margin: 0;
}

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

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(31, 122, 140, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 209, 194, 0.86);
  background: rgba(245, 242, 235, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.menu-button {
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #293241;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #ece9df;
  color: var(--navy);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  padding: 56px 0 34px;
  gap: 54px;
}

.hero > *,
.split > *,
.contact-layout > *,
.section-head > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 900;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: #3b4350;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.button {
  padding: 13px 18px;
  background: var(--navy);
  color: #fff;
}

.button:hover {
  background: #0f1a33;
}

.button-secondary {
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--navy);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: clamp(420px, 45vw, 610px);
  object-fit: cover;
}

.visual-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.visual-caption > span {
  min-width: 0;
}

.visual-caption strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.visual-caption span {
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.metric {
  color: var(--copper);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.band {
  padding: 76px 0;
}

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

.inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

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

.service-tile,
.route-step,
.contact-panel,
.detail-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-tile {
  min-height: 240px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(20, 24, 32, 0.06);
}

.tile-kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-tile h3,
.detail-tile h3,
.route-step h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-tile p,
.detail-tile p,
.route-step p {
  margin: 12px 0 0;
  color: #4c5562;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 42px;
}

.rounded-photo,
.split img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

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

.list li {
  padding-left: 18px;
  border-left: 4px solid var(--copper);
  color: #404958;
}

.route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-step {
  padding: 22px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e7f0ef;
  color: var(--teal);
  font-weight: 900;
}

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

.detail-tile {
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 24, 32, 0.08);
}

.detail-tile img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.detail-tile div {
  padding: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.contact-panel p {
  color: #4c5562;
}

.email-line {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 26px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: #303844;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #101522;
  color: #fff;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 6px;
  background: #111827;
  box-shadow: var(--shadow);
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.02), rgba(12, 18, 28, 0.58));
}

.photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.image-led {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 34px;
}

.image-led img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-led h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.image-led p:not(.eyebrow) {
  color: #4c5562;
  font-size: 1.05rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: #cfd6df;
}

@media (max-width: 880px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .hero,
  .split,
  .contact-layout,
  .image-led {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 24px;
    gap: 32px;
  }

  .service-grid,
  .route,
  .detail-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-rows: auto;
  }

  .photo-card.tall {
    grid-row: auto;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .inner,
  .hero,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.1rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    font-size: 0.74rem;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-visual img {
    height: 295px;
  }

  .visual-caption,
  .footer-inner {
    display: block;
  }

  .metric {
    display: block;
    margin-top: 8px;
  }
}

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