:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #53615d;
  --line: #d8e0da;
  --surface: #f7f9f5;
  --panel: #ffffff;
  --mint: #0f8f72;
  --mint-dark: #0a6f5a;
  --coral: #c9553e;
  --gold: #c09a45;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--surface);
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(24, 33, 31, 0.08);
  background: rgba(247, 249, 245, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #f9fbf7;
  font-weight: 800;
}

nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--ink);
  background: #eef4ed;
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 7vw, 88px) clamp(20px, 4vw, 56px) 40px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 136px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 720;
  font-size: 15px;
}

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

.button.primary:hover {
  background: var(--mint-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.button.secondary:hover {
  border-color: #bcc9c2;
}

.hero-visual {
  margin: 0;
  align-self: stretch;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(24, 33, 31, 0.18);
}

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

.access article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
}

.access span {
  display: block;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 800;
}

.access p,
.routes span {
  color: var(--muted);
  line-height: 1.65;
}

.routes {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 7vw, 86px) clamp(20px, 4vw, 56px);
}

.routes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.routes li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.45fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.routes a {
  overflow-wrap: anywhere;
  font-weight: 720;
}

.routes a:hover {
  color: var(--mint-dark);
}

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

  .hero,
  .routes {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

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

  .routes li {
    grid-template-columns: 1fr;
  }
}
