/*
Theme Name: Viking Nomads
Theme URI: https://www.vikingnomads.com
Author: Viking Nomads
Author URI: https://www.vikingnomads.com
Description: A premium travel theme for Viking Nomads — inspired by the bold, editorial design of WTTC.org. Built for Scandinavian travellers worldwide.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vikingnomads
Tags: travel, blog, custom-header, featured-images, full-width-template, sticky-post, theme-options
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — WTTC-inspired colour system
   ============================================================ */
:root {
  /* Core palette */
  --vn-navy:       #0a1628;
  --vn-navy-mid:   #112240;
  --vn-navy-light: #1a3a5c;
  --vn-teal:       #00a0c6;
  --vn-teal-dark:  #007a99;
  --vn-teal-light: #e6f7fb;
  --vn-white:      #ffffff;
  --vn-off-white:  #f7f8fa;
  --vn-light-grey: #eef0f3;
  --vn-mid-grey:   #8a9ab0;
  --vn-dark-grey:  #3d4f63;
  --vn-text:       #1a2535;
  --vn-accent:     #c8a84b;   /* gold — Viking accent */

  /* Typography */
  --font-display:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-ui:       'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 10rem;

  /* Layout */
  --max-width:      1280px;
  --max-width-text: 820px;
  --header-h:       80px;
  --radius:         4px;
  --radius-lg:      10px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 6px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.25s;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--vn-text);
  background: var(--vn-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--vn-teal); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--vn-teal-dark); }

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--vn-navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p  { margin-bottom: 1.4rem; font-size: 1.05rem; }

/* WTTC signature: italic accent in headings */
em {
  font-style: italic;
  color: var(--vn-teal);
  font-family: var(--font-display);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vn-teal);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.container--narrow { max-width: var(--max-width-text); }

.section {
  padding: var(--space-xl) 0;
}

.section--grey  { background: var(--vn-off-white); }
.section--navy  { background: var(--vn-navy); color: var(--vn-white); }
.section--navy h2, .section--navy h3 { color: var(--vn-white); }
.section--navy p { color: var(--vn-mid-grey); }
.section--navy .eyebrow { color: var(--vn-accent); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.text-center { text-align: center; }
.text-white  { color: var(--vn-white) !important; }

/* ============================================================
   BUTTONS — WTTC style: bold, clean, no rounded
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vn-teal);
  color: var(--vn-white);
  border-color: var(--vn-teal);
}
.btn-primary:hover {
  background: var(--vn-teal-dark);
  border-color: var(--vn-teal-dark);
  color: var(--vn-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--vn-white);
  border-color: var(--vn-white);
}
.btn-outline:hover {
  background: var(--vn-white);
  color: var(--vn-navy);
}

.btn-navy {
  background: var(--vn-navy);
  color: var(--vn-white);
  border-color: var(--vn-navy);
}
.btn-navy:hover {
  background: var(--vn-navy-light);
  color: var(--vn-white);
}

.btn-ghost {
  background: transparent;
  color: var(--vn-teal);
  border-color: var(--vn-teal);
}
.btn-ghost:hover {
  background: var(--vn-teal);
  color: var(--vn-white);
}

.btn svg { width: 16px; height: 16px; }

/* ============================================================
   SITE HEADER — WTTC dark navy sticky bar
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--vn-navy);
  display: flex;
  align-items: center;
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  gap: 2rem;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vn-white);
  line-height: 1;
}

.logo-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vn-teal);
  margin-top: 3px;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 0.25rem; }

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  display: block;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}

.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: var(--vn-white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--vn-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--dur) var(--ease);
  z-index: 100;
}

.primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu li a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--vn-text);
  padding: 0.6rem 1.25rem;
  display: block;
  transition: all var(--dur) var(--ease);
}

.primary-nav .sub-menu li a:hover {
  background: var(--vn-teal-light);
  color: var(--vn-teal-dark);
  padding-left: 1.5rem;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.header-search-btn:hover { color: var(--vn-white); background: rgba(255,255,255,0.1); }
.header-search-btn svg  { width: 20px; height: 20px; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vn-white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.search-overlay.active { opacity: 1; visibility: visible; }

.search-overlay form {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  padding: 0 2rem;
}

.search-overlay input {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid var(--vn-teal);
  color: var(--vn-white);
  font-family: var(--font-display);
  font-size: 2rem;
  padding: 0.5rem 0;
  outline: none;
}

.search-overlay input::placeholder { color: rgba(255,255,255,0.3); }

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--vn-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--dur);
}
.search-close:hover { opacity: 1; }

/* Body offset for fixed header */
body { padding-top: var(--header-h); }

/* ============================================================
   HERO SLIDER — WTTC full-bleed with overlay
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: var(--vn-navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.hero-slide.active { opacity: 1; }

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}

.hero-slide.active .hero-slide__img { transform: scale(1); }

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.82) 0%,
    rgba(10,22,40,0.45) 60%,
    rgba(10,22,40,0.15) 100%
  );
}

.hero-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 6vw, 5rem);
  max-width: 700px;
}

.hero-slide__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vn-accent);
  margin-bottom: 1rem;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease) 0.2s;
}

.hero-slide.active .hero-slide__eyebrow { opacity: 1; transform: translateY(0); }

.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--vn-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s var(--ease) 0.35s;
}

.hero-slide.active .hero-slide__title { opacity: 1; transform: translateY(0); }

.hero-slide__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--ease) 0.5s;
}

.hero-slide.active .hero-slide__desc { opacity: 1; transform: translateY(0); }

.hero-slide__cta {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s var(--ease) 0.65s;
}

.hero-slide.active .hero-slide__cta { opacity: 1; transform: translateY(0); }

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  padding: 0;
}

.hero-dot.active {
  background: var(--vn-white);
  width: 24px;
  border-radius: 4px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.hero-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--vn-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: var(--vn-teal); border-color: var(--vn-teal); }
.hero-arrow svg   { width: 20px; height: 20px; }

/* ============================================================
   INTRO BAND — WTTC "represents" style statement
   ============================================================ */
.intro-band {
  background: var(--vn-navy);
  padding: var(--space-lg) 0;
  border-bottom: 3px solid var(--vn-teal);
}

.intro-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.intro-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--vn-white);
  line-height: 1.4;
  max-width: 700px;
}

