/* EnjoyPolen satellite — design tokens derive from enjoypolen.com (identity-preserving).
   60-30-10 per RFQ: white/light gray 60, deep navy ink 30, azure #2095c1 interactive 10. */

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-bg: #ffffff;
  --c-bg-soft: #f2f7fa;
  --c-bg-deep: #0f2d3d;
  --c-ink: #14303f;
  --c-body: #33454f;
  --c-muted: #546873;
  --c-accent: #2095c1;
  --c-accent-deep: #156f94;
  --c-accent-tint: #e1f1f8;
  --c-line: #d9e4ea;
  --c-on-deep: #e8f2f7;
  --radius: 10px;
  --shadow-card: 0 1px 2px rgba(15, 45, 61, .06), 0 10px 28px -14px rgba(15, 45, 61, .18);
  --shadow-lift: 0 2px 4px rgba(15, 45, 61, .07), 0 18px 38px -16px rgba(15, 45, 61, .26);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  /* z-scale: dropdown < sticky < banner */
  --z-dropdown: 30;
  --z-sticky: 40;
  --z-banner: 50;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-body);
  background: var(--c-bg);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { color: var(--c-ink); line-height: 1.18; text-wrap: balance; margin: 0 0 .6em; }
h1 { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.3rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.15rem); font-weight: 700; letter-spacing: -.012em; }
h3 { font-size: 1.17rem; font-weight: 700; }

p, li { max-width: 68ch; text-wrap: pretty; }
p { margin: 0 0 1.1em; }

a { color: var(--c-accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c-ink); }

strong { color: var(--c-ink); }

.container { max-width: 1140px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.container--narrow { max-width: 820px; }

.section { padding-block: clamp(3.5rem, 6vw, 6rem); }
.section--soft { background: var(--c-bg-soft); }
.section--tight { padding-block: clamp(2.2rem, 4vw, 3.5rem); }

.lede { font-size: 1.16rem; color: var(--c-muted); max-width: 62ch; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--c-accent);
  color: #fff; /* bold ≥1rem on azure: 3.4:1, AA large-text */
  font-family: inherit;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s var(--ease-out), transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.btn:hover { background: var(--c-accent-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}
.btn svg { flex: none; }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .85);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; box-shadow: none; }

.btn--quiet {
  background: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent-deep);
}
.btn--quiet:hover { background: var(--c-accent-tint); color: var(--c-accent-deep); box-shadow: none; }

.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.12rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
}
.site-header__logo { flex: none; display: inline-flex; }
.site-header__logo img { width: 108px; height: 60px; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 1.35rem; margin-left: auto; }
.site-nav a { color: var(--c-ink); text-decoration: none; font-weight: 600; font-size: .97rem; }
.site-nav a:hover { color: var(--c-accent-deep); }
.site-nav .btn { padding: .62rem 1.35rem; font-size: .95rem; }
.site-nav .btn:hover { transform: none; box-shadow: none; }

.nav-group { position: relative; }
.nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  font-size: .97rem;
  color: var(--c-ink);
  cursor: pointer;
  padding: .4rem 0;
}
.nav-group > button svg { transition: transform .18s var(--ease-out); }
.nav-group__menu {
  position: absolute;
  top: calc(100% + .4rem);
  left: 50%;
  translate: -50% 0;
  z-index: var(--z-dropdown);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: .5rem;
  display: none;
}
.nav-group:hover .nav-group__menu,
.nav-group:focus-within .nav-group__menu { display: block; }
.nav-group:hover > button svg,
.nav-group:focus-within > button svg { transform: rotate(180deg); }
.nav-group__menu a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 6px;
  font-size: .95rem;
}
.nav-group__menu a:hover { background: var(--c-bg-soft); }

