:root {
  --ink: #102d2c;
  --sea: #087f83;
  --sea-dark: #07595d;
  --sun: #ffc857;
  --coral: #ef6a55;
  --sky: #dff6f4;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #5f706f;
  --line: #d8e4e1;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(16, 45, 44, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; padding: .7rem 1rem; background: var(--ink); color: white; }
.skip-link:focus { left: 8px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,248,.92); border-bottom: 1px solid rgba(16,45,44,.09); backdrop-filter: blur(16px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 850; letter-spacing: -.035em; font-size: 1.18rem; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50% 50% 45% 55%; background: var(--sea); color: white; box-shadow: inset -7px -6px 0 rgba(0,0,0,.08); font-size: 1.15rem; }
.brand em { color: var(--sea); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--sea); }
.nav-cta { padding: .65rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }
.lang-switch { display: inline-grid; place-items: center; min-width: 42px; height: 38px; padding: 0 10px; border-radius: 999px; background: var(--ink); color: white !important; font-size: .78rem; font-weight: 850; letter-spacing: .06em; }

.hero { position: relative; min-height: 680px; display: grid; align-items: end; overflow: hidden; color: white; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,31,31,.78) 0%, rgba(6,31,31,.33) 52%, rgba(6,31,31,.05) 82%), linear-gradient(0deg, rgba(6,31,31,.64), transparent 48%); }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 112px 0 76px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--sun); border-radius: 4px; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin-top: 0; }
h1 { margin-bottom: 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 7vw, 6.8rem); font-weight: 500; }
.hero p { max-width: 620px; margin: 0 0 30px; font-size: clamp(1.08rem, 2vw, 1.28rem); color: rgba(255,255,255,.9); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: .75rem 1.2rem; border-radius: 999px; background: var(--sun); color: var(--ink); text-decoration: none; font-weight: 800; box-shadow: 0 8px 26px rgba(0,0,0,.12); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.button.secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,.58); box-shadow: none; margin-left: 10px; }
.hero-note { position: absolute; right: 5vw; bottom: 56px; z-index: 2; width: 210px; padding: 18px; background: rgba(255,253,248,.94); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.hero-note strong { display: block; font-family: Georgia, serif; font-size: 1.4rem; line-height: 1.1; }
.hero-note span { display: block; margin-top: 8px; color: var(--muted); font-size: .82rem; }

.section { padding: 90px 0; }
.section.sky { background: var(--sky); }
.section.dark { background: var(--ink); color: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { max-width: 660px; margin-bottom: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; }
.section-heading p { max-width: 410px; margin: 0; color: var(--muted); }
.dark .section-heading p { color: #bed0cd; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; min-height: 290px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 60px; border-radius: 50%; background: var(--sky); color: var(--sea-dark); font-weight: 850; }
.card h3 { margin-bottom: 10px; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; }
.card p { margin: 0; color: var(--muted); }
.card .arrow { position: absolute; right: 24px; top: 25px; font-size: 1.45rem; color: var(--sea); }
.card.featured { background: var(--sea); color: white; border: 0; }
.card.featured p { color: #d4f0ed; }
.card.featured .card-number { background: rgba(255,255,255,.16); color: white; }
.card.featured .arrow { color: var(--sun); }
.topic-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topic { padding: 24px 20px; text-align: center; font-weight: 750; border-right: 1px solid var(--line); }
.topic:last-child { border: 0; }
.route { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.home-map { margin-top: 22px; padding: 36px; border-radius: 30px; background: var(--sky); border: 1px solid var(--line); }
.route-map { min-height: 390px; display: grid; place-items: center; position: relative; overflow: hidden; border-radius: 24px; background: linear-gradient(145deg, #bceae7, #eaf9f7); border: 1px solid rgba(8,127,131,.16); }
.route-map svg { width: 100%; height: auto; max-height: 400px; overflow: visible; }
.island-shape { fill: #fffdf8; stroke: #087f83; stroke-width: 4; stroke-linejoin: round; filter: drop-shadow(0 12px 16px rgba(16,45,44,.12)); }
.province-line { fill: none; stroke: #a9d4d0; stroke-width: 2; stroke-dasharray: 6 7; }
.map-point { fill: var(--coral); stroke: white; stroke-width: 5; }
.map-label-box { fill: white; stroke: #d8e4e1; stroke-width: 1.5; }
.map-label-text { font: 750 16px Inter, system-ui, sans-serif; fill: var(--ink); }
.map-caption { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.route-copy h2 { font-family: Georgia, serif; font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 500; }
.route-copy p { color: var(--muted); }
.check-list { padding: 0; list-style: none; }
.check-list li { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--sea); }
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.newsletter h2 { margin-bottom: 8px; font-family: Georgia, serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3.5rem); }
.newsletter p { margin: 0; color: #bed0cd; }
.newsletter .button { white-space: nowrap; }

.page-hero { padding: 96px 0 64px; background: var(--sky); }
.page-hero h1 { max-width: 850px; margin-bottom: 18px; color: var(--ink); font-size: clamp(3rem, 6vw, 5.5rem); }
.page-hero p { max-width: 690px; margin: 0; color: var(--muted); font-size: 1.2rem; }
.article-list { display: grid; gap: 18px; }
.article-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 26px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; text-decoration: none; }
.article-row:hover { border-color: var(--sea); }
.article-tag { color: var(--sea); font-weight: 850; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.article-row h2 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.article-row p { margin: 0; color: var(--muted); }
.text-page { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0; }
.text-page h1 { color: var(--ink); font-size: clamp(2.7rem, 5vw, 4.7rem); }
.text-page h2 { margin-top: 46px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.text-page p, .text-page li { color: #405352; }
.callout { margin: 34px 0; padding: 24px; border-left: 5px solid var(--sun); background: #fff5d7; border-radius: 0 16px 16px 0; }
.byline { padding-bottom: 22px; margin-bottom: 34px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.site-footer { padding: 54px 0 30px; background: #0b2423; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.site-footer p, .site-footer a { color: #b9cecb; }
.site-footer a { text-decoration: none; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 34px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.12); color: #8fa8a5; font-size: .82rem; }

@media (max-width: 820px) {
  .nav { min-height: 68px; }
  .nav-links { gap: 8px; }
  .nav-links a:not(.nav-cta):not(.lang-switch) { display: none; }
  .hero { min-height: 620px; }
  .hero-note { display: none; }
  .button.secondary { margin: 10px 0 0; }
  .section { padding: 68px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .card-number { margin-bottom: 35px; }
  .topic-strip { grid-template-columns: 1fr 1fr; }
  .topic:nth-child(2) { border-right: 0; }
  .topic:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .route, .newsletter { grid-template-columns: 1fr; }
  .home-map { padding: 20px; }
  .route-map { min-height: 290px; }
  .article-row { grid-template-columns: 1fr; gap: 8px; }
  .article-row > span:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand { font-size: 1.04rem; }
  .nav-cta { font-size: .8rem; padding: .55rem .75rem; }
  .nav-links .nav-cta { display: none; }
  .hero-content { padding-bottom: 52px; }
  h1 { font-size: 3.1rem; }
  .topic-strip { grid-template-columns: 1fr; }
  .topic { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