.intro-band__text em { color: var(--vn-teal); }

/* ============================================================
   FEATURED SLIDER CARDS — WTTC homepage cards
   ============================================================ */
.featured-cards {
  padding: var(--space-xl) 0;
  background: var(--vn-off-white);
}

.featured-cards__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Card component */
.vn-card {
  background: var(--vn-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.vn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vn-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.vn-card:hover .vn-card__img { transform: scale(1.04); }

.vn-card__img-wrap {
  overflow: hidden;
  position: relative;
}

.vn-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--vn-teal);
  color: var(--vn-white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
}

.vn-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vn-card__date {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--vn-mid-grey);
  margin-bottom: 0.6rem;
}

.vn-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vn-navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color var(--dur);
}

.vn-card:hover .vn-card__title { color: var(--vn-teal-dark); }

.vn-card__excerpt {
  font-size: 0.9rem;
  color: var(--vn-dark-grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.vn-card__link {
  font-family: var(--font-ui);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--vn-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--dur);
}
.vn-card:hover .vn-card__link { gap: 0.7rem; }
.vn-card__link svg { width: 14px; height: 14px; }

/* Featured large card */
.vn-card--large { grid-column: span 2; }

.vn-card--large .vn-card__img { height: 360px; }

.vn-card--hero {
  position: relative;
  background: var(--vn-navy);
  color: var(--vn-white);
  min-height: 400px;
}

.vn-card--hero .vn-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.vn-card--hero .vn-card__body {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 40%, transparent);
}

.vn-card--hero .vn-card__title { color: var(--vn-white); }
.vn-card--hero .vn-card__excerpt { color: rgba(255,255,255,0.75); }

/* ============================================================
   STATEMENT SECTION — WTTC "who we are"
   ============================================================ */
.statement-section {
  padding: var(--space-xl) 0;
  background: var(--vn-white);
}

.statement-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.statement-section__text h2 { margin-bottom: 1.5rem; }
.statement-section__text p  { color: var(--vn-dark-grey); margin-bottom: 1.5rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--vn-light-grey);
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vn-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--vn-mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.statement-section__image {
  position: relative;
}

.statement-section__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.statement-section__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--vn-teal);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

/* ============================================================
   DESTINATIONS GRID
   ============================================================ */
.destinations-section {
  padding: var(--space-xl) 0;
  background: var(--vn-off-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--vn-navy);
}

.dest-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: all 0.5s var(--ease);
}

.dest-card:hover img { opacity: 0.5; transform: scale(1.06); }

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.dest-card__nat {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vn-teal);
  margin-bottom: 0.4rem;
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--vn-white);
  line-height: 1.2;
}

.dest-card:first-child .dest-card__name { font-size: 2rem; }

.dest-card__arrow {
  margin-top: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vn-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--dur) var(--ease);
}

.dest-card:hover .dest-card__arrow { transform: translateY(0); opacity: 1; }
.dest-card__arrow svg { width: 16px; height: 16px; color: white; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
  padding: var(--space-xl) 0;
  background: var(--vn-white);
}

.news-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-section__header h2 { margin: 0; }

/* ============================================================
   NATIONALITY BAND — "Find your people" full-width
   ============================================================ */
.nationality-band {
  background: var(--vn-navy);
  padding: var(--space-lg) 0;
}

.nationality-band__inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  align-items: stretch;
  gap: 0;
}

.nat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  transition: background var(--dur) var(--ease);
  cursor: pointer;
}
.nat-item:hover { background: rgba(255,255,255,0.04); }

.nat-item__flag { font-size: 3rem; margin-bottom: 1rem; display: block; }

