* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #2f2a2d;
  background: #fffafb;
  line-height: 1.75;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 251, 0.94);
  border-bottom: 1px solid #f0dce4;
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: #b72f65;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: #4e4147;
}

.hero {
  min-height: min(620px, calc(100svh - 64px));
  display: grid;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 250, 251, 0.94), rgba(255, 250, 251, 0.82) 48%, rgba(255, 250, 251, 0.42)),
    url("/_src/483449/img20250722113401779057.jpg") center right / cover no-repeat;
  border-bottom: 1px solid #f1dfe6;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: #b72f65;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #594d53;
  font-size: 17px;
}

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

.button,
.route-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary,
.route-card a {
  background: #c83d74;
  color: #fff;
}

.button.secondary {
  color: #9d2859;
  background: #fff;
  border-color: #e8c5d2;
}

.routes,
.about {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 20px;
}

.section-head {
  max-width: 700px;
}

.section-head h2,
.about h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.32;
  letter-spacing: 0;
}

.section-head p,
.about p {
  color: #62565c;
  margin: 12px 0 0;
}

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

.route-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid #efdbe2;
  border-radius: 8px;
}

.route-card h3 {
  margin: 10px 0 0;
  font-size: 23px;
  line-height: 1.35;
}

.route-card p {
  color: #62565c;
  margin: 12px 0 22px;
}

.route-card a {
  margin-top: auto;
}

.label {
  font-size: 12px;
  font-weight: 800;
  color: #b72f65;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  border-top: 1px solid #f1dfe6;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 0;
  border-bottom: 1px solid #ead5dd;
  color: #493e44;
}

.footer {
  padding: 24px 20px 38px;
  text-align: center;
  color: #786c72;
  font-size: 13px;
  border-top: 1px solid #f1dfe6;
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
    background:
      linear-gradient(180deg, rgba(255, 250, 251, 0.96), rgba(255, 250, 251, 0.88)),
      url("/_src/483449/img20250722113401779057.jpg") center / cover no-repeat;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .route-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 0;
  }
}
