/* ─── Design Tokens ──────────────────────────────────────────────── */
:root {
  --sand:        #F5E6C8;
  --sand-light:  #FBF5EC;
  --sand-dark:   #EDD9A3;
  --terra:       #C4956A;
  --terra-deep:  #A0714A;
  --sage:        #7A9E7E;
  --sage-deep:   #5A7D5E;
  --bark:        #3D2B1A;
  --bark-light:  #6B4C2E;
  --gold:        #C9A84C;
  --cream:       #FFFDF7;
  --mist:        #F0EAE0;

  --font-title:  'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-poetry: 'Cormorant Garamond', Georgia, serif;

  --ease-smooth: cubic-bezier(.25, .46, .45, .94);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --radius-full: 9999px;
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--sand-light);
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
}

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease-smooth), box-shadow .4s;
}

.nav.scrolled {
  background: rgba(251, 245, 236, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61,43,26,.08);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-logo .logo-symbol {
  width: 28px; height: 28px;
  background: var(--terra);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--cream);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--bark-light);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--terra);
  transition: width .3s var(--ease-smooth);
}

.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terra); }

.nav-cta {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--terra);
  color: var(--cream) !important;
  font-weight: 600;
  transition: background .25s, transform .2s var(--ease-spring) !important;
}
.nav-cta:hover {
  background: var(--terra-deep) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: .3s;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #EDD9A3 0%, #F5E6C8 40%, #E8D5B0 70%, #D4C4A0 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}

.hero-circle-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  border: 1.5px solid var(--bark);
}

.hero-circle-2 {
  width: 900px; height: 900px;
  top: -300px; right: -350px;
  border: 1px solid var(--bark);
}

.hero-circle-3 {
  width: 400px; height: 400px;
  bottom: -100px; left: -150px;
  border: 1.5px solid var(--terra);
  opacity: .18;
}

.hero-mandala {
  position: absolute;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  opacity: .07;
  width: 420px;
  animation: slow-spin 80s linear infinite;
}

@keyframes slow-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ── Marauder's Map canvas ────────────────────────────────────────── */
#hero-trail {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Hero centered brand */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fade-up .8s var(--ease-smooth) forwards;
}

.hero-brand-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

/* Nav logo hidden by default on home, revealed on scroll */
.nav-logo-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.nav-logo-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.hero-eyebrow {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  opacity: 0;
  animation: fade-up .8s var(--ease-smooth) .2s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--terra);
  opacity: .4;
  width: 40px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--bark);
  max-width: 14ch;
  margin: 0 auto .75rem;
  opacity: 0;
  animation: fade-up .9s var(--ease-smooth) .35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-family: var(--font-poetry);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--bark-light);
  max-width: 72ch;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fade-up .9s var(--ease-smooth) .5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up .9s var(--ease-smooth) .65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s var(--ease-spring), box-shadow .2s, background .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terra);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(196,149,106,.35);
}

.btn-primary:hover {
  background: var(--terra-deep);
  box-shadow: 0 8px 28px rgba(196,149,106,.45);
}

.btn-ghost {
  border: 1.5px solid var(--bark);
  color: var(--bark);
  opacity: .75;
}

.btn-ghost:hover {
  opacity: 1;
  box-shadow: 0 4px 16px rgba(61,43,26,.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .5;
  animation: fade-up .8s var(--ease-smooth) 1.2s both, float 2.5s ease-in-out 2s infinite;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark-light);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--terra), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stats Banner ───────────────────────────────────────────────── */
.stats-banner {
  background: var(--bark);
  color: var(--sand);
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
  margin-top: .35rem;
}

/* ─── Section Layout ─────────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bark);
  margin-top: .5rem;
}

/* ─── Intro / About ──────────────────────────────────────────────── */
.intro {
  background: var(--cream);
}

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

