:root {
  color-scheme: light;
  --ink: #14221b;
  --muted: #5d6b62;
  --paper: #f7f4ec;
  --paper-2: #fffaf0;
  --green: #2e6b4b;
  --green-dark: #203a2f;
  --moss: #8ea66a;
  --pink: #e87c91;
  --yellow: #f2c866;
  --red: #c96055;
  --line: rgba(20, 34, 27, 0.14);
  --shadow: 0 22px 70px rgba(34, 56, 46, 0.18);
  font-family:
    "Inter", "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 27, 21, 0.88), rgba(15, 27, 21, 0.46) 48%, rgba(15, 27, 21, 0.18)),
    linear-gradient(0deg, rgba(15, 27, 21, 0.76), transparent 44%);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 32px);
  overflow-x: auto;
  white-space: nowrap;
}

.topbar a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  max-width: 1120px;
  min-height: calc(92svh - 74px);
  margin: 0 auto;
  padding: 36px clamp(18px, 5vw, 44px) 76px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2.4vw, 21px);
  line-height: 1.7;
}

.hero__actions,
.nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.button--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 124, 145, 0.26);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: -42px auto 0;
  padding: 0 clamp(16px, 4vw, 32px);
  position: relative;
  z-index: 3;
}

.status-strip article {
  padding: 20px;
  background: rgba(255, 250, 240, 0.95);
  border: 1px solid rgba(20, 34, 27, 0.08);
  box-shadow: var(--shadow);
}

.status-strip article:first-child {
  border-radius: 8px 0 0 8px;
}

.status-strip article:last-child {
  border-radius: 0 8px 8px 0;
}

.status-strip span,
.label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-strip strong {
  display: block;
  margin: 7px 0;
  font-size: 18px;
  line-height: 1.35;
}

.status-strip small {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 82px clamp(16px, 4vw, 32px);
}

.section--tight {
  padding-top: 36px;
}

.section--hotel {
  padding-bottom: 28px;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section__heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.now-panel {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.now-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.now-panel p {
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(46, 107, 75, 0.08);
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.7;
}

.decision-grid,
.pitfall-columns,
.ticket-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sleep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sleep-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
}

.sleep-grid time {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 124, 145, 0.2);
  color: #ffd8df;
  font-size: 13px;
  font-weight: 900;
}

.sleep-grid h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.sleep-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.hotel-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.hotel-card--accent {
  background: rgba(232, 124, 145, 0.1);
  border-color: rgba(232, 124, 145, 0.28);
}

.hotel-card--warning {
  background: rgba(242, 200, 102, 0.16);
  border-color: rgba(168, 117, 21, 0.28);
}

.hotel-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.hotel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.decision-card,
.ticket-rules article,
.pitfall-columns article {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.decision-card {
  padding: 22px;
}

.decision-card span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.decision-card--green span {
  background: var(--green);
}

.decision-card--yellow span {
  background: #a87515;
}

.decision-card--red span {
  background: var(--red);
}

.decision-card h3,
.ticket-rules h3,
.pitfall-columns h3,
.timeline h3 {
  margin: 16px 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

.decision-card p,
.ticket-rules p,
.timeline p,
.locator p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section--locator {
  padding-top: 24px;
}

.locator {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.locator__main,
.locator__result,
.distance-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.locator__main .button {
  width: 100%;
  border: 0;
  font-size: 16px;
}

.locator__main p {
  margin-top: 14px;
  font-size: 14px;
}

.locator__result strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.18;
}

.distance-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.distance-list strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 0.35fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.54);
}

.timeline time {
  color: var(--green);
  font-weight: 900;
}

.timeline h3 {
  margin: 0;
}

.section--dark {
  max-width: none;
  background: var(--green-dark);
  color: #fff;
}

.section--dark > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark .section__heading p:not(.eyebrow),
.section--dark li {
  color: rgba(255, 255, 255, 0.78);
}

.pitfall-columns article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.pitfall-columns ul,
.sources ul {
  margin: 12px 0 0;
  padding-left: 19px;
}

.pitfall-columns li,
.sources li {
  margin: 10px 0;
  line-height: 1.7;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checklist label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  font-size: 16px;
  line-height: 1.5;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
  flex: 0 0 auto;
  margin-top: 2px;
}

.section--split {
  padding-top: 32px;
}

.ticket-rules {
  grid-template-columns: repeat(4, 1fr);
}

.ticket-rules article {
  padding: 20px;
}

.nav-grid a {
  flex: 1 1 220px;
  min-height: 58px;
  background: var(--green);
  color: #fff;
}

.sources {
  padding-top: 30px;
  color: var(--muted);
}

.sources .section__heading {
  margin-bottom: 12px;
}

.source-note {
  margin-top: 20px;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .status-strip,
  .hotel-grid,
  .sleep-grid,
  .decision-grid,
  .pitfall-columns,
  .ticket-rules,
  .distance-list {
    grid-template-columns: 1fr 1fr;
  }

  .status-strip article:first-child,
  .status-strip article:last-child {
    border-radius: 8px;
  }

  .locator,
  .now-panel {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88svh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(15, 27, 21, 0.88), rgba(15, 27, 21, 0.32)),
      linear-gradient(90deg, rgba(15, 27, 21, 0.78), rgba(15, 27, 21, 0.12));
  }

  .hero__content {
    min-height: calc(88svh - 70px);
    padding-bottom: 54px;
  }

  .topbar {
    padding-top: 14px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .status-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .status-strip article {
    border-radius: 0;
    box-shadow: none;
  }

  .section {
    padding: 56px 16px;
  }

  .decision-grid,
  .pitfall-columns,
  .ticket-rules,
  .hotel-grid,
  .sleep-grid,
  .checklist,
  .distance-list {
    grid-template-columns: 1fr;
  }

  .now-panel {
    padding: 14px;
  }

  .now-panel strong {
    font-size: 24px;
  }
}
