:root {
  color-scheme: light;
  --ink: #14212a;
  --muted: #62717d;
  --paper: #f4f7f8;
  --surface: #ffffff;
  --line: #dce5e9;
  --steel: #234a5b;
  --steel-dark: #123140;
  --signal: #d88b2f;
  --green: #1f8a5b;
  --shadow: 0 22px 70px rgba(18, 49, 64, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--steel-dark);
  color: #fff;
  font-weight: 950;
}

.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 {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--steel-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(18px, 5vw, 72px) 56px;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 247, 248, 0.94) 0%, rgba(244, 247, 248, 0.84) 34%, rgba(244, 247, 248, 0.34) 62%, rgba(244, 247, 248, 0.1) 100%),
    linear-gradient(0deg, rgba(20, 33, 42, 0.08), rgba(20, 33, 42, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-weight: 950;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.05rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-content p:not(.eyebrow),
.intro p,
.split p,
.contact-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--steel-dark);
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 950;
  text-decoration: none;
}

.button.primary {
  background: var(--steel-dark);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.84);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--surface);
}

.quick-info strong {
  color: var(--steel-dark);
  font-size: 2.2rem;
  line-height: 1;
}

.quick-info span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro,
.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

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

.service article,
.contact-card,
.route-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service article {
  min-height: 240px;
  padding: 28px;
}

.service article span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--signal);
  font-weight: 950;
}

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

.route-box {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.route-box span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-left: 6px solid var(--signal);
  background: #f8fafb;
  padding: 14px 18px;
  color: var(--steel-dark);
  font-size: 1.18rem;
  font-weight: 950;
}

.contact {
  background: var(--steel-dark);
  color: #fff;
}

.contact .eyebrow {
  color: #f1b15b;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  gap: 6px;
  color: var(--ink);
  padding: 30px;
  font-style: normal;
}

.contact-card strong {
  font-size: 1.5rem;
}

.contact-card a {
  color: var(--steel-dark);
  font-weight: 900;
  text-decoration: none;
}

.map-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 470px);
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #0f232e;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(244, 247, 248, 0.95) 0%, rgba(244, 247, 248, 0.86) 58%, rgba(244, 247, 248, 0.24) 100%);
  }

  .quick-info,
  .service,
  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    min-height: 102px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
