/* ================================================================
   Vindrose Rejser — design system
   Mirrors design_handoff_vindrose/html-references/assets/styles.css
   ================================================================ */

:root {
  /* Brand */
  --vr-blue: #1BA6D6;
  --vr-blue-dark: #0E7FA8;
  --vr-navy: #0D3B5C;
  --vr-navy-deep: #082840;
  --vr-ink: #1A2332;
  --vr-ink-soft: #3A4555;
  --vr-muted: #6B7684;
  --vr-cream: #FAF6EF;
  --vr-cream-warm: #F3ECDF;
  --vr-sand: #E8DFD1;
  --vr-sand-line: #DCD2C1;
  --vr-white: #FFFFFF;
  --vr-accent-terracotta: #C87A5B;
  --vr-accent-olive: #7A8B5E;

  /* Aliases (legacy theme class names kept working) */
  --c-primary: var(--vr-blue);
  --c-primary-hover: var(--vr-blue-dark);
  --c-secondary: var(--vr-navy);
  --c-accent: var(--vr-blue-dark);
  --c-text: var(--vr-ink);
  --c-ink-soft: var(--vr-ink-soft);
  --c-muted: var(--vr-muted);
  --c-navy-deep: var(--vr-navy-deep);
  --c-cream: var(--vr-cream);
  --c-cream-warm: var(--vr-cream-warm);
  --c-sand: var(--vr-sand);
  --c-sand-line: var(--vr-sand-line);
  --c-terracotta: var(--vr-accent-terracotta);
  --c-olive: var(--vr-accent-olive);
  --c-white: var(--vr-white);
  --c-footer-text: #B8C7D6;
  --c-footer-dim: #8195AA;
  --c-topbar-text: #E6EEF5;

  /* Type */
  --font-serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-sans: var(--font-sans);
  --f-serif: var(--font-serif);

  /* Radii + shadow */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(13, 59, 92, 0.04), 0 8px 24px rgba(13, 59, 92, 0.06);
  --shadow-hover: 0 2px 4px rgba(13, 59, 92, 0.06), 0 16px 40px rgba(13, 59, 92, 0.10);
  --sh-card: var(--shadow-card);
  --sh-card-hover: var(--shadow-hover);

  /* Layout */
  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);
  --cw-max: var(--maxw);
  --cw-narrow: 880px;
  --cw-pad: var(--pad-x);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-med: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.6;
  color: var(--vr-ink);
  background: var(--vr-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--vr-navy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--vr-blue-dark); }
button, input, select, textarea { font: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--vr-navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  font-variation-settings: "SOFT" 30, "opsz" 48;
}
h1 { font-size: clamp(40px, 5.2vw, 68px); font-weight: 400; }
h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 400; }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: 20px; font-weight: 500; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--vr-blue-dark);
}
.eyebrow--on-hero {
  color: var(--vr-white);
  letter-spacing: 0.18em;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--on-hero::before {
  content: "";
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--vr-blue);
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--vr-ink-soft);
  max-width: 620px;
}
.lede--on-hero {
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin-top: 20px;
}

.meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-muted);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow { max-width: var(--cw-narrow); }

.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--xl { padding: 120px 0; }
.section--cream { background: var(--vr-cream-warm); }
.section--cream-warm { background: var(--vr-cream-warm); }
.section--navy { background: var(--vr-navy-deep); color: #E6EEF5; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: white; }
.section--navy .eyebrow { color: var(--vr-blue); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .left,
.section-head__text { max-width: 640px; }
.section-head h2 { margin-top: 10px; }
.section-head p {
  color: var(--vr-ink-soft);
  font-size: 18px;
  margin: 14px 0 0;
  max-width: 560px;
}
.section-head__eyebrow { margin-bottom: 14px; display: inline-block; }

.section-head--center {
  display: block;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary { background: var(--vr-blue); color: white; }
.btn--primary:hover { background: var(--vr-blue-dark); color: white; }
.btn--outline {
  background: transparent;
  color: var(--vr-navy);
  border-color: var(--vr-navy);
}
.btn--outline:hover { background: var(--vr-navy); color: white; }
.btn--outline-light {
  background: transparent;
  color: var(--vr-white);
  border-color: rgba(255, 255, 255, 0.9);
}
.btn--outline-light:hover { background: var(--vr-white); color: var(--vr-navy); }
.btn--ghost {
  background: transparent;
  color: var(--vr-navy);
  padding: 8px 0;
  border: 0;
}
.btn--ghost:hover { color: var(--vr-blue-dark); }
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: 15px; }

/* CTA button — gradient, lift + arrow slide on hover */
.btn--cta {
  background: linear-gradient(135deg, var(--vr-blue) 0%, var(--vr-blue-dark) 100%);
  color: #fff;
  border: 0;
  padding: 13px 22px 13px 24px;
  box-shadow: 0 6px 16px -6px rgba(14, 127, 168, 0.55), 0 1px 2px rgba(13, 59, 92, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
}
.btn--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 55%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn--cta .btn__arrow {
  display: inline-block;
  width: 14px;
  transition: transform var(--t-fast);
  will-change: transform;
}
.btn--cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(14, 127, 168, 0.7), 0 2px 4px rgba(13, 59, 92, 0.15);
  filter: saturate(1.05);
}
.btn--cta:hover::before { opacity: 1; }
.btn--cta:hover .btn__arrow { transform: translateX(4px); }
.btn--cta:active { transform: translateY(0); }

/* ===== Topbar ===== */
.topbar {
  background: var(--vr-navy-deep);
  color: var(--c-topbar-text);
  font-size: 14px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}
.topbar a { color: var(--c-topbar-text); }
.topbar a:hover { color: var(--vr-blue); }
.topbar .left, .topbar .right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .dot { opacity: 0.4; }

@media (max-width: 640px) {
  .topbar .container { flex-direction: column; gap: 6px; text-align: center; }
  .topbar { font-size: 13px; padding: 10px 0; }
}

/* ===== Header ===== */
.site-header {
  background: var(--vr-white);
  border-bottom: 1px solid var(--vr-sand-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo .custom-logo-link { display: inline-flex; }
.site-header__logo img,
.site-header__logo .custom-logo { height: 52px; width: auto; max-width: none; display: block; }

.nav-primary {
  display: flex;
  gap: 28px;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-primary li { list-style: none; display: inline-flex; }
.nav-primary a {
  color: var(--vr-ink);
  padding: 6px 0;
  position: relative;
  display: inline-block;
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vr-blue);
  transform: translateX(-50%) scale(0);
  transition: transform var(--t-fast);
}
.nav-primary a:hover { color: var(--vr-blue-dark); }
.nav-primary a:hover::after { transform: translateX(-50%) scale(0.6); opacity: .5; }
.nav-primary .current-menu-item > a,
.nav-primary .current-menu-parent > a,
.nav-primary .current-page-ancestor > a { color: var(--vr-blue-dark); }
.nav-primary .current-menu-item > a::after,
.nav-primary .current-menu-parent > a::after,
.nav-primary .current-page-ancestor > a::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.site-header__actions { display: flex; gap: 12px; align-items: center; }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--vr-navy);
}
.hamburger svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-primary, .site-header__actions { display: none; }
  .hamburger { display: inline-flex; }
  .site-header__inner.is-open .nav-primary {
    display: flex;
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--vr-white);
    flex-direction: column;
    gap: 0;
    padding: 24px 20px;
    overflow: auto;
    z-index: 100;
  }
  .site-header__inner.is-open .nav-primary a {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--vr-sand-line);
  }
  .site-header__inner.is-open .site-header__actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: auto 0 0 0;
    background: var(--vr-white);
    padding: 20px;
    border-top: 1px solid var(--vr-sand-line);
    z-index: 100;
  }
  .site-header__inner.is-open .btn { width: 100%; justify-content: center; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 64, 0.15) 0%, rgba(8, 40, 64, 0.15) 40%, rgba(8, 40, 64, 0.75) 100%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; padding: 80px var(--pad-x) 60px; width: 100%; }
