:root {
  --bg: #f6f1ea;
  --surface: #ffffff;
  --ink: #17323a;
  --muted: #5e6d73;
  --accent: #0e6f79;
  --accent-dark: #095861;
  --sea-pale: #dceced;
  --warm: #e3b84f;
  --sand: #eee2d1;
  --line: #e7ddd0;
  --shadow: 0 18px 46px rgba(23, 50, 58, .11);
  --shadow-small: 0 10px 26px rgba(23, 50, 58, .08);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(23, 50, 58, .08);
  background: rgba(246, 241, 234, .94);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { text-decoration: none; font-size: 1.08rem; font-weight: 850; line-height: 1.15; white-space: nowrap; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; font-weight: 650; letter-spacing: .03em; }
.navlinks { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.navlinks > a { color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 750; white-space: nowrap; }
.navlinks > a:hover,
.navlinks > a:focus,
.navlinks > a[aria-current="page"] { color: var(--accent); }
.langbar { display: flex; align-items: center; gap: 8px; }
.langbar label { color: var(--muted); font-size: .82rem; font-weight: 750; }
.langbar select {
  max-width: 130px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
}

.guide-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(7, 21, 27, .08) 10%, rgba(7, 21, 27, .77) 100%),
    linear-gradient(90deg, rgba(7, 21, 27, .55), rgba(7, 21, 27, .02) 70%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}
.guide-hero--compact { min-height: clamp(460px, 62vh, 650px); }
.hero-inner { position: relative; z-index: 2; padding: 82px 0 58px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
h1, h2, h3 { text-wrap: balance; }
h1 {
  max-width: 12ch;
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.guide-hero--compact h1 { max-width: 14ch; font-size: clamp(2.7rem, 5.5vw, 5.2rem); }
.hero-lede { max-width: 61ch; margin: 0; color: rgba(255, 255, 255, .95); font-size: clamp(1.03rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-credit {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}
.hero-credit:hover { text-decoration: underline; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover,
.button:focus { transform: translateY(-1px); background: var(--accent-dark); }
.button--light { background: #fff; color: var(--ink); }
.button--light:hover,
.button--light:focus { background: #f8f5ef; }
.button--ghost { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .08); }
.button--ghost:hover,
.button--ghost:focus { background: rgba(255, 255, 255, .18); }
.text-link { color: var(--accent); font-weight: 800; text-underline-offset: 3px; }
.external-link::after { content: " ↗"; font-size: .9em; }

.quick-nav {
  position: relative;
  z-index: 5;
  margin-top: -25px;
}
.quick-nav__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quick-nav a {
  padding: 18px 19px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}
.quick-nav a:last-child { border-right: 0; }
.quick-nav a span { display: block; margin-top: 2px; color: var(--muted); font-size: .82rem; font-weight: 600; }
.quick-nav a:hover,
.quick-nav a:focus { background: #edf5f5; color: var(--accent); }

section { padding: 76px 0; }
.section--tight { padding: 48px 0; }
.section--sea { background: var(--sea-pale); }
.section--ink { background: var(--ink); color: #fff; }
.section-heading { display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr); gap: 48px; align-items: end; margin-bottom: 30px; }
.kicker { margin: 0 0 9px; color: var(--accent); font-size: .82rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.section--ink .kicker { color: #93ced2; }
h2 { margin: 0; font-size: clamp(2rem, 4.2vw, 4.2rem); line-height: 1; letter-spacing: -.045em; }
h3 { margin: 0 0 8px; font-size: clamp(1.22rem, 2vw, 1.55rem); line-height: 1.15; letter-spacing: -.018em; }
.lede { max-width: 66ch; margin: 0; color: var(--muted); font-size: 1.05rem; }
.section--ink .lede { color: rgba(255, 255, 255, .74); }
.microcopy { color: var(--muted); font-size: .9rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}
.feature-card__image { position: relative; height: 230px; overflow: hidden; background: var(--sand); }
.feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover .feature-card__image img { transform: scale(1.025); }
.feature-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 22px; }
.feature-card__body p { margin: 0 0 18px; color: var(--muted); }
.feature-card__body .text-link { margin-top: auto; }
.photo-note {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(8, 25, 30, .67);
  color: rgba(255, 255, 255, .93);
  font-size: .66rem;
  text-decoration: none;
}
.photo-note:hover { text-decoration: underline; }

.story-list { display: grid; gap: 34px; }
.story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-small);
}
.story:nth-child(even) .story__image { order: 2; }
.story__image { position: relative; min-height: 390px; overflow: hidden; background: var(--sand); }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(28px, 5vw, 58px); }
.story__body p { margin: 0 0 16px; color: var(--muted); }
.story__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.activity-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-small);
}
.activity-card__media { position: relative; height: 205px; flex: 0 0 auto; overflow: hidden; background: var(--sand); }
.activity-card__media-link { position: absolute; inset: 0; display: block; color: #fff; text-decoration: none; }
.activity-card__media-link::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(5, 23, 28, .76)); }
.activity-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.activity-card__media-link:hover img,
.activity-card__media-link:focus img { transform: scale(1.035); }
.activity-card__provider { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 16px; font-size: 1rem; font-weight: 850; text-shadow: 0 1px 8px rgba(0, 0, 0, .45); }
.activity-card__credit { position: absolute; z-index: 2; top: 10px; right: 10px; padding: 5px 8px; border-radius: 999px; background: rgba(255, 255, 255, .9); color: var(--ink); font-size: .68rem; font-weight: 800; text-decoration: none; }
.activity-card__credit:hover,
.activity-card__credit:focus { background: #fff; color: var(--accent); }
.activity-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.activity-card__icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 14px; background: #edf5f5; color: var(--accent); font-size: 1.15rem; font-weight: 900; }
.activity-card p { margin: 0 0 20px; color: var(--muted); }
.activity-card .button { margin-top: auto; align-self: flex-start; }
.activity-card__links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; }
.activity-card__links .button { margin-top: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #edf5f5; color: var(--accent-dark); font-size: .76rem; font-weight: 820; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.info-card { padding: 25px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: var(--shadow-small); }
.info-card p:last-child { margin-bottom: 0; }
.clean-list { margin: 13px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 7px 0 7px 27px; }
.clean-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.link-list { display: grid; gap: 9px; margin-top: 14px; }
.link-list a { color: var(--accent); font-weight: 760; text-underline-offset: 3px; }

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 21px 23px;
  border: 1px solid #e6c85f;
  border-radius: 20px;
  background: #fff7da;
  color: #58460e;
}
.notice__mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px; background: #f0d36d; font-weight: 900; }
.notice strong { display: block; margin-bottom: 3px; }
.notice p { margin: 0; }
.notice a { font-weight: 800; text-underline-offset: 3px; }

.route-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.route-step { position: relative; min-height: 160px; padding: 23px; background: #fff; }
.route-step strong { display: block; margin-bottom: 7px; font-size: 1.05rem; }
.route-step p { margin: 0; color: var(--muted); font-size: .92rem; }
.route-number { display: block; margin-bottom: 24px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }

.cta-panel {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-panel h2 { max-width: 15ch; font-size: clamp(2rem, 4vw, 3.7rem); }
.cta-panel p { max-width: 58ch; margin: 14px 0 0; color: rgba(255, 255, 255, .75); }

.credits-list { display: grid; gap: 16px; }
.credit-card { display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.credit-card img { width: 180px; height: 116px; object-fit: cover; border-radius: 15px; }
.credit-card p { margin: 4px 0; color: var(--muted); }

.footer { padding: 42px 0 88px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.footer strong { display: block; color: var(--ink); }
.footer-links { display: grid; align-content: start; gap: 7px; }
.footer a { text-decoration: none; }
.footer a:hover,
.footer a:focus { color: var(--accent); text-decoration: underline; }
.footer-meta { margin-top: 12px; font-size: .82rem; }

@media (max-width: 1040px) {
  .navlinks { gap: 12px; }
  .navlinks > a { font-size: .86rem; }
  .feature-grid,
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-nav__inner { grid-template-columns: repeat(2, 1fr); }
  .quick-nav a:nth-child(2) { border-right: 0; }
  .quick-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .wrap { width: min(100% - 30px, var(--max)); }
  .nav { min-height: 70px; align-items: flex-start; flex-direction: column; padding: 13px 0 10px; gap: 10px; }
  .brand small { display: none; }
  .navlinks { width: 100%; justify-content: flex-start; overflow-x: auto; padding: 2px 0 4px; scrollbar-width: none; }
  .navlinks::-webkit-scrollbar { display: none; }
  .navlinks > a { font-size: .85rem; }
  .langbar label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .langbar select { max-width: 105px; padding: 7px 9px; font-size: .82rem; }
  .guide-hero { min-height: 610px; }
  .hero-inner { padding-bottom: 48px; }
  h1,
  .guide-hero--compact h1 { max-width: 11ch; }
  .section-heading { grid-template-columns: 1fr; gap: 17px; }
  .story { grid-template-columns: 1fr; }
  .story:nth-child(even) .story__image { order: initial; }
  .story__image { min-height: 320px; }
  .route-strip { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  section { padding: 58px 0; }
  .guide-hero { min-height: 560px; }
  .guide-hero--compact { min-height: 520px; }
  .hero-credit { right: 10px; bottom: 8px; max-width: 65%; text-align: right; }
  .quick-nav { margin-top: 0; padding-top: 14px; }
  .quick-nav__inner,
  .feature-grid,
  .activity-grid,
  .route-strip { grid-template-columns: 1fr; }
  .quick-nav a,
  .quick-nav a:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-nav a:last-child { border-bottom: 0; }
  .feature-card { min-height: 0; }
  .activity-card { min-height: 0; }
  .activity-card__media { height: 215px; }
  .story__image { min-height: 270px; }
  .story__body { padding: 27px 23px 31px; }
  .credit-card { grid-template-columns: 1fr; }
  .credit-card img { width: 100%; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