.lang-switch { display: flex; align-items: center; gap: .15rem; font-size: .88rem; }
.lang-switch a, .lang-switch span {
  padding: .3rem .45rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: var(--c-muted);
}
.lang-switch span[aria-current] { color: #fff; background: var(--c-ink); }
.lang-switch a:hover { background: var(--c-bg-soft); color: var(--c-ink); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--c-ink);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-lift);
    padding: .6rem 1.1rem 1.2rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a, .nav-group > button { padding: .8rem 0; width: 100%; text-align: left; border-bottom: 1px solid var(--c-bg-soft); }
  .nav-group__menu {
    position: static;
    translate: none;
    display: block;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 .9rem;
    min-width: 0;
  }
  .nav-group > button svg { display: none; }
  .site-nav .btn { margin-top: .9rem; }
  .lang-switch { margin-top: .6rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(78vh, 640px);
  isolation: isolate;
  overflow: hidden;
}
.hero--sub { min-height: min(52vh, 440px); }
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 32, 44, .88) 0%, rgba(10, 32, 44, .46) 45%, rgba(10, 32, 44, .12) 78%, rgba(10, 32, 44, .22) 100%);
}
.hero__content { padding-block: clamp(2.6rem, 6vw, 4.5rem); }
.hero__content h1 { color: #fff; max-width: 21ch; }
.hero__content .hero__lede { color: rgba(255, 255, 255, .92); font-size: 1.16rem; max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.hero__meta { color: rgba(255, 255, 255, .78); font-size: .88rem; font-weight: 600; margin-top: 1.4rem; }

@media (prefers-reduced-motion: no-preference) {
  .hero__content > * { animation: rise .6s var(--ease-out) both; }
  .hero__content > *:nth-child(2) { animation-delay: .08s; }
  .hero__content > *:nth-child(3) { animation-delay: .16s; }
  .hero__content > *:nth-child(4) { animation-delay: .24s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- Trust strip ---------- */

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem 2rem;
}
.trust__item { display: flex; gap: .8rem; align-items: flex-start; }
.trust__item svg { flex: none; color: var(--c-accent); margin-top: .18rem; }
.trust__item b { display: block; color: var(--c-ink); font-size: .99rem; }
.trust__item span { font-size: .9rem; color: var(--c-muted); }

/* ---------- Featured tour + cards ---------- */

.feature {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}
.feature__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.feature__img img { width: 100%; height: 100%; object-fit: cover; }
.feature--flip .feature__img { order: 2; }
@media (max-width: 780px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__img { order: 0; }
}

.tour-facts { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; display: grid; gap: .45rem; }
.tour-facts li { display: flex; gap: .6rem; align-items: baseline; font-size: .98rem; }
.tour-facts svg { flex: none; color: var(--c-accent); translate: 0 2px; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.card__body h3, .card__body h2 { margin: 0; font-size: 1.17rem; font-weight: 700; letter-spacing: 0; }
.card__body h3 a, .card__body h2 a { color: inherit; text-decoration: none; }
.card__body h3 a::after, .card__body h2 a::after { content: ''; position: absolute; inset: 0; }
.card { position: relative; }
.card__body p { font-size: .95rem; margin: 0; color: var(--c-muted); }
.card__price { margin-top: auto; padding-top: .7rem; font-weight: 700; color: var(--c-accent-deep); font-size: .97rem; }

/* ---------- Steps (route line) ---------- */

.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps li { counter-increment: step; position: relative; padding-top: 3.4rem; }
.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}
.steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 3.3rem;
  right: .6rem;
  border-top: 3px dotted var(--c-accent);
  opacity: .45;
}
.steps h3 { margin-bottom: .3em; }
.steps p { font-size: .96rem; margin: 0; }
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .steps li { padding-top: 0; padding-left: 3.6rem; min-height: 2.5rem; }
  .steps li:not(:last-child)::after {
    top: 3rem;
    bottom: -1.2rem;
    left: 1.2rem;
    right: auto;
    border-top: 0;
    border-left: 3px dotted var(--c-accent);
  }
}

/* ---------- Navy band ---------- */

.band {
  background: var(--c-bg-deep);
  color: var(--c-on-deep);
  padding-block: clamp(3.2rem, 6vw, 5.5rem);
}
.band h2, .band h3 { color: #fff; }
.band p, .band li { color: var(--c-on-deep); }
.band a:not(.btn) { color: #9ed4ea; }
.band .lede { color: #b9d5e2; }

.quote-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.2rem; }
.quote { margin: 0; padding: 0; }
.quote p { font-size: 1.02rem; font-weight: 600; color: #fff; margin-bottom: .6rem; }
.quote footer { font-size: .88rem; color: #9bb8c6; }
.quote p::before { content: '“'; color: var(--c-accent); font-size: 1.6em; line-height: 0; vertical-align: -.3em; margin-right: .1em; }

/* ---------- Fact box (tour pages) ---------- */

.factbox {
  background: var(--c-accent-tint);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  margin: 1.8rem 0;
}
.factbox h2, .factbox h3 { margin-bottom: .8em; font-size: 1.05rem; }
.factbox dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem 1.6rem; margin: 0; }
.factbox dt { font-size: .82rem; font-weight: 700; color: var(--c-accent-deep); }
.factbox dd { margin: .1rem 0 0; font-weight: 600; color: var(--c-ink); font-size: .99rem; }

.checklist { list-style: none; padding: 0; display: grid; gap: .5rem; }
.checklist li { display: flex; gap: .6rem; align-items: baseline; }
.checklist svg { flex: none; color: var(--c-accent); translate: 0 3px; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: .8rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 0;
}
.section--soft .faq details { border-color: transparent; box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  color: var(--c-ink);
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; color: var(--c-accent); transition: transform .2s var(--ease-out); }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- Breadcrumbs ---------- */

.crumbs { font-size: .85rem; color: var(--c-muted); padding-block: .9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.crumbs li:not(:last-child)::after { content: '›'; margin-left: .45rem; color: var(--c-line); }
.crumbs a { color: var(--c-muted); text-decoration: none; }
.crumbs a:hover { color: var(--c-accent-deep); }

/* ---------- Article / blog ---------- */

.article-head { padding-block: clamp(2rem, 5vw, 3.4rem) 0; }
.article-head .meta { font-size: .88rem; color: var(--c-muted); font-weight: 600; }
.article-body h2 { margin-top: 2em; }
.article-body h3 { margin-top: 1.6em; }
.article-body img { border-radius: var(--radius); margin-block: 1.6rem; }
.article-body ul, .article-body ol { padding-left: 1.3rem; }
.article-body li { margin-bottom: .4em; }

.post-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }

/* ---------- CTA panel ---------- */

.cta-panel { text-align: center; }
.cta-panel h2 { max-width: 26ch; margin-inline: auto; }
.cta-panel .lede { margin-inline: auto; }
.cta-panel .btn { margin-top: 1.4rem; }
.cta-panel .cta-panel__alt { margin-top: 1.1rem; font-size: .92rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--c-bg-deep); color: #b9d0dc; padding-block: clamp(2.8rem, 5vw, 4rem) 1.6rem; font-size: .93rem; }
.site-footer a { color: #cfe4ee; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.2rem; }
.site-footer h3 { color: #fff; font-size: .95rem; margin-bottom: .8em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer__logo img { width: 108px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer__base { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 2.4rem; padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; font-size: .84rem; color: #8fa9b6; }
.site-footer__base a { color: #8fa9b6; }

/* ---------- Sticky mobile CTA ---------- */

.thumb-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky);
  padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-line);
}
.thumb-cta .btn { width: 100%; }
@media (max-width: 767px) {
  .thumb-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- Cookie banner (Consent Mode v2) ---------- */

.consent {
  position: fixed;
  z-index: var(--z-banner);
  inset: auto 0 0 0;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -12px 40px -18px rgba(15, 45, 61, .35);
  padding: 1.2rem clamp(1.1rem, 4vw, 2rem) calc(1.2rem + env(safe-area-inset-bottom));
}
@media (min-width: 720px) {
  .consent { inset: auto auto 1.2rem 1.2rem; max-width: 430px; border: 1px solid var(--c-line); border-radius: var(--radius); }
}
.consent h2 { font-size: 1.02rem; margin-bottom: .4em; }
.consent p { font-size: .88rem; color: var(--c-muted); margin-bottom: .9em; }
.consent__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.consent__actions .btn { padding: .65rem 1.2rem; font-size: .92rem; flex: 1 1 auto; }
.consent__prefs { margin-top: .8rem; font-size: .9rem; }
.consent__prefs summary { cursor: pointer; font-weight: 600; color: var(--c-accent-deep); }
.consent__prefs label { display: flex; gap: .55rem; align-items: center; padding: .45rem 0; }
.consent__prefs input { width: 1.05rem; height: 1.05rem; accent-color: var(--c-accent); }
.consent[hidden] { display: none; }

/* ---------- Utilities ---------- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-head { max-width: 720px; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head p { color: var(--c-muted); }
.center .section-head, .section-head.center { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-ink);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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