.intro-text p {
  color: var(--bark-light);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Conviction statement block */
.conviction-block {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 4px solid var(--terra);
  background: rgba(196, 149, 106, 0.07);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--bark);
}
.conviction-line {
  display: block;
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--terra);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.intro-text blockquote {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terra);
  border-left: 3px solid var(--terra);
  padding-left: 1.25rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.intro-visual {
  position: relative;
}

.intro-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
  position: relative;
}

.intro-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-smooth);
}

.intro-img-frame:hover img {
  transform: scale(1.04);
}

.intro-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--terra);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-title);
  font-size: .95rem;
  box-shadow: 0 8px 32px rgba(196,149,106,.3);
  line-height: 1.3;
}

.intro-badge strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

/* Cheeky hand-drawn annotation */
.intro-annotation {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}

.intro-annotation-text {
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  transform: rotate(-3deg);
  display: block;
  margin-bottom: .1rem;
}

.intro-arrow {
  position: absolute;
  top: 4.2rem;
  left: 11.5rem;     /* shifted right to start from "me" */
  width: 120px;
  height: 183px;
  pointer-events: none;
  z-index: 3;
}

/* ─── Journal Cards ──────────────────────────────────────────────── */
.journal {
  background: var(--sand-light);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.journal-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61,43,26,.06);
  transition: transform .3s var(--ease-smooth), box-shadow .3s;
  cursor: pointer;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(61,43,26,.12);
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth);
}

.journal-card:hover .card-img img {
  transform: scale(1.06);
}

.card-tag {
  position: absolute;
  top: .85rem; left: .85rem;
  background: var(--cream);
  color: var(--terra);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
}

.card-body {
  padding: 1.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .75rem;
  color: var(--bark-light);
  opacity: .7;
}

.card-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: .6rem;
  line-height: 1.3;
  transition: color .2s;
}

.journal-card:hover .card-title {
  color: var(--terra);
}

.card-excerpt {
  font-size: .875rem;
  color: var(--bark-light);
  opacity: .8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-read-more {
  font-size: .8rem;
  font-weight: 600;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s;
}

.journal-card:hover .card-read-more { gap: .6rem; }

/* ─── Gallery ────────────────────────────────────────────────────── */
.gallery {
  background: var(--bark);
  color: var(--sand);
  padding: 5rem 2rem;
}

.gallery .eyebrow { color: var(--gold); }
.gallery .section-title { color: var(--sand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bark-light);
}

.gallery-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; } /* large left */
.gallery-item:nth-child(2) { grid-column: 4 / 6; grid-row: 1; }     /* medium top */
.gallery-item:nth-child(3) { grid-column: 6;     grid-row: 1; }     /* small top-right */
.gallery-item:nth-child(4) { grid-column: 4;     grid-row: 2; }     /* small bottom */
.gallery-item:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }    /* medium bottom-right */

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,20,12,.7) 0%, transparent 60%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-caption {
  font-size: .8rem;
  color: var(--sand);
  font-style: italic;
  font-family: var(--font-poetry);
}

.gallery-see-all {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── Wisdom / Quotes ────────────────────────────────────────────── */
.wisdom {
  background: var(--mist);
}

.wisdom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.quote-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 2px 16px rgba(61,43,26,.06);
  transition: transform .3s var(--ease-smooth), box-shadow .3s;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(61,43,26,.1);
}

.quote-card.featured {
  background: var(--terra);
  color: var(--cream);
  grid-row: span 2;
}

.quote-mark {
  font-family: var(--font-title);
  font-size: 5rem;
  line-height: .7;
  color: var(--terra);
  opacity: .2;
  position: absolute;
  top: 1.5rem; left: 2rem;
}

.quote-card.featured .quote-mark {
  color: var(--cream);
  opacity: .15;
}

.quote-text {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--bark);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.quote-card.featured .quote-text {
  color: var(--cream);
  font-size: 1.5rem;
}

.quote-author {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: .9;
}

.quote-card.featured .quote-author {
  color: var(--sand-dark);
}

