:root {
  --ink: #142235;
  --muted: #526274;
  --paper: #f4f7fa;
  --panel: #ffffff;
  --line: #cbd8e4;
  --blue: #245d80;
  --sky: #7fb8d7;
  --green: #718a70;
  --coral: #bd7054;
  --soft: #e8eff5;
  --radius: 14px;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: var(--blue); text-underline-offset: 3px; }
.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(244,247,250,.95);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 650; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #b8c7d5;
  border-radius: 10px;
  background: #eef4f8;
  color: var(--blue);
  font-weight: 750;
}
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--ink); text-decoration: none; font-size: 14px; }
nav a:hover { text-decoration: underline; }
.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  align-items: center;
  gap: 42px;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.travel-hero {
  background:
    linear-gradient(90deg, rgba(244,247,250,.98), rgba(244,247,250,.86)),
    repeating-linear-gradient(135deg, #dae6ef 0 1px, transparent 1px 42px),
    #edf3f7;
}
.hero-copy { max-width: 780px; }
.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--green); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 74px); line-height: 1.02; margin-bottom: 20px; letter-spacing: 0; }
h2 { font-size: clamp(26px, 4vw, 44px); line-height: 1.08; margin-bottom: 14px; }
h3 { font-size: 20px; margin-bottom: 10px; }
p { line-height: 1.62; color: var(--muted); }
.hero p { font-size: clamp(18px, 2vw, 22px); max-width: 720px; color: #35475a; }
.route-visual {
  min-height: 360px;
  position: relative;
  border: 1px solid rgba(82,98,116,.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 26%, rgba(127,184,215,.24), transparent 24%),
    radial-gradient(circle at 74% 32%, rgba(189,112,84,.18), transparent 23%),
    radial-gradient(circle at 50% 78%, rgba(113,138,112,.2), transparent 23%),
    repeating-linear-gradient(0deg, rgba(36,93,128,.12) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(90deg, rgba(36,93,128,.1) 0 1px, transparent 1px 78px);
  box-shadow: 0 18px 38px rgba(20,34,53,.08);
}
.route-dot { position: absolute; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px rgba(20,34,53,.22), 0 8px 18px rgba(20,34,53,.2); }
.dot-one { left: 14%; top: 28%; }
.dot-two { left: 58%; top: 20%; background: var(--coral); }
.dot-three { left: 72%; top: 68%; background: var(--green); }
.dot-four { left: 30%; top: 78%; background: var(--sky); }
.route-line { position: absolute; height: 2px; background: rgba(36,93,128,.34); transform-origin: left center; }
.line-one { left: 18%; top: 32%; width: 43%; transform: rotate(-12deg); }
.line-two { left: 60%; top: 25%; width: 42%; transform: rotate(64deg); }
.line-three { left: 33%; top: 79%; width: 40%; transform: rotate(-10deg); }
.section { padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px); }
.twin-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: 28px; align-items: stretch; }
.quote-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px;
  display: grid;
  align-items: center;
}
.quote-panel p { color: var(--ink); font-size: 22px; line-height: 1.38; }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.story-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.story-card span {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid #b8c7d5;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 700;
}
.split-note {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  background: #e7eef4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.network-links {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  background: rgba(255,255,255,.48);
  border-top: 1px solid var(--line);
}
.network-list {
  display: grid;
  gap: 12px;
}
.network-list a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}
.network-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}
footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  .hero, .twin-intro, .story-grid, .split-note, .network-links { grid-template-columns: 1fr; }
  .route-visual { min-height: 280px; }
  h1 { font-size: 42px; }
}