.hero__content { position: relative; max-width: 780px; }
.hero h1 { color: white; max-width: 780px; }
.hero__actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero--home { min-height: 680px; }
@media (max-width: 720px) { .hero--home { min-height: 520px; } }
@media (max-width: 480px) { .hero--home { min-height: 460px; } }

/* Slideshow — hver slide har sin egen loopende video + overlay gradient */
.hero--slideshow { position: relative; overflow: hidden; }
.hero--slideshow::before { display: none; } /* base hero gradient; each slide has its own */
.hero--slideshow .hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  opacity: 0;
  transition: opacity .8s ease;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero--slideshow .hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero--slideshow .hero__slide .hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero--slideshow .hero__slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,40,64,0.15) 0%, rgba(8,40,64,0.15) 40%, rgba(8,40,64,0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--slideshow .hero__slide > .container {
  position: relative; z-index: 2;
  padding: 80px var(--pad-x) 60px;
  width: 100%;
}
.hero--slideshow .hero__dots {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 24px;
  display: flex; gap: 12px;
  z-index: 4;
  pointer-events: auto;
}
.hero--slideshow .hero__dot {
  width: 44px; height: 4px;
  background: rgba(255,255,255,.55);
  border: 0; padding: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero--slideshow .hero__dot:hover { background: rgba(255,255,255,.85); }
.hero--slideshow .hero__dot.is-active { background: var(--vr-blue); width: 56px; }
@media (prefers-reduced-motion: reduce) {
  .hero--slideshow .hero__video { display: none; }
  .hero--slideshow .hero__slide { transition: none; }
}
.hero--sm { min-height: 520px; }
.hero--page {
  min-height: auto;
  padding: 70px 0 56px;
  background: var(--vr-cream);
  border-bottom: 1px solid var(--vr-sand-line);
  color: var(--vr-ink);
  text-align: left;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}
.hero--page::before { display: none; }
.hero--page h1 { color: var(--vr-navy-deep); max-width: 860px; margin-bottom: 18px; }
.hero--page .eyebrow { color: var(--vr-blue-dark); display: inline-block; margin-bottom: 18px; }
.hero--page .eyebrow::before { display: none; }
.hero--page .lede {
  color: var(--vr-ink-soft);
  max-width: 720px;
  font-size: 20px;
  margin: 0;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 18px 0;
  font-size: 15px;
  color: var(--vr-muted);
  background: var(--vr-cream);
  border-bottom: 1px solid var(--vr-sand-line);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline;
}
.breadcrumbs li { display: inline; }
.breadcrumbs a { color: var(--vr-muted); }
.breadcrumbs a:hover { color: var(--vr-blue-dark); }
.breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }
.breadcrumbs .current,
.breadcrumbs span:last-child { color: var(--vr-navy); }

/* ===== Grids ===== */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }

.card-grid { display: grid; gap: 28px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
}

/* ===== Destination cards ===== */
.card,
.dest-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--vr-ink);
}
.card:hover,
.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--vr-ink);
}
.card__image,
.dest-card .img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-color: var(--vr-sand);
}
.card__body,
.dest-card .body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__eyebrow,
.dest-card .region {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vr-blue-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.card__title,
.dest-card h3 {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--vr-navy-deep);
  margin: 0 0 8px;
  line-height: 1.25;
}
.card__excerpt,
.dest-card .excerpt {
  color: var(--vr-ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.card__footer,
.dest-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--vr-sand-line);
  font-size: 15px;
  font-family: var(--font-sans);
}
.card__footer-left { color: var(--vr-navy); font-weight: 600; }
.card__footer-left small { display: block; color: var(--vr-muted); font-weight: 400; font-size: 13px; }
.card__footer-right,
.dest-card .meta .arrow { color: var(--vr-blue-dark); font-weight: 600; }

/* ===== Country card (horizontal) ===== */
.country-card,
.card-country {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 180px 1fr;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.country-card:hover,
.card-country:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); color: inherit; }
.country-card .img,
.card-country__img {
  background-size: cover;
  background-position: center;
  height: 100%;
  object-fit: cover;
}
.country-card .body,
.card-country__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.country-card .body h3 { font-size: 26px; margin-bottom: 6px; }
.country-card .body .sub { color: var(--vr-ink-soft); font-size: 15px; }
.country-card .body .count {
  font-size: 13px;
  color: var(--vr-blue-dark);
  font-weight: 600;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .country-card, .card-country { grid-template-columns: 110px 1fr; }
}

/* ===== Theme cards ===== */
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .theme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .theme-grid { grid-template-columns: 1fr; } }

.theme-card,
.card-theme {
  background: white;
  padding: 28px 22px;
  border-radius: var(--r-md);
  text-align: center;
  color: var(--vr-navy);
  transition: all 0.2s ease;
  border: 1px solid var(--vr-sand-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.theme-card:hover,
.card-theme:hover {
  background: white;
  border-color: var(--vr-blue);
  color: var(--vr-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(13, 59, 92, 0.18);
}
.theme-card .icon,
.card-theme__icon {
  width: 58px;
  height: 58px;
  background: var(--vr-cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-blue-dark);
  transition: background 0.2s ease, color 0.2s ease;
}
.theme-card:hover .icon {
  background: var(--vr-blue);
  color: #fff;
}
.theme-card h4,
.card-theme__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  margin: 0;
  line-height: 1.3;
}
.theme-card__count {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--vr-muted, var(--vr-ink-soft));
  letter-spacing: 0.02em;
}

/* ===== Region cards ===== */
.region-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  color: var(--vr-ink);
  text-decoration: none;
  display: block;
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.region-card .img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.region-card .body { padding: 24px 26px 28px; }
.region-card h3 { margin-bottom: 8px; }
.region-card .excerpt { color: var(--vr-ink-soft); font-size: 16px; line-height: 1.55; margin-bottom: 14px; }
.region-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-card ul li {
  font-size: 14px;
  background: var(--vr-cream-warm);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--vr-navy);
}
.region-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--vr-sand-line);
  font-size: 14px;
  color: var(--vr-muted);
}
.region-card .foot .go { color: var(--vr-blue-dark); font-weight: 600; }

