:root {
  --ink: #17211f;
  --muted: #5f6966;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #dce2dd;
  --green: #173f35;
  --green-2: #285f4e;
  --sage: #c4ddd0;
  --red: #9f2e2f;
  --steel: #e9eef1;
  --shadow: 0 22px 60px rgba(23, 33, 31, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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


button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 18px;
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.site-nav {
  position: fixed;
  inset: 72px 12px auto;
  display: none;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 12px;
  color: var(--ink);
  font-weight: 750;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--steel);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 63, 53, 0.12), rgba(23, 33, 31, 0.9)),
    linear-gradient(90deg, rgba(23, 33, 31, 0.82), rgba(23, 33, 31, 0.08));
}

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

.hero-content {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 54px 18px 26px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-card .eyebrow,
.legal-hero .eyebrow {
  color: var(--sage);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 1080px;
  font-size: clamp(2.25rem, 7vw, 4.35rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  border-color: rgba(23, 33, 31, 0.12);
}

.hero-facts {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.hero-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 64px 18px;
}

.section-band {
  background: var(--white);
}

.split {
  display: grid;
  gap: 28px;
}

.split p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

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

.service-list {
  display: grid;
  gap: 24px;
}

.service-item {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-image {
  aspect-ratio: 4 / 3;
  background: var(--steel);
}

.service-image img,
.team-hero img,
.gallery-grid img,
.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-copy {
  padding: 22px;
}

.service-index {
  color: var(--red);
  font-weight: 900;
}

.service-copy h3 {
  margin-top: 4px;
}

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

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

.service-copy li {
  position: relative;
  padding-left: 20px;
  font-weight: 720;
}

.service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--green-2);
  border-radius: 50%;
}

.team-hero {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background: var(--steel);
  border-radius: 8px;
}

.team-grid {
  display: grid;
  gap: 12px;
}

.person {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.person img {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  background: var(--steel);
}

.person h3 {
  font-size: 1rem;
}

.person a {
  color: var(--green-2);
  font-weight: 780;
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-grid button {
  overflow: hidden;
  min-height: 210px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--steel);
  cursor: zoom-in;
}

.gallery-grid img {
  transition: transform 280ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.04);
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
}

.contact-card h2 {
  margin-bottom: 22px;
}

.contact-row {
  display: grid;
  width: 100%;
  gap: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 1rem;
}

.social-links {
  margin-top: 16px;
}

.social-links a {
  color: var(--sage);
  font-weight: 850;
}

.map-panel {
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel), #f6f0e6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-placeholder {
  display: grid;
  height: 100%;
  min-height: 360px;
  place-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.map-placeholder p {
  max-width: 340px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.legal {
  background: #f1f4f0;
}

.legal-page {
  min-height: calc(100svh - 72px);
  background: #f1f4f0;
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(23, 63, 53, 0.92), rgba(23, 63, 53, 0.72)),
    url("/img/transport.9367390c.jpg") center / cover;
  color: var(--white);
}

.legal-hero .section-inner {
  padding-top: 58px;
  padding-bottom: 58px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 12vw, 5.4rem);
}

.legal-grid {
  display: grid;
  gap: 20px;
}

.legal-grid.single {
  max-width: 920px;
}

.legal article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal h2 {
  font-size: 1.8rem;
}

.legal h3 {
  margin-top: 20px;
  font-size: 1rem;
}

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

.legal a {
  color: var(--green-2);
  font-weight: 760;
}

.footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 18px;
  margin: 0 auto;
  padding: 26px 18px;
}

.footer .brand-mark {
  background: var(--white);
  color: var(--green);
}

.footer small,
.footer nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lightbox {
  width: min(94vw, 980px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

.lightbox button {
  display: block;
  margin: 0 0 10px auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  font-weight: 850;
}

@media (min-width: 680px) {
  .hero-facts,
  .team-grid,
  .gallery-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid button:first-child {
    grid-row: span 2;
  }
}

@media (min-width: 900px) {
  .site-header {
    padding: 14px 30px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .hero-content {
    padding: 60px 30px 30px;
  }

  .section-inner {
    padding: 90px 30px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .service-item {
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 420px;
  }

  .service-item:nth-child(even) .service-image {
    order: 2;
  }

  .service-copy {
    display: grid;
    align-content: center;
    padding: 46px;
  }

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

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

  .person img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .gallery-grid button {
    min-height: 260px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .footer nav {
    justify-content: flex-end;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