.quote-place {
  font-size: .75rem;
  color: var(--bark-light);
  margin-top: .2rem;
  opacity: .6;
}

.quote-card.featured .quote-place {
  color: var(--sand);
  opacity: .7;
}

.quote-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--terra);
}

.quote-card.featured .quote-tag {
  background: rgba(255,255,255,.15);
  color: var(--sand);
}

/* ─── Destinations Strip ─────────────────────────────────────────── */
.destinations {
  background: var(--sand-light);
  /* no overflow:hidden — allows country dropdown to escape vertically */
}

.dest-track-wrap {
  overflow-x: clip;   /* clips scrolling track horizontally only */
  overflow-y: visible;
  margin-top: 2.5rem;
  padding-bottom: .5rem;
}

.dest-track {
  display: flex;
  gap: 1.25rem;
  animation: marquee 60s linear infinite;
  width: max-content;
}

.dest-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Country pill ─────────────────────────────────────── */
.dest-country-pill {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(61,43,26,.12);
  background: var(--cream);
  font-size: .85rem;
  font-weight: 500;
  color: var(--bark);
  white-space: nowrap;
  cursor: default;
  transition: border-color .2s, box-shadow .2s;
  z-index: 1;
}

.dest-country-pill:hover {
  border-color: var(--terra);
  box-shadow: 0 4px 20px rgba(196,149,106,.22);
  z-index: 200;
}

.dest-flag { font-size: 1rem; }

.dest-city-count {
  font-size: .7rem;
  font-weight: 400;
  opacity: .55;
  background: rgba(61,43,26,.07);
  border-radius: 999px;
  padding: .1rem .55rem;
}

/* ── Hover dropdown ───────────────────────────────────── */
.dest-cities-drop {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1.5px solid rgba(61,43,26,.15);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(61,43,26,.16);
  padding: .85rem 1rem 1rem;
  min-width: 190px;
  z-index: 300;
}

/* arrow pointing downward at bottom of card */
.dest-cities-drop::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(61,43,26,.15);
}
.dest-cities-drop::after {
  content: '';
  position: absolute;
  top: calc(100% - 1.5px);
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--cream);
}

.dest-country-pill:hover .dest-cities-drop { display: block; }

.dest-drop-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .6rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(61,43,26,.1);
}

/* ── Running stop list ────────────────────────────────── */
.dest-stop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* vertical connecting line */
.dest-stop-list::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  bottom: 9px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--terra) 0%, var(--sage) 100%);
  opacity: .35;
}

/* hide line for a single stop */
.dest-stop-list:has(li:only-child)::before { display: none; }

.dest-stop-list li {
  position: relative;
  padding: .28rem .3rem .28rem 1.5rem;
  font-size: .81rem;
  color: var(--bark);
  white-space: nowrap;
  line-height: 1.4;
  transition: color .15s;
}

/* hollow stop dot */
.dest-stop-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--terra);
  opacity: .75;
  transition: opacity .15s, background .15s;
}

/* last stop — filled dot (most recent / destination) */
.dest-stop-list li:last-child::before {
  background: var(--terra);
  opacity: 1;
}

.dest-stop-list li:hover { color: var(--terra); }
.dest-stop-list li:hover::before { opacity: 1; }