/* ===== Page head (used by hero--page variant above) ===== */
.page-head {
  padding: 70px 0 56px;
  background: var(--vr-cream);
  border-bottom: 1px solid var(--vr-sand-line);
}
.page-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-head h1 { margin-bottom: 18px; }
.page-head p {
  font-size: 20px;
  color: var(--vr-ink-soft);
  max-width: 720px;
  line-height: 1.55;
  margin: 0;
}

/* ===== Chips / tags ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--vr-cream-warm);
  color: var(--vr-navy);
  font-size: 14px;
  font-weight: 500;
}
.chip--blue { background: rgba(27, 166, 214, 0.12); color: var(--vr-blue-dark); }

/* ===== Values (Hvorfor Vindrose) ===== */
.value {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value__icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 166, 214, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-blue-dark);
}
.value__title {
  font-size: 20px;
  color: var(--vr-navy-deep);
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
}
.value__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--vr-ink-soft);
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--vr-navy-deep);
  color: #B8C7D6;
  padding: 70px 0 0;
  font-size: 16px;
  line-height: 1.6;
}
.site-footer a { color: #B8C7D6; display: block; padding: 4px 0; }
.site-footer a:hover { color: white; }
.site-footer h4 {
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0 0 18px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.site-footer__logo img {
  height: 48px;
  width: auto;
  display: block;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}
.footer-wordmark {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  color: white;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 30, "opsz" 48;
}
.footer-wordmark em {
  font-style: italic;
  color: var(--vr-blue);
  font-weight: 400;
}
.site-footer__brand p {
  color: #B8C7D6;
  font-size: 16px;
  margin: 18px 0 0;
  max-width: 340px;
  line-height: 1.55;
}
.site-footer__list,
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { list-style: none; }
.site-footer__list li a,
.site-footer li a { padding: 4px 0; display: block; }
.site-footer__contact { display: grid; gap: 4px; margin-top: 12px; }
.site-footer__contact a,
.site-footer__contact span { display: inline-flex; align-items: center; gap: 7px; padding: 2px 0; }

.site-footer__bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #8195AA;
}

/* ===== Footer newsletter band ===== */
.site-footer__cta {
  background: linear-gradient(135deg, var(--vr-blue) 0%, var(--vr-blue-dark) 100%);
  padding: 56px 0;
  margin-bottom: 64px;
}
.site-footer__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.site-footer__cta .eyebrow { color: rgba(255,255,255,0.8); }
.site-footer__cta h3 {
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  margin: 8px 0 10px;
}
.site-footer__cta p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.site-footer__newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}
.site-footer__newsletter input {
  background: rgba(255,255,255,0.95);
  border: 0;
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--vr-ink);
  outline: none;
}
.site-footer__newsletter input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.35); }
.site-footer__newsletter .btn {
  background: var(--vr-navy-deep);
  color: white;
  box-shadow: none;
}
.site-footer__newsletter .btn:hover { background: var(--vr-ink); }
.site-footer__newsletter .btn::before { display: none; }
@media (max-width: 860px) {
  .site-footer__cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__newsletter { grid-template-columns: 1fr; }
}

.site-footer__hours {
  color: #8195AA;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 2px 0;
}

.trust-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer__brand .trust-badges { margin-top: 22px; }
.trust-badge {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: #B8C7D6;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 960px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== Forms ===== */
.form { display: grid; gap: 20px; }
.form__row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.form__row--quarter { grid-template-columns: 1fr 1fr 1fr 1fr; }
@media (max-width: 640px) { .form__row, .form__row--quarter { grid-template-columns: 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--vr-navy-deep);
}
.form__label .required { color: var(--vr-accent-terracotta); }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  background: white;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--vr-ink);
  transition: border-color var(--t-fast);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--vr-blue);
  box-shadow: 0 0 0 3px rgba(27, 166, 214, 0.15);
}
.form textarea { resize: vertical; min-height: 120px; }
.form__checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--vr-ink-soft);
}
.form__checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.form__submit { justify-self: flex-start; margin-top: 10px; }

.form__success {
  padding: 18px 22px;
  background: rgba(27, 166, 214, 0.08);
  border: 1px solid var(--vr-blue);
  border-radius: var(--r-md);
  color: var(--vr-navy);
}
.form__error {
  padding: 18px 22px;
  background: rgba(200, 122, 91, 0.08);
  border: 1px solid var(--vr-accent-terracotta);
  border-radius: var(--r-md);
  color: var(--vr-accent-terracotta);
}

/* ===== Contact sidebar / single trip ===== */
.contact-box {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}
.contact-box dl { margin: 0; display: grid; gap: 12px; }
.contact-box dt { color: var(--vr-muted); font-family: var(--font-sans); font-size: 13px; font-weight: 500; }
.contact-box dd { margin: 0 0 8px; color: var(--vr-navy-deep); font-family: var(--font-sans); font-size: 15px; font-weight: 600; }

/* ===== Utility ===== */
.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;
}
.divider-line { height: 1px; background: var(--vr-sand-line); border: 0; margin: 48px 0; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mt-6 { margin-top: 60px; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 20px; }
.gap-4 { gap: 40px; }

/* ===== Block editor content ===== */
.block-content { margin: 0 auto; max-width: var(--cw-narrow); padding: 60px var(--pad-x); }
.block-content h2, .block-content h3, .block-content h4 { margin-top: 1.5em; }
.block-content > *:first-child { margin-top: 0; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2em; padding-left: 1.5em; }
.entry-content li { margin: 0.3em 0; }
.entry-content h2 { margin: 48px 0 18px; font-size: clamp(26px, 3vw, 34px); font-family: var(--font-serif); font-weight: 500; color: var(--vr-navy); }
.entry-content h3 { margin: 36px 0 12px; font-size: clamp(20px, 2vw, 24px); font-family: var(--font-serif); font-weight: 500; color: var(--vr-navy); }
.entry-content h4 { margin: 28px 0 10px; font-size: 18px; font-family: var(--font-sans); font-weight: 700; color: var(--vr-navy); letter-spacing: -0.005em; }
.entry-content p { margin: 0 0 1.1em; font-size: 17px; line-height: 1.75; color: var(--vr-ink); }
/* The first heading in a migrated body (the "tagline" paragraph that the
   bundler hoisted from the original <h1>) renders as a display-sized lede. */
.entry-content > h2:first-child,
.entry-content > h3:first-child {
  margin-top: 0;
  margin-bottom: 36px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--vr-navy-deep);
}
.entry-content a { color: var(--vr-blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover { color: var(--vr-navy); }

/* Inline images / WP captions inside body text. */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  display: block;
  margin: 32px auto;
  box-shadow: 0 8px 24px -14px rgba(13, 59, 92, 0.35);
}
.entry-content .wp-caption,
.entry-content figure {
  max-width: 100%;
  margin: 36px auto;
  text-align: center;
}
.entry-content .wp-caption img,
.entry-content figure img { margin: 0 auto; }
.entry-content .wp-caption-text,
.entry-content figcaption {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-ink-soft);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}
.entry-content .alignleft { float: left; margin: 8px 24px 16px 0; max-width: 48%; }
.entry-content .alignright { float: right; margin: 8px 0 16px 24px; max-width: 48%; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .entry-content .alignleft, .entry-content .alignright {
    float: none; max-width: 100%; margin: 24px auto;
  }
}

