/* RelaxInEurope — minimalist, fast, content-first. Static only. */
:root {
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 720px;
  --wide-width: 1040px;
  --accent: #1a4d3a;        /* deep forest green */
  --accent-dark: #133729;
  --accent-soft: #eef3f0;
  --text: #222;
  --text-light: #555;
  --text-faint: #777;
  --bg: #fff;
  --card-bg: #f8f9f7;
  --border: #e5e7e6;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(20, 40, 30, 0.06), 0 8px 24px rgba(20, 40, 30, 0.05);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { max-width: var(--max-width); margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }

/* ---------- Header / nav ---------- */
header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

nav {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand svg { width: 22px; height: 22px; flex: none; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }

/* ---------- Base typography ---------- */
main { max-width: var(--max-width); margin: 0 auto; padding: 2rem 1rem; }

h1, h2, h3 { font-weight: 700; line-height: 1.25; margin-top: 1.8em; margin-bottom: 0.6em; }
h1 { font-size: 2.1rem; letter-spacing: -0.025em; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1.2em; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

.meta { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 1.5rem; letter-spacing: 0.01em; }
.prose { max-width: 66ch; }
.prose p { margin-bottom: 1.15em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.3em; }

.article-header { margin-bottom: 1.5rem; }

/* ---------- Hero (full-bleed image band with overlay) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 60vh, 560px);
  overflow: hidden;
  background: var(--accent-dark);
}
.hero--page { min-height: clamp(240px, 38vh, 380px); }

.hero picture, .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img { object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 20, 0.72) 0%, rgba(12, 28, 20, 0.32) 45%, rgba(12, 28, 20, 0.12) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 2.4rem 1rem 2.6rem;
  color: #fff;
}
.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.hero__content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}
.hero__sub {
  margin: 0;
  max-width: 46ch;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Sections ---------- */
.section { margin-bottom: 3rem; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head h2 { margin-top: 1.4em; }
.link-more { font-size: 0.9rem; white-space: nowrap; }

/* ---------- Destination cards (with photo) ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.25rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; background: var(--accent-soft); }
.card__body { padding: 1rem 1.1rem 1.2rem; }
.card h3 { margin: 0 0 0.4em; font-size: 1.1rem; color: var(--accent); }
.card p { margin: 0; font-size: 0.92rem; color: var(--text-light); line-height: 1.5; }

/* ---------- Inline figure (in prose) ---------- */
figure.inline-photo { margin: 1.8rem 0; }
figure.inline-photo img { width: 100%; border-radius: var(--radius); }
figure.inline-photo figcaption { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.5rem; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--accent-soft); border-radius: var(--radius); padding: 1.6rem 1.5rem; margin: 2.5rem 0; }
.newsletter h2, .newsletter h3 { margin-top: 0; }
.newsletter p { color: var(--text-light); margin-bottom: 1rem; }

.news-form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.news-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
}
.news-form input[type="email"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.news-form button {
  flex: 0 0 auto;
  padding: 0.7rem 1.3rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.news-form button:hover { background: var(--accent-dark); }
.news-form button[disabled] { opacity: 0.6; cursor: default; }
.news-form__msg { flex-basis: 100%; margin: 0.2rem 0 0; font-size: 0.85rem; min-height: 1.1em; }
.news-form__msg.ok { color: var(--accent); }
.news-form__msg.err { color: #b23a3a; }
.news-note { font-size: 0.78rem; color: var(--text-faint); margin: 0.7rem 0 0; }
.news-note a { color: inherit; }

/* visually-hidden helpers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--accent-dark); color: rgba(255,255,255,0.78); margin-top: 4rem; }
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 2.8rem 1rem 1.6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 2rem;
}
.footer-brand .brand { color: #fff; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin: 0; max-width: 32ch; }
.footer-col h4 {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-news h4 { color: rgba(255,255,255,0.55); }
.footer-news p { font-size: 0.88rem; color: rgba(255,255,255,0.72); margin: 0 0 0.9rem; }
.footer-news .news-form input[type="email"] { background: rgba(255,255,255,0.96); border-color: transparent; }
.footer-news .news-note { color: rgba(255,255,255,0.5); }
.footer-news .news-note a { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 1.1rem 1rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom nav { padding: 0; max-width: none; margin: 0; gap: 1.2rem; }
.footer-bottom .sep { color: rgba(255,255,255,0.3); }

/* ---------- Newsletter modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 28, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  border-radius: 14px;
  padding: 2.1rem 1.9rem 1.9rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  transform: translateY(10px) scale(0.99);
  transition: transform 0.2s ease;
}
.modal-backdrop.open .modal { transform: none; }
.modal__eyebrow { margin: 0 0 0.4rem; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.modal h2 { margin: 0 0 0.5rem; font-size: 1.45rem; }
.modal p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.1rem; }
.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--text-faint);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 6px;
  cursor: pointer;
}
.modal__close:hover { background: var(--card-bg); color: var(--text); }
.modal__dismiss { display: inline-block; margin-top: 0.9rem; font-size: 0.82rem; color: var(--text-faint); background: none; border: 0; cursor: pointer; text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .modal, .modal-backdrop, .card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; }
  .footer-brand, .footer-news { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  nav { flex-wrap: wrap; }
  .nav-links { gap: 1rem; font-size: 0.9rem; }
  h1 { font-size: 1.85rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-form button { flex: 1 1 100%; }
}

/* ============================================================
   Webinar landing page, promo band, testimonials
   ============================================================ */

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn--light { background: #fff; color: var(--accent-dark); border-color: #fff; }
.btn--light:hover { background: #f3f6f4; }
.btn--block { display: block; width: 100%; text-align: center; }

/* Homepage promo band */
.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  margin: 2.5rem 0;
}
.promo__text { flex: 1 1 320px; }
.promo__eyebrow { margin: 0 0 0.3rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.promo h2, .promo h3 { margin: 0 0 0.3rem; font-size: 1.35rem; }
.promo p { margin: 0; color: var(--text-light); font-size: 0.96rem; }
.promo .btn { flex: 0 0 auto; }

/* Webinar hero — copy + registration card */
.webinar-hero {
  background: linear-gradient(150deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
}
.webinar-hero__grid {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 3rem 1rem 3.4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}
.webinar-hero__copy h1 { color: #fff; margin: 0.2rem 0 0.7rem; font-size: clamp(2rem, 4vw, 2.9rem); }
.webinar-hero__copy .hero__eyebrow { color: rgba(255,255,255,0.85); }
.webinar-hero__lead { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin: 0 0 1.3rem; max-width: 40ch; }
.webinar-hero__list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.webinar-hero__list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.5rem; color: rgba(255,255,255,0.92); }
.webinar-hero__list li::before { content: "✓"; position: absolute; left: 0; color: #aee0c8; font-weight: 700; }
.session-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.session-badge { font-size: 0.82rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 999px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); }

/* Registration card + form */
.reg-card {
  background: var(--bg);
  color: var(--text);
  border-radius: 14px;
  padding: 1.8rem 1.7rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.reg-card h2 { margin: 0 0 0.2rem; font-size: 1.4rem; }
.reg-card .reg-intro { margin: 0 0 1.2rem; color: var(--text-light); font-size: 0.92rem; }
.reg-form { display: grid; gap: 0.9rem; }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field select {
  font: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
}
.field input:focus-visible, .field select:focus-visible, .session-option:focus-within { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.session-fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.session-fieldset legend { font-size: 0.85rem; font-weight: 600; padding: 0; margin-bottom: 0.2rem; }
.session-option {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.95rem;
}
.session-option input { width: 1.1rem; height: 1.1rem; accent-color: var(--accent); }
.session-option:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.reg-form .news-form__msg { margin: 0.2rem 0 0; font-size: 0.88rem; min-height: 1.1em; }
.reg-form .news-form__msg.ok { color: var(--accent); }
.reg-form .news-form__msg.err { color: #b23a3a; }
.reg-note { font-size: 0.78rem; color: var(--text-faint); margin: 0.8rem 0 0; }
.reg-note a { color: inherit; }
.reg-banner { background: var(--accent-soft); border: 1px solid #cfe3d8; border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: 0.8rem; color: var(--accent-dark); font-size: 0.95rem; line-height: 1.5; }
.reg-banner strong { color: var(--accent-dark); }

/* Topics */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: 1.4rem; }
.topic { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.2rem 1.3rem; }
.topic__icon { width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 8px; background: var(--accent-soft); margin-bottom: 0.7rem; font-size: 1.4rem; line-height: 1; }
.topic__icon svg { width: 1.3rem; height: 1.3rem; }
.topic h3 { margin: 0 0 0.3rem; font-size: 1.1rem; }
.topic p { margin: 0; font-size: 0.93rem; color: var(--text-light); line-height: 1.55; }

/* Host */
.host { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.7rem; }
.host__photo { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow); }
.host__name { margin: 0; font-size: 1.25rem; }
.host__role { margin: 0.1rem 0 0.7rem; font-size: 0.85rem; color: var(--accent); font-weight: 600; letter-spacing: 0.02em; }
.host p { margin: 0; color: var(--text-light); font-size: 0.96rem; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: 1.4rem; }
.testimonial { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.3rem; box-shadow: var(--shadow); }
.testimonial__quote { margin: 0 0 1rem; font-size: 1.02rem; line-height: 1.55; }
.testimonial__person { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 1rem; flex: none; }
.testimonial__name { margin: 0; font-size: 0.95rem; font-weight: 600; }
.testimonial__loc { margin: 0; font-size: 0.82rem; color: var(--text-faint); }
.stars { color: #d99a2b; letter-spacing: 0.05em; font-size: 0.9rem; margin-bottom: 0.6rem; }

/* FAQ */
.faq { margin-top: 1.2rem; }
.faq details { border-bottom: 1px solid var(--border); padding: 0.2rem 0; }
.faq summary { cursor: pointer; padding: 0.9rem 0; font-weight: 600; font-size: 1.02rem; list-style: none; position: relative; padding-right: 1.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0.2rem; top: 0.8rem; font-weight: 400; font-size: 1.3rem; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1rem; color: var(--text-light); }

@media (max-width: 760px) {
  .webinar-hero__grid { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.2rem 1rem 2.6rem; }
  .host { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .reg-row { grid-template-columns: 1fr; }
  .promo .btn { width: 100%; text-align: center; }
}

/* ============================================================
   Articles — index cards, byline, full-width webinar banner
   ============================================================ */

/* Index card meta line (byline + category) */
.card__meta { margin: 0.5rem 0 0; font-size: 0.78rem; color: var(--text-faint); }
.card__cat { display: inline-block; margin-bottom: 0.6rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* Byline on an article page */
.byline { display: flex; align-items: center; gap: 0.7rem; margin: 0 0 1.8rem; }
.byline__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.byline__who { margin: 0; font-size: 0.92rem; font-weight: 600; }
.byline__meta { margin: 0; font-size: 0.82rem; color: var(--text-faint); }

.article-cat { display: inline-block; margin-bottom: 0; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

/* Full-bleed webinar banner injected inside an article */
.webinar-banner {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(150deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  padding: 2.4rem 1rem;
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}
.webinar-banner__inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.webinar-banner__eyebrow { margin: 0 0 0.4rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.webinar-banner h2 { margin: 0 0 0.5rem; color: #fff; font-size: 1.5rem; }
.webinar-banner p { margin: 0 0 1.2rem; color: rgba(255,255,255,0.9); }

/* Prev/next + back links under an article */
.article-foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.95rem; }

/* ============================================================
   Destinations index — one full-width row per place
   ============================================================ */
.dest-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.25rem; }
.dest-row {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.dest-row:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.dest-row picture { position: relative; min-height: 210px; background: var(--accent-soft); }
.dest-row__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-row__body { padding: 1.5rem 1.6rem; display: flex; flex-direction: column; justify-content: center; }
.dest-row__region { margin: 0 0 0.35rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.dest-row__name { margin: 0 0 0.5rem; font-size: 1.45rem; line-height: 1.2; color: var(--text); }
.dest-row__desc { margin: 0 0 1.1rem; color: var(--text-light); font-size: 0.96rem; line-height: 1.55; }
.dest-row__cta { align-self: flex-start; display: inline-block; padding: 0.5rem 1rem; border: 1px solid var(--accent); border-radius: 6px; color: var(--accent); font-weight: 600; font-size: 0.9rem; transition: background 0.15s ease, color 0.15s ease; }
.dest-row:hover .dest-row__cta { background: var(--accent); color: #fff; }

@media (max-width: 560px) {
  .dest-row { grid-template-columns: 1fr; }
  .dest-row picture { min-height: 0; aspect-ratio: 16 / 9; }
}

/* ---------- Payment modal (Stripe Elements) ---------- */
.pay-summary { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.8rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pay-summary strong { font-size: 1.25rem; }
.pay-session { font-size: 0.88rem; color: var(--text-light); margin: 0.7rem 0 1.2rem; min-height: 1em; }
.pay-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; }
.card-element { padding: 0.85rem; border: 1px solid var(--border); border-radius: 7px; background: #fff; }
.card-element.StripeElement--focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.card-element.StripeElement--invalid { border-color: #b23a3a; }
.card-errors { color: #b23a3a; font-size: 0.85rem; min-height: 1.1em; margin: 0.4rem 0 0; }
#pay-btn { margin-top: 1rem; }
#pay-msg { margin: 0.4rem 0 0; }
#pay-msg.ok { color: var(--accent); }
#pay-msg.err { color: #b23a3a; }