.nat-item__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--vn-white);
  margin-bottom: 0.5rem;
}

.nat-item__desc {
  font-size: 0.875rem;
  color: var(--vn-mid-grey);
  max-width: 240px;
  margin: 0 auto 1.25rem;
}

.nat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ============================================================
   AFFILIATE CTA BAND
   ============================================================ */
.affiliate-band {
  background: linear-gradient(135deg, var(--vn-teal-dark) 0%, var(--vn-navy-light) 100%);
  padding: var(--space-lg) 0;
}

.affiliate-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.affiliate-band__text h3 { color: var(--vn-white); font-size: 1.6rem; margin-bottom: 0.5rem; }
.affiliate-band__text p  { color: rgba(255,255,255,0.8); margin: 0; font-size: 1rem; }

.affiliate-band__btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   SITE FOOTER — WTTC multi-column dark footer
   ============================================================ */
.site-footer {
  background: var(--vn-navy);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: var(--vn-white); margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur) var(--ease);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--vn-teal); color: var(--vn-white); }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vn-white);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.footer-col ul li a:hover { color: var(--vn-teal); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur);
}
.footer-bottom-links a:hover { color: var(--vn-white); }

/* ============================================================
   SINGLE POST / ARTICLE
   ============================================================ */
.article-hero {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.article-header {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 3rem) 2rem;
}

.article-header .eyebrow { margin-bottom: 1rem; }

.article-header h1 { margin-bottom: 1.25rem; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--vn-mid-grey);
  padding-top: 1.25rem;
  border-top: 1px solid var(--vn-light-grey);
  flex-wrap: wrap;
}

.article-meta span { display: flex; align-items: center; gap: 0.4rem; }

.article-body {
  max-width: var(--max-width-text);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) var(--space-xl);
}

.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; }

.article-body p      { line-height: 1.85; color: var(--vn-dark-grey); }
.article-body ul     { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body ul li  { margin-bottom: 0.5rem; color: var(--vn-dark-grey); }

.article-body blockquote {
  border-left: 4px solid var(--vn-teal);
  padding: 1rem 1.5rem;
  background: var(--vn-teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--vn-navy);
}

/* Tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-body th {
  background: var(--vn-navy);
  color: var(--vn-white);
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
}

.article-body td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--vn-light-grey);
  color: var(--vn-dark-grey);
}

.article-body tr:nth-child(even) td { background: var(--vn-off-white); }

/* Affiliate boxes */
.article-body .affiliate-box {
  background: var(--vn-teal-light);
  border-left: 4px solid var(--vn-teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) var(--space-xl);
}

.sidebar-widget {
  background: var(--vn-off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vn-mid-grey);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--vn-light-grey);
}

/* ============================================================
   PAGE BANNER — used on archive, category pages
   ============================================================ */
.page-banner {
  background: var(--vn-navy);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,160,198,0.15) 0%, transparent 70%);
}

.page-banner h1 { color: var(--vn-white); position: relative; }
.page-banner p   { color: var(--vn-mid-grey); max-width: 580px; margin: 1rem auto 0; position: relative; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.pagination a,
.pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--vn-light-grey);
  color: var(--vn-text);
  transition: all var(--dur);
}

.pagination a:hover { background: var(--vn-teal); color: white; border-color: var(--vn-teal); }
.pagination .current { background: var(--vn-navy); color: white; border-color: var(--vn-navy); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: span 2; }
  .statement-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .primary-nav { display: none; }

  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--vn-navy);
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 999;
  }

  .primary-nav.open > li > a {
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .primary-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-top: 0.5rem;
  }

  .primary-nav .sub-menu li a { color: rgba(255,255,255,0.7); }

  .menu-toggle { display: flex; }

  .vn-card--large { grid-column: span 1; }

  .nationality-band__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nat-divider { display: none; }

  .dest-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .dest-card:first-child { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr; }

  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .hero-slider { height: 70vh; }

  .affiliate-band__inner { flex-direction: column; text-align: center; }

  .intro-band__inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: span 1; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   WORDPRESS CORE ALIGNMENT CLASSES
   ============================================================ */
.wp-block-image.alignfull { margin-left: calc(-1 * clamp(1rem, 4vw, 3rem)); margin-right: calc(-1 * clamp(1rem, 4vw, 3rem)); }
.wp-block-image.alignwide { margin-left: -2rem; margin-right: -2rem; }
.wp-block-image.alignright { float: right; margin: 0 0 1.5rem 2rem; max-width: 40%; }
.wp-block-image.alignleft  { float: left; margin: 0 2rem 1.5rem 0; max-width: 40%; }
.wp-block-separator { border: none; border-top: 1px solid var(--vn-light-grey); margin: 2.5rem 0; }
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table th { background: var(--vn-navy); color: white; padding: 0.85rem 1rem; text-align: left; font-family: var(--font-ui); font-size: 0.85rem; }
.wp-block-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--vn-light-grey); }
.wp-block-table tr:nth-child(even) td { background: var(--vn-off-white); }