/* ===== Home: USPs band ===== */
.usps { background: white; border-bottom: 1px solid var(--vr-sand-line); }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp {
  padding: 26px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid var(--vr-sand-line);
}
.usp:last-child { border-right: 0; }
.usp .ic {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(27, 166, 214, 0.12);
  color: var(--vr-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--vr-navy); margin: 0 0 2px; }
.usp p { margin: 0; font-size: 14px; color: var(--vr-ink-soft); line-height: 1.45; }
@media (max-width: 960px) {
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .usp:nth-child(2) { border-right: 0; }
  .usp:nth-child(-n+2) { border-bottom: 1px solid var(--vr-sand-line); }
}

/* ===== Home: Editorial split ===== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.editorial .image {
  background-size: cover;
  background-position: center;
  min-height: 520px;
}
.editorial .text {
  background: var(--vr-cream-warm);
  padding: 72px clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial .text p { font-size: 18px; color: var(--vr-ink-soft); line-height: 1.65; margin: 18px 0; }
.editorial .signature {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--vr-sand-line);
}
.editorial .signature .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--vr-sand);
}
.editorial .signature b { display: block; color: var(--vr-navy); font-family: var(--font-serif); font-size: 20px; font-weight: 500; }
.editorial .signature span { font-size: 14px; color: var(--vr-ink-soft); }
@media (max-width: 960px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial .image { min-height: 320px; }
}

/* ===== Home: Country buttons ===== */
.country-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; grid-auto-flow: dense; }
.country-btn {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: white;
  text-decoration: none;
}
.country-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: white; }
.country-btn .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.country-btn:hover .img { transform: scale(1.05); }
.country-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 64, 0) 35%, rgba(8, 40, 64, 0.75) 100%);
}
.country-btn .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.country-btn .body span {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}
.country-btn .body::after {
  content: "→";
  color: white;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.country-btn:hover .body::after { transform: translateX(4px); }
.country-btn.featured { grid-column: span 2; grid-row: span 2; }
.country-btn.featured .body span { font-size: 44px; }
.country-btn.wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.country-btn.wide .body span { font-size: 32px; }
@media (max-width: 960px) {
  .country-buttons { grid-template-columns: repeat(2, 1fr); }
  .country-btn.featured { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; }
  .country-btn.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .country-buttons { grid-template-columns: 1fr; }
  .country-btn.featured,
  .country-btn.wide { grid-column: auto; aspect-ratio: 16 / 9; }
}

/* ===== Contact: Process steps (horizontal, navy section) ===== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, rgba(27,166,214,0.15), var(--vr-blue), rgba(27,166,214,0.15));
  z-index: 0;
}
@media (max-width: 860px) {
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
}
.process__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px);
}
.process__num {
  counter-increment: step;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vr-blue) 0%, var(--vr-blue-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  box-shadow: 0 8px 20px -8px rgba(27, 166, 214, 0.6);
}
.process__num::before { content: counter(step); }
.process__title {
  font-family: var(--font-serif);
  color: white;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
}
.process__text {
  color: rgba(230, 238, 245, 0.82);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Contact: action cards (clickable pillar variant) ===== */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .contact-actions { grid-template-columns: 1fr; } }
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-action:hover {
  transform: translateY(-3px);
  border-color: var(--vr-blue);
  box-shadow: 0 14px 30px -14px rgba(13, 59, 92, 0.2);
  color: inherit;
}
.contact-action__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vr-blue) 0%, var(--vr-blue-dark) 100%);
  color: white;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px -6px rgba(14, 127, 168, 0.55);
}
.contact-action__label {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vr-blue-dark);
  font-weight: 600;
}
.contact-action__value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--vr-navy);
  line-height: 1.25;
  margin: 4px 0 2px;
}
.contact-action__meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-ink-soft);
}

/* ===== Contact: Form card wrapper ===== */
.form-card {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 8px 32px -16px rgba(13, 59, 92, 0.14);
  max-width: 820px;
  margin: 0 auto;
}

/* ===== About: Values / Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--vr-blue);
  box-shadow: 0 14px 30px -14px rgba(13, 59, 92, 0.2);
}
.pillar__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--vr-blue) 0%, var(--vr-blue-dark) 100%);
  color: white;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px -6px rgba(14, 127, 168, 0.55);
}
.pillar h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--vr-navy);
  font-size: 22px;
  margin: 0 0 10px;
}
.pillar p {
  color: var(--vr-ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ===== About: Timeline ===== */
.timeline {
  position: relative;
  padding: 8px 0;
  display: grid;
  gap: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--vr-blue), rgba(27, 166, 214, 0.15));
}
.timeline__item {
  position: relative;
  padding-left: 44px;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vr-blue);
  box-shadow: 0 0 0 4px rgba(27, 166, 214, 0.2);
}
.timeline__year {
  display: block;
  font-family: var(--font-serif);
  color: var(--vr-blue);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.timeline__title {
  font-family: var(--font-sans);
  font-weight: 700;
  color: white;
  font-size: 17px;
  margin: 0 0 4px;
}
.timeline__text {
  color: rgba(230, 238, 245, 0.8);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* ===== About: Team cards ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.team-card__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--vr-cream-warm);
}
.team-card__photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--vr-cream-warm) 0%, var(--vr-sand) 100%);
  color: var(--vr-navy);
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.team-card__body {
  padding: 18px 22px 22px;
}
.team-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--vr-navy);
  margin: 0 0 4px;
  line-height: 1.25;
}
.team-card__role {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vr-blue-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.team-card__email {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-ink-soft);
  text-decoration: none;
  word-break: break-all;
}
.team-card__email:hover { color: var(--vr-blue-dark); }