/* ─── Newsletter / CTA Band ──────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band .section-title {
  color: var(--cream);
  max-width: 18ch;
  margin: .5rem auto 1rem;
}

.cta-band p {
  color: rgba(255,253,247,.75);
  font-size: 1rem;
  max-width: 44ch;
  margin: 0 auto 2rem;
}

.cta-form {
  display: flex;
  gap: .75rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,253,247,.9);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--bark);
  outline: none;
  transition: background .2s;
}

.cta-form input:focus { background: var(--cream); }
.cta-form input::placeholder { color: var(--bark-light); opacity: .6; }

.btn-white {
  background: var(--cream);
  color: var(--sage-deep);
}

.btn-white:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--bark);
  color: var(--sand);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,230,200,.1);
}

.footer-brand p {
  font-size: .875rem;
  opacity: .55;
  max-width: 28ch;
  margin-top: .75rem;
  line-height: 1.7;
}

.footer-nav-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-nav-links a {
  font-size: .85rem;
  opacity: .55;
  transition: opacity .2s, color .2s;
}

.footer-nav-links a:hover { opacity: 1; color: var(--sand-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
  opacity: .4;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ─── Lightbox ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(29,20,12,.9);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,230,200,.1);
  color: var(--sand);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.lightbox-close:hover { background: rgba(245,230,200,.2); }

.lightbox-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(29,20,12,.85), transparent);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  pointer-events: none;
}

.lightbox-country {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
}

.lightbox-desc {
  font-size: 1rem;
  color: var(--cream);
  font-style: italic;
  font-family: var(--font-poetry);
  line-height: 1.4;
}

/* ─── Animations ─────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-visual { display: none; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
  }
  .wisdom-grid { grid-template-columns: 1fr; }
  .quote-card.featured { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 1rem 1.25rem; }
  .journal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px !important; }
  .stats-banner { gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
}

/* ─── Route Map Section ─────────────────────────────────────────── */
.map-section {
  --accent:  var(--terra);
  --accent2: var(--sage);
  --display: var(--font-title);
  --fg:      rgba(61, 43, 26, .12);
  background: var(--cream);
}

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.map-head .label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .5rem;
}

.map-head .display {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.2;
}

.map-head .display i { font-style: italic; color: var(--terra); }

.map-controls {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}

.map-section .btn  { padding: .5rem 1.1rem; font-size: .8rem; }

.map-section .ghost {
  background: transparent;
  border: 1.5px solid rgba(61, 43, 26, .2);
  color: var(--bark-light);
}

.map-section .ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  box-shadow: none;
}

.map-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(61, 43, 26, .1);
}

.leaflet-host {
  height: 480px;
  width: 100%;
  background: var(--sand);
}

.map-corner-stamp {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 400;
  pointer-events: none;
}

.mcs-inner {
  background: rgba(251, 245, 236, .92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: .9rem 1.1rem;
  border: 1px solid rgba(61, 43, 26, .1);
  min-width: 160px;
}

.mcs-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .3rem;
}

.mcs-day {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
}

.mcs-loc  { font-size: .85rem; color: var(--bark); font-weight: 500; margin-top: .25rem; }
.mcs-date { font-size: .75rem; color: var(--bark-light); opacity: .65; margin-top: .15rem; }

.map-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(61, 43, 26, .08);
}

.leg-pins { display: flex; flex-wrap: wrap; gap: .4rem; }

.leg-pin {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  background: transparent;
  font-size: .78rem;
  font-family: var(--font-body);
  color: var(--bark-light);
  cursor: pointer;
  transition: all .2s;
}

.leg-pin:hover         { border-color: rgba(61,43,26,.15); color: var(--bark); }
.leg-pin.active        { background: var(--sand); border-color: rgba(61,43,26,.12); color: var(--bark); font-weight: 600; }
.leg-pin.current       { color: var(--terra); font-weight: 700; }
.leg-pin .dot          { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ─── Leaflet Pin Icons ──────────────────────────────────────────── */
.pin-wrap {
  overflow: visible !important;
  background: none !important;
  border: none !important;
}

.pin {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.pin-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #C4956A;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  transition: transform .2s;
  flex-shrink: 0;
}

.pin:hover .pin-dot,
.pin.is-active .pin-dot { transform: scale(1.4); }

.pin.is-current .pin-dot {
  background: #c14a2a;
  width: 14px; height: 14px;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(193,74,42,.5);
}

.pin-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #3D2B1A;
  white-space: nowrap;
  background: rgba(251,245,236,.9);
  padding: 1px 5px;
  border-radius: 3px;
  margin-top: 3px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.pin:hover .pin-label,
.pin.is-active .pin-label,
.pin.is-current .pin-label { opacity: 1; }

.pin-now {
  font-family: 'DM Sans', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #c14a2a;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 2px;
  white-space: nowrap;
}

.pin-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(193,74,42,.5);
  animation: halo-pulse 2s ease-out infinite;
  pointer-events: none;
}

