/*
Theme Name: Wonderful Wanderings
Theme URI: https://wonderfulwanderings.com/
Author: Wonderful Wanderings
Description: The "Trip-Planner's Table" redesign — deep-sea teal world, photo-print material, Quicksand display. Built from the 2026 prototype; see DESIGN.md in the design workspace.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: wonderful-wanderings
*/
/* =================================================================
   DELIVERABLE: the entire page (header, nav + megamenu, hero,
   carousel sections, community band, footer)
   Evolved world per DESIGN.md — "Trip-Planner's Table"
   ================================================================= */
* { box-sizing: border-box; }
:root {
  --ww-wrap: 1250px;
  --ww-teal-deep: #16414f;
  --ww-teal: #2d5f73;
  --ww-teal-soft: #bfdae3;
  --ww-pink: #ed1a64;
  --ww-yellow: #fde700;
  --ww-ink: #17414f;
  --ww-body: #3a5560;
  --ww-tint: #eef4f7;
}
html { scrollbar-color: rgba(45, 95, 115, 0.55) transparent; }
body {
  margin: 0;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--ww-body);
}
::selection { background: var(--ww-pink); color: #fff; }
:focus-visible { outline: 3px solid var(--ww-yellow); outline-offset: 3px; border-radius: 2px; }
.ww-wrap { max-width: var(--ww-wrap); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

/* --- Header: logo, language dropdown, social row --- */
.ww-header { background: #fff; }
.ww-header .ww-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.ww-logo img { height: 54px; width: auto; display: block; }
.ww-utility { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
details.ww-lang { position: relative; }
.ww-lang summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--ww-teal);
  background: var(--ww-tint);
  padding: 7px 13px;
  border-radius: 999px;
}
.ww-lang summary::-webkit-details-marker { display: none; }
.ww-lang summary svg { transition: transform 0.2s; }
.ww-lang[open] summary svg { transform: rotate(180deg); }
.ww-flag { width: 18px; height: 12px; display: block; border-radius: 1px; }
.ww-lang ul {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 16px 36px rgba(9, 28, 36, 0.24);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 2px;
  min-width: 170px;
  z-index: 60;
}
.ww-lang ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 3px;
  color: var(--ww-ink);
  text-decoration: none;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
}
.ww-lang ul a:hover { background: var(--ww-tint); }
.ww-social { display: flex; gap: 16px; }
.ww-social a { color: var(--ww-teal); display: block; transition: color 0.2s, transform 0.2s; }
.ww-social a:hover { color: var(--ww-pink); transform: translateY(-2px); }
.ww-social svg { display: block; }

/* --- Nav band with megamenu and real search --- */
.ww-nav { background: linear-gradient(180deg, var(--ww-teal) 0%, #28566a 100%); }
.ww-nav .ww-wrap { position: relative; display: flex; align-items: center; gap: 0 32px; flex-wrap: wrap; }
.ww-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0 32px; flex-wrap: wrap; }
a.ww-navlink {
  color: #fff;
  text-decoration: none;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
a.ww-navlink:hover { text-decoration: underline; text-decoration-color: var(--ww-yellow); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.ww-mega {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 100%;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 30px 60px rgba(9, 28, 36, 0.3);
  padding: 30px 34px 26px;
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  z-index: 50;
}
.ww-has-mega:hover .ww-mega,
.ww-has-mega:focus-within .ww-mega { display: grid; }
.ww-mega h3 {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4e707c;
  margin: 0 0 12px;
}
.ww-mega ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ww-mega ul a { color: var(--ww-ink); text-decoration: none; font-size: 0.88rem; }
.ww-mega ul a:hover { text-decoration: underline; text-decoration-color: var(--ww-yellow); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.ww-mega-all {
  grid-column: 1 / -1;
  display: block;
  border-top: 1px solid var(--ww-tint);
  padding-top: 16px;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.9);
  justify-self: start;
}
.ww-mega-all:hover { text-decoration-color: var(--ww-yellow); text-decoration-thickness: 3px; }
.ww-search { margin-left: auto; display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.ww-search input {
  background: rgba(9, 28, 36, 0.28);
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  font-size: 0.88rem;
  width: 190px;
  font-family: inherit;
}
.ww-search input::placeholder { color: var(--ww-teal-soft); opacity: 1; }
.ww-search button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  cursor: pointer;
}
.ww-search button:hover { border-color: var(--ww-yellow); color: var(--ww-yellow); }

/* --- Hero: the planning table --- */
.ww-hero2026 {
  --wwh-teal-deep: #16414f;
  --wwh-teal-mid: #2d5f73;
  --wwh-teal-soft: #bfdae3;
  --wwh-pink: #ed1a64;
  --wwh-yellow: #fde700;
  --wwh-ink: #17414f;
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(93, 158, 181, 0.34), transparent 62%),
    linear-gradient(168deg, var(--wwh-teal-mid) 0%, #1d4c5d 44%, var(--wwh-teal-deep) 100%);
  color: #fff;
  overflow: hidden;
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.ww-hero2026 ::selection { background: var(--wwh-pink); color: #fff; }
.ww-hero2026 :focus-visible { outline: 3px solid var(--wwh-yellow); outline-offset: 3px; border-radius: 2px; }
.ww-hero2026 .wwh-inner {
  max-width: var(--ww-wrap, 1250px);
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: 48px;
  align-items: center;
}
.ww-hero2026 .wwh-route { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ww-hero2026 .wwh-route path { fill: none; stroke: rgba(191, 218, 227, 0.38); stroke-width: 2; stroke-dasharray: 2 9; stroke-linecap: round; }
.ww-hero2026 .wwh-route circle { fill: var(--wwh-yellow); }
.ww-hero2026 .wwh-copy { position: relative; }
.ww-hero2026 h1 {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: clamp(2.35rem, 4.4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  text-wrap: balance;
  color: #fff;
}
.ww-hero2026 .wwh-mark { position: relative; white-space: nowrap; }
.ww-hero2026 .wwh-mark svg { position: absolute; left: -2%; bottom: -0.18em; width: 104%; height: 0.34em; overflow: visible; }
.ww-hero2026 .wwh-mark svg path { fill: none; stroke: var(--wwh-yellow); stroke-width: 7; stroke-linecap: round; opacity: 0.92; }
.ww-hero2026 .wwh-sub { font-size: 1.09rem; line-height: 1.65; color: var(--wwh-teal-soft); max-width: 46ch; margin: 0 0 34px; }
.ww-hero2026 .wwh-sub strong { color: #fff; font-weight: 600; }
.ww-hero2026 .wwh-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ww-hero2026 .wwh-cta {
  display: inline-block;
  background: var(--wwh-pink);
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(12, 36, 45, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}
.ww-hero2026 .wwh-cta:hover { background: #f52e73; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(12, 36, 45, 0.5); }
.ww-hero2026 .wwh-cta:active { transform: translateY(0); }
.ww-hero2026 .wwh-alt {
  color: #fff;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.75);
}
.ww-hero2026 .wwh-alt:hover { text-decoration-color: var(--wwh-yellow); }
.ww-hero2026 .wwh-table { position: relative; min-height: 520px; }
.ww-hero2026 .wwh-print {
  position: absolute;
  display: block;
  background: #fff;
  padding: 9px 9px 12px;
  border-radius: 3px;
  box-shadow: 0 16px 36px rgba(9, 28, 36, 0.42);
  text-decoration: none;
  width: var(--w, 240px);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.ww-hero2026 .wwh-print:hover,
.ww-hero2026 .wwh-print:focus-visible {
  transform: rotate(0deg) translateY(-8px) scale(1.035);
  box-shadow: 0 26px 52px rgba(9, 28, 36, 0.55);
  z-index: 9;
}
.ww-hero2026 .wwh-print img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1px; }
.ww-hero2026 .wwh-print figcaption {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--wwh-ink);
  padding: 9px 4px 2px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.ww-hero2026 .wwh-print figcaption small {
  font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: #4e707c;
  white-space: nowrap;
}
.ww-hero2026 .wwh-print figure { margin: 0; }
/* resting poses (z rises left-to-right so every place name stays visible under the overlaps) */
.ww-hero2026 .wwh-print:nth-child(1) { --w: 252px; --r: -5deg;  top: 1%;    left: 0;    z-index: 2; }
.ww-hero2026 .wwh-print:nth-child(2) { --w: 240px; --r: 3.5deg; top: 0;     right: 1%;  z-index: 4; }
.ww-hero2026 .wwh-print:nth-child(3) { --w: 244px; --r: -1.5deg; top: 13%;  left: 35%;  z-index: 3; }
.ww-hero2026 .wwh-print:nth-child(4) { --w: 230px; --r: 5deg;   bottom: 7%; right: 3%;  z-index: 5; }
.ww-hero2026 .wwh-print:nth-child(5) { --w: 240px; --r: -4deg;  bottom: 2%; left: 4%;   z-index: 3; }
.ww-hero2026 .wwh-print:nth-child(6) { --w: 226px; --r: 2.5deg; bottom: 0;  left: 41%;  z-index: 4; }
/* one authored entrance: prints settle onto the table (transform only) */
@keyframes wwh-settle {
  from { transform: rotate(calc(var(--r) * 2.6)) translateY(-26px); }
  to   { transform: rotate(var(--r)) translateY(0); }
}
.ww-hero2026 .wwh-print { animation: wwh-settle 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.ww-hero2026 .wwh-print:nth-child(1) { animation-delay: 0.05s; }
.ww-hero2026 .wwh-print:nth-child(2) { animation-delay: 0.12s; }
.ww-hero2026 .wwh-print:nth-child(3) { animation-delay: 0.19s; }
.ww-hero2026 .wwh-print:nth-child(4) { animation-delay: 0.26s; }
.ww-hero2026 .wwh-print:nth-child(5) { animation-delay: 0.33s; }
.ww-hero2026 .wwh-print:nth-child(6) { animation-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .ww-hero2026 .wwh-print { animation: none; transition: none; }
  .ww-hero2026 .wwh-cta { transition: none; }
}
@media (max-width: 980px) {
  .ww-hero2026 .wwh-inner { grid-template-columns: 1fr; gap: 44px; padding: 60px 24px 72px; }
  .ww-hero2026 .wwh-sub { max-width: 60ch; }
  .ww-hero2026 .wwh-table {
    min-height: 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 26px 24px 34px;
    margin: 0 -24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(191, 218, 227, 0.6) transparent;
  }
  .ww-hero2026 .wwh-table::-webkit-scrollbar { height: 6px; }
  .ww-hero2026 .wwh-table::-webkit-scrollbar-thumb { background: rgba(191, 218, 227, 0.6); border-radius: 3px; }
  .ww-hero2026 .wwh-print { position: static; flex: 0 0 228px; scroll-snap-align: center; }
  .ww-hero2026 .wwh-print:nth-child(odd)  { --r: -2.5deg; }
  .ww-hero2026 .wwh-print:nth-child(even) { --r: 2.5deg; }
}
@media (max-width: 480px) {
  .ww-hero2026 .wwh-inner { padding: 48px 20px 56px; }
  .ww-hero2026 h1 { font-size: 2.15rem; }
  .ww-hero2026 .wwh-print { flex-basis: 206px; }
}

/* --- Content sections --- */
.wws { padding: 32px 0; }
.wws--tint { background: var(--ww-tint); }
.wws--dark {
  background:
    radial-gradient(900px 420px at 22% 10%, rgba(93, 158, 181, 0.3), transparent 62%),
    linear-gradient(168deg, var(--ww-teal) 0%, #1d4c5d 44%, var(--ww-teal-deep) 100%);
  color: var(--ww-teal-soft);
}
.wws-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.wws h2 {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  letter-spacing: -0.01em;
  color: var(--ww-ink);
  margin: 0;
}
.wws--dark h2 { color: #fff; }
.wws-sub { font-size: 1rem; line-height: 1.6; max-width: 62ch; margin: 10px 0 0; }
.wws--dark .wws-sub { color: var(--ww-teal-soft); }
.wws-all {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.9);
  white-space: nowrap;
  padding-bottom: 4px;
}
.wws-all:hover { text-decoration-color: var(--ww-yellow); text-decoration-thickness: 3px; }
.wws--dark .wws-all { color: #fff; }
.wws-tools { display: flex; align-items: center; gap: 20px; }
.ww-cnav { display: flex; gap: 10px; }
.ww-cbtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(45, 95, 115, 0.4);
  background: #fff;
  color: var(--ww-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.ww-cbtn:hover:not(:disabled) { border-color: var(--ww-pink); color: var(--ww-pink); transform: translateY(-2px); }
.ww-cbtn:disabled { opacity: 0.35; cursor: default; }
.ww-cbtn svg { display: block; }
.ww-cbtn--prev svg { transform: rotate(90deg); }
.ww-cbtn--next svg { transform: rotate(-90deg); }
.wws--dark .ww-cbtn { background: transparent; border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.wws--dark .ww-cbtn:hover:not(:disabled) { border-color: var(--ww-yellow); color: var(--ww-yellow); }

/* card carousels */
.ww-carousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 14px;
  padding: 14px 14px 26px;
  margin: 0 -14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 95, 115, 0.45) transparent;
}
.ww-carousel::-webkit-scrollbar { height: 6px; }
.ww-carousel::-webkit-scrollbar-thumb { background: rgba(45, 95, 115, 0.45); border-radius: 3px; }
.wws--dark .ww-carousel { scrollbar-color: rgba(191, 218, 227, 0.6) transparent; }
.wws--dark .ww-carousel::-webkit-scrollbar-thumb { background: rgba(191, 218, 227, 0.6); }
.ww-card {
  flex: 0 0 min(358px, 84vw);
  scroll-snap-align: start;
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(9, 28, 36, 0.1);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ww-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(9, 28, 36, 0.16); }
.wws--dark .ww-card { box-shadow: 0 6px 18px rgba(9, 28, 36, 0.28); }
.wws--dark .ww-card:hover { box-shadow: 0 14px 30px rgba(9, 28, 36, 0.4); }
.ww-card img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1px; }
.ww-card-body { padding: 13px 8px 8px; }
.ww-card-body h3 {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ww-ink);
  margin: 0 0 8px;
}
.ww-card-body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ww-body);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* compact list item (winter/summer/Belgium) */
.ww-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(9, 28, 36, 0.12);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.ww-mini:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(9, 28, 36, 0.18); }
.ww-mini img { width: 110px; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1px; flex: 0 0 110px; }
.ww-mini span { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.95rem; line-height: 1.4; color: var(--ww-ink); padding-right: 8px; }
.ww-minis { display: grid; gap: 16px; }
.ww-cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ww-cols2 h3 { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--ww-ink); margin: 0; }
.ww-cols2 .wws-sub { margin: 8px 0 18px; font-size: 0.95rem; }
.ww-cols3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* intro */
.ww-intro p { font-size: 1.09rem; line-height: 1.7; max-width: 62ch; margin: 0 0 20px; }
.ww-intro p strong { color: var(--ww-ink); }
.ww-more {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.9);
}
.ww-more:hover { text-decoration-color: var(--ww-yellow); text-decoration-thickness: 3px; }

/* community band */
.ww-join { text-align: center; }
.ww-join h2 { margin-bottom: 30px; }
.ww-quote {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 16px 36px rgba(9, 28, 36, 0.42);
  max-width: 580px;
  margin: 0 auto 36px;
  padding: 26px 30px 22px;
  transform: rotate(-1.2deg);
}
.ww-quote blockquote { margin: 0; font-size: 1.09rem; line-height: 1.65; color: var(--ww-ink); }
.ww-quote figcaption { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.88rem; color: #4e707c; margin-top: 12px; }
.ww-follow { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.ww-follow .ww-follow-label { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 1rem; color: #fff; }
.ww-follow a { color: #fff; display: block; transition: color 0.2s, transform 0.2s; }
.ww-follow a:hover { color: var(--ww-yellow); transform: translateY(-2px); }

/* footer */
.ww-footer { background: var(--ww-teal-deep); color: var(--ww-teal-soft); padding-top: 64px; }
.ww-footer .ww-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.ww-footmark { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.35rem; color: #fff; line-height: 1.2; margin: 0 0 14px; }
.ww-footer .ww-tagline { font-size: 0.95rem; line-height: 1.65; max-width: 34ch; margin: 0; }
.ww-footer h3 { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.ww-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ww-footer ul a { color: var(--ww-teal-soft); text-decoration: none; font-size: 0.95rem; }
.ww-footer ul a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.ww-footer .ww-social a { color: var(--ww-teal-soft); }
.ww-footer .ww-social a:hover { color: var(--ww-yellow); }
.ww-foot-bottom { border-top: 1px solid rgba(191, 218, 227, 0.25); }
.ww-foot-bottom .ww-wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; font-size: 0.88rem; color: var(--ww-teal-soft); }

/* responsive */
@media (max-width: 980px) {
  .wws { padding: 32px 0; }
  .ww-mega { display: none !important; }
  .ww-has-mega a.ww-navlink svg { display: none; }
  .ww-footer .ww-foot-grid { grid-template-columns: 1fr 1fr; }
  .ww-cols3 { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .ww-cols2 { grid-template-columns: 1fr; }
  .ww-nav .ww-wrap { gap: 0 22px; padding-top: 4px; }
  .ww-menu { gap: 0 22px; }
  a.ww-navlink { padding: 9px 0; }
  .ww-cbtn { width: 36px; height: 36px; }
  .ww-search { margin-left: 0; width: 100%; padding: 4px 0 14px; }
  .ww-search input { flex: 1; width: auto; }
}
@media (max-width: 620px) {
  .ww-footer .ww-foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .ww-card { flex-basis: min(320px, 84vw); }
}

/* --- Interior pages --- */
.ww-pagehero {
  background:
    radial-gradient(900px 420px at 78% 0%, rgba(93, 158, 181, 0.3), transparent 62%),
    linear-gradient(168deg, var(--ww-teal) 0%, #1d4c5d 44%, var(--ww-teal-deep) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.ww-pagehero .ww-wrap { padding-top: 58px; padding-bottom: 62px; position: relative; }
.ww-pagehero h1 {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 32ch;
  text-wrap: balance;
}
.ww-pagehero .ww-pagehero-sub { font-size: 1.09rem; line-height: 1.65; color: var(--ww-teal-soft); max-width: 56ch; margin: 16px 0 0; }
.ww-pagehero .ww-pagehero-sub strong { color: #fff; font-weight: 600; }
.ww-crumb { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; margin: 0 0 18px; color: var(--ww-teal-soft); }
.ww-crumb a { color: var(--ww-teal-soft); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(253, 231, 0, 0.6); }
.ww-crumb a:hover { color: #fff; }
.ww-pagehero--print { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
.ww-heroprint {
  background: #fff;
  padding: 9px 9px 12px;
  border-radius: 3px;
  box-shadow: 0 16px 36px rgba(9, 28, 36, 0.42);
  transform: rotate(2.5deg);
  width: min(320px, 36vw);
}
.ww-heroprint img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1px; }
.ww-heroprint figcaption { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--ww-ink); padding: 9px 4px 2px; }
.ww-heroprint figure { margin: 0; }
@media (max-width: 800px) { .ww-pagehero--print { grid-template-columns: 1fr; } .ww-heroprint { display: none; } }

/* prose */
.ww-prose { max-width: 72ch; }
.ww-prose p { font-size: 1.06rem; line-height: 1.75; margin: 0 0 20px; }
.ww-prose h2 { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.55rem; color: var(--ww-ink); margin: 44px 0 14px; letter-spacing: -0.01em; }
.ww-prose h3 { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ww-ink); margin: 32px 0 10px; }
.ww-prose ul { margin: 0 0 20px; padding-left: 22px; display: grid; gap: 8px; }
.ww-prose li { font-size: 1.02rem; line-height: 1.6; }
.ww-prose li::marker { color: var(--ww-teal); }
.ww-prose a { color: var(--ww-ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: rgba(253, 231, 0, 0.9); }
.ww-prose a:hover { text-decoration-color: var(--ww-yellow); text-decoration-thickness: 3px; }
.ww-prose blockquote {
  margin: 28px 0;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(9, 28, 36, 0.14);
  padding: 20px 24px;
  transform: rotate(-0.8deg);
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--ww-ink);
}
.ww-prose blockquote cite { display: block; font-style: normal; font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.88rem; color: #4e707c; margin-top: 10px; }
.ww-prose img { border-radius: 1px; background: #fff; padding: 8px; box-shadow: 0 8px 22px rgba(9, 28, 36, 0.14); height: auto; }
.ww-prose figure { margin: 28px 0; }
.ww-prose figcaption { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.85rem; color: #4e707c; margin-top: 10px; }

/* static card grid (listings) */
.ww-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ww-grid .ww-card { flex: none; width: auto; }
@media (max-width: 980px) { .ww-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ww-grid { grid-template-columns: 1fr; } }

/* chips (destinations, TOC) */
.ww-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ww-chip {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ww-ink);
  background: #fff;
  border: 1px solid rgba(45, 95, 115, 0.3);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ww-chip:hover { border-color: var(--ww-pink); color: var(--ww-pink); box-shadow: 0 6px 14px rgba(9, 28, 36, 0.12); }
.wws--tint .ww-chip { background: #fff; }

/* meta row under post titles */
.ww-meta { font-family: Quicksand, sans-serif; font-weight: 600; font-size: 0.88rem; color: #4e707c; display: flex; gap: 18px; flex-wrap: wrap; margin: 14px 0 0; }
.ww-pagehero .ww-meta { color: var(--ww-teal-soft); }

/* pagination */
.ww-pages { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.ww-page {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(45, 95, 115, 0.3);
  color: var(--ww-ink);
  text-decoration: none;
  padding: 0 14px;
}
.ww-page:hover { border-color: var(--ww-pink); color: var(--ww-pink); }
.ww-page[aria-current="page"] { background: var(--ww-teal); border-color: var(--ww-teal); color: #fff; }

/* stat notes (advertise) */
.ww-notes { display: flex; flex-wrap: wrap; gap: 26px; }
.ww-note {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 10px 26px rgba(9, 28, 36, 0.16);
  padding: 20px 26px 18px;
  transform: rotate(var(--r, -1deg));
}
.ww-note .ww-note-big { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.9rem; color: var(--ww-ink); display: block; }
.ww-note .ww-note-label { font-size: 0.92rem; color: var(--ww-body); }
.wws--dark .ww-note { box-shadow: 0 16px 36px rgba(9, 28, 36, 0.42); }

/* article pages: center the reading measure */
.ww-article .ww-prose { margin-inline: auto; }
.ww-article .ww-chips { max-width: 72ch; margin-inline: auto; }

/* --- Review fixes: interior pages --- */
/* the magenta pill, available outside the hero (same values as .ww-hero2026 .wwh-cta) */
.wwh-cta {
  display: inline-block;
  background: var(--ww-pink);
  color: #fff;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(12, 36, 45, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}
.wwh-cta:hover { background: #f52e73; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(12, 36, 45, 0.5); }
.wwh-cta:active { transform: translateY(0); }
/* non-interactive chips stay quiet: no click promise */
span.ww-chip { border-color: rgba(45, 95, 115, 0.18); color: var(--ww-body); cursor: default; }
span.ww-chip:hover { border-color: rgba(45, 95, 115, 0.18); color: var(--ww-body); transform: none; box-shadow: none; }
/* breadcrumb as a real nav landmark */
.ww-crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 8px; margin: 0; padding: 0; }
.ww-crumb li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.6; }
/* interior motion honors reduced-motion entirely */
@media (prefers-reduced-motion: reduce) {
  .ww-card, .ww-chip, .ww-mini, .ww-cbtn, .ww-page, .ww-social a, .ww-follow a, .wwh-cta, .ww-lang summary svg, .ww-menutoggle svg { transition: none; animation: none; }
}
/* the signature print survives mobile: restack small instead of hiding */
@media (max-width: 800px) {
  .ww-heroprint { display: block; width: min(250px, 68vw); margin-top: 6px; transform: rotate(2deg); }
}

/* --- Mobile menu: one wide "Menu" button opens the rest (matches the live site) --- */
.ww-menutoggle { display: none; }
@media (max-width: 800px) {
  .ww-menutoggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: 0;
    color: #fff;
    font-family: Quicksand, sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px 0;
    cursor: pointer;
  }
  .ww-menutoggle svg { transition: transform 0.25s; }
  .ww-nav.is-open .ww-menutoggle svg { transform: rotate(180deg); }
  .ww-nav .ww-menu { display: none; width: 100%; }
  .ww-nav .ww-search { display: none; }
  .ww-nav.is-open .ww-menu { display: block; }
  .ww-nav.is-open .ww-search { display: flex; }
  .ww-nav .ww-menu > li { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .ww-nav.is-open a.ww-navlink { padding: 13px 0; }
}

/* --- superTOC: jump-link table of contents in the chip language --- */
.ww-prose .superTOC { margin: 0 0 32px; }
.ww-prose .superTOC ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ww-prose .superTOC li { margin: 0; font-size: inherit; line-height: inherit; }
.ww-prose .superTOC a {
  display: inline-block;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ww-ink);
  background: #fff;
  border: 1px solid rgba(45, 95, 115, 0.3);
  border-radius: 999px;
  padding: 9px 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ww-prose .superTOC a:hover { border-color: var(--ww-pink); color: var(--ww-pink); text-decoration: none; }
.ww-prose h2 { scroll-margin-top: 24px; }
@media (prefers-reduced-motion: reduce) { .ww-prose .superTOC a { transition: none; } }

/* superTOC: long lists collapse behind a See-all chip */
.ww-prose .superTOC a.ww-toc-extra { display: none; }
.ww-prose .superTOC.is-open a.ww-toc-extra { display: inline-block; }
.ww-prose .superTOC.is-open .ww-toc-more { display: none; }
.ww-prose .superTOC .ww-toc-more {
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: var(--ww-teal);
  border: 1px solid var(--ww-teal);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ww-prose .superTOC .ww-toc-more:hover { background: var(--ww-teal-deep); border-color: var(--ww-teal-deep); }
@media (prefers-reduced-motion: reduce) { .ww-prose .superTOC .ww-toc-more { transition: none; } }

/* --- Genesis column classes (values copied from the production stylesheet) --- */
.ww-prose::after { content: ""; display: table; clear: both; }
.five-sixths, .four-sixths, .one-fourth, .one-half, .one-sixth, .one-third,
.three-fourths, .three-sixths, .two-fourths, .two-sixths, .two-thirds {
  float: left;
  margin-left: 2.564102564102564%;
}
.one-half, .three-sixths, .two-fourths { width: 48.717948717948715%; }
.one-third, .two-sixths { width: 31.623931623931625%; }
.four-sixths, .two-thirds { width: 65.81196581196582%; }
.one-fourth { width: 23.076923076923077%; }
.three-fourths { width: 74.35897435897436%; }
.one-sixth { width: 14.52991452991453%; }
.five-sixths { width: 82.90598290598291%; }
.first { clear: both; margin-left: 0; }
@media (max-width: 700px) {
  .five-sixths, .four-sixths, .one-fourth, .one-half, .one-sixth, .one-third,
  .three-fourths, .three-sixths, .two-fourths, .two-sixths, .two-thirds {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

/* --- Content components: postbox, share chips, Content Views (restored) --- */
.ww-prose .superTOC { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 32px; }
.ww-prose .my-postbox {
  background: var(--ww-tint);
  border-radius: 3px;
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: 0 6px 16px rgba(9, 28, 36, 0.08);
}
.ww-prose .my-postbox p:last-child, .ww-prose .my-postbox ul:last-child { margin-bottom: 0; }
.ww-prose .scriptlesssocialsharing__buttons, .scriptlesssocialsharing__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.scriptlesssocialsharing .button {
  display: inline-block;
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ww-ink);
  background: #fff;
  border: 1px solid rgba(45, 95, 115, 0.3);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.scriptlesssocialsharing .button:hover { border-color: var(--ww-pink); color: var(--ww-pink); box-shadow: 0 6px 14px rgba(9, 28, 36, 0.12); text-decoration: none; }
.ww-prose .scriptlesssocialsharing a { text-decoration: none; }
.scriptlesssocialsharing h3, .scriptlesssocialsharing .scriptlesssocialsharing__heading { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ww-ink); margin: 24px 0 12px; }
.pt-cv-wrapper .pt-cv-content-item { margin-bottom: 26px; }
.pt-cv-wrapper .pt-cv-ifield {
  background: #fff;
  border-radius: 3px;
  padding: 8px 8px 10px;
  box-shadow: 0 4px 14px rgba(9, 28, 36, 0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pt-cv-wrapper .pt-cv-content-item:hover .pt-cv-ifield { box-shadow: 0 12px 26px rgba(9, 28, 36, 0.16); }
.pt-cv-wrapper .pt-cv-thumbnail { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 1px !important; }
.pt-cv-wrapper .pt-cv-title { font-family: Quicksand, sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.35; margin: 10px 6px 4px; }
.pt-cv-wrapper .pt-cv-title a { color: var(--ww-ink); text-decoration: none; }
.pt-cv-wrapper .pt-cv-title a:hover { color: var(--ww-pink); text-decoration: none; }
@media (prefers-reduced-motion: reduce) { .pt-cv-wrapper .pt-cv-ifield, .scriptlesssocialsharing .button, .ww-prose .superTOC .ww-toc-more { transition: none; } }

/* superTOC: mobile shows 7 links before See-all */
.ww-prose .superTOC .ww-toc-more--m { display: none; }
@media (max-width: 800px) {
  .ww-prose .superTOC a.ww-toc-extra-m { display: none; }
  .ww-prose .superTOC.is-open a.ww-toc-extra-m { display: inline-block; }
  .ww-prose .superTOC .ww-toc-more--m { display: inline-block; }
}

/* superTOC: mobile hides all links behind one Show button */
.ww-prose .superTOC .ww-toc-showall {
  display: none;
  font-family: Quicksand, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: var(--ww-teal);
  border: 1px solid var(--ww-teal);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
}
.ww-prose .superTOC .ww-toc-showall:hover { background: var(--ww-teal-deep); border-color: var(--ww-teal-deep); }
@media (max-width: 800px) {
  .ww-prose .superTOC a { display: none; }
  .ww-prose .superTOC .ww-toc-more { display: none; }
  .ww-prose .superTOC .ww-toc-showall { display: block; width: 100%; }
  .ww-prose .superTOC.is-open a { display: inline-block; }
  .ww-prose .superTOC.is-open .ww-toc-showall { display: none; }
}

/* .tourbox: tour recommendation callout in the world's language */
.ww-prose .tourbox, aside.tourbox {
  display: block;
  background: var(--ww-tint);
  border-radius: 3px;
  padding: 22px 26px;
  margin: 28px 0 2rem;
  box-shadow: 0 6px 16px rgba(9, 28, 36, 0.08);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ww-body);
}
.ww-prose .tourbox a, aside.tourbox a {
  color: var(--ww-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.9);
}
.ww-prose .tourbox a:hover, aside.tourbox a:hover { text-decoration-color: var(--ww-yellow); }
.ww-prose .tourbox p:last-child, aside.tourbox p:last-child { margin-bottom: 0; }

/* In-post callouts (.my-postbox, .tourbox): notes pinned to the planning table.
   White print card, soft teal shadow, and the world's yellow marker tick. */
.ww-prose .my-postbox, .ww-prose .tourbox, aside.tourbox {
  display: block;
  background: #fff;
  border-radius: 3px;
  padding: 24px 28px;
  margin: 32px 0;
  box-shadow: 0 10px 26px rgba(9, 28, 36, 0.14);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ww-body);
}
.ww-prose .my-postbox::before, .ww-prose .tourbox::before, aside.tourbox::before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: var(--ww-yellow);
  margin-bottom: 14px;
}
.ww-prose .my-postbox a, .ww-prose .tourbox a, aside.tourbox a {
  color: var(--ww-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(253, 231, 0, 0.9);
}
.ww-prose .my-postbox a:hover, .ww-prose .tourbox a:hover, aside.tourbox a:hover { text-decoration-color: var(--ww-yellow); text-decoration-thickness: 3px; }

/* Mobile header: logo and language changer on one row, social icons hidden */
@media (max-width: 800px) {
  .ww-header .ww-social { display: none; }
  .ww-header .ww-wrap { flex-wrap: nowrap; }
  .ww-logo img { height: 44px; }
}