/* ===== About: Founder feature ===== */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-card);
  align-items: stretch;
}
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } }
.founder__image {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.founder__body {
  padding: 56px clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder__quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--vr-navy-deep);
  font-weight: 500;
  margin: 0 0 20px;
  position: relative;
}
.founder__quote::before {
  content: "“";
  position: absolute;
  top: -28px; left: -12px;
  font-family: var(--font-serif);
  color: var(--vr-blue);
  opacity: 0.25;
  font-size: 100px;
  line-height: 1;
}
.founder__text {
  color: var(--vr-ink-soft);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.founder__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--vr-sand-line);
}
.founder__sig b {
  display: block;
  font-family: var(--font-serif);
  color: var(--vr-navy);
  font-size: 18px;
  font-weight: 500;
}
.founder__sig span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--vr-ink-soft);
  letter-spacing: 0.04em;
}

/* ===== Home: Group travel band ===== */
.group-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.group-band .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 520px;
}
.group-band .gallery div {
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
}
.group-band .gallery .tall { grid-row: span 2; }
@media (max-width: 960px) {
  .group-band { grid-template-columns: 1fr; }
  .group-band .gallery { height: 360px; }
}
.group-band__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 16px;
}
.group-band__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.group-band__list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--vr-blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px 12px no-repeat;
  flex-shrink: 0;
}
.group-band__list .t {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--vr-navy);
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 3px;
}
.group-band__list .d {
  display: block;
  color: var(--vr-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== Home: Quote band ===== */
.quote-band {
  background: var(--vr-navy-deep);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.quote-band .q {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto;
  color: white;
}
.quote-band .q::before {
  content: "\201C";
  display: block;
  font-size: 80px;
  color: var(--vr-blue);
  line-height: 0.5;
  margin-bottom: 20px;
}
.quote-band .attr {
  margin-top: 32px;
  font-size: 15px;
  color: #B8C7D6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.quote-band .stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.quote-band .stats div { text-align: center; }
.quote-band .stats .num {
  font-family: var(--font-serif);
  font-size: 54px;
  color: var(--vr-blue);
  line-height: 1;
}
.quote-band .stats .lab {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8C7D6;
  margin-top: 8px;
}

/* ===== Home: Newsletter band ===== */
.newsletter {
  background: white;
  padding: 70px 0;
  border-top: 1px solid var(--vr-sand-line);
  border-bottom: 1px solid var(--vr-sand-line);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.news-form { display: flex; gap: 10px; }
.news-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--vr-ink);
  background: var(--vr-cream);
}
.news-form input:focus { outline: 0; border-color: var(--vr-blue); }
@media (max-width: 760px) { .newsletter-inner { grid-template-columns: 1fr; } }

/* ===== Summary strip (page-rejsemal) ===== */
.summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0 40px;
  border-bottom: 1px solid var(--vr-sand-line);
  margin-bottom: 48px;
}
.summary-strip .stat .num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--vr-navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.summary-strip .stat .lbl { font-family: var(--font-sans); font-size: 13px; color: var(--vr-muted); }
@media (max-width: 720px) { .summary-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 420px) { .summary-strip { grid-template-columns: 1fr; gap: 20px; text-align: center; } }

/* ===== Country grid (page-rejsemal) ===== */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .country-grid { grid-template-columns: 1fr; } }

.country-card-big {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-card);
}
.country-card-big:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: inherit; }
.country-card-big .img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.country-card-big .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 64, 0) 55%, rgba(8, 40, 64, 0.55) 100%);
}
.country-card-big .flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--vr-navy);
  letter-spacing: 0.04em;
  z-index: 2;
}
.country-card-big .flag .emoji { font-size: 20px; }
.country-card-big .body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.country-card-big h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--vr-navy);
  letter-spacing: -0.01em;
}
.country-card-big .lede {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vr-ink-soft);
  margin: 0;
  max-width: none;
}
.country-card-big .regions-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.country-card-big .regions-row span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--vr-ink-soft);
  background: var(--vr-cream-warm);
  padding: 4px 10px;
  border-radius: 999px;
}
.country-card-big .regions-row span.more { background: none; color: var(--vr-muted); padding-left: 0; }
.country-card-big .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--vr-sand-line);
  font-family: var(--font-sans);
  font-size: 13.5px;
}
.country-card-big .foot .counts { color: var(--vr-muted); }
.country-card-big .foot .counts strong { color: var(--vr-navy); font-weight: 600; }
.country-card-big .foot .go {
  color: var(--vr-blue-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Featured country card (Italien) */
.country-card-big.featured { grid-column: span 2; }
.country-card-big.featured .img { aspect-ratio: 16 / 7; }
.country-card-big.featured .body { flex-direction: row; gap: 32px; padding: 32px; align-items: flex-start; }
.country-card-big.featured .body .left { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.country-card-big.featured h2 { font-size: 36px; }
.country-card-big.featured .lede { font-size: 16px; max-width: 520px; }
.country-card-big.featured .foot {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
  border-left: 1px solid var(--vr-sand-line);
  padding-left: 32px;
}
.country-card-big.featured .foot .btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--vr-navy);
  color: white;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 960px) {
  .country-card-big.featured { grid-column: span 2; }
  .country-card-big.featured .body { flex-direction: column; }
  .country-card-big.featured .foot {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--vr-sand-line);
    padding-top: 16px;
  }
}
@media (max-width: 640px) {
  .country-card-big.featured { grid-column: span 1; }
}

/* By-theme section + tiles */
.by-theme { background: var(--vr-cream-warm); }
.theme-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 960px) { .theme-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .theme-list { grid-template-columns: 1fr; } }
.theme-tile {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: border-color 0.15s;
}
.theme-tile:hover { border-color: var(--vr-blue); }
.theme-tile h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--vr-navy);
}
.theme-tile span.c { font-family: var(--font-sans); font-size: 13px; color: var(--vr-muted); }
.theme-tile .arrow { color: var(--vr-blue); font-size: 20px; }

/* ===== Country/Region hero (Italien, Toscana) ===== */
.country-hero, .region-hero {
  position: relative;
  min-height: 520px;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.country-hero .bg, .region-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.country-hero .bg::after, .region-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 64, 0.2), rgba(8, 40, 64, 0.75));
}
.region-hero .bg::after { background: linear-gradient(180deg, rgba(8, 40, 64, 0.2), rgba(8, 40, 64, 0.8)); }
.country-hero-inner, .region-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 60px;
  width: 100%;
}
.country-hero h1, .region-hero h1 { color: white; max-width: 760px; }
.country-hero .lede, .region-hero p.lede {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  font-size: 19px;
  margin-top: 18px;
  line-height: 1.55;
}
.region-hero p.lede { margin-top: 16px; }
.country-hero .eyebrow, .region-hero .eyebrow { color: var(--vr-blue); }