.pin-halo-2 {
  width: 42px; height: 42px;
  animation-delay: .8s;
}

@keyframes halo-pulse {
  0%   { transform: translate(-50%,-50%) scale(.6); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; }
}

.maplibregl-ctrl-attrib { font-size: 9px !important; background: rgba(251,245,236,.8) !important; }

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #EFE3CB;
  border-radius: var(--radius-lg);
  pointer-events: none;
  transition: opacity .4s;
}

.map-loading.hidden { opacity: 0; }

.map-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(196,149,106,.25);
  border-top-color: #C4956A;
  border-radius: 50%;
  animation: spin .9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.map-loading p {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bark-light);
  opacity: .6;
}

.map-error {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: #EFE3CB;
  border-radius: var(--radius-lg);
  color: var(--bark-light);
  font-size: .9rem;
  text-align: center;
  padding: 2rem;
}

.map-error strong { color: var(--terra); font-size: 1rem; }


/* ─── "En route to…" flying indicator ───────────────────────────── */
.tour-flying {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(29, 20, 12, .72);
  backdrop-filter: blur(8px);
  color: var(--sand);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .5rem 1.1rem;
  border-radius: var(--radius-full);
  animation: fade-up .4s var(--ease-smooth) forwards;
  white-space: nowrap;
}

.tour-flying-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra);
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}

/* ─── Photo mosaic overlay ───────────────────────────────────────── */
.tour-mosaic {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(20, 13, 6, .88);
  backdrop-filter: blur(3px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  padding: .75rem;
  gap: .65rem;
  animation: mosaic-fade .35s var(--ease-smooth) forwards;
}

@keyframes mosaic-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tour-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  flex: 1;
  min-height: 0;
}

.tour-mosaic-tile {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  min-height: 0;
  transform: scale(0);
  opacity: 0;
  animation: tile-pop .55s var(--ease-spring) forwards;
}

@keyframes tile-pop {
  0%   { transform: scale(0);    opacity: 0; border-radius: 50%; }
  65%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; border-radius: var(--radius-md); }
}

.tour-mosaic-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease-smooth);
}

.tour-mosaic-tile:hover img { transform: scale(1.08); }

.tour-mosaic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.tour-mosaic-city {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--sand);
  line-height: 1;
}

.tour-mosaic-meta {
  font-size: .7rem;
  color: var(--sand);
  opacity: .45;
  margin-top: .25rem;
  letter-spacing: .06em;
}

.tour-mosaic-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--terra);
  color: var(--cream);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, gap .2s;
  flex-shrink: 0;
}

.tour-mosaic-btn:hover { background: var(--terra-deep); gap: .6rem; }

@media (max-width: 600px) {
  .tour-mosaic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Page: Gallery ──────────────────────────────────────────────── */
.page-header {
  padding: 9rem 2rem 4rem;
  background: linear-gradient(170deg, #EDD9A3 0%, #F5E6C8 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-doodles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  opacity: 0.25;
  pointer-events: none;
}

.page-header .eyebrow { margin-bottom: .75rem; }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-header p {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bark-light);
  margin-top: .75rem;
}

.filter-bar {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2.5rem 2rem 0;
  background: var(--sand-light);
}

.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(61,43,26,.15);
  font-size: .8rem;
  font-weight: 600;
  color: var(--bark-light);
  background: var(--cream);
  transition: all .2s;
  letter-spacing: .04em;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}

.gallery-full {
  background: var(--sand-light);
  padding: 3rem 2rem 5rem;
}