.quickstats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.quickstats > div { border-left: 2px solid var(--vr-blue); padding-left: 16px; }
.quickstats .num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: white;
  line-height: 1;
}
.region-hero .quickstats .num { font-size: 28px; }
.quickstats .lab {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8C7D6;
  margin-top: 6px;
  font-weight: 600;
}
.region-hero .quickstats .lab { font-size: 12.5px; }

/* ===== Intro grid with side-card (Italien i tal / Toscana i tal) ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-grid p { font-size: 18px; color: var(--vr-ink-soft); line-height: 1.7; margin: 0 0 16px; }
.intro-grid .side-card {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.intro-grid .side-card h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vr-blue-dark);
  font-weight: 600;
  margin: 0 0 20px;
}
.facts-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.facts-icons .fact { display: flex; gap: 12px; align-items: flex-start; }
.facts-icons .fact .ic {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--vr-cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-blue-dark);
}
.facts-icons .fact .ic svg { width: 18px; height: 18px; }
.facts-icons .fact .num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--vr-navy);
  line-height: 1.15;
  display: block;
}
.facts-icons .fact .lbl {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--vr-muted);
  margin-top: 2px;
  display: block;
}
@media (max-width: 960px) { .intro-grid { grid-template-columns: 1fr; } }

/* ===== Region / Area / Hotel cards ===== */
.region-grid, .area-grid, .hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) {
  .region-grid, .area-grid, .hotels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .region-grid, .area-grid, .hotels-grid { grid-template-columns: 1fr; }
}

.region-card, .area-card, .hotel-card {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-card);
}
.region-card:hover, .area-card:hover, .hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(8, 40, 64, 0.12);
  color: inherit;
}
.region-card .img, .area-card .img, .hotel-card .img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.region-card .img::after, .area-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 40, 64, 0) 60%, rgba(8, 40, 64, 0.5) 100%);
}
.region-card .tag, .area-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 10px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vr-navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.hotel-card .stars {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 10px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #c9a33d;
  letter-spacing: 1px;
  z-index: 2;
}
.region-card .body, .area-card .body, .hotel-card .body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.hotel-card .body { gap: 8px; }
.region-card h2, .area-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  color: var(--vr-navy);
  letter-spacing: -0.01em;
}
.area-card h2 { font-size: 24px; }
.hotel-card .region {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vr-blue-dark);
}
.hotel-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--vr-navy);
  letter-spacing: -0.005em;
}
.region-card .lede, .area-card .lede, .hotel-card .excerpt {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vr-ink-soft);
  margin: 0;
}
.region-card .chips, .area-card .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.region-card .chips span, .area-card .chips span {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--vr-ink-soft);
  background: var(--vr-cream-warm);
  padding: 4px 10px;
  border-radius: 999px;
}
.region-card .chips span.more, .area-card .chips span.more {
  background: none;
  color: var(--vr-muted);
  padding-left: 0;
}
.region-card .foot, .area-card .foot, .hotel-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--vr-sand-line);
  font-family: var(--font-sans);
  font-size: 13.5px;
}
.hotel-card .foot { justify-content: flex-end; }
.region-card .foot .counts, .area-card .foot .counts { color: var(--vr-muted); }
.region-card .foot .counts strong, .area-card .foot .counts strong { color: var(--vr-navy); font-weight: 600; }
.region-card .foot .go, .area-card .foot .go, .hotel-card .foot .go {
  color: var(--vr-blue-dark);
  font-weight: 600;
}

/* Group header (Norditalien, Centralitalien etc.) */
.group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--vr-sand-line);
}
.group-head h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: var(--vr-navy);
  letter-spacing: -0.01em;
}
.group-head .group-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-muted);
}
.group-block { margin-top: 60px; }
.group-block:first-child { margin-top: 0; }

/* ===== CTA strip (rounded navy) ===== */
.cta-strip {
  background: var(--vr-navy);
  color: white;
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 60px;
}
.cta-strip h3 { color: white; font-size: 28px; margin: 0 0 8px; font-family: var(--font-serif); font-weight: 500; }
.cta-strip p { color: rgba(255, 255, 255, 0.82); margin: 0; font-size: 16px; line-height: 1.55; }
.cta-strip .actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.cta-strip .btn-primary,
.cta-strip .cta-strip__btn-primary {
  background: var(--vr-blue);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-strip .btn-ghost,
.cta-strip .cta-strip__btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 760px) {
  .cta-strip { grid-template-columns: 1fr; padding: 32px; }
  .cta-strip .actions { justify-content: flex-start; }
}

/* ===== Travel page: Hero image + thumb strip ===== */
.travel-hero-wrap { padding: 24px 0 0; }
.hero-img {
  width: 100%;
  height: clamp(380px, 58vh, 680px);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  position: relative;
  margin-top: 24px;
  background-color: var(--vr-sand);
  display: block;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}
a.hero-img:hover { box-shadow: 0 14px 40px -18px rgba(13, 59, 92, 0.35); }
.thumb-strip a.t {
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}
.thumb-strip a.t:hover { transform: translateY(-2px); box-shadow: 0 6px 18px -8px rgba(13, 59, 92, 0.25); }
.hero-img .more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--vr-navy);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(13, 59, 92, 0.18);
}
.hero-img .more:hover { background: white; }
.thumb-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.thumb-strip .t {
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: opacity 0.15s;
  background-color: var(--vr-sand);
}
.thumb-strip .t:hover { opacity: 0.85; }
@media (max-width: 760px) {
  .hero-img { height: 340px; }
  .thumb-strip { grid-template-columns: repeat(4, 1fr); }
  .thumb-strip .t:nth-child(5) { display: none; }
}

/* ===== Travel page: detail layout + title + facts ===== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  padding: 60px 0;
  align-items: start;
}
@media (max-width: 960px) { .detail-layout { grid-template-columns: 1fr; } }

.title-block { margin-bottom: 32px; }
.title-block .stars {
  color: var(--vr-blue-dark);
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 10px;
}
.title-block h1 { font-size: clamp(34px, 4vw, 52px); margin-bottom: 14px; }
.title-block .loc {
  color: var(--vr-ink-soft);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.title-block .loc::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vr-blue);
  flex-shrink: 0;
}

/* ===== Trip template: category chips above title ===== */
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cat-chip {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vr-blue-dark);
  background: rgba(27, 166, 214, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* ===== Trip template: facilities ===== */
.facilities-section { margin: 32px 0 40px; }
.section-subhead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--vr-navy);
  margin: 0 0 16px;
}
.facilities { display: flex; flex-wrap: wrap; gap: 10px; }
.fac-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--vr-sand-line);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vr-navy);
  font-weight: 500;
  transition: border-color .2s ease, background .2s ease;
}
.fac-chip:hover { border-color: var(--vr-blue); background: rgba(27,166,214,0.04); }
.fac-chip svg { color: var(--vr-blue); flex-shrink: 0; }

/* ===== Trip template: gallery grid ===== */
.gallery-section { margin: 48px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--vr-sand);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }

/* ===== Trip template: tripadvisor link ===== */
.tripadvisor-link {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 15px;
}
.tripadvisor-link a { color: var(--vr-blue-dark); font-weight: 600; }

/* ===== Cookie consent banner ===== */
.vr-cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  background: var(--vr-navy-deep);
  color: #E6EEF5;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4);
  z-index: 10000;
  transform: translateY(120%);
  transition: transform .4s ease;
  max-width: 820px;
  margin: 0 auto;
}
.vr-cookie.is-open { transform: translateY(0); }
.vr-cookie__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 26px;
}
.vr-cookie__text strong { display: block; color: white; font-family: var(--font-serif); font-size: 17px; margin-bottom: 4px; }
.vr-cookie__text p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(230,238,245,0.85); }
.vr-cookie__text a { color: var(--vr-blue); }
.vr-cookie__actions { display: flex; gap: 8px; flex-shrink: 0; }
.vr-cookie__btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: var(--r-md);
  border: 0;
  cursor: pointer;
  transition: filter .2s ease, background .2s ease;
}
.vr-cookie__btn--primary { background: var(--vr-blue); color: white; }
.vr-cookie__btn--primary:hover { filter: brightness(1.08); }
.vr-cookie__btn--ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.25); }
.vr-cookie__btn--ghost:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 640px) {
  .vr-cookie { left: 10px; right: 10px; bottom: 10px; }
  .vr-cookie__inner { grid-template-columns: 1fr; gap: 16px; padding: 18px 20px; }
  .vr-cookie__actions { justify-content: stretch; }
  .vr-cookie__btn { flex: 1; }
}

/* ===== Site search (header drop-down) ===== */
.site-header__search-toggle {
  background: transparent;
  border: 0;
  padding: 8px 10px;
  color: var(--vr-navy);
  cursor: pointer;
  display: inline-flex;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-header__search-toggle:hover { background: rgba(13,59,92,0.06); color: var(--vr-blue-dark); }
.site-search {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--vr-sand-line);
  padding: 20px 0;
  transform: translateY(-120%);
  transition: transform .35s ease;
  z-index: 60;
  box-shadow: 0 12px 30px -20px rgba(13,59,92,0.2);
}
.site-search.is-open { transform: translateY(0); }
.site-search__form {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--vr-cream-warm);
  border-radius: var(--r-md);
  padding: 10px 14px 10px 18px;
}
.site-search__form svg { color: var(--vr-ink-soft); flex-shrink: 0; }
.site-search__form input {
  flex: 1;
  background: transparent;
  border: 0;
  font-size: 17px;
  font-family: var(--font-sans);
  color: var(--vr-ink);
  outline: none;
}
.site-search__close {
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: var(--vr-ink-soft);
  cursor: pointer;
  padding: 4px 10px;
}
.site-search__close:hover { color: var(--vr-navy); }
@media (max-width: 640px) {
  .site-search__form .btn__arrow { display: none; }
  .site-search__form .btn { padding: 12px 14px; }
}

/* ===== Image lightbox (fullscreen overlay) ===== */
.vr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 40, 64, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9999;
  padding: 24px;
}
.vr-lightbox.is-open { opacity: 1; visibility: visible; }
.vr-lightbox__frame {
  margin: 0;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.vr-lightbox__img {
  max-width: 100%;
  max-height: calc(90vh - 50px);
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #000;
}
.vr-lightbox__caption {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 14px;
  text-align: center;
  max-width: 680px;
  line-height: 1.4;
}
.vr-lightbox__counter {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.vr-lightbox__close,
.vr-lightbox__prev,
.vr-lightbox__next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.vr-lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.vr-lightbox__prev,
.vr-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 32px;
  font-family: var(--font-serif);
  line-height: 1;
}
.vr-lightbox__prev { left: 20px; }
.vr-lightbox__next { right: 20px; }
.vr-lightbox__close:hover,
.vr-lightbox__prev:hover,
.vr-lightbox__next:hover {
  background: rgba(255,255,255,0.18);
}
.vr-lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.vr-lightbox__next:hover { transform: translateY(-50%) translateX(2px); }
@media (max-width: 640px) {
  .vr-lightbox { padding: 12px; }
  .vr-lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 24px; }
  .vr-lightbox__prev, .vr-lightbox__next { width: 44px; height: 44px; font-size: 24px; }
  .vr-lightbox__prev { left: 8px; }
  .vr-lightbox__next { right: 8px; }
}

/* ===== Leaflet map container ===== */
.vr-map {
  width: 100%;
  height: 240px;
  border-radius: var(--r-md);
  overflow: hidden;
  z-index: 0;
}
.vr-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: var(--font-sans);
}

/* ===== Trip template: map-link hint ===== */
.map-mini .addr .meta-line {
  display: block;
  font-size: 13px;
  color: var(--vr-ink-soft);
  margin-top: 6px;
}
.map-mini .addr .map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--vr-blue-dark);
  font-weight: 600;
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--vr-sand-line);
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 32px 0 48px;
}
.facts-strip > div {
  background: white;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.facts-strip .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 166, 214, 0.1);
  color: var(--vr-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.facts-strip .lab {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vr-muted);
  font-weight: 600;
}
.facts-strip .val {
  font-weight: 600;
  color: var(--vr-navy);
  font-size: 16px;
  margin-top: 2px;
}
@media (max-width: 760px) { .facts-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .facts-strip { grid-template-columns: 1fr; } }

/* ===== Travel page: detail body content ===== */
.detail-body h2 { font-size: 32px; margin: 48px 0 18px; }
.detail-body h2:first-child { margin-top: 0; }
.detail-body p { font-size: 18px; color: var(--vr-ink-soft); line-height: 1.7; margin: 0 0 18px; }
.detail-body ul { padding-left: 0; list-style: none; margin: 20px 0; }
.detail-body ul li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--vr-sand-line);
  position: relative;
  font-size: 17px;
  color: var(--vr-ink);
  list-style: none;
}
.detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 16px;
  height: 8px;
  border-left: 2px solid var(--vr-blue);
  border-bottom: 2px solid var(--vr-blue);
  transform: rotate(-45deg);
}
.detail-body ul.x li::before {
  border: 0;
  background: var(--vr-muted);
  height: 2px;
  width: 14px;
  top: 24px;
  transform: none;
}
.detail-body ul.x li { color: var(--vr-muted); }

.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0; }
.inc-grid h4 { margin: 0 0 12px; font-size: 18px; color: var(--vr-navy-deep); }
@media (max-width: 640px) { .inc-grid { grid-template-columns: 1fr; } }