.masonry-grid {
  max-width: 1140px;
  margin: 0 auto;
  columns: 3;
  column-gap: 1.25rem;
  /* Start hidden — JS fades in once first images are settled */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.masonry-grid.is-ready {
  opacity: 1;
}

.masonry-item.gallery-hidden {
  display: none !important;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* Placeholder colour + min-height while image is loading */
  background: var(--sand);
  min-height: 180px;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease-smooth);
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,20,12,.72), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem;
  gap: .25rem;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-country {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--terra-light, #E8A87C);
  opacity: .9;
}

.masonry-caption {
  font-family: var(--font-poetry);
  font-style: italic;
  color: var(--sand);
  font-size: .9rem;
  line-height: 1.35;
}

@media (max-width: 768px) { .masonry-grid { columns: 2; } }
@media (max-width: 480px) { .masonry-grid { columns: 1; } }

/* ─── Horizontal photo rows (3-across) ──────────────────────────── */
.photo-row {
  column-span: all;
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  min-height: 220px;
}
.photo-row .masonry-item {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.photo-row .masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-row:not(:has(.masonry-item:not(.gallery-hidden))) { display: none; }
@media (max-width: 768px) {
  .photo-row { flex-wrap: wrap; min-height: unset; }
  .photo-row .masonry-item { flex: 1 1 45%; min-height: 180px; }
}
@media (max-width: 480px) {
  .photo-row .masonry-item { flex: 1 1 100%; min-height: 220px; }
}

/* ─── Page: Journal ──────────────────────────────────────────────── */
.journal-page {
  background: var(--sand-light);
  padding: 3rem 2rem 5rem;
}

.journal-page-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: 0 2px 12px rgba(61,43,26,.06);
  transition: transform .3s var(--ease-smooth), box-shadow .3s;
  position: relative; /* needed for the full-card click overlay */
  cursor: pointer;
}

/* Stretch the read-more link to cover the entire card */
.post-card .card-read-more::after {
  content: '';
  position: absolute;
  inset: 0;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(61,43,26,.1);
}

.post-img {
  overflow: hidden;
  background: var(--sand);
}

.post-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth);
}

.post-card:hover .post-img img { transform: scale(1.06); }

.post-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-content .card-title { font-size: 1.4rem; }

.post-content p {
  font-size: .9rem;
  color: var(--bark-light);
  opacity: .8;
  margin: .75rem 0 1.25rem;
}

.sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(61,43,26,.06);
}

.sidebar-card h3 {
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tag {
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(61,43,26,.12);
  font-size: .75rem;
  font-weight: 500;
  color: var(--bark-light);
  background: transparent;
  transition: all .2s;
  cursor: pointer;
}

.tag:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}

@media (max-width: 900px) {
  .journal-page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .post-card { grid-template-columns: 1fr; }
  .post-img { height: 220px; }
}

/* ─── Wisdom Page ────────────────────────────────────────────────── */
.wisdom-page {
  background: var(--mist);
  padding: 3rem 2rem 5rem;
}

.wisdom-page-inner {
  max-width: 900px;
  margin: 0 auto;
}

.big-quote {
  background: var(--bark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 4rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.big-quote::before {
  content: '"';
  position: absolute;
  font-family: var(--font-title);
  font-size: 20rem;
  line-height: .7;
  top: 0; left: 1rem;
  color: var(--gold);
  opacity: .06;
  pointer-events: none;
}

.big-quote-text {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--sand);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.big-quote-author {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.wisdom-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wisdom-entry {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--terra);
  box-shadow: 0 2px 12px rgba(61,43,26,.05);
  transition: transform .3s var(--ease-smooth);
}

.wisdom-entry:hover { transform: translateX(6px); }

.wisdom-entry blockquote {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bark);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.wisdom-entry cite {
  font-size: .78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
}

.wisdom-entry .wisdom-context {
  font-size: .82rem;
  color: var(--bark-light);
  opacity: .6;
  margin-top: .35rem;
}