/* Practical card */
.practical {
  background: var(--vr-cream-warm);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 40px 0;
}
.practical h3 { font-size: 22px; margin: 0 0 18px; color: var(--vr-navy-deep); }
.practical dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px 24px;
  margin: 0;
  font-size: 17px;
}
.practical dt { color: var(--vr-ink-soft); }
.practical dd { margin: 0; color: var(--vr-navy); font-weight: 500; }
@media (max-width: 640px) { .practical dl { grid-template-columns: 1fr; } .practical dt { margin-top: 10px; } }

/* ===== Travel page: Sidebar (inquiry + contact + map) ===== */
.travel-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 960px) { .travel-sidebar { position: static; } }

.inquiry-card {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.inquiry-card .from {
  font-size: 14px;
  color: var(--vr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.inquiry-card .price {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--vr-navy);
  line-height: 1.1;
  margin: 4px 0 18px;
}
.inquiry-card .price small {
  font-size: 14px;
  color: var(--vr-muted);
  font-family: var(--font-sans);
  font-weight: 400;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--vr-ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-sans);
  border: 1.5px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  background: white;
  color: var(--vr-ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--vr-blue);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.contact-card {
  background: var(--vr-navy-deep);
  color: #B8C7D6;
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-card .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vr-blue);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.contact-card h3 {
  color: white;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.25;
}
.contact-card p { font-size: 14px; line-height: 1.55; color: #B8C7D6; margin: 0 0 18px; }
.contact-card .phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-card .phone-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}
.contact-card .phone-row svg { color: var(--vr-blue); flex-shrink: 0; }
.contact-card .phone-row .lab {
  font-size: 12px;
  color: #8FA3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.contact-card .phone-row .val {
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: block;
  margin-top: 2px;
}
.contact-card .phone-row .val:hover { color: var(--vr-blue); }
.contact-card .hours { font-size: 13px; color: #8FA3B8; line-height: 1.6; }

.map-mini {
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-mini .viz {
  aspect-ratio: 4 / 3;
  position: relative;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(27, 166, 214, 0.25) 0, rgba(27, 166, 214, 0) 30%),
    linear-gradient(135deg, #E8DFD1 25%, #DCD2C1 25%, #DCD2C1 50%, #E8DFD1 50%, #E8DFD1 75%, #DCD2C1 75%);
  background-size: 100%, 40px 40px;
}
.map-mini .viz::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--vr-blue);
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 4px 10px rgba(13, 59, 92, 0.3);
}
.map-mini .addr {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--vr-ink-soft);
  line-height: 1.5;
}
.map-mini .addr b { color: var(--vr-navy); display: block; margin-bottom: 2px; }

/* ===== Travel page: Similar + Prices ===== */
.similar { padding: 80px 0; background: var(--vr-cream-warm); }

.prices { padding: 20px 0 40px; }
.prices h2 { font-size: 32px; margin: 0 0 10px; }
.prices > .container > .lede {
  color: var(--vr-ink-soft);
  font-size: 17px;
  max-width: 720px;
  margin-bottom: 22px;
}

.supplements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0 36px;
}
@media (max-width: 640px) { .supplements { grid-template-columns: 1fr; } }
.supplement {
  background: var(--vr-cream-warm);
  border-left: 3px solid var(--vr-blue);
  padding: 16px 20px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.supplement .lab {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vr-muted);
  font-weight: 600;
}
.supplement .val {
  color: var(--vr-navy);
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
}
.supplement .val small {
  color: var(--vr-ink-soft);
  font-weight: 400;
  font-size: 14px;
}

.route-group { margin-bottom: 36px; }
.route-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vr-navy);
}
.route-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--vr-navy);
  margin: 0;
  font-weight: 500;
}
.route-head .tag {
  font-size: 13px;
  font-weight: 600;
  background: rgba(27, 166, 214, 0.12);
  color: var(--vr-blue-dark);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.route-head .meta {
  color: var(--vr-muted);
  font-size: 14px;
  margin-left: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: white;
  border: 1px solid var(--vr-sand-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.price-table thead th {
  background: var(--vr-navy-deep);
  color: white;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table tbody td {
  padding: 12px 14px;
  border-top: 1px solid var(--vr-sand-line);
  color: var(--vr-ink);
  vertical-align: middle;
}
.price-table tbody tr:nth-child(odd) td { background: #FAF6EF; }
.price-table tbody tr:hover td { background: rgba(27, 166, 214, 0.06); }
.price-table .price-cell {
  font-weight: 700;
  color: var(--vr-navy-deep);
  white-space: nowrap;
  font-size: 16px;
}
.price-table .date-cell { white-space: nowrap; }
.price-table .book {
  color: var(--vr-blue-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.price-table .book:hover { text-decoration: underline; }
.price-table .time { color: var(--vr-muted); font-size: 13px; white-space: nowrap; }
@media (max-width: 960px) {
  .price-table { font-size: 14px; }
  .price-table thead th,
  .price-table tbody td { padding: 10px 10px; }
  .price-table .hide-mobile { display: none; }
}

/* Destination intro — collapsible with fade-out + Læs mere toggle */
.section--intro { padding: 36px 0 8px; }
.dest-intro { position: relative; }
.dest-intro__content { position: relative; }
.dest-intro__toggle { display: none; align-items: center; gap: 6px; margin-top: 16px; background: none; border: 0; padding: 0; font: inherit; font-weight: 600; color: var(--vr-blue-dark); cursor: pointer; }
.dest-intro__toggle::after { content: "▾"; font-size: .8em; }
.dest-intro.is-collapsible .dest-intro__toggle { display: inline-flex; }
.dest-intro.is-collapsible .dest-intro__content { max-height: 210px; overflow: hidden; }
.dest-intro.is-collapsible .dest-intro__content::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 96px; background: linear-gradient(to bottom, rgba(250,246,239,0), var(--vr-cream)); pointer-events: none; transition: opacity .3s ease; }
.dest-intro.is-collapsible.is-expanded .dest-intro__content { max-height: none; }
.dest-intro.is-collapsible.is-expanded .dest-intro__content::after { opacity: 0; }
.dest-intro.is-collapsible.is-expanded .dest-intro__toggle::after { content: "▴"; }

/* ─── Mobile polish: hold edges + tighten section spacing ─────────────── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section--sm { padding: 40px 0; }
  .section--xl { padding: 72px 0; }
  .hero > .container,
  .hero--slideshow .hero__slide > .container { padding: 56px var(--pad-x) 48px; }
}
@media (max-width: 480px) {
  .hero h1, .hero--home h1 { font-size: 34px; line-height: 1.08; }
  .lede--on-hero { font-size: 17px; }
  h2 { font-size: clamp(26px, 7vw, 44px); }
}

/* Wide migrated price tables: scroll inside their own box, never break the page edge */
.detail-layout > * { min-width: 0; }
.detail-body .table-scroll { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
.detail-body .table-scroll table { margin: 0; }
