@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --terracotta: #B8633E;
  --olive: #6B705C;
  --olive-dark: #294635;
  --cream: #FAE7D4;
  --light-bg: #F7F5F3;
  --text-dark: #333333;
  --text-body: #555555;

  /* Chrome (header bar, etymology strip) */
  --chrome-cream-bg: rgba(247, 245, 243, 0.88);
  --chrome-hairline: rgba(0, 0, 0, 0.06);
  --chrome-hairline-strong: rgba(0, 0, 0, 0.08);
  --chrome-header-height: 52px;
  --chrome-tagline-strip-height: 36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.7;
  background: white;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; cursor: pointer; }
.cmplz-cookiebanner.cmplz-dismissed { pointer-events: none !important; }

/* Chrome (top header, bottom etymology strip, closing block, masthead, primary nav)
   lives at the bottom of this file under the SITE CHROME section. */

/* Section Band */
.section-band {
  height: 50px;
  background: rgb(247, 248, 250);
}

/* CTA Button */
.it-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}
.it-cta:hover { background: var(--terracotta); color: white; }

/* Sections */
.section { padding: 80px 40px; }
.section .container { max-width: 1200px; margin: 0 auto; }

/* Tours-landing template: tighten adjacent-section whitespace.
   Collapses the 160px gaps between philosophy → testimonial → giuditta-block → tours
   that result from stacking .section blocks with 80px vertical padding. */
.page-template-template-tours-landing .philosophy.section { padding-bottom: 40px; }
.page-template-template-tours-landing .testimonials.section { padding-top: 40px; padding-bottom: 40px; }
.page-template-template-tours-landing .giuditta-block.section { padding-top: 50px; padding-bottom: 50px; }
.page-template-template-tours-landing .tours-section.section { padding-top: 40px; padding-bottom: 40px; }

/* ==================== GIUDITTA BLOCK ==================== */
/* Personal "Giuditta" block: headshot on left, reach-out + newsletter on right. */
.giuditta-block { background: white; }
.giuditta-block-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.giuditta-block-photo {
  flex: 0 0 220px;
}
.giuditta-block-photo .giuditta-headshot {
  display: block;
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.giuditta-block-content {
  flex: 1 1 auto;
  min-width: 0;
}
.giuditta-reachout { text-align: center; margin-bottom: 24px; }
.giuditta-reachout .cta-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 20px;
}
.giuditta-newsletter { padding: 24px 0 0; }
.giuditta-newsletter .tours-newsletter-intro h2 { font-size: 1.4rem; }
.giuditta-newsletter .inline-newsletter-toggle { color: var(--terracotta); }
.giuditta-newsletter .inline-newsletter-toggle:hover { color: var(--olive); }

.tours-grid-heading {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.8rem;
}

/* Stack on narrow viewports */
@media (max-width: 768px) {
  .giuditta-block-layout { flex-direction: column; gap: 24px; align-items: center; }
  .giuditta-block-photo { flex: 0 0 auto; }
  .giuditta-block-photo .giuditta-headshot { width: 160px; height: 160px; }
  .giuditta-block-content { width: 100%; }
}

/* ==================== TILTED PHOTO + DIAMOND FRAME (shared) ==================== */
.photo-tilt {
  position: relative;
  width: 400px;
  height: 400px;
  transform: rotate(-4deg);
  overflow: hidden;
}
.photo-tilt.tilt-right { transform: rotate(6deg); }
.photo-tilt.tilt-left  { transform: rotate(-6deg); }
.photo-tilt > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-tilt > .diamond-frame {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 2;
}
.photo-tilt .attributed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-tilt .attributed-image {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.tour-outcomes .photo-tilt .attributed-image img {
  object-position: center bottom;
}
/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://numenvia.com/wp-content/uploads/2026/03/rich-martello-yqCvYBdd4Y-unsplash.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 14px;
  border-radius: 12px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.hero h1 {
  font-size: 3.6rem;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ==================== PAGE CONTENT (inner pages) ==================== */
.page-content {
  padding-top: 80px;
}
/* Tour pages: reduce top gap after breadcrumb */
.tour-content { padding-top: 30px; }
.tour-content .region-intro.section:first-child { padding-top: 30px; }
.page-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.page-content .entry-content {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}
.page-content .entry-content h2 {
  font-size: 1.65rem;
  color: var(--olive);
  margin-top: 50px;
  margin-bottom: 16px;
}
.page-content .entry-content h3 {
  font-size: 1.6rem;
  color: var(--olive);
  margin-top: 40px;
  margin-bottom: 12px;
}
.page-content .entry-content p {
  margin-bottom: 18px;
}

/* ==================== VALUE PROP ==================== */
/* ==================== NUMENVIA ETYMOLOGY ==================== */
.numenvia-etymology {
  background: #1a1a18;
  text-align: center;
  padding: 80px 40px;
}
.etymology-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(247, 245, 243, 0.85);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}
.ety-sep {
  margin: 0 0.3em;
  opacity: 0.4;
}
.ety-defs {
  display: flex;
  justify-content: center;
  gap: 2.5em;
}
.ety-def {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(247, 245, 243, 0.7);
  margin-bottom: 0;
}
.ety-def-numen {
  text-align: right;
}
.ety-def-via {
  text-align: left;
}
.ety-def em {
  letter-spacing: 0.15em;
  font-style: normal;
  color: rgba(247, 245, 243, 0.85);
}

/* ==================== PHILOSOPHY ==================== */
.philosophy {
  background: var(--light-bg);
  text-align: center;
}
.philosophy .container {
  max-width: 720px;
}
.philosophy p {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 30px;
}

/* ==================== REGIONS ==================== */
.regions {
  background: white;
}
.regions h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.region-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.region-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/2;
  text-decoration: none;
}
.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.region-card:hover img {
  transform: scale(1.05);
}
.region-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.region-card:hover .region-card-overlay {
  background: rgba(0,0,0,0.15);
}
.region-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.region-card-overlay {
  flex-direction: column;
  gap: 4px;
}
.region-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ==================== TESTIMONIALS (narrative) ==================== */
.testimonials { background: var(--light-bg); }
.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.testimonial-narrative blockquote {
  margin: 0 0 36px;
  padding: 0 0 0 40px;
  border-left: 3px solid var(--terracotta);
  max-width: 720px;
}
.testimonial-narrative blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}
.testimonial-narrative blockquote cite {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==================== GO DEEPER ==================== */
.go-deeper {
  background: white;
}
.go-deeper h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.go-deeper-list {
  max-width: 600px;
}
.go-deeper-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.2s;
}
.go-deeper-row:first-child {
  border-top: 1px solid #eee;
}
.go-deeper-row:hover {
  color: var(--terracotta);
}
.go-deeper-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}
.go-deeper-thumb img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}
.go-deeper-thumb-duo {
  width: 120px;
  position: relative;
  height: 90px;
}
.go-deeper-thumb-duo img {
  width: 72px;
  height: 72px;
  border: 2px solid white;
  border-radius: 4px;
}
.go-deeper-thumb-duo .duo-left {
  position: relative;
  z-index: 2;
}
.go-deeper-thumb-duo .duo-right {
  position: absolute;
  top: 12px;
  left: 44px;
  z-index: 1;
}
.go-deeper-text {
  flex: 1;
  min-width: 0;
}
.go-deeper-title {
  font-size: 1.05rem;
  line-height: 1.4;
}
.go-deeper-arrow {
  font-size: 1.2rem;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ==================== INLINE NEWSLETTER ==================== */
.inline-newsletter {
  background: white;
  padding: 0 40px 20px;
}
.inline-newsletter .container {
  max-width: 800px;
  margin: 0 auto;
}
.inline-newsletter .cta-secondary {
  margin-top: 0;
  text-align: center;
}
/* Tighten CTA band when followed by inline newsletter */
.cta-band:has(+ .inline-newsletter) {
  padding-bottom: 20px;
}
.inline-newsletter-toggle {
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  color: var(--olive);
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.inline-newsletter-toggle::after {
  content: ' \2192';
}
.inline-newsletter-toggle:hover {
  color: var(--terracotta);
}
.inline-newsletter-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.inline-newsletter-form.open {
  max-height: 400px;
}
/* Tours landing page newsletter intro */
.tours-newsletter { padding-top: 40px; }
.tours-newsletter-intro { text-align: center; margin-bottom: 12px; }
.tours-newsletter-intro h2 { margin-bottom: 8px; }
.tours-newsletter-intro p { color: #666; font-size: 1.05rem; }
.tours-newsletter-actions { display: flex; align-items: center; justify-content: center; gap: 16px; }
.tours-newsletter-sep { color: #999; }

/* ==================== PEOPLE & PLACES GRID ==================== */
.people-places {
  background: var(--light-bg);
}
.people-places h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.pp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.pp-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  text-decoration: none;
}
.pp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pp-card:hover img {
  transform: scale(1.05);
}
.pp-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  display: flex;
  flex-direction: column;
}
.pp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
}
.pp-card-region {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 2px;
}

/* keep old carousel styles for other pages that may use them */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  background: white; border-radius: 12px; padding: 40px 20px 30px;
  min-width: 33.333%; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial-card .quote-mark { font-size: 3rem; color: #E0C88A; line-height: 1; margin-bottom: 16px; }
.testimonial-card .quote-text {
  font-size: 0.95rem; color: var(--text-body); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
  max-width: 340px; margin-left: auto; margin-right: auto;
}
.testimonial-card .stars { color: #F0C040; font-size: 1.2rem; margin-bottom: 16px; }
.testimonial-card .reviewer { font-weight: 700; font-size: 0.95rem; }
.testimonial-card .location { font-size: 0.85rem; color: var(--text-body); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 2.5rem;
  color: var(--olive); cursor: pointer; z-index: 2; padding: 10px;
}
.carousel-btn:hover { color: var(--terracotta); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: #ccc; cursor: pointer; padding: 0;
}
.carousel-dots button.active { background: var(--terracotta); }

/* ==================== NEWSLETTER ==================== */
.newsletter { background: white; }
.newsletter.newsletter-alt {
  background: var(--light-bg);
  border-top: 4px solid #c5c5c0;
}
.newsletter .container { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.newsletter .text-wrap { flex: 1.2; min-width: 300px; }
.newsletter h2 { font-size: 2.5rem; margin-bottom: 24px; }
.newsletter p { font-size: 1.05rem; color: var(--text-body); margin-bottom: 30px; }
.newsletter .photos {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
.newsletter .photos .photo-tilt:last-child {
  width: 240px;
  height: 240px;
  margin-top: -22px;
  margin-left: 60px;
  position: relative;
  z-index: 3;
}
.newsletter .photos .photo-tilt {
  width: 300px;
  height: 300px;
}
.newsletter .photos .photo-tilt > img {
  object-position: center center;
}
.newsletter .form-placeholder {
  background: var(--light-bg); padding: 30px; border-radius: 8px;
  text-align: center; color: var(--text-body);
}
.newsletter input::placeholder,
.newsletter textarea::placeholder {
  color: var(--text-dark) !important;
  opacity: 1 !important;
}

/* ==================== PHOTO GRID ==================== */
.photo-grid { background: var(--light-bg); padding: 60px 0; }
.photo-grid .grid-row { display: flex; gap: 4px; }
.photo-grid .grid-row img { flex: 1; height: 260px; object-fit: cover; min-width: 0; }

/* ==================== PAGE HERO (reusable) ==================== */
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-subtitle {
  color: white;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-attribution {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}
.hero-attribution a {
  color: inherit;
  text-decoration: none;
}
.hero-attribution a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}
.hero-attribution a:hover {
  text-decoration: underline;
}

/* ==================== STORIES ATTRIBUTION ==================== */
.stories-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
}
.stories-attribution a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}
.stories-attribution a:hover {
  color: var(--terracotta);
}
.stories-attribution em {
  font-style: italic;
  color: var(--terracotta);
}
.attribution-headshot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

/* Old PODCAST GRID rules removed — journal index now uses the
   editorial header + entries list defined in the EDITORIAL HEADER
   section near the bottom of this file. */

/* ==================== PODCAST HEADER BAR ==================== */
.podcast-header {
  background: var(--olive);
  padding: 44px 40px 14px;
}
.podcast-header .container {
  max-width: 1200px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.podcast-header-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cream);
  white-space: nowrap;
  text-decoration: none;
}
.podcast-header-label:hover {
  color: white;
}
.podcast-header h1 {
  font-size: 1.6rem;
  color: white;
  margin: 0;
  flex: 1;
}
.podcast-header-title {
  flex: 1;
}
.podcast-header-title h1 {
  margin: 0;
}
.podcast-header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin: 2px 0 0;
}
.podcast-header-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.page-hero .podcast-header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin: 6px 0 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ==================== PODCAST SINGLE ==================== */
.podcast-single {
  padding-top: 0;
}
.podcast-single .section {
  padding-top: 30px;
}
.podcast-single .container {
  max-width: 800px;
}
.podcast-single h1 {
  color: var(--olive);
}
.podcast-single .entry-content [id^="msg-"],
.podcast-single .entry-content .wa-day-header[id] {
  scroll-margin-top: 80px;
}
.podcast-single .entry-content .wp-block-image {
  margin: 32px 10% 16px;
}
.podcast-single .entry-content .wp-block-image img,
.podcast-single .entry-content .wp-block-image video {
  width: 100%;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .podcast-single .entry-content .wp-block-image {
    margin-left: 0;
    margin-right: 0;
  }
}
.podcast-single .entry-content img { max-width: 100%; height: auto; width: auto; }
.podcast-single .captioned-image-container,
.podcast-single .image2-inset { max-width: 100%; overflow: hidden; }
.podcast-single figure.podcast-image {
  margin: 1.5em 0;
  max-width: 100%;
}
.podcast-single figure.podcast-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.podcast-single blockquote {
  margin: 1.5em 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--terracotta);
}
.podcast-single blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}
.podcast-single .entry-content,
.podcast-single p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}
.podcast-single .entry-content p {
  margin-bottom: 1.2em;
}
.podcast-single .entry-content h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}
.podcast-single .entry-content h4 + ul {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 16px 16px 16px 36px;
  margin-bottom: 1.5em;
  font-size: 0.95rem;
}
/* Post actions (share, comment, substack link) */
.post-actions {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.post-actions-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.post-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(184, 99, 62, 0.3);
  border-radius: 4px;
  transition: all 0.2s;
}
.post-action-btn:hover {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.post-action-btn svg {
  flex-shrink: 0;
}
/* .post-substack-link still rendered on trip-day/trip-hub pages — kept here for those branches. */
.post-substack-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 12px 16px;
  margin-top: 30px;
  background: var(--light-bg);
  border-radius: 4px;
}
.post-substack-link svg { color: var(--olive); flex-shrink: 0; }
.post-substack-link a { color: var(--terracotta); font-weight: 500; }
.post-substack-link a:hover { text-decoration: underline; }

.podcast-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.podcast-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text-dark);
  flex: 1;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.podcast-nav-link:hover {
  background: var(--light-bg);
}
.podcast-nav-next {
  text-align: right;
}
.podcast-nav-dir {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
}
.podcast-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
}
.podcast-nav-date {
  font-size: 0.78rem;
  color: var(--text-body);
}
.podcast-nav-placeholder {
  flex: 1;
}
@media (max-width: 600px) {
  .podcast-nav { flex-direction: column; gap: 12px; }
  .podcast-nav-next { text-align: left; }
}
.podcast-back {
  margin-top: 50px;
  text-align: center;
}

/* ==================== CREATOR STORIES ==================== */
.section-alt { background: var(--light-bg); }
.tours-section,
.creator-stories,
.places-section {
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.tours-section h2,
.creator-stories h2,
.places-section h2 {
  color: var(--olive);
  margin-bottom: 22px;
  font-size: 1.65rem;
}
.creator-stories .container { max-width: 1200px; }

/* Stories grid (shared by tour pages + creator profile) */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.story-card {
  text-decoration: none;
  color: var(--text-dark);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.story-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.story-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.story-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}
.story-card-creator-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.story-card-body .story-card-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: var(--text-body) !important;
  opacity: 0.6;
  display: block;
  line-height: 1.3;
}
.story-excerpt {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.story-card-creator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.story-card-headshot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.story-card-creator-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}
.story-read-more {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: 8px;
  display: inline-block;
}

/* ==================== STORY HEADER BAR ==================== */
.story-header {
  background: var(--olive);
  padding: 44px 40px 14px;
}
.story-header .container {
  max-width: 1200px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.story-header-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
  white-space: nowrap;
}
.story-header h1 {
  font-size: 1.6rem;
  color: white;
  margin: 0;
  flex: 1;
}

/* ==================== STORY SINGLE ==================== */
.story-single .section { padding-top: 14px; }
.story-single .container { max-width: 800px; }
.story-title-block {
  margin-bottom: 0;
}
.story-title-block h1 {
  font-size: 2.4rem;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.15;
}
.story-title-block .story-header-date {
  display: block;
  margin-top: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}
.story-single .entry-content,
.story-single p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}
.story-single p {
  margin-bottom: 1.2em;
}
.story-single .drop-cap::first-letter {
  float: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2em;
  line-height: 0.8;
  padding-right: 8px;
  padding-top: 4px;
  color: var(--olive);
}
.story-single .story-excerpt, .story-single .experience-excerpt, .story-single .tour-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
}

.story-creator-headshot-link {
  flex-shrink: 0;
  line-height: 0;
}
.story-creator-name-link {
  text-decoration: none;
  color: inherit;
}
.story-creator-name-link:hover strong {
  color: var(--terracotta);
}
.story-creator-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.story-creator-headshot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.story-creator-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-creator-info strong {
  font-size: 1rem;
  color: var(--text-dark);
}
.story-creator-bio {
  font-size: 0.88rem;
  color: var(--text-body);
}
.story-hero-image {
  margin: 0 -75px 30px;
}
.story-hero-image img {
  width: auto;
  border-radius: 6px;
  margin-bottom: 0;
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.story-single .container > figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5em 0;
}
.story-hero-image figcaption {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
  margin-top: 1px;
  text-align: right;
}
.story-hero-image figcaption a {
  color: inherit;
  text-decoration: underline;
}
.image-caption {
  display: block;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  order: 2;
  align-self: center;
  margin-top: 2px;
}
.image-attribution {
  display: block;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
  text-align: right;
}
.image-attribution a {
  color: inherit;
  text-decoration: underline;
}
.attributed-image {
  display: block;
  margin: 0;
  padding: 0;
}
.attributed-image img {
  margin-bottom: 0;
}
figure.wp-block-video {
  margin: 0 auto;
}
figure.wp-block-video video {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto !important;
}
figure.wp-block-video figcaption {
  max-width: 600px;
  margin: 2px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
figure.wp-block-video .image-caption {
  align-self: center;
}
.wp-block-video .video-transcript-body {
  width: 90vw;
  max-width: 720px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
}
.attributed-video {
  display: block;
  margin: 0;
  padding: 0;
}
.attributed-video video {
  width: 100%;
  border-radius: 6px;
  display: block;
}
figcaption:has(.image-caption) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Text with media (text on left, image/video on right) */
.text-with-media {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
.text-with-media-text { flex: 1; min-width: 0; }
.text-with-media-media { flex: 0 0 280px; }
.text-with-media-media video { border-radius: 6px; display: block; width: 100%; }
@media (max-width: 700px) {
  .text-with-media { flex-direction: column; }
  .text-with-media-media { flex: none; width: 100%; }
}

/* Story breadcrumbs */
.story-breadcrumbs {
  padding: 8px 0 0;
}
.story-breadcrumbs a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.story-breadcrumbs a:hover {
  color: white;
}
.story-breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  margin: 0 6px;
  font-size: 0.75rem;
}

/* Story tags (bottom of article) */
.story-related {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.story-related-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--olive);
  margin-bottom: 20px;
}
.story-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
/* More from creator */
.story-more-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.story-more-section h2 {
  font-size: 1.8rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.story-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-more-card {
  text-decoration: none;
  color: var(--text-dark);
  transition: opacity 0.2s;
}
.story-more-card:hover { opacity: 0.8; }
.story-more-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}
.story-more-card h3 {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
}

/* ==================== CREATOR PROFILE ==================== */
.creator-profile .container { max-width: 1200px; }
.creator-profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.creator-profile-headshot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.creator-profile-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.creator-profile-bio {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
}
.creator-profile-name {
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.creator-profile-link {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 500;
}
.creator-giuditta-note {
  background: rgba(107, 112, 92, 0.06);
  border-left: 3px solid var(--olive);
  padding: 20px 28px;
  margin: 0 0 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-body);
}
.creator-giuditta-note cite {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  font-style: normal;
  font-family: 'Raleway', sans-serif;
  color: var(--olive);
}
.creator-giuditta-placeholder {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* Creators Directory */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}
.creator-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.2s;
}
.creator-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.creator-card-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.creator-card-headshot-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.creator-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.creator-card-name {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
}
.creator-card-bio {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}
.creator-card-count {
  font-size: 0.8rem;
  color: var(--olive);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Closing block (footer nav, copyright, render time) lives in SITE CHROME at end of file. */

/* ==================== ABOUT HERO ==================== */
/* ==================== HERO TITLE BAND ==================== */
.hero-title-band {
  background: var(--olive);
  padding: 14px 40px;
}
.hero-title-band .container {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-title-band .band-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
}

/* ==================== ABOUT HERO ==================== */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 0;
}
.about-hero .container {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 14px;
  border-radius: 12px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.about-hero h1 {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ==================== ABOUT INTRO ==================== */
.about-intro { background: white; padding: 60px 40px 30px; }
.about-intro .container { max-width: 900px; }
.about-intro h2 {
  font-size: 2.8rem;
  color: var(--olive);
  margin-bottom: 30px;
}
.about-intro .attributed-image {
  float: right;
  width: 210px;
  margin: -10px 0 16px 28px;
}
.about-intro-img {
  width: 100%;
  display: block;
}
.about-intro p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ==================== FOUNDER BIO ==================== */
.founder-bio { background: white; padding-top: 40px; }
.founder-bio.alt { background: var(--light-bg); }
.founder-bio .container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.founder-bio .bio-text {
  flex: 1;
  min-width: 0;
}
.founder-bio .bio-photo {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.founder-bio .headshot {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}
.founder-bio--float .container {
  display: block;
  max-width: 900px;
}
.founder-bio--float .container::after {
  content: '';
  display: table;
  clear: both;
}
/* Float the .bio-photo wrapper (not img) so shape-outside circle has room to curve.
   margin-box is 320x302 (280+margin). Circle coords are in margin-box space. */
.founder-bio--float .bio-photo {
  display: block;
  width: 280px;
  height: 280px;
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 0;
  shape-margin: 24px;
}
.founder-bio--float-right .bio-photo {
  float: left;
  margin-right: 40px;
  shape-outside: circle(140px at 140px 150px);
}
.founder-bio--float-left .bio-photo {
  float: right;
  margin-left: 40px;
  shape-outside: circle(140px at 180px 150px);
}
.founder-bio--float .bio-photo > img.headshot {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.region-intro .founder-bio--small {
  margin-top: -40px;
}
.founder-bio--small .bio-photo {
  width: 130px;
  height: 130px;
  margin-top: 0;
  margin-bottom: 8px;
  shape-margin: 16px;
}
.founder-bio--small .bio-photo > img.headshot {
  width: 130px;
  height: 130px;
}
.founder-bio--small.founder-bio--float-right .bio-photo {
  shape-outside: circle(65px at 65px 73px);
}
.founder-bio h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.founder-bio > .container > .bio-text > p,
.founder-bio--float > .container > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}
.founder-bio .bio-details {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
.founder-bio .highlight {
  flex: 1;
  padding-left: 20px;
  border-left: 3px solid rgba(0,0,0,0.06);
}
.founder-bio .highlight p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-bio .pull-quote {
  flex: 1;
}
.founder-bio .pull-quote .quote-mark {
  font-size: 4rem;
  color: #ccc;
  line-height: 0.8;
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
}
.founder-bio .pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==================== CTA BAND ==================== */
.cta-band {
  background: white;
  text-align: center;
  padding: 80px 40px;
}
.cta-band .container { max-width: 800px; margin: 0 auto; }
.cta-band .cta-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 20px;
}
.cta-band .cta-wrap { margin-bottom: 30px; }
.cta-band .cta-wrap .it-cta {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.cta-band .cta-wrap .it-cta:hover {
  background: transparent;
  color: var(--terracotta);
}

/* ==================== INQUIRY FORM ==================== */
.inquiry-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.inquiry-form-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.inquiry-form-wrap.visible {
  height: auto;
  overflow: visible;
}
.inquiry-form-wrap[hidden] {
  display: block;
}

.inquiry-form {
  max-width: 520px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: left;
}
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.inquiry-form textarea {
  resize: vertical;
  min-height: 60px;
}
/* Secondary CTA (newsletter link under inquiry button) */
.cta-secondary {
  font-size: 0.9rem;
  color: var(--olive);
  margin-top: 24px;
  text-align: center;
}
.cta-secondary .inquiry-toggle {
  background: none !important;
  border: none !important;
  color: var(--olive) !important;
  padding: 0 !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none;
  cursor: pointer;
}
.cta-secondary .inquiry-toggle::after {
  content: ' \2192';
}
.cta-secondary .inquiry-toggle:hover {
  color: var(--terracotta) !important;
}
.cta-secondary a {
  color: var(--olive);
  text-decoration: none;
  font-weight: 400;
}
.cta-secondary a::after {
  content: ' \2192';
}
.cta-secondary a:hover {
  color: var(--terracotta);
}

.inquiry-form-prompt {
  font-size: 0.9rem;
  color: var(--olive);
  margin-bottom: 16px;
}
.cta-band .cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 30px;
}
.inquiry-field {
  margin-bottom: 12px;
}
.inquiry-row {
  display: flex;
  gap: 12px;
}
.inquiry-row .inquiry-field {
  flex: 1;
}
.inquiry-submit-row {
  text-align: center;
  margin-top: 18px;
}
.inquiry-submit {
  background: var(--terracotta) !important;
  color: white !important;
  border-color: var(--terracotta) !important;
  cursor: pointer;
}
.inquiry-submit:hover:not(:disabled) {
  background: transparent !important;
  color: var(--terracotta) !important;
}
.inquiry-submit:disabled {
  background: #ccc !important;
  border-color: #ccc !important;
  color: #fff !important;
  cursor: default;
}
.inquiry-status {
  text-align: center;
  margin-top: 12px;
  font-size: 0.9rem;
}
.inquiry-status.success {
  color: var(--olive);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
}
.inquiry-status.error {
  color: var(--terracotta);
}
.inquiry-toggle-wrap {
  margin-bottom: 0;
}

/* Newsletter variant — compact */
.inquiry-form--newsletter {
  max-width: 520px;
  margin: 0 auto;
  padding-top: 20px;
}
.inquiry-form--newsletter .inquiry-submit {
  width: auto !important;
  padding: 10px 30px !important;
  font-size: 0.8rem !important;
}
.inquiry-form--newsletter .inquiry-row {
  flex-direction: column;
  gap: 8px;
}
.inquiry-form--newsletter .inquiry-submit {
  background: var(--olive) !important;
  color: var(--cream) !important;
  border-color: var(--olive) !important;
  width: 100%;
}
.inquiry-form--newsletter .inquiry-submit:hover {
  background: var(--olive-dark) !important;
  color: var(--cream) !important;
}

/* Contact page — form fills its column; align prompt with left-column text */
.contact-form .inquiry-form {
  max-width: none;
  padding-top: 0;
}

/* CTA band with inquiry form */
.cta-band .inquiry-toggle {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.cta-band .inquiry-toggle:hover {
  background: transparent;
  color: var(--terracotta);
}

@media (max-width: 600px) {
  .inquiry-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==================== EPISODES / TUSCAN ROOTS ==================== */
.episodes { background: white; }
.episodes .container { max-width: 1200px; }
.episodes-heading {
  font-size: 2.8rem;
  color: var(--olive);
  text-align: center;
  margin-bottom: 50px;
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.episode-card {
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.2s;
}
.episode-card:hover {
  transform: translateY(-4px);
}
.episode-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
}
.episode-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.episode-card .episode-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 6px;
}
.episode-card .listen-link {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
}

/* ==================== PHILOSOPHY / NUMENVIA WAY ==================== */
.philosophy-intro { background: white; padding: 80px 40px; }
.philosophy-intro .container { max-width: 850px; }
.philosophy-intro .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}
.philosophy-intro p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.philosophy-intro em {
  color: var(--terracotta);
  font-style: italic;
}

.tour-born { background: var(--light-bg); }
.tour-born .container { max-width: 850px; }
.tour-born h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.tour-born p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tour-born ul {
  list-style: disc;
  padding-left: 24px;
}
.tour-born ul li {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.meet-people { background: white; }
.meet-people .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.meet-people .meet-text {
  flex: 1;
  min-width: 300px;
}
.meet-people h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.meet-people p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.meet-people .meet-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.meet-people .meet-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

/* ==================== REGION BLOCKQUOTE ==================== */
.region-blockquote {
  margin: 36px 0;
  padding: 24px 30px;
  border-left: 4px solid var(--terracotta);
  background: var(--light-bg);
  border-radius: 0 8px 8px 0;
}
.region-blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}
.region-read-more {
  font-weight: 500;
  font-size: 0.95rem;
}
.region-feature-img {
  margin: 30px 0;
}
.region-feature-img img {
  width: 100%;
  border-radius: 6px;
}
.region-caption {
  font-size: 0.85rem;
  color: var(--text-body);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

/* Subtle CTA band (e.g. Basilicata partner outreach) */
.cta-band-subtle {
  padding: 40px 40px;
}
.cta-band-subtle .cta-wrap .it-cta {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 10px 28px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}
.cta-band-subtle .cta-wrap .it-cta:hover {
  background: var(--terracotta);
  color: white;
}
.cta-tagline-subtle {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 30px;
}

/* Tighter stories section when following CTA */
.cta-band-subtle + .creator-stories {
  padding-top: 26px;
}
.cta-band-subtle + .creator-stories h2 {
  margin-bottom: 24px;
}

/* ==================== REGION NAV (olive breadcrumb bar) ==================== */
.region-nav {
  background: var(--olive);
  padding: 44px 40px 14px;
}
.region-nav#content {
  scroll-margin-top: var(--nav-height, 50px);
}
/* Tour Cards */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.tour-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.tour-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.tour-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.tour-excerpt {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
.tour-card-dates {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}
.tour-dates-text {
  color: var(--text-body);
}
.tour-read-more {
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: auto;
}
.region-signpost p {
  margin: 0 0 4px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.region-signpost .region-signpost-gap {
  margin-top: 14px;
}
.region-signpost a {
  color: var(--terracotta);
  text-decoration: none;
}
.region-signpost a:hover {
  text-decoration: underline;
}
.region-signpost strong {
  color: var(--text-dark);
}
.region-signpost em {
  font-style: italic;
}
@media (max-width: 768px) {
  .region-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .search-overlay {
    z-index: 99995;
  }
  .region-photos-row figure {
    flex: 1 1 45%;
  }
  .region-photos-row figure img {
    height: 180px;
  }
  .story-related-grid {
    grid-template-columns: 1fr;
  }
  .story-hero-image {
    margin-left: 0;
    margin-right: 0;
  }
  .glance-combined-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tour-pdf-btn span {
    display: none;
  }
  .tour-pdf-btn {
    padding: 14px;
    border-radius: 50%;
  }
}
.region-nav .container {
  max-width: 1200px;
  margin: 0 auto;
}
.region-breadcrumbs a,
.region-breadcrumb-current {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.region-breadcrumbs a:hover {
  color: white;
}
.region-breadcrumb-current {
  color: var(--cream);
  font-weight: 600;
}
.region-breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  margin: 0 6px;
  font-size: 0.75rem;
}

/* ==================== EXPERIENCE PAGES ==================== */
.experience-single .container {
  max-width: 850px;
}
.curator-note {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 8px;
  border-left: 4px solid var(--terracotta);
}
.curator-note-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.curator-note blockquote {
  margin: 0;
  padding: 0;
}
.curator-note blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}
.curator-note cite {
  display: block;
  margin-top: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-style: normal;
  color: var(--text-body);
}
.experience-single .entry-content {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}
.experience-single .entry-content p {
  margin-bottom: 18px;
}
.experience-single .entry-content h2 {
  font-size: 2rem;
  color: var(--olive);
  margin-top: 40px;
  margin-bottom: 16px;
}
.experience-single .entry-content h3 {
  font-size: 1.4rem;
  color: var(--olive);
  margin-top: 30px;
  margin-bottom: 12px;
}
.experience-single .entry-content img {
  border-radius: 6px;
}
/* Indent standalone images on experience pages so they don't span full width */
.experience-single .entry-content > .story-hero-image {
  margin: 24px 10% 8px;
}
/* Full-width outdent: break out of container, inset 50px from viewport edges */
.experience-single .entry-content > .story-hero-image.full-width {
  margin-left: calc(-50vw + 50% + 50px);
  margin-right: calc(-50vw + 50% + 50px);
  width: calc(100vw - 100px);
  max-width: calc(100vw - 100px);
}
.experience-single .entry-content > .story-hero-image.full-width img {
  width: 100%;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .experience-single .entry-content > .story-hero-image.full-width {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
}
.experience-single .entry-content > .story-hero-image img {
  width: 100%;
}
@media (max-width: 700px) {
  .experience-single .entry-content > .story-hero-image {
    margin-left: 0;
    margin-right: 0;
  }
}
.experience-single .region-photos-row figure img {
  margin: 0;
  border-radius: 6px;
}
.experience-single .region-photos-row figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
  line-height: 1.4;
}

/* Experience sub-pages (pictures, overflow content) */
.experience-subpage .container {
  max-width: 850px;
}
.experience-subpage .entry-content {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
}
.experience-subpage .entry-content p {
  margin-bottom: 18px;
}
.experience-subpage .entry-content h2 {
  font-size: 2rem;
  color: var(--olive);
  margin-top: 40px;
  margin-bottom: 16px;
}
.experience-subpage .entry-content h3 {
  font-size: 1.4rem;
  color: var(--olive);
  margin-top: 30px;
  margin-bottom: 12px;
}
.experience-subpage .entry-content img {
  border-radius: 6px;
}

figcaption a {
  color: inherit;
  text-decoration: underline;
}
.experience-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.experience-links h3 {
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 16px;
}
.experience-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.experience-external-link {
  display: inline-block;
  font-size: 1rem;
  color: var(--terracotta);
  font-weight: 500;
}
.experience-link-block {
  margin-bottom: 18px;
}
.experience-link-desc {
  color: var(--text-body);
  font-size: 0.88rem;
  margin-top: 3px;
  margin-left: 12px;
  padding-left: 10px;
  border-left: 2px solid rgba(0,0,0,0.12);
  line-height: 1.5;
}
.experience-tour-cta {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 8px;
}
.experience-tour-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
}

.experience-tour-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.experience-tour-link {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.experience-tour-link:hover {
  color: var(--accent-dark, #8b4513);
}

/* ==================== PEOPLE & PLACES ==================== */
.people-places .container {
  max-width: 1200px;
}
.people-places h1 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 12px;
}
.people-places-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 40px;
}
.people-places-coming {
  font-size: 1.05rem;
  color: var(--text-body);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.experience-card {
  text-decoration: none;
  color: var(--text-dark);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.experience-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.card-img-pos-center-bottom img { object-position: center bottom; }
.card-img-pos-center-top img { object-position: center top; }
.card-img-pos-left-top img { object-position: left top; }
.card-img-pos-left-center img { object-position: left center; }
.experience-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.experience-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.3;
}
.experience-excerpt {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.podcast-single .experience-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
}
.podcast-single .tour-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
}
.experience-read-more {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: auto;
}
.experience-related .stories-grid {
  border-top: none;
  padding-top: 30px;
  background-image: linear-gradient(to right, transparent, rgba(107, 112, 92, 0.15), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}
.experience-related {
  padding-top: 0;
}

/* "Learn more" divider — heading inside the trip-day related-cards section */
.trip-learn-more-section { padding-top: 56px; }
/* Trim the paper-coloured gap above the related-cards section */
.podcast-trip-day:has(+ .trip-learn-more-section) .section,
.podcast-trip-hub:has(+ .trip-learn-more-section) .section {
  padding-bottom: 40px;
}
.trip-learn-more-section .np-card-section-inner > .trip-learn-more-divider {
  margin: 0 0 40px;
}
.trip-learn-more-divider {
  text-align: center;
  position: relative;
}
.trip-learn-more-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(107, 112, 92, 0.25);
}
.trip-learn-more-divider span {
  position: relative;
  background: var(--bg-warm-gray);
  padding: 0 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive, #6b7c3e);
}

/* ==================== REGION PAGES ==================== */
#content { scroll-margin-top: var(--nav-height, 50px); }
.story-header#content { scroll-margin-top: var(--nav-height, 50px); }
.region-intro { background: white; }
.region-intro .container { max-width: 850px; }
.region-intro h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.region-intro .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.region-intro .pull-quote-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--terracotta);
  text-align: center;
  line-height: 1.5;
  margin: 40px 0;
}
.region-intro p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.region-intro .wp-block-image,
.region-intro .attributed-image {
  margin: 32px 10% 16px;
}
.region-intro .wp-block-image img,
.region-intro .attributed-image img {
  width: 100%;
  border-radius: 6px;
}
@media (max-width: 700px) {
  .region-intro .wp-block-image,
  .region-intro .attributed-image {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Full-width video grid */
.region-videos-full {
  background: var(--light-bg);
  padding: 0;
}
.video-full-grid {
  display: flex;
}
.video-wrap {
  position: relative;
  flex: 1;
  padding-bottom: 28.125%;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Region photo strip */
.region-photos { padding: 0; }
.region-photos-row {
  display: flex;
  gap: 4px;
}
.region-photos-row > img {
  flex: 1;
  height: 300px;
  object-fit: cover;
  min-width: 0;
}
.region-photos-row figure.gallery-item {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.region-photos-row figure.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.region-photos-row figure.gallery-item figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
  line-height: 1.4;
}

/* Tour at a Glance */
.tour-glance { background: white; }
.tour-glance .container { max-width: 900px; }
.tour-glance h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 40px;
  text-align: center;
}
.glance-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.glance-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 28px 24px;
}
.glance-item h3 {
  font-size: 1.4rem;
  color: var(--olive);
  margin-bottom: 12px;
  font-weight: 700;
}
.glance-item p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 8px;
}
.glance-item p:first-of-type {
  margin-top: auto;
}
.glance-item p:last-of-type {
  margin-bottom: auto;
}
.glance-item small {
  font-size: 0.85rem;
  color: var(--text-body);
}
.glance-item strong {
  font-size: 1.15em;
  color: var(--text-dark);
}
.tour-glance-combined {
  background: white;
  padding-bottom: 20px;
  padding-top: 30px;
}
.tour-glance-combined .container {
  max-width: 1000px;
}
.tour-glance-combined h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 0;
  text-align: center;
}
.glance-combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
}
.glance-col {
  padding: 24px 20px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.glance-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--olive);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.glance-col p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 4px;
}
.glance-year {
  font-weight: 700;
  color: var(--olive) !important;
}
.glance-small {
  font-size: 0.82rem !important;
  color: #999 !important;
  margin-top: 8px;
}
.glance-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section divider */
.section-divider {
  text-align: center;
  padding: 27px 0;
}
.divider-icon {
  font-size: 1.2rem;
  color: var(--olive);
  position: relative;
}
.section-divider::before,
.section-divider::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  vertical-align: middle;
  margin: 0 16px;
}

/* Timeline Itinerary */
.itinerary-timeline {
  background: white;
  padding-top: 20px;
}
.itinerary-timeline .container { max-width: 700px; }
.itinerary-timeline h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 50px;
  text-align: center;
}
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--olive);
  opacity: 0.25;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--terracotta);
  background: white;
  z-index: 1;
}
.timeline-content {
  padding-left: 12px;
  border-left: 2px solid rgba(0,0,0,0.08);
}
.timeline-photos {
  display: flex;
  gap: 0;
  margin: 12px 0 16px;
  border-radius: 8px;
  overflow: hidden;
}
.timeline-photos .timeline-img {
  flex: 1;
  min-width: 0;
  margin: 0;
  border-radius: 0;
}
.timeline-photos figure {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.timeline-photos figure:not(:last-child) {
  border-right: 3px solid white;
}
.timeline-photos figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}
.timeline-photos figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
}
.gallery-attribution {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
  margin: 0;
}
.timeline-img {
  width: 100%;
  border-radius: 8px;
  margin: 12px 0 16px;
  object-fit: cover;
  max-height: 300px;
}
.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-left: -14px;
  padding-left: 14px;
  border-left: none;
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Choose this tour */
.tour-choose { background: var(--light-bg); }
.tour-choose .container {
  max-width: 1100px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.tour-choose .choose-photo {
  flex: 0 0 auto;
  padding: 0 20px;
}
.tour-choose .choose-photo .photo-tilt {
  width: 340px;
  height: 460px;
  transform: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.tour-choose .choose-text {
  flex: 1;
  min-width: 280px;
}
.tour-choose h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.tour-choose ul {
  list-style: disc;
  padding-left: 24px;
}
.tour-choose li {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Tour details (accommodations, pricing, included) */
.tour-details { background: var(--light-bg); }
.tour-details .container { max-width: 900px; }
.details-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.detail-block {
  flex: 1;
  min-width: 280px;
}
.detail-icon {
  font-size: 1.2rem;
  color: var(--olive);
  margin-bottom: 4px;
  text-align: center;
  opacity: 0.5;
}
.detail-block {
  text-align: center;
}
.detail-block h2 {
  font-size: 1.3rem;
  color: var(--olive);
  margin-bottom: 12px;
}
.detail-block p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}
.detail-block ul {
  list-style: none;
  padding-left: 0;
}
.detail-block li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Tour outcomes */
.tour-outcomes { background: white; }
.tour-outcomes .container {
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.tour-outcomes .outcomes-text {
  flex: 1;
  min-width: 280px;
}
.tour-outcomes .outcomes-photo {
  flex: 0 0 auto;
  padding: 30px 20px;
}
.tour-outcomes .outcomes-photo .photo-tilt {
  width: 300px;
  height: 420px;
  transform: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.tour-outcomes h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.tour-outcomes ul {
  list-style: disc;
  padding-left: 24px;
}
.tour-outcomes li {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Private tour */
.tour-private {
  background: var(--light-bg);
  padding-top: 40px;
}
.tour-private .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.tour-private h2 {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 24px;
}
.tour-private p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  text-align: left;
  display: inline-block;
}

/* FAQ Accordion */
.tour-faq { background: white; }
.tour-faq .container { max-width: 850px; }
.tour-faq h2 {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 20px;
  text-align: center;
}
.faq-accordion {}
details.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
details.faq-item:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
details.faq-item summary {
  padding: 14px 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
details.faq-item summary::before {
  content: '\25B8';
  font-size: 0.8rem;
  color: var(--text-body);
  transition: transform 0.2s;
}
details.faq-item[open] summary::before {
  content: '\25BE';
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
details.faq-item p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  padding: 0 0 18px 24px;
}

/* ==================== PRIVATE TOUR FORM ==================== */
.private-tour-form {
  max-width: 800px;
}

/* ==================== WPFORMS OVERRIDES ==================== */
.newsletter .wpforms-container {
  max-width: 400px;
}
.newsletter .wpforms-container #wpforms-form-72 .wpforms-field-label {
  display: none;
}
.newsletter .wpforms-container .wpforms-form input[type="text"],
.newsletter .wpforms-container .wpforms-form input[type="email"] {
  font-family: 'Raleway', sans-serif !important;
  font-size: 14px !important;
  border: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 12px !important;
  background: #fff !important;
}
.newsletter .wpforms-container .wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline {
  font-family: 'Raleway', sans-serif !important;
  font-size: 12px !important;
  color: var(--text-dark);
}
.newsletter .wpforms-container .wpforms-form .wpforms-field-checkbox .wpforms-field-label-inline a {
  color: var(--text-dark);
  text-decoration: underline;
}
.newsletter .wpforms-container .wpforms-form .wpforms-submit-container button {
  font-family: 'Raleway', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background-color: var(--olive) !important;
  color: var(--cream) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 12px !important;
  width: 100% !important;
  cursor: pointer;
  transition: background-color 0.3s;
}
.newsletter .wpforms-container .wpforms-form .wpforms-submit-container button:hover {
  background-color: var(--olive-dark) !important;
}
.newsletter .wpforms-container .wpforms-confirmation-container-full {
  font-family: 'Raleway', sans-serif;
  color: var(--olive);
}

/* ==================== CONTACT PAGE ==================== */
.contact-heading-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-heading-row h2 { margin-bottom: 0; }
.contact-headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.contact-section { background: var(--light-bg); }
.contact-section .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-section .contact-info {
  flex: 1;
  min-width: 280px;
}
.contact-section .contact-info h2 {
  font-size: 2.5rem;
  color: var(--olive);
}
.contact-section .contact-info p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.contact-section .contact-info h3 {
  font-size: 1.5rem;
  color: var(--olive);
  margin-bottom: 8px;
  margin-top: 30px;
}
.contact-section .contact-email a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-section .contact-email a:hover {
  color: var(--terracotta);
}
.contact-section .social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.contact-section .social-links a {
  color: var(--terracotta);
  transition: opacity 0.3s;
}
.contact-section .social-links a:hover {
  opacity: 0.7;
}
.contact-section .contact-form {
  flex: 1.2;
  min-width: 300px;
}
.contact-section .contact-form .form-placeholder {
  background: white;
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
  color: var(--text-body);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== PRINT ==================== */
/* ==================== SEARCH OVERLAY ==================== */
.nav-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-dark);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.nav-search-toggle:hover {
  color: var(--terracotta);
}
.search-overlay {
  position: fixed;
  top: var(--nav-bottom, 44px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99989;
  background: rgba(0,0,0,0.3);
  display: none;
}
.search-overlay-inner {
  z-index: 99991;
  position: relative;
}
.search-overlay.search-open {
  display: block;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.search-overlay-inner {
  position: relative;
  top: 0;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - var(--nav-bottom, 44px) - 40px);
  overflow-y: auto;
  animation: searchSlideDown 0.2s ease-out;
}
.search-overlay.search-closing {
  animation: searchFadeOut 0.4s ease-in forwards;
}
.search-overlay.search-closing .search-overlay-inner {
  animation: searchSlideUp 0.4s ease-in forwards;
}
.search-x-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-body);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
  padding: 4px 8px;
  line-height: 1;
  z-index: 2;
}
.search-x-btn:hover {
  opacity: 0.8;
}
.search-input-wrap {
  position: relative;
}
.search-input-wrap .search-input {
  padding-right: 40px;
}
@keyframes searchSlideUp {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-20px); opacity: 0; }
}
@keyframes searchFadeOut {
  from { background: rgba(0,0,0,0.3); }
  to { background: rgba(0,0,0,0); }
}
@keyframes searchSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-overlay-inner > .container {
  padding: 24px 40px;
  max-width: 850px;
  margin: 0 auto;
}
.search-input {
  width: 100%;
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  outline: none;
  background: var(--light-bg);
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.search-input:focus {
  border-color: var(--olive);
}
.search-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.search-results {
  margin-top: 16px;
}
.search-result-group {
  margin-bottom: 20px;
}
.search-result-type {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.search-result-item:hover {
  background: var(--light-bg);
}
.search-result-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.search-result-text {
  min-width: 0;
}
.search-result-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-excerpt {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-no-results {
  text-align: center;
  padding: 30px 0;
  color: var(--text-body);
  font-style: italic;
}

@media print {
  .site-header,
  .site-tagline,
  .home-nav,
  .nav-hamburger,
  .nav-search-toggle,
  .search-overlay {
    display: none !important;
    position: static !important;
  }
  .page-hero,
  .story-header {
    padding-top: 0 !important;
  }
  body { padding-top: 0 !important; padding-bottom: 0 !important; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero .subtitle { font-size: 1.3rem; }
  .hero .container { padding: 6px 10px; }
  .hero .hero-overlay { background: rgba(0,0,0,0.4); }
  .hero .container { background: rgba(0,0,0,0.25); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
  .bio .container, .newsletter .container { flex-direction: column; }
  .bio .photo-wrap { flex: 0 0 auto; width: 100%; max-width: 420px; }
  .photo-tilt { width: 100%; height: auto; aspect-ratio: 1; }
  .value-prop .container { flex-direction: column; align-items: center; text-align: center; }
  .value-prop ul { text-align: left; }
  .testimonial-card { min-width: 100%; }
  .photo-grid .grid-row { flex-wrap: wrap; }
  .photo-grid .grid-row img { flex: 1 1 45%; height: 200px; }
  .etymology-word { font-size: 2rem; }
  .ety-defs { flex-direction: column; gap: 6px; align-items: center; }
  .ety-def-numen, .ety-def-via { text-align: center; }
  .ety-def { font-size: 1.15rem; }
  .numenvia-etymology { padding: 50px 20px; }
  .region-cards { grid-template-columns: repeat(2, 1fr); }
  .go-deeper-title { font-size: 0.95rem; }
  .pp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .newsletter .photos .photo-tilt { width: 260px; height: 260px; }
  .page-content { padding-top: 60px; }
  .page-content h1 { font-size: 2.2rem; }
  .page-hero { min-height: 50vh; }
  .page-hero h1 { font-size: 2.5rem; }
.episode-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .episode-card-img img { height: 180px; }

  /* About page responsive */
  .about-hero h1 { font-size: 2.8rem; }
  .about-intro h2 { font-size: 2rem; }
  .founder-bio .container { flex-direction: column; }
  .about-intro .attributed-image { float: none; width: 140px; margin: 0 auto 20px; }
  .founder-bio--float .container { display: block; }
  .founder-bio--float .bio-photo { float: none; margin: 0 auto 24px; shape-outside: none; width: 220px; height: 220px; }
  .founder-bio--float .bio-photo > img.headshot { width: 220px; height: 220px; }
  .founder-bio--small .bio-photo { width: 140px; height: 140px; margin-bottom: 12px; }
  .founder-bio--small .bio-photo > img.headshot { width: 140px; height: 140px; }
  .region-intro .founder-bio--small { margin-top: -40px; }
  .founder-bio .bio-photo { flex: 0 0 auto; order: -1; align-self: center; }
  .founder-bio .headshot { width: 220px; height: 220px; }
  .founder-bio h2 { font-size: 2rem; }
  .founder-bio .bio-details { flex-direction: column; gap: 24px; }
  .cta-band .cta-tagline { font-size: 1.4rem; }
  .episode-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .episodes-heading { font-size: 2rem; margin-bottom: 30px; }
  .contact-section .container { flex-direction: column; }
  .contact-section .contact-info h2 { font-size: 2rem; }
  .podcast-header { padding: 44px 16px 10px; }
  .podcast-header h1 { font-size: 1.1rem; }
  .podcast-header-label { font-size: 0.65rem; letter-spacing: 2px; }
  .podcast-header-subtitle { font-size: 0.95rem; }
  .podcast-header-date { display: none; }
  .philosophy-intro .lead { font-size: 1.3rem; }
  .video-full-grid { flex-direction: column; }
  .video-wrap { padding-bottom: 56.25%; }
  .region-photos-row { flex-wrap: wrap; }
  .region-photos-row > img { flex: 1 1 45%; height: 180px; }
.region-photos-row figure.gallery-item {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.region-photos-row figure.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.region-photos-row figure.gallery-item figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
  line-height: 1.4;
}
.gallery-item figcaption a, .story-hero-image figcaption a, .experience-single figcaption a {
  color: inherit;
  text-decoration: underline;
}
.gallery-item .image-caption {
  font-size: 0.75rem;
  padding: 0 6px;
}
.gallery-item .image-attribution {
  font-size: 0.65rem;
  padding: 0 6px;
}
.region-photos-row .gallery-item {
  flex: 1 1 0;
  min-width: 0;
}
.region-photos-row .gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}
.region-photos-row .gallery-item figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
}
.region-photos-row figure {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.region-photos-row figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.region-photos-row figcaption {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.3);
  text-align: right;
  padding: 1px 6px 0;
}
.glance-grid { flex-direction: column; gap: 24px; }
  .details-grid { flex-direction: column; gap: 30px; }
  .region-intro h2, .tour-glance h2, .itinerary h2,
  .tour-choose h2, .tour-outcomes h2, .tour-private h2, .tour-faq h2 { font-size: 2rem; }
  .detail-block h2 {
  font-size: 1.2rem;
}
  .tour-born h2, .meet-people h2 { font-size: 2rem; }
  .meet-people .container { flex-direction: column; }
  .meet-people .meet-gallery { max-width: 400px; }
  .tour-choose .container { flex-direction: column; }
  .tour-choose .choose-photo .photo-tilt { width: 260px; height: 350px; }
  .tour-outcomes .container { flex-direction: column; }
  .tour-outcomes .outcomes-photo .photo-tilt { width: 240px; height: 340px; }
.tour-outcomes .outcomes-photo .photo-tilt > img {
  object-position: center bottom;
}
.tour-outcomes .photo-tilt .attributed-image img {
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
  height: 100%;
}
.photo-tilt .attributed-image {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
/* Region nav responsive */
  .region-nav { padding: 44px 16px 10px; }
  .page-template-template-tours-landing .region-nav { display: none; }

  /* Experience pages responsive */
  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .experience-card-img img { height: 180px; }
  .experience-single .container, .experience-subpage .container { padding: 0 16px; }
  .curator-note { padding: 20px; }
  .experience-tour-cta { padding: 30px 20px; }
.experience-tour-cta p { font-size: 1.3rem; }
.experience-tour-link {
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.experience-tour-link:hover {
  color: var(--accent-dark, #8b4513);
}
  .people-places h1 { font-size: 2rem; }

  /* Creator stories responsive */
  .stories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .story-card-img img { height: 180px; }
  .story-header { padding: 44px 16px 10px; }
  .story-header h1 { font-size: 1.1rem; }
  .story-header-date { display: none; }
  .story-more-grid { grid-template-columns: 1fr; gap: 16px; }
  .creator-profile-header { flex-direction: column; text-align: center; }
  .creator-profile-headshot { width: 90px; height: 90px; }

  /* Chrome mobile rules live in the SITE CHROME section at the end of this file. */
}
/* version-bump */ {

}
.podcast-cover-image {
  max-width: 600px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
}
.podcast-cover-image img {
  width: 100%;
  height: auto;
  display: block;
}
.podcast-cover-attribution {
  text-align: right;
  font-size: 0.8rem;
  color: #bbb;
  padding: 6px 4px 0;
  font-style: normal;
}
.podcast-player {
  display: block;
  max-width: 600px;
  margin: 0 auto 30px;
}
.tour-dates-simple {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.tour-included {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.tour-included h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 15px;
}
.included-row {
  display: flex;
  gap: 40px;
  margin-bottom: 10px;
}
.included-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  line-height: 1.5;
}
.included-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a7d6b;
  margin-bottom: 2px;
}
.tour-choose .choose-text {
  font-size: 0.9rem;
}
.tour-choose .choose-text li {
  font-size: 0.9rem;
  line-height: 1.6;
}
.not-included-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 10px;
}
.tour-choose .diamond-frame, .tour-outcomes .diamond-frame {
  display: none;
}
.tour-included h2:first-child {
  margin-top: -0.5em;
}
.tour-pdf-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.inquiry-swap-hidden { display: none; }
.inquiry-nl-back { margin-top: 20px; text-align: center; font-size: 0.9rem; }
.inquiry-nl-back a { color: var(--olive); text-decoration: none; }
.inquiry-nl-back a:hover { text-decoration: underline; }
.inquiry-nl-back a::after { content: ''; }
.tour-pdf-btn.visible {
  opacity: 0.45;
  pointer-events: auto;
  background: var(--olive);
}
.tour-pdf-btn.visible:hover {
  opacity: 1;
}
.tour-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.24);
}
.tour-pdf-btn.generating {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}
.tour-pdf-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--olive-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.tour-pdf-btn[data-tooltip]:hover::after {
  opacity: 1;
}

/* ==================== TRIP LOG: HUB TOC ==================== */
/* Hub-specific tweaks only. Day cards reuse the .episode-card styles from
   /blog/, and the Giuditta intro reuses .founder-bio from /about-us/. */

/* Widen the podcast-single container on trip hubs so cards can go 4 across.
   .numenvia-trip-hub is on <body>; .podcast-single is on <article>. */
body.numenvia-trip-hub .podcast-single .container {
  max-width: 1200px;
}

/* The founder-bio section already has its own padding; reset it for the
   in-content variant that appears inside .entry-content on the hub. */
.wa-trip-intro.founder-bio {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 0 24px;
}
.wa-trip-intro.founder-bio .container {
  padding-left: 0;
  padding-right: 0;
}

/* Separator between the intro block and the day card grid. */
.podcast-single .entry-content hr.wa-trip-sep {
  border: 0;
  height: 2px;
  background: var(--olive, #6b7c3e);
  max-width: 280px;
  margin: 16px auto 48px;
  opacity: 0.9;
}

/* Override .podcast-single .entry-content cascades so trip-log TOC cards
   match the /blog/ cards exactly. .podcast-single .entry-content has higher
   specificity than the generic .episode-card-* rules, so we have to reach
   the same specificity level with prefixes of our own. */

/* Card thumbnails: fixed 220px tall, cropped. Pin the wrapper height too so
   lazy-loaded images can't push it taller than siblings. */
.podcast-single .entry-content .episode-cards .episode-card-img {
  height: 220px;
  overflow: hidden;
}
.podcast-single .entry-content .episode-cards .episode-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Empty thumbnail placeholder for days without images */
.podcast-single .entry-content .episode-cards .episode-card-img--empty {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e3 100%);
}

/* Card typography — override .podcast-single .entry-content h3 (1.6rem)
   and the body p font-size (1.05rem) so cards use the smaller blog sizes.
   Trip-log cards have no separate date span (title already IS the date),
   so margins are tightened to remove the gap that space would occupy. */
.podcast-single .entry-content .episode-cards .episode-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 4px;
}
.podcast-single .entry-content .episode-cards .episode-card-body .episode-excerpt {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 4px 0 12px;
  color: var(--text-body);
}
.podcast-single .entry-content .episode-cards .episode-card-body .episode-link {
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Flex the card body so the "Read" link aligns at the bottom of every card
   regardless of excerpt length. */
.episode-cards.wa-trip-toc .episode-card {
  display: flex;
  flex-direction: column;
}
.episode-cards.wa-trip-toc .episode-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.episode-cards.wa-trip-toc .episode-card-body .episode-excerpt {
  flex: 1;
}

/* Day nav positioned after the first time bar */
.wa-day-nav-top {
  border-top: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin: 0 0 24px;
  padding: 0 0 12px;
}
.wa-day-nav-top .podcast-nav-prev {
  padding-left: 0;
}
.wa-day-nav-top .podcast-nav-next {
  padding-right: 0;
}

/* Day nav title formatting */
.wa-day-nav .podcast-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}

/* Olive sub-nav strip below the hero on trip log day pages.
   Mirrors the .podcast-header layout used on the hub page:
   left-aligned label + serif title, baseline-aligned in a flex row.
   No margin: 0 auto so content stays flush with the left padding. */
.wa-trip-subnav {
  background: var(--olive);
  padding: 18px 40px;
}
.wa-trip-subnav .container {
  max-width: 1320px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.wa-trip-subnav-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.wa-trip-subnav-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.wa-trip-subnav-label:hover,
.wa-trip-subnav-title:hover {
  color: #fff;
}
.wa-trip-subnav-label:hover {
  color: #fff;
  text-decoration: underline;
}
.wa-trip-subnav-title:hover {
  text-decoration: underline;
}

/* Per-post time heading: full-width lighter-olive bar inside the day body.
   Uses the 100vw escape trick so the bar visually breaks out of the
   container (max-width 800px) and sits flush against the trip-log sub-nav.
   Time is left-aligned, full date is right-aligned. */
/* Legacy olive-bar wa-post-time styles retired. The post-time leading
   line is now styled at body-tier in the TRIP DAY PAGE block at the
   bottom of this file. */
/* Pull the first time bar tight under the sub-nav by collapsing the
   section's top padding on trip-day pages. */
.podcast-trip-day .section,
.podcast-single.podcast-trip-day .section {
  padding-top: 36px;
}

/* Two-column body: sidebar metadata column + reading column */
.podcast-single.podcast-trip-day .container {
  max-width: 980px;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 56px;
}
.podcast-single.podcast-trip-day .container > .day-side {
  grid-column: 1;
  grid-row: 1 / -1;
  position: sticky;
  top: 88px;
  align-self: start;
  /* Cap height to viewport so the inner .day-side-strip can scroll
     independently while the DAY N/N counter stays pinned at the top.
     Subtract: header offset (88) + fixed tagline footer (36) + breathing (16). */
  max-height: calc(100vh - 88px - var(--chrome-tagline-strip-height, 36px) - 16px);
  display: flex;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
}
/* Inner strip: fills remaining vertical space and scrolls. min-height: 0
   is required for flex children with overflow to actually shrink. The
   explicit max-height (in addition to flex) guarantees the strip is already
   overflow-constrained at parse-time, so the inline auto-scroll script can
   compute scrollTop reliably before paint. ~110px reserves room for the
   counter (~28px) plus its surrounding margins/padding (~80px). */
.podcast-single.podcast-trip-day .container > .day-side > .day-side-strip {
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100vh - 88px - var(--chrome-tagline-strip-height, 36px) - 16px - 110px);
  overflow-y: auto;
  padding-right: 8px;
}
.podcast-single.podcast-trip-day .container > *:not(.day-side) {
  grid-column: 2;
  min-width: 0;
}
/* Day counter — quiet single-line eyebrow ("DAY 2 / 7"), right-aligned to
   match the day strip's marginalia rhythm. */
.day-side-counter {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-align: right;
}
.day-side-counter-sep {
  opacity: 0.5;
  margin: 0 2px;
}

/* Mobile-only toggle — hidden on desktop */
.day-side-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.day-side-toggle:hover { color: var(--olive-dark); }
.day-side-toggle .day-side-toggle-hide { display: none; }
.day-side.is-open .day-side-toggle .day-side-toggle-show { display: none; }
.day-side.is-open .day-side-toggle .day-side-toggle-hide { display: inline; }

/* Day strip — list of all days in the trip.
   Right-aligned so the entries' right edges align against the prose, creating
   an implicit gutter between bar and body. Quiet marginalia, generous gap. */
.day-side-strip {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hb-rule, #d9d2c3);
}
.day-side-strip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
}
.day-side-strip-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--text-body);
  line-height: 1.3;
  transition: color 0.2s;
}
a.day-side-strip-link:hover { color: var(--olive-dark); }
.day-side-strip-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.day-side-strip-place {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--olive-dark, #3d3a2e);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
/* Active row: terracotta color + a short rule sitting in-flow alongside the
   date text so it's centered on the date's vertical midline. */
.day-side-strip-item.is-current .day-side-strip-link { color: var(--terracotta); }
.day-side-strip-item.is-current .day-side-strip-place { color: var(--terracotta); }
.day-side-strip-item.is-current .day-side-strip-date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-side-strip-item.is-current .day-side-strip-date::before {
  content: '';
  flex: 0 0 16px;
  height: 1px;
  background: var(--terracotta);
}

/* Times-of-day jump list (JS-populated when ≥ 2 wa-post-time markers exist) */
.day-side-times { margin-top: 28px; }
.day-side-times:empty { display: none; }
.day-side-times {
  padding-top: 20px;
  border-top: 1px solid var(--hb-rule, #d9d2c3);
}
.day-side-times-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  text-align: right;
}
.day-side-times-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.day-side-times-list a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--olive-dark, #3d3a2e);
  text-decoration: none;
  transition: color 0.2s;
}
.day-side-times-list a:hover { color: var(--terracotta); }

/* Hero sub-headers for day pages: optional manual summary + locations */
.podcast-header-summary {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 8px 0 0;
}
.podcast-header-locations {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 0;
}

/* Locations row on hub TOC cards */
.podcast-single .entry-content .episode-cards .wa-day-card-locations {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  color: var(--olive, #6b7c3e);
  margin: 0 0 6px;
}

/* Trip-log figure captions follow the site-wide convention — see
   .image-caption / .image-attribution rules above. The figcaption is built
   by numenvia_build_figcaption() and rendered inside the <figure>. */

/* ─── Video transcripts (auto-generated, collapsible) ──────────────────────
   Rendered inside <figure> beside the figcaption by
   numenvia_wa_render_video_transcript(). Native <details>/<summary> handles
   the collapse; trip-log.js handles the tab switching for bilingual panels.
   Indexed by Google at render time (not lazy-loaded). */
.video-transcript {
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.65);
}
.video-transcript > summary {
  display: inline-block;
  cursor: pointer;
  color: var(--olive);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 0;
  list-style: none;
}
.video-transcript > summary::-webkit-details-marker { display: none; }
.video-transcript > summary::before {
  content: '▸ ';
  display: inline-block;
  transition: transform 0.15s ease;
}
.video-transcript[open] > summary::before {
  transform: rotate(90deg);
}
.video-transcript > summary:hover {
  color: var(--olive-dark);
}
.video-transcript-body {
  margin-top: 8px;
  padding: 12px 14px 10px;
  background: rgba(107, 112, 92, 0.06);
  border-left: 2px solid var(--olive);
  border-radius: 2px;
}
.video-transcript-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(107, 112, 92, 0.25);
}
.video-transcript-tabs [role="tab"] {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  padding: 6px 12px 8px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
}
.video-transcript-tabs [role="tab"][aria-selected="true"] {
  color: var(--olive-dark);
  border-bottom-color: var(--olive);
}
.video-transcript-tabs [role="tab"]:hover {
  color: var(--olive);
}
.video-transcript-panel {
  font-style: italic;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
}
.video-transcript-panel p {
  margin: 0;
}
.video-transcript-note {
  margin: 10px 0 0;
  font-size: 0.65rem;
  font-style: normal;
  color: rgba(0, 0, 0, 0.35);
  text-align: right;
}

/* ==================================================================
   HOME B — hidden alternate homepage (template-home-b.php)
   Type-led editorial layout. All styles scoped under .home-b-variant
   on <body>. Tokens are local to this variant and do not bleed into
   the main theme.
   ================================================================== */
.home-b-variant {
  --hb-terracotta: #B8633E;
  --hb-terracotta-deep: #8C4424;
  --hb-olive: #6B705C;
  --hb-olive-dark: #294635;
  --hb-cream: #FAE7D4;
  --hb-paper: #FBF8F3;
  --hb-paper-warm: #F5EFE3;
  --hb-ink: #2b2a27;
  --hb-body: #555;
  --hb-rule: #d9d2c3;
  --hb-rule-strong: #b9ad95;
  --hb-serif: 'Cormorant Garamond', Garamond, serif;
  --hb-sans: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
}
.home-b-variant { font-family: var(--hb-sans); color: var(--hb-ink); background: var(--hb-paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.home-b-variant .home-b-page * { box-sizing: border-box; }
.home-b-variant .home-b-page a { color: inherit; text-decoration: none; }
.home-b-variant .home-b-page img { display: block; max-width: 100%; }
.home-b-variant .home-b-page h1,
.home-b-variant .home-b-page h2,
.home-b-variant .home-b-page h3 { margin: 0; font-weight: 400; }

/* Masthead and primary nav for the home page live in the SITE CHROME section
   at the bottom of this file. The home-b-variant only owns the page-content
   styling below this point (letter, regions, masonry, way, journal teaser). */

/* ---- LETTER ---- */
.home-b-variant .hb-letter {
  padding: 56px 24px 64px;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 820px) {
  .home-b-variant .hb-letter { grid-template-columns: 260px 1fr; gap: 64px; padding: 72px 64px; }
}
.home-b-variant .hb-letter-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 16px;
}
@media (max-width: 819px) {
  .home-b-variant .hb-letter-portrait { max-width: 200px; margin: 0 auto; text-align: center; }
}
.home-b-variant .hb-eyebrow {
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600; margin-bottom: 6px;
}
.home-b-variant .hb-letter-name { font-family: var(--hb-serif); font-size: 1.35rem; color: var(--hb-olive-dark); }
.home-b-variant .hb-letter-role {
  font-family: var(--hb-sans);
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600;
  margin-top: 6px;
}
.home-b-variant .hb-letter-body { max-width: 640px; }
.home-b-variant .hb-letter-body h1 {
  font-family: var(--hb-serif); font-weight: 400;
  font-size: clamp(2rem, 6.8vw, 3rem); line-height: 1.1;
  margin: 0 0 26px; color: var(--hb-olive-dark); text-wrap: balance;
}
.home-b-variant .hb-letter-prose {
  font-family: var(--hb-serif);
  font-size: clamp(1.08rem, 2.7vw, 1.2rem);
  line-height: 1.75; color: var(--hb-body);
}
.home-b-variant .hb-letter-prose p { margin: 0 0 18px; }
.home-b-variant .hb-letter-prose p:last-child { margin-bottom: 0; }
.home-b-variant .hb-letter-prose em { color: var(--hb-olive-dark); }
.home-b-variant .hb-signoff { font-family: var(--hb-serif); font-style: italic; font-size: 1.4rem; color: var(--hb-terracotta); }

/* Letter CTA + forms (shared form styling used in journal too) */
.home-b-variant .hb-letter-cta {
  margin-top: 36px; padding: 22px 0;
  border-top: 1px solid var(--hb-rule);
  border-bottom: 1px solid var(--hb-rule);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.home-b-variant .hb-cta-copy { flex: 1 1 220px; }
.home-b-variant .hb-cta-title {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hb-olive-dark); font-weight: 600; margin-bottom: 3px;
  font-family: var(--hb-sans);
}
.home-b-variant .hb-cta-title em { font-family: var(--hb-serif); font-style: italic; text-transform: none; letter-spacing: normal; font-weight: 400; font-size: 1.05rem; color: var(--hb-olive-dark); }
.home-b-variant .hb-cta-sub { font-size: .95rem; color: var(--hb-body); font-style: italic; font-family: var(--hb-serif); }

.home-b-variant form.inquiry-form {
  display: flex; flex: 1 1 300px; gap: 0; min-width: 0; align-items: stretch; position: relative; flex-wrap: wrap;
  padding: 0; margin: 0; max-width: none;
}
.home-b-variant form.inquiry-form input[type="email"] {
  flex: 1; min-width: 0;
  border: 1px solid var(--hb-rule); border-right: none;
  padding: 12px 14px; font-size: .95rem;
  font-family: var(--hb-sans); background: #fff; outline: none; border-radius: 0;
  color: var(--hb-ink);
}
.home-b-variant form.inquiry-form input[type="email"]:focus { border-color: var(--hb-terracotta); }
.home-b-variant form.inquiry-form .inquiry-submit {
  background: var(--hb-terracotta); color: #fff; border: none;
  padding: 12px 20px; font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; font-family: var(--hb-sans); border-radius: 0;
  transition: background .2s;
}
.home-b-variant form.inquiry-form .inquiry-submit:hover { background: var(--hb-terracotta-deep); }
.home-b-variant form.inquiry-form .inquiry-submit:disabled { opacity: .7; cursor: default; }
.home-b-variant form.inquiry-form .inquiry-status {
  flex: 1 0 100%; font-size: .85rem; font-family: var(--hb-serif); font-style: italic;
  color: var(--hb-olive); padding-top: 8px;
}
.home-b-variant form.inquiry-form .inquiry-status.success { color: var(--hb-olive-dark); }
.home-b-variant form.inquiry-form .inquiry-status.error { color: var(--hb-terracotta-deep); }
.home-b-variant form.inquiry-form .inquiry-status:empty { display: none; }

/* ---- TESTIMONIAL QUOTE ---- */
.home-b-variant .hb-quote {
  padding: 56px 24px 60px;
  background: var(--hb-paper);
  color: var(--hb-olive-dark);
  border-top: 1px solid var(--hb-rule);
  border-bottom: 3px solid var(--hb-rule-strong);
}
.home-b-variant .hb-quote-inner {
  max-width: 1180px; margin: 0 auto;
}
.home-b-variant .hb-quote blockquote {
  font-family: var(--hb-serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.08rem, 2.7vw, 1.2rem); line-height: 1.75;
  color: var(--hb-olive-dark);
  max-width: 640px; margin: 0;
  text-wrap: pretty;
  position: relative;
  padding-left: 56px;
}
.home-b-variant .hb-quote blockquote::before {
  content: '\201C';
  position: absolute; left: 0; top: -.1em;
  font-family: var(--hb-serif); font-style: normal; font-weight: 500;
  font-size: 3.4rem; line-height: 1;
  color: var(--hb-terracotta); opacity: .7;
}
.home-b-variant .hb-quote-attr {
  max-width: 640px; margin: 4px 0 0; padding-left: 56px;
  font-family: var(--hb-serif); font-style: italic;
  font-size: .95rem; color: var(--hb-olive);
}
.home-b-variant .hb-quote-attr::before { content: '\2014\00a0'; }
@media (min-width: 820px) {
  .home-b-variant .hb-quote { padding: 72px 64px 80px; }
  .home-b-variant .hb-quote-inner {
    display: grid; grid-template-columns: 260px 1fr; column-gap: 64px; row-gap: 0;
  }
  .home-b-variant .hb-quote blockquote,
  .home-b-variant .hb-quote-attr { grid-column: 2; padding-left: 0; }
  .home-b-variant .hb-quote blockquote::before { left: -48px; }
}

/* ---- SECTION MASTHEAD ---- */
.home-b-variant .hb-sec-lede {
  padding-top: 16px; background: transparent;
  border-top: 3px solid var(--hb-rule-strong);
}
/* Section mastheads take the background of the section BELOW them, not above. */
.home-b-variant .hb-sec-lede--white { background: #fff; }
.home-b-variant .hb-sec-lede--paper { background: var(--hb-paper); }
/* --lead: first section masthead after the testimonial, which already draws the rule. */
.home-b-variant .hb-sec-lede--lead { border-top: none; }
.home-b-variant .hb-sec-lede-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px 6px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.home-b-variant .hb-sec-label {
  font-family: var(--hb-serif); font-weight: 400;
  font-size: 2.1rem; line-height: 1;
  color: var(--hb-olive-dark); letter-spacing: .005em;
  flex-shrink: 0;
}
/* Match region sub-heading styling: Raleway small-caps with wide tracking. */
.home-b-variant .hb-sec-note {
  font-family: var(--hb-sans); font-style: normal; font-weight: 500;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--hb-olive);
}

/* ---- REGION BANDS ---- */
.home-b-variant .hb-rg {
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--hb-rule);
  background: #fff;
}
/* All region bands share the same white bg — the numerals and light rules divide them. */
.home-b-variant .hb-rg-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 860px) {
  .home-b-variant .hb-rg-wrap { grid-template-columns: 1fr 1fr; gap: 60px; }
  .home-b-variant .hb-rg.hb-flip .hb-rg-body { order: 2; }
  .home-b-variant .hb-rg.hb-flip .hb-rg-media { order: 1; }
}
.home-b-variant .hb-rg-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: filter .3s;
}
.home-b-variant .hb-rg-media a:hover img { filter: brightness(1.04) saturate(1.05); }
/* Inline with the region name (e.g. "I. Basilicata") — inherits heading font/size/color. */
.home-b-variant .hb-rg-num {
  font-style: normal; margin-right: .35em;
}
.home-b-variant .hb-rg-name {
  font-family: var(--hb-serif); font-weight: 400;
  font-size: 2.1rem; color: var(--hb-olive-dark);
  margin: 0 0 6px; line-height: 1.1; text-wrap: balance;
}
.home-b-variant .hb-rg-sub {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--hb-olive); margin-bottom: 20px; font-weight: 500;
  font-family: var(--hb-sans);
}
.home-b-variant .hb-rg-prose {
  font-family: var(--hb-serif); font-size: 1.1rem; line-height: 1.55;
  color: var(--hb-body); margin: 0 0 28px; max-width: 520px;
}
.home-b-variant .hb-rg-prose em { color: var(--hb-olive-dark); font-style: italic; }
.home-b-variant .hb-rg-tours { border-top: 1px solid var(--hb-rule); padding-top: 18px; margin-bottom: 24px; }
.home-b-variant .hb-rg-tours-label {
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--hb-olive); margin-bottom: 12px; font-weight: 600; font-family: var(--hb-sans);
}
.home-b-variant .hb-rg-tour {
  display: grid; grid-template-columns: 1fr auto; gap: 10px 16px;
  align-items: baseline; padding: 14px 0;
  border-bottom: 1px dotted var(--hb-rule);
  color: inherit; transition: color .2s;
}
.home-b-variant .hb-rg-tour:last-child { border-bottom: none; }
.home-b-variant .hb-rg-tour:hover .hb-rg-tour-name { color: var(--hb-terracotta); }
.home-b-variant .hb-rg-tour-name {
  font-family: var(--hb-serif); font-size: 1.25rem;
  color: var(--hb-olive-dark); line-height: 1.2; transition: color .2s;
}
.home-b-variant .hb-rg-tour-meta {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--hb-olive); white-space: nowrap; font-weight: 500; font-family: var(--hb-sans);
}
/* Static tour block (Basilicata etc.) */
.home-b-variant .hb-ts-name {
  font-family: var(--hb-serif); font-size: 1.1rem; line-height: 1.3;
  color: var(--hb-olive-dark); margin: 0 0 4px;
}
.home-b-variant .hb-ts-name a { color: inherit; transition: color .2s; }
.home-b-variant .hb-ts-name a:hover { color: var(--hb-terracotta); }
.home-b-variant .hb-ts-sub {
  font-family: var(--hb-sans); font-size: .64rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--hb-olive); font-weight: 500;
  margin: 0 0 16px;
}
.home-b-variant .hb-ts-detail {
  font-family: var(--hb-sans); font-size: .78rem; line-height: 1.5;
  color: var(--hb-body); margin: 0 0 20px; padding: 14px 0;
  border-top: 1px dotted var(--hb-rule); border-bottom: 1px dotted var(--hb-rule);
}
.home-b-variant .hb-rg-explore {
  display: inline-block; font-size: .72rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--hb-terracotta);
  font-weight: 600; border-bottom: 1px solid var(--hb-terracotta); padding-bottom: 3px;
  font-family: var(--hb-sans);
}

/* Sicily (coming soon) — title stays top, text pushed down with white space */
.home-b-variant .hb-rg-body--quiet {
  display: flex; flex-direction: column;
  min-height: 320px;
}
.home-b-variant .hb-rg-prose--quiet {
  text-align: left; font-size: 1.3rem; color: var(--hb-olive-dark);
  margin-top: auto; margin-bottom: auto; letter-spacing: .02em;
}

/* Sicily teaser */
.home-b-variant .hb-rg-coming {
  padding: 36px 24px; background: #fff; text-align: center;
}
.home-b-variant .hb-rg-coming-wrap {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: center; gap: 12px 18px;
}
.home-b-variant .hb-rg-coming-name { font-family: var(--hb-serif); font-size: 1.5rem; color: var(--hb-olive-dark); }
.home-b-variant .hb-rg-coming-sep { color: var(--hb-rule); }
.home-b-variant .hb-rg-coming-desc { font-family: var(--hb-serif); font-style: italic; color: var(--hb-body); font-size: 1rem; }
.home-b-variant .hb-rg-coming-badge {
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600;
  border: 1px solid var(--hb-rule); padding: 4px 10px; background: #fff;
  font-family: var(--hb-sans);
}

/* ---- MASONRY ---- */
.home-b-variant .hb-field { padding: 40px 0 72px; background: var(--hb-paper); }
.home-b-variant .hb-field-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.home-b-variant .hb-chips {
  display: flex; gap: 8px;
  overflow-x: auto; padding-bottom: 18px; margin-bottom: 18px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.home-b-variant .hb-chips::-webkit-scrollbar { display: none; }
.home-b-variant .hb-chip {
  flex-shrink: 0; padding: 7px 14px;
  border: 1px solid var(--hb-rule);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--hb-olive); background: transparent;
  cursor: pointer; font-family: var(--hb-sans); font-weight: 500;
  transition: all .2s; border-radius: 0;
}
.home-b-variant .hb-chip.hb-active { border-color: var(--hb-terracotta); color: var(--hb-terracotta); background: #fff; }

.home-b-variant .hb-entries {
  column-count: 1; column-gap: 44px; margin-top: 8px;
}
@media (min-width: 720px) { .home-b-variant .hb-entries { column-count: 2; } }
@media (min-width: 1080px) { .home-b-variant .hb-entries { column-count: 3; column-gap: 40px; } }

.home-b-variant .hb-entry {
  display: block; color: inherit;
  break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid;
  margin-bottom: 44px; padding-bottom: 36px;
  border-bottom: 1px solid var(--hb-rule);
}
.home-b-variant .hb-entry:last-child { border-bottom: none; }
.home-b-variant .hb-entry.hb-flip { display: flex; flex-direction: column; }
.home-b-variant .hb-entry.hb-flip .hb-entry-img { order: 2; margin-bottom: 0; margin-top: 6px; }
.home-b-variant .hb-entry.hb-flip .hb-entry-prose { order: 1; margin-bottom: 16px; }
.home-b-variant .hb-entry.hb-flip .hb-entry-more { order: 3; margin-top: 14px; display: inline-block; }
.home-b-variant .hb-entry.hb-flip .hb-entry-meta { order: 0; }
.home-b-variant .hb-entry.hb-flip .hb-entry-title { order: 0; }
.home-b-variant .hb-entry-img {
  width: 100%; object-fit: cover; margin-bottom: 16px;
  transition: filter .3s; aspect-ratio: 4/3;
}
.home-b-variant .hb-entry.hb-sm .hb-entry-img { aspect-ratio: 16/9; max-height: 140px; }
.home-b-variant .hb-entry.hb-tall .hb-entry-img { aspect-ratio: 3/4; }
.home-b-variant .hb-entry.hb-wide .hb-entry-img { aspect-ratio: 16/7; }
.home-b-variant .hb-entry:hover .hb-entry-img { filter: brightness(1.03) saturate(1.04); }
.home-b-variant .hb-entry-meta {
  display: flex; gap: 12px; align-items: baseline;
  font-size: .6rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--hb-olive); margin-bottom: 8px; font-family: var(--hb-sans);
}
.home-b-variant .hb-entry-meta .hb-region { color: var(--hb-terracotta); font-weight: 600; }
.home-b-variant .hb-entry-meta .hb-date {
  font-family: var(--hb-serif); font-style: italic;
  letter-spacing: .08em; text-transform: none; font-size: .82rem; color: var(--hb-olive);
}
.home-b-variant .hb-entry-title {
  font-family: var(--hb-serif); font-weight: 400;
  font-size: 1.35rem; line-height: 1.2;
  color: var(--hb-olive-dark); margin: 0 0 8px; text-wrap: balance;
}
.home-b-variant .hb-entry-prose {
  font-family: var(--hb-serif); font-size: 1rem; line-height: 1.55;
  color: var(--hb-body); margin: 0 0 10px;
}
.home-b-variant .hb-entry-prose em { color: var(--hb-olive-dark); font-style: italic; }
.home-b-variant .hb-entry-more {
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600; font-family: var(--hb-sans);
}
.home-b-variant .hb-field-more {
  margin-top: 28px; text-align: center;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600; font-family: var(--hb-sans);
}
.home-b-variant .hb-field-more a { border-bottom: 1px solid var(--hb-terracotta); padding-bottom: 2px; }

/* ---- THE WAY ---- */
.home-b-variant .hb-way { padding: 40px 0 72px; background: #fff; }
.home-b-variant .hb-way-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.home-b-variant .hb-way-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.home-b-variant .hb-way h2 {
  font-family: var(--hb-serif); font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--hb-olive-dark); margin: 0 0 16px; text-wrap: balance;
}
.home-b-variant .hb-way-list {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  margin: 36px 0 8px; text-align: left;
}
@media (min-width: 680px) { .home-b-variant .hb-way-list { grid-template-columns: repeat(3, 1fr); gap: 36px; } }
.home-b-variant .hb-way-num {
  font-family: var(--hb-serif); font-style: italic;
  font-size: 1.4rem; color: var(--hb-terracotta); margin-bottom: 6px;
}
.home-b-variant .hb-way-title {
  font-family: var(--hb-serif); font-size: 1.35rem;
  color: var(--hb-olive-dark); margin-bottom: 8px;
}
.home-b-variant .hb-way-body {
  font-family: var(--hb-serif); font-style: italic;
  font-size: 1rem; color: var(--hb-body); line-height: 1.55;
}
.home-b-variant .hb-way-link {
  display: inline-block; margin-top: 24px;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600;
  border-bottom: 1px solid var(--hb-terracotta); padding-bottom: 2px;
  font-family: var(--hb-sans);
}

/* ---- JOURNAL TEASER ---- */
.home-b-variant .hb-jr { background: var(--hb-paper); padding: 40px 0 64px; }
.home-b-variant .hb-jr-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.home-b-variant .hb-jr-inner { max-width: 820px; margin: 0 auto; }
.home-b-variant .hb-jr-head {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  align-items: center; padding-bottom: 22px;
  border-bottom: 2px solid var(--hb-olive-dark); margin-bottom: 8px;
}
@media (min-width: 620px) { .home-b-variant .hb-jr-head { grid-template-columns: auto 1fr; gap: 26px; } }
.home-b-variant .hb-jr-avatar {
  width: 84px; height: 84px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--hb-olive-dark); margin: 0;
}
.home-b-variant .hb-jr-byline {
  font-family: var(--hb-serif); font-style: italic;
  color: var(--hb-olive); font-size: 1rem;
}
.home-b-variant .hb-jr-list { display: flex; flex-direction: column; }
.home-b-variant .hb-jr-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 22px;
  align-items: baseline; padding: 22px 0;
  border-bottom: 1px solid var(--hb-rule);
  color: inherit; transition: background .2s;
}
.home-b-variant .hb-jr-item:hover { background: var(--hb-paper-warm); margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
.home-b-variant .hb-jr-item:hover .hb-jr-title { color: var(--hb-terracotta); }
.home-b-variant .hb-jr-date {
  font-family: var(--hb-serif); font-style: italic;
  font-size: .95rem; color: var(--hb-olive); line-height: 1.3;
}
.home-b-variant .hb-jr-title {
  font-family: var(--hb-serif); font-size: 1.25rem;
  color: var(--hb-olive-dark); line-height: 1.25;
  margin-bottom: 4px; transition: color .2s; text-wrap: balance;
}
.home-b-variant .hb-jr-excerpt {
  font-family: var(--hb-serif); font-size: .98rem;
  color: var(--hb-body); line-height: 1.5; font-style: italic;
}
.home-b-variant .hb-jr-foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 28px 0 4px;
  border-top: 2px solid var(--hb-olive-dark); margin-top: 8px;
}
.home-b-variant .hb-jr-all {
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--hb-terracotta); font-weight: 600;
  border-bottom: 1px solid var(--hb-terracotta); padding-bottom: 2px;
  font-family: var(--hb-sans);
}
.home-b-variant .hb-jr-sub {
  display: flex; align-items: baseline; gap: 14px;
  flex: 1 1 320px; min-width: 0; justify-content: flex-end; flex-wrap: wrap;
}
.home-b-variant .hb-jr-sub-label {
  font-family: var(--hb-serif); font-style: italic;
  color: var(--hb-olive); font-size: 1rem;
}
.home-b-variant .hb-jr-sub-form { flex: 1 1 260px; max-width: 360px; }
@media (max-width: 560px) {
  .home-b-variant .hb-jr-item { grid-template-columns: 1fr; gap: 6px; }
  .home-b-variant .hb-jr-date { font-size: .82rem; }
  .home-b-variant .hb-jr-foot { flex-direction: column; align-items: stretch; }
  .home-b-variant .hb-jr-sub { justify-content: flex-start; }
}

/* The home-b page footer is the universal .site-closing block — see SITE CHROME below. */

/* ==================================================================
   SITE CHROME — masthead, primary nav, fixed top header, fixed bottom
   etymology strip, closing block, render-time diagnostic. Single source
   of styling for both the home page (in-flow) and inner pages (fixed).
   ================================================================== */

/* ---- Body padding (offset for fixed top header + bottom strip on inner pages) ---- */
body:not(.page-template-template-home-b):not(.home-b-variant) {
  padding-top: var(--chrome-header-height);
  padding-bottom: var(--chrome-tagline-strip-height);
}
body.page-template-template-home-b,
body.home-b-variant {
  padding-top: 0;
  padding-bottom: 0;
}

/* Anchor jumps clear the fixed header. */
[id] { scroll-margin-top: calc(var(--chrome-header-height) + 12px); }

/* ---- Shared nav menu (used in .site-header-nav and .home-nav-inner) ---- */
.site-header-nav,
.home-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link,
.nav-dropdown-toggle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-dropdown-toggle:hover {
  color: var(--terracotta);
}
.nav-link.is-active,
.nav-dropdown.is-active .nav-dropdown-link {
  color: var(--terracotta);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle {
  padding: 4px 2px !important;
  line-height: 1;
}
.nav-dropdown-toggle .chevron {
  font-size: 0.6rem;
  vertical-align: middle;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 12px 0;
  margin-top: 6px;
  background: rgba(247, 245, 243, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 7px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--terracotta);
}
.nav-dropdown-menu a.is-coming-soon {
  opacity: 0.55;
}

/* Search button (also lives in the nav row, far right) */
.nav-search-toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}
.nav-search-toggle:hover { color: var(--terracotta); }

/* Hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- Fixed top header (inner pages) ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  height: var(--chrome-header-height);
  background: var(--chrome-cream-bg);
  border-bottom: 1px solid var(--chrome-hairline);
}
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.site-header-wordmark .shw-word { color: inherit; }
.site-header-wordmark .shw-sep {
  margin: 0 0.35em;
  color: var(--terracotta);
  font-weight: 400;
  transition: color 0.25s;
}
.site-header-wordmark:hover .shw-sep { color: var(--olive); }

/* ---- Home page in-flow nav row (sits beneath the masthead, scrolls away) ---- */
.home-nav {
  border-bottom: 1px solid var(--chrome-hairline-strong);
  background: #FBF8F3;
}
.home-nav-inner {
  justify-content: center;
  padding: 16px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Home page editorial masthead ---- */
.hb-masthead {
  display: flex;
  justify-content: center;
  padding: 22px 24px 53px;
  border-bottom: 2px solid var(--olive-dark);
  text-align: center;
  background: #FBF8F3;
}
.hb-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  color: var(--olive-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  text-decoration: none;
}
.hb-mark-col {
  position: relative;
  display: inline-block;
}
.hb-mark-word {
  font-size: clamp(2.6rem, 11vw, 5rem);
  line-height: 1;
}
.hb-sep {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
  margin: 0 0.7em;
  font-size: clamp(2rem, 8.5vw, 3.9rem);
  display: inline-block;
  transform: translateY(-0.04em);
}
.hb-mark-tag {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  margin-top: 7px;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  letter-spacing: normal;
  color: var(--text-body);
}
.hb-mark-tag em { font-style: normal; color: var(--olive-dark); }

/* ---- Fixed bottom etymology strip (inner pages) ---- */
.site-tagline {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--chrome-tagline-strip-height);
  padding: 0 28px;
  background: var(--chrome-cream-bg);
  border-top: 1px solid var(--chrome-hairline);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--text-dark);
  white-space: nowrap;
  user-select: none;
}
.site-tagline .st-def {
  font-style: normal;
  font-weight: 400;
}
.site-tagline .st-def em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
}
.site-tagline .st-colon {
  margin: 0 0.4em;
  color: rgba(0, 0, 0, 0.4);
}
.site-tagline .st-sep {
  margin: 0 1.6em;
  color: var(--terracotta);
  font-weight: 400;
}

/* Hide the bottom strip on the home page. */
body.page-template-template-home-b .site-tagline,
body.home-b-variant .site-tagline { display: none; }

/* ---- Closing block (footer nav + copyright + render time, every page) ---- */
.site-closing {
  text-align: center;
  padding: 80px 28px 40px;
  background: var(--light-bg);
  border-top: 1px solid var(--chrome-hairline-strong);
}
.closing-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 40px;
  max-width: 1200px;
}
.closing-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.closing-nav a:hover { color: var(--terracotta); }
.closing-nav a.is-coming-soon { opacity: 0.55; }
.closing-rule {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 20px;
  border: 0;
  border-top: 1px solid var(--chrome-hairline-strong);
}
.closing-copy {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
.closing-copy a {
  color: var(--terracotta);
  text-decoration: none;
}
.closing-copy a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}
.closing-bullet {
  color: rgba(0, 0, 0, 0.25);
  margin: 0 0.5em;
}
.render-time {
  display: block;
  margin: 12px auto 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
  color: transparent;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}
.render-time::selection {
  color: var(--text-body);
  background: rgba(184, 99, 62, 0.15);
}
.render-time::-moz-selection {
  color: var(--text-body);
  background: rgba(184, 99, 62, 0.15);
}

/* ---- Mobile chrome (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Header bar */
  .site-header { padding: 10px 16px; }
  .site-header-wordmark { font-size: 1.15rem; }

  /* Hamburger visible, nav-menu collapses to drop-down panel */
  .nav-hamburger { display: flex; }
  .site-header-nav,
  .home-nav-inner { gap: 16px; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: var(--chrome-cream-bg);
    border-top: 1px solid var(--chrome-hairline);
    border-bottom: 1px solid var(--chrome-hairline);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .site-header,
  .home-nav { position: relative; }
  .site-header { position: fixed; }
  .site-header.nav-open .nav-menu,
  .home-nav.nav-open .nav-menu { display: flex; }
  .nav-menu .nav-link,
  .nav-menu .nav-dropdown-toggle {
    padding: 14px 28px;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--chrome-hairline);
    text-align: left;
  }
  .nav-menu .nav-dropdown { width: 100%; border-bottom: 1px solid var(--chrome-hairline); }
  .nav-menu .nav-dropdown .nav-dropdown-toggle { border-bottom: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0 0 8px 16px;
  }
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 0; visibility: hidden; }
  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown-menu a {
    padding: 10px 24px;
    font-size: 0.7rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .nav-dropdown-menu a:last-child { border-bottom: none; }

  /* Hamburger → X when open */
  .site-header.nav-open .nav-hamburger span:nth-child(1),
  .home-nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-hamburger span:nth-child(2),
  .home-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-hamburger span:nth-child(3),
  .home-nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Bottom strip type tightening */
  .site-tagline { font-size: 0.85rem; }
  .site-tagline .st-sep { margin: 0 1em; }

  /* Closing nav row gap */
  .closing-nav { gap: 20px 24px; font-size: 0.72rem; }
}

@media (max-width: 380px) {
  .site-tagline { display: none; }
  body:not(.page-template-template-home-b):not(.home-b-variant) { padding-bottom: 0; }
}

/* ==================================================================
   EDITORIAL HEADER + ENTRIES LIST
   Canonical pattern for inner pages — first used on the journal index
   (/blog/, page-blog.php). Reused on subsequent inner-page templates.
   ================================================================== */

:root {
  --hairline: rgba(0, 0, 0, 0.08);
}

/* ---- Editorial header block ---- */
.page-header {
  background: var(--light-bg);
  padding: 64px 0 44px;
}
.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 56px;
}
.page-header-text { min-width: 0; }

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  display: inline-block;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.page-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 28px;
}
.page-byline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.page-byline .byline-name { color: var(--text-dark); }
.page-byline .byline-divider {
  width: 4px;
  height: 4px;
  background: var(--text-body);
  opacity: 0.4;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.page-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.25s;
}
.page-cta .arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.page-cta:hover { color: var(--text-dark); }
.page-cta:hover .arrow { transform: translateY(2px); }
.page-cta[aria-expanded="true"] .arrow { transform: rotate(180deg); }

.page-header-portrait {
  width: 320px;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

/* ---- Hairline divider — sits at the bottom of the masthead, full bleed.
   Cream now continues past it through .entries-meta, so it's an in-band rule
   rather than the cream/white seam (which lives below .entries-meta). ---- */
.page-header-divider {
  margin: 0;
  padding: 0;
}
.page-header-divider hr {
  border: 0;
  height: 1px;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* ---- Entries list ---- */
.entries {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px 120px;
}
.entries-meta {
  position: relative;
  background: var(--light-bg);
  /* Eat .entries top + horizontal padding so cream fills those areas */
  margin: -36px -40px 0;
  padding: 28px 40px 22px;
  /* Bleed cream to viewport edges; clip vertically so it doesn't cover cards */
  box-shadow: 0 0 0 100vmax var(--light-bg);
  clip-path: inset(0 -100vmax);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
  /* Toolbar: count on the left, sort on the right */
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.entries-meta .entries-count { color: var(--text-body); }
.entries-meta .sort-toggle-label {
  margin-right: 6px;
  opacity: 0.6;
}
/* Full-bleed hairline at the cream/white seam (replaces first .entry-row's top border) */
.entries-meta::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--hairline);
}
.entry-row:first-child { border-top: none; }
.entries-meta .sort-toggle {
  color: var(--text-body);
  cursor: pointer;
  border-bottom: 1px dotted rgba(85, 85, 85, 0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.entries-meta .sort-toggle:hover { color: var(--terracotta); }

.entry-row {
  display: grid;
  grid-template-columns: 110px 140px 1fr;
  align-items: start;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.entry-row:hover { background: rgba(184, 99, 62, 0.025); }
.entry-row:last-child { border-bottom: 1px solid var(--hairline); }
.entry-thumb {
  width: 140px;
  height: 140px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 2px;
  overflow: hidden;
}
.entry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s;
}
.entry-row:hover .entry-thumb img { filter: brightness(1.04) saturate(1.04); }
.entry-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
  padding-top: 6px;
  white-space: nowrap;
}
.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.entry-row:hover .entry-title { color: var(--terracotta); }
.entry-excerpt {
  font-family: 'Raleway', sans-serif;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

/* ---- Mobile (≤ 820px) ---- */
@media (max-width: 820px) {
  .page-header { padding: 44px 0 32px; }
  .page-header-inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }
  /* Portrait first on mobile (announces author before title) */
  .page-header-portrait { order: 1; width: 180px; }
  .page-header-text { order: 2; }
  .page-title { font-size: 2rem; }
  .page-subhead { font-size: 1.1rem; }
  .page-header-divider { margin: 0; padding: 0; }

  .entries { padding: 28px 24px 100px; }
  .entries-meta {
    margin: -28px -24px 0;
    padding: 22px 24px 18px;
  }
  .entry-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "date  date"
      "thumb body";
    gap: 6px 16px;
    padding: 24px 0;
  }
  .entry-date  { grid-area: date; padding-top: 0; }
  .entry-thumb { grid-area: thumb; width: 80px; height: 80px; }
  .entry-body  { grid-area: body; }
  .entry-title { font-size: 1.5rem; margin-bottom: 8px; }
}

/* ==================================================================
   JOURNAL ENTRY PAGE — non-trip single-podcast.php chrome
   Reuses .eyebrow, .byline-name, .byline-divider, .page-cta from the
   EDITORIAL HEADER + ENTRIES LIST section above.
   ================================================================== */

.entry-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 40px 0;
}
.entry-header-text { max-width: 760px; }

.entry-header .eyebrow {
  text-decoration: none;
  transition: color 0.25s;
}
.entry-header .eyebrow:hover { color: var(--text-dark); }

.entry-title-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.entry-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 28px;
}
.entry-byline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.entry-byline .byline-name { color: var(--text-dark); }
.entry-byline .byline-region { color: var(--text-body); }

.entry-header-divider {
  max-width: 1100px;
  margin: 64px auto 0;
  padding: 0 40px;
}
.entry-header-divider hr {
  border: 0;
  height: 1px;
  background: var(--hairline);
}

/* ---- Substack colophon ---- */
.entry-colophon {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  font-weight: 300;
  margin: 56px auto 0;
  max-width: 600px;
}
.entry-colophon em {
  font-style: italic;
  color: var(--text-body);
}
.entry-colophon a {
  color: var(--terracotta);
  font-style: italic;
  margin-left: 0.4em;
  text-decoration: none;
  transition: color 0.25s;
}
.entry-colophon a:hover { color: var(--text-dark); }

/* ---- End-of-entry hairline ---- */
.entry-end-divider {
  max-width: 600px;
  margin: 64px auto 0;
  height: 1px;
  background: var(--hairline);
}

/* ---- Secondary subscribe CTA ---- */
.entry-subscribe {
  text-align: center;
  margin: 56px auto 64px;
  max-width: 600px;
}
.entry-subscribe-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  font-weight: 300;
  margin: 0 0 14px;
}
.entry-subscribe-line em {
  font-style: italic;
  color: var(--text-body);
}
.entry-subscribe .inquiry-toggle-wrap {
  display: inline-block;
}
.entry-subscribe .inquiry-form-wrap {
  margin-top: 24px;
  text-align: left;
}

/* ---- Prev/next nav ---- */
.entry-prevnext {
  max-width: 1100px;
  margin: 80px auto 80px;
  padding: 40px 40px 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.entry-prevnext-link {
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: color 0.25s;
}
.entry-prevnext-link.next {
  text-align: right;
  align-items: flex-end;
}
.entry-prevnext-link:hover { color: var(--terracotta); }
.entry-prevnext-link:hover .prevnext-title { color: var(--terracotta); }
.prevnext-dir {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
}
.prevnext-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  transition: color 0.25s;
}
.prevnext-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
}

@media (max-width: 820px) {
  .entry-header { padding: 64px 24px 0; }
  .entry-title-h1 { font-size: 2rem; }
  .entry-subhead { font-size: 1.1rem; }
  .entry-header-divider { margin-top: 48px; padding: 0 24px; }
  .entry-prevnext {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px 0;
    margin: 56px auto 64px;
  }
  .entry-prevnext-link.next {
    text-align: left;
    align-items: flex-start;
  }
}

/* ==================================================================
   SITE-WIDE CARDS — np-card component (region pages, entry pages,
   maker pages, story pages, tour pages). Single source of truth.
   ================================================================== */

:root { --bg-warm-gray: #f4f1ec; }

/* ---- Section wrapper ---- */
.np-card-section {
  background: var(--bg-warm-gray);
  padding: 80px 0;
}
.np-card-section + .np-card-section { padding-top: 0; }
.np-card-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.np-card-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0 0 40px;
  letter-spacing: -0.005em;
}

/* ---- Grid ---- */
.np-card-grid {
  display: grid;
  gap: 32px;
}
.np-card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.np-card-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) {
  .np-card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .np-card-grid-2,
  .np-card-grid-3 { grid-template-columns: 1fr; }
}

/* ---- Card ---- */
.np-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.np-card:hover,
.np-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.np-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.np-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm-gray);
}
.np-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.np-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.np-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text-dark);
  margin: 0;
}
.np-card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.np-card-cta {
  margin-top: auto;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--terracotta);
  transition: color 0.25s;
}
.np-card:hover .np-card-cta { color: var(--text-dark); }

/* ---- Type-specific anatomy: journal byline ---- */
.np-card-byline-podcast {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
}
.np-card-byline-podcast .byline-name {
  font-weight: 600;
  color: var(--text-dark);
}
.np-card-byline-podcast .byline-pub {
  font-weight: 600;
  color: var(--text-dark);
}
.np-card-byline-podcast .byline-date {
  font-weight: 400;
  color: var(--text-body);
}

/* ---- Type-specific anatomy: story author byline ---- */
.np-card-byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
}
.np-card-byline-author .byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.np-card-byline-author .byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.np-card-byline-author .byline-name {
  font-weight: 600;
  color: var(--text-dark);
}
.np-card-byline-author .byline-date {
  color: var(--text-body);
}

/* ---- Type-specific anatomy: tour date range ---- */
.np-card-date-range {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ==================================================================
   REGION PAGE — eyebrow strip + full-bleed hero + editorial header +
   editorial body (lede + Cormorant subheads). Used by template-region.php
   and template-regions.php.
   ================================================================== */

/* ---- Eyebrow strip ---- */
.region-eyebrow-strip {
  background: var(--bg-warm-gray);
  border-bottom: 1px solid var(--hairline);
}
/* Eyebrow strip aligns to the same horizontal rail as the chrome
   wordmark (numen / via) — same 28px desktop / 16px mobile padding,
   no max-width centering so the label never drifts as the viewport
   resizes. */
.region-eyebrow-inner {
  padding: 9px 28px;
  display: flex;
  align-items: center;
}
.region-eyebrow-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.region-eyebrow-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  top: -1px;
}

/* ---- Full-bleed hero ---- */
.region-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  background: var(--light-bg);
  overflow: hidden;
}
.region-hero img,
.region-hero .region-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Override global .page-hero attribution styling for the region hero */
.region-hero .hero-attribution {
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  pointer-events: auto;
  z-index: 2;
}
.region-hero .hero-attribution a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

/* ---- Editorial header ---- */
.region-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 0;
  scroll-margin-top: 80px;
}
.region-header-no-hero {
  max-width: 1180px;
  padding: 96px 24px 0;
}
.region-header-text { max-width: 760px; }

/* /regions/ band images: subtle 2px radius to match the rest of the site */
.home-b-variant .hb-rg-media img { border-radius: 2px; }

.region-eyebrow-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.25s;
}
.region-eyebrow-link:not(.region-eyebrow-static):hover { color: var(--text-dark); }
.region-eyebrow-static { cursor: default; }

.region-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0;
}

.region-divider {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 40px;
}
.region-divider hr {
  border: 0;
  height: 1px;
  background: var(--hairline);
}

/* ---- Body ---- */
.region-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 40px 80px;
}
.region-body-inner { max-width: 720px; }

.region-body p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 1.4em;
}
.region-body p strong { color: var(--text-dark); font-weight: 600; }
.region-body p em { font-style: italic; }
.region-body a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(184, 99, 62, 0.3);
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
}
.region-body a:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Lede — first paragraph rendered as italic Cormorant */
.region-body p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.32rem;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 1.6em;
}
.region-body p:first-of-type strong { font-style: normal; font-weight: 400; }

/* Subheadings */
.region-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.005em;
  margin: 2.2em 0 0.7em;
}
.region-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 1.8em 0 0.5em;
}
.region-body h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 2em 0 0.6em;
}

.region-body ul,
.region-body ol {
  font-family: 'Raleway', sans-serif;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text-body);
  margin: 0 0 1.4em 1.2em;
}
.region-body li { margin-bottom: 0.4em; }

.region-body blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text-dark);
  border-left: 2px solid var(--terracotta);
  padding-left: 1.4em;
  margin: 1.6em 0;
}

.region-body figure { margin: 1.8em 0; }
.region-body figure.alignwide {
  margin-left: calc((720px - 1100px) / 2);
  margin-right: calc((720px - 1100px) / 2);
  max-width: 1100px;
}
.region-body figure img { width: 100%; height: auto; display: block; border-radius: 2px; }
.region-body figure figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-body);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---- Mobile (≤ 820px) ---- */
@media (max-width: 820px) {
  .region-eyebrow-inner { padding: 9px 16px; }
  .region-hero { height: 50vh; min-height: 360px; max-height: 520px; }
  .region-hero .hero-attribution {
    bottom: 10px;
    right: 14px;
    font-size: 0.78rem;
  }
  .region-header { padding: 32px 24px 0; }
  .region-header-no-hero { padding: 64px 24px 0; }
  .region-title { font-size: 2.4rem; }
  .region-divider { padding: 0 24px; margin-top: 24px; }
  .region-body { padding: 24px 24px 64px; }
  .region-body p:first-of-type { font-size: 1.18rem; }
  .region-body h2 { font-size: 1.55rem; margin-top: 1.8em; }
  .region-body h3 { font-size: 1.2rem; }
  .region-body figure.alignwide { margin-left: 0; margin-right: 0; }
}

/* ==================================================================
   CONTACT PAGE — header band (portrait + eyebrow + greeting)
   Sits between the global nav and the existing two-column body.
   ================================================================== */
.contact-band {
  background: var(--light-bg);
  border-top: 1px solid var(--hb-rule, #d9d2c3);
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  padding: 64px 40px;
}
.contact-band-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
/* Suppress the global photo-credit injection inside the band — portrait is
   identity here, not editorial imagery. Reset figure margins so the wrap
   doesn't break the flex layout. */
.contact-band figure.attributed-image {
  margin: 0;
  flex-shrink: 0;
  display: block;
}
.contact-band figure.attributed-image figcaption,
.contact-band .image-attribution {
  display: none;
}
.contact-band-portrait {
  width: 256px;
  height: 304px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.contact-band-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  /* Align eyebrow baseline with the subject's eye-line in the portrait
     (~38% down from the top of a 304px portrait). */
  padding-top: 100px;
}
.contact-band-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
}
.contact-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--olive-dark);
  margin: 0;
  text-wrap: balance;
}

/* Pull the body section closer to the band's bottom hairline */
body .contact-section { padding-top: 56px; }

/* Form intro line: italic serif olive — matches the editorial voice
   used elsewhere on the site. */
.contact-form .inquiry-form-prompt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--olive);
}

@media (max-width: 768px) {
  .contact-band { padding: 48px 24px; }
  .contact-band-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .contact-band-text { padding-top: 0; }
  .contact-band-portrait { width: 200px; height: 240px; }
  .contact-band-title { font-size: 2.4rem; }
  body .contact-section { padding-top: 40px; }
}

/* ==================================================================
   ABOUT US PAGE — strip + header band + bios + quieter CTA
   ================================================================== */

/* Pseudo-hero strip — full-bleed. The image is rendered at full
   viewport width with auto height (preserving aspect) and shifted up
   by 150 source-pixel-equivalents using a viewport-scaled margin so
   the top 150 source px stay cropped at every viewport.
   Source image is 1086×724; 150/1086 ≈ 13.81%. */
.about-strip {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
}
.about-strip figure.attributed-image {
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-strip-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: calc(100vw * -150 / 1086);
}
.about-strip figcaption.image-attribution {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  margin: 0;
  z-index: 2;
}

/* Header band */
.about-band {
  background: var(--light-bg);
  padding: 64px 40px 72px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}
.about-band-inner {
  max-width: 880px;
  margin: 0 auto;
}
.about-band-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 18px;
}
.about-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.05;
  color: var(--olive-dark);
  margin: 0 0 28px;
}
.about-band-body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}
.about-band-body a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 99, 62, 0.4);
  transition: color 0.25s, border-color 0.25s;
}
.about-band-body a:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Bio sections */
.about-bio {
  background: var(--light-bg);
  padding: 72px 40px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}
.about-bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.about-bio--flip .about-bio-inner {
  grid-template-columns: 1fr 320px;
}
.about-bio--flip .about-bio-portrait { grid-column: 2; grid-row: 1; }
.about-bio--flip .about-bio-text     { grid-column: 1; grid-row: 1; }

.about-bio-portrait {
  width: 320px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm-gray);
}
.about-bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Suppress global photo-credit injection on identity portraits */
.about-bio figure.attributed-image { margin: 0; }
.about-bio figure.attributed-image figcaption,
.about-bio .image-attribution { display: none; }

.about-bio-text { min-width: 0; }
.about-bio-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 8px;
}
.about-bio-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.875rem;
  line-height: 1.05;
  color: var(--olive-dark);
  margin: 0 0 22px;
}
.about-bio-text p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1em;
}
.about-bio-text p:last-of-type { margin-bottom: 0; }
.about-bio-text p em { font-style: italic; }
.about-bio-link {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 99, 62, 0.4);
  transition: color 0.25s, border-color 0.25s;
}
.about-bio-link em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
  margin: 0 0.15em;
}
.about-bio-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Quieter CTA */
.about-cta-quiet {
  background: var(--light-bg);
  text-align: center;
  padding: 80px 40px 96px;
}
.about-cta-inner { max-width: 720px; margin: 0 auto; }
.about-cta-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  display: block;
  margin-bottom: 16px;
}
.about-cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.375rem;
  line-height: 1.15;
  color: var(--olive-dark);
  margin: 0 0 28px;
}
.about-cta-link {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 99, 62, 0.4);
  transition: color 0.25s, border-color 0.25s;
}
.about-cta-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Mobile */
@media (max-width: 820px) {
  .about-strip { height: 160px; }
  .about-band { padding: 48px 24px 56px; }
  .about-band-title { font-size: 2.6rem; }
  .about-band-body { font-size: 1.08rem; }
  .about-bio { padding: 56px 24px; }
  .about-bio-inner,
  .about-bio--flip .about-bio-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Stack portrait above bio text on mobile, regardless of flip */
  .about-bio--flip .about-bio-portrait { grid-column: 1; grid-row: 1; }
  .about-bio--flip .about-bio-text     { grid-column: 1; grid-row: 2; }
  .about-bio-portrait { width: 100%; max-width: 280px; }
  .about-bio-name { font-size: 2.1rem; }
  .about-bio-text p { font-size: 1.05rem; }
  .about-cta-quiet { padding: 56px 24px 72px; }
  .about-cta-headline { font-size: 1.85rem; }
}

/* ==================================================================
   OUR WAY PAGE — strip + header band
   Same pattern as About / Contact. Source image is 2560×1615.
   The strip image is shifted up by `(target source crop) / 2560 *
   100vw` so the crop holds across viewport widths. Tune the divider
   numerator to retune the vertical focal point.
   ================================================================== */
.way-strip {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
}
.way-strip figure.attributed-image {
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.way-strip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Vertical crop: higher % shows more of the bottom of the source.
     ~78% lands the visible window on the hands at the table.
     Tune this single value to retune the focal point. */
  object-position: center 78%;
  display: block;
}
/* Suppress all auto-injected captions/credits on the way-page strip
   regardless of which figcaption variant the attribution filter emits. */
.way-strip figcaption,
.way-strip .image-caption,
.way-strip .image-attribution { display: none; }

.way-band {
  background: var(--light-bg);
  padding: 64px 40px 72px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}
.way-band-inner { max-width: 880px; margin: 0 auto; }
.way-band-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 16px;
}
.way-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.05;
  color: var(--olive-dark);
  margin: 0 0 24px;
}
.way-band-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.35;
  color: var(--olive-dark);
  max-width: 38ch;
  margin: 0;
}

@media (max-width: 820px) {
  .way-strip { height: 160px; }
  .way-band { padding: 48px 24px 56px; }
  .way-band-title { font-size: 2.6rem; }
  .way-band-lede { font-size: 1.25rem; max-width: 100%; }
}

/* ==================================================================
   TRIP LOG — strip + band + intro + day rows + follow-along + back
   Pattern matches About / Way / Contact for the strip + band.
   ================================================================== */

.trip-strip {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--light-bg);
}
.trip-strip figure.attributed-image {
  margin: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.trip-strip-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Strip is full-bleed; default to centered crop. Override per-trip if needed. */
}
.trip-strip figcaption.image-attribution { display: none; }

.trip-band {
  background: var(--light-bg);
  padding: 64px 40px 72px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}
.trip-band-inner { max-width: 880px; margin: 0 auto; }
.trip-band-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.25s;
}
.trip-band-eyebrow:hover { color: var(--text-dark); }
.trip-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 1.05;
  color: var(--olive-dark);
  margin: 0;
}

/* ---- Intro section ---- */
/* Break out of the parent .container's 1200px clamp so the cream
   background bleeds to viewport edges. Same trick for the day list
   and follow-along below. */
.trip-intro,
.trip-day-list,
.trip-followalong {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}
.trip-intro {
  background: var(--light-bg);
  padding: 64px 40px 72px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}

/* Trip-hub article: kill the .section's top padding so the cream of
   .trip-intro butts directly against the band's bottom hairline. */
.podcast-trip-hub .section { padding-top: 0; padding-bottom: 0; }
.podcast-trip-hub > .section { padding-left: 0; padding-right: 0; }
.trip-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}
.trip-intro-portrait {
  width: 200px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm-gray, #f4f1ec);
}
.trip-intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-intro figure.attributed-image { margin: 0; }
.trip-intro figure.attributed-image figcaption,
.trip-intro .image-attribution { display: none; }
.trip-intro-text { min-width: 0; max-width: 60ch; }
.trip-intro-text p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1em;
}
.trip-intro-text p:last-child { margin-bottom: 0; }

/* ---- Day list ---- */
.trip-day-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}
.trip-day-meta {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  margin-bottom: 0;
}

.trip-day-row {
  display: grid;
  grid-template-columns: 120px 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.25s;
}
.trip-day-row:hover .trip-day-place { color: var(--terracotta); }
.trip-day-row:hover .trip-day-read { color: var(--text-dark); }

.trip-day-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.trip-day-dow { color: var(--olive); }
.trip-day-num { color: var(--text-dark); }

.trip-day-thumb {
  width: 220px;
  height: 165px;
  overflow: hidden;
  background: var(--bg-warm-gray, #f4f1ec);
}
/* Higher specificity to override .podcast-single .entry-content img
   { height: auto; width: auto; } from the legacy podcast styling. */
.podcast-single .entry-content .trip-day-thumb img,
.trip-day-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-day-thumb--empty { background: var(--bg-warm-gray, #f4f1ec); }

.trip-day-text { min-width: 0; }
.trip-day-place {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--olive-dark);
  margin: 0 0 10px;
  transition: color 0.25s;
}
.trip-day-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-dark);
  margin: 0 0 16px;
  max-width: 62ch;
}
.trip-day-read {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid rgba(184, 99, 62, 0.4);
  transition: color 0.25s, border-color 0.25s;
}

/* ---- Follow-along ---- */
.trip-followalong {
  border-top: 1px solid var(--hb-rule, #d9d2c3);
  padding: 56px 40px 64px;
  background: var(--light-bg);
}
.trip-followalong-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trip-followalong-text { min-width: 0; text-align: left; }
.trip-followalong-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 12px;
}
.trip-followalong-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--olive-dark);
  margin: 0;
}
.trip-followalong-form { margin: 0; }
.trip-followalong-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.trip-followalong-email {
  width: 280px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--hb-rule, #d9d2c3);
  border-right: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  border-radius: 0;
}
.trip-followalong-email:focus {
  outline: none;
  border-color: var(--terracotta);
}
.trip-followalong-submit {
  height: 44px;
  padding: 0 24px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s;
}
.trip-followalong-submit:hover { background: var(--olive-dark); }
.trip-followalong-submit:disabled { opacity: 0.7; cursor: default; }
.trip-followalong-msg {
  margin: 12px 0 0;
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--olive);
}
.trip-followalong-msg:empty { display: none; }

/* ---- Back link ---- */
.podcast-back {
  text-align: center;
  padding: 48px 0 96px;
}
.trip-back-link {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--olive-dark);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.trip-back-link:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

/* ---- Mobile ---- */
@media (max-width: 820px) {
  .trip-strip { height: 160px; }
  .trip-band { padding: 48px 24px 56px; }
  .trip-band-title { font-size: 2.4rem; }
  .trip-intro { padding: 48px 24px 56px; }
  .trip-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trip-intro-portrait { width: 160px; }
  .trip-day-list { padding: 40px 24px 64px; }
  .trip-day-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .trip-day-thumb { width: 100%; height: auto; aspect-ratio: 4/3; }
  .trip-day-place { font-size: 1.5rem; }
  .trip-followalong { padding: 48px 24px 64px; }
  .trip-followalong-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trip-followalong-row { flex-wrap: wrap; }
  .trip-followalong-email { width: 100%; border-right: 1px solid var(--hb-rule, #d9d2c3); }
  .trip-followalong-submit { width: 100%; margin-top: 8px; }
}

/* ==================================================================
   TRIP DAY PAGE — typographic header band, sequence nav, post timestamps
   No hero. Body imagery stays inside post_content.
   ================================================================== */

.day-band {
  background: var(--light-bg);
  padding: 56px 40px 48px;
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  scroll-margin-top: 80px;
}
.day-band-inner {
  max-width: 880px;
  margin: 0 auto;
}
/* Breadcrumb now plays the role of the eyebrow — same size as a regular
   editorial eyebrow on About / Way / Contact. Two segments: blog-index
   link on the left, current-trip-hub link after the middot. */
.day-band-breadcrumb {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 18px;
}
.day-band-breadcrumb-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.day-band-breadcrumb-link:hover { color: var(--text-dark); }
.day-band-breadcrumb-sep { margin: 0 0.5em; }
.day-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--olive-dark);
  margin: 0 0 18px;
  text-wrap: balance;
}
.day-band-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.day-band-meta-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--olive-dark);
  margin: 0;
}
.day-band-sep { color: var(--hb-rule, #d9d2c3); margin: 0 0.5em; }

/* ---- Day pager (icon-only prev/next on the band's meta line) ---- */
.day-pager {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.day-pager-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--terracotta);
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
}
.day-pager-link:hover { background: rgba(176, 95, 65, 0.1); color: var(--terracotta); }
.day-pager-link.is-disabled { color: var(--hb-rule, #d9d2c3); cursor: default; }
.day-pager-link.is-disabled:hover { background: transparent; }

/* Custom tooltip on the day pager — editorial style, replaces browser title */
.day-pager-link[data-tip]::after,
.day-pager-link[data-tip]::before {
  position: absolute;
  bottom: calc(100% + 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateY(4px);
}
.day-pager-link[data-tip]::after {
  content: attr(data-tip);
  left: 50%;
  transform: translate(-50%, 4px);
  white-space: nowrap;
  background: var(--olive-dark, #3d3a2e);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 5;
}
.day-pager-link[data-tip]::before {
  content: '';
  left: 50%;
  margin-left: -5px;
  bottom: calc(100% + 3px);
  border: 5px solid transparent;
  border-top-color: var(--olive-dark, #3d3a2e);
  z-index: 5;
}
.day-pager-link[data-tip]:hover::after,
.day-pager-link[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.day-pager-link[data-tip]:hover::before,
.day-pager-link[data-tip]:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}
/* Keep the next-side tooltip from overflowing the right edge */
.day-pager-link.next[data-tip]::after {
  left: auto;
  right: 0;
  transform: translate(0, 4px);
}
.day-pager-link.next[data-tip]:hover::after,
.day-pager-link.next[data-tip]:focus-visible::after {
  transform: translate(0, 0);
}
.day-pager-link.next[data-tip]::before {
  left: auto;
  right: 11px;
  margin-left: 0;
}

/* ---- Sequence nav (top + bottom) ----
   Cream background flows to viewport edges. Inner content is constrained
   to match the body container (1200px max, .section padding 40 each side
   = same effective text rails as the body), so PREVIOUS' left edge aligns
   with the body's left edge and NEXT's right edge aligns with the body's
   right edge. */
.day-prevnext {
  background: var(--light-bg);
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  padding: 24px 40px;
}
.day-prevnext-bottom {
  border-top: 1px solid var(--hb-rule, #d9d2c3);
  border-bottom: none;
  padding: 28px 40px;
}
/* Match the .day-band-inner width (880px) so PREVIOUS' left edge aligns
   with the title's left edge and NEXT's right edge aligns with the
   title's right edge. */
.day-prevnext-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.day-prevnext-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.day-prevnext-link.next { text-align: right; align-items: flex-end; }
.day-prevnext-dir {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: color 0.25s;
}
.day-prevnext-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--olive-dark);
  transition: color 0.25s;
}
.day-prevnext-link:hover .day-prevnext-label { color: var(--terracotta); }

/* ---- Post timestamp — chapter mark ---- */
/* Italic serif at journal-entry weight; visible breathing room above and below
   so each time becomes a chapter mark down the page. */
.podcast-single .entry-content .wa-post-time,
.wa-day-body .wa-post-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--olive-dark, #3d3a2e);
  margin: 96px 0 28px;
  letter-spacing: 0.01em;
  display: block;
  background: none;
  padding: 0;
  border: 0;
}
.podcast-single .entry-content .wa-post-time:first-child,
.wa-day-body .wa-post-time:first-child { margin-top: 24px; }

/* Soft separator between posts inside a day */
.podcast-trip-day .entry-content .wa-post-time + p,
.podcast-trip-day .entry-content .wa-post-time + figure { margin-top: 0; }

/* Drop-cap on the first paragraph after each chapter mark */
.podcast-trip-day .entry-content .wa-post-time + p::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--olive-dark, #3d3a2e);
}

/* Image captions inside trip-day body */
.podcast-trip-day .entry-content figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--olive);
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}
.podcast-trip-day .entry-content figcaption.image-attribution {
  text-align: right;
  opacity: 0.75;
}
.podcast-trip-day .entry-content figcaption.auto-caption {
  text-align: center;
  margin-top: 14px;
}

/* Editorial frame for inline figures: hairline above + below, paper-tone inset.
   Image sizing unchanged — only the framing around it changes. */
.podcast-trip-day .entry-content figure.wp-block-image,
.podcast-trip-day .entry-content figure.attributed-image {
  max-width: 680px;
  margin: 56px auto;
  padding: 28px 0 24px;
  background: var(--light-bg);
  border-top: 1px solid var(--hb-rule, #d9d2c3);
  border-bottom: 1px solid var(--hb-rule, #d9d2c3);
}
.podcast-trip-day .entry-content figure img,
.podcast-trip-day .entry-content figure video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.podcast-trip-day .entry-content figure figcaption {
  padding: 0 24px;
}

/* Mobile */
@media (max-width: 820px) {
  .day-band { padding: 40px 24px 32px; }
  .day-band-title { font-size: 1.1rem; }
  .day-band-meta { font-size: 1rem; }
  .day-prevnext { padding: 16px 24px; }
  .day-prevnext-bottom { padding: 28px 24px 56px; }
  .day-prevnext-inner { grid-template-columns: 1fr; gap: 16px; }
  .day-prevnext-link.next { text-align: left; align-items: flex-start; }
  .podcast-trip-day .entry-content figure.wp-block-image,
  .podcast-trip-day .entry-content figure.attributed-image { max-width: 100%; }

  /* Collapse the day-side column to a horizontal strip above the body */
  .podcast-single.podcast-trip-day .container {
    display: block;
    max-width: 800px;
  }
  .podcast-single.podcast-trip-day .container > .day-side {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  }
  /* Show toggle on the right of the same row */
  .day-side-toggle { display: inline-block; margin-left: auto; }
  /* Strip hidden by default; expanded on toggle. Left-align on mobile —
     right-align is desktop marginalia, mobile reads better as a list. */
  .day-side-strip {
    flex-basis: 100%;
    margin-top: 0;
    padding-top: 16px;
    display: none;
  }
  .day-side.is-open .day-side-strip { display: block; }
  .day-side-strip-list { text-align: left; gap: 20px; }
  .day-side-counter { text-align: left; }
  .day-side-strip-link { align-items: flex-start; }
  /* Time jumps stay desktop-only */
  .day-side-times { display: none; }

  /* Drop-cap dialed down on small screens */
  .podcast-trip-day .entry-content .wa-post-time + p::first-letter {
    font-size: 3rem;
    padding: 4px 8px 0 0;
  }
}

/* ==================================================================
   PEOPLE & PLACES PAGE — template-experience.php
   Editorial hero (callout + square photo) + tight end-of-page sections.
   ================================================================== */

.pp-hero {
  background: var(--light-bg);
  border-bottom: 1px solid var(--chrome-hairline-strong);
  padding: 56px 40px 64px;
}
.pp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.pp-hero-text { min-width: 0; }
.pp-hero-image {
  width: 100%;
  background: var(--bg-warm-gray, #f4f1ec);
  overflow: hidden;
}
.pp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.25s;
}
.pp-eyebrow:hover { color: var(--text-dark); }
.pp-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.05;
  color: var(--olive-dark);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}

/* "Why I love this place" callout — hairlines top + bottom, no box */
.pp-callout {
  border-top: 1px solid var(--chrome-hairline-strong);
  border-bottom: 1px solid var(--chrome-hairline-strong);
  padding: 24px 0 22px;
  margin: 0;
}
.pp-callout-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 14px;
}
.pp-callout-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--olive-dark);
  max-width: 44ch;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  background: none;
}
.pp-callout-quote p { margin: 0; font: inherit; color: inherit; }
.pp-callout-attr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-body);
}
.pp-callout-attr-text { white-space: nowrap; }
.pp-callout-portrait {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.pp-callout-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.pp-callout-portrait:hover {
  border-color: var(--terracotta);
}

/* End-of-page sections — shared frame */
.pp-section {
  background: var(--light-bg);
  border-top: 1px solid var(--chrome-hairline-strong);
  padding: 36px 40px;
}
.pp-section-inner {
  max-width: 850px;
  margin: 0 auto;
}
.pp-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--olive-dark);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}

/* Body wrapper — keep the body on cream paper to match the rest of the page */
.pp-body { background: var(--light-bg); }

/* Learn more */
.pp-learn-more-item {
  border-left: 2px solid var(--chrome-hairline-strong);
  padding: 6px 0 6px 16px;
  margin: 0 0 16px;
}
.pp-learn-more-item:last-child { margin-bottom: 0; }
.pp-learn-more-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 99, 62, 0.3);
  transition: color 0.25s, border-color 0.25s;
}
.pp-learn-more-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}
.pp-learn-more-desc {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 6px 0 0;
}

/* Journal pitch */
.pp-journal { padding: 36px 40px; }
.pp-journal-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 1.5;
  color: var(--olive-dark);
  max-width: 60ch;
  margin: 0 0 22px;
}
.pp-journal-lede em { font-style: italic; }
.pp-journal-link {
  color: var(--terracotta);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 99, 62, 0.4);
  transition: color 0.25s, border-color 0.25s;
}
.pp-journal-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}
.pp-journal-form { max-width: 520px; margin: 0; padding: 0; }
.pp-journal-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.pp-journal-email {
  flex: 1;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--chrome-hairline-strong);
  border-right: none;
  background: transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: 0;
  min-width: 0;
}
.pp-journal-email:focus {
  outline: none;
  border-color: var(--terracotta);
}
.pp-journal-submit {
  height: 42px;
  padding: 0 22px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s;
}
.pp-journal-submit:hover { background: var(--olive-dark); }
.pp-journal-status {
  display: block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--olive);
}
.pp-journal-status:empty { display: none; }

/* Tour list */
.pp-tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-tour-list li {
  border-top: 1px dashed var(--chrome-hairline-strong);
  padding: 12px 0;
}
.pp-tour-list li:first-child { border-top: 0; padding-top: 4px; }
.pp-tour-list li:last-child { padding-bottom: 4px; }
.pp-tour-link {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--olive-dark);
  text-decoration: none;
  transition: color 0.25s;
}
.pp-tour-link:hover { color: var(--terracotta); }

/* Continue exploring — 3 cards */
.pp-explore { padding: 48px 40px 72px; }
.pp-explore .pp-section-inner { max-width: 1200px; }
.pp-explore-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--olive-dark);
  margin: 0 0 32px;
  letter-spacing: -0.005em;
}
.pp-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pp-explore-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s;
}
.pp-explore-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm-gray, #f4f1ec);
  margin-bottom: 14px;
}
.pp-explore-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s;
}
.pp-explore-card:hover .pp-explore-card-image img { filter: brightness(1.04) saturate(1.04); }
.pp-explore-card-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}
.pp-explore-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--olive-dark);
  margin: 0 0 8px;
  transition: color 0.25s;
}
.pp-explore-card:hover .pp-explore-card-title { color: var(--terracotta); }
.pp-explore-card-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

/* Suppress legacy curator-note rendering on this template — its content has
   been promoted to the hero callout above. */
.experience-single .curator-note { display: none; }

/* Mobile */
@media (max-width: 820px) {
  .pp-hero { padding: 40px 24px 48px; }
  .pp-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pp-title { font-size: 2.2rem; margin-bottom: 24px; }
  .pp-callout-quote { font-size: 1.15rem; max-width: 100%; }

  .pp-section { padding: 28px 24px; }
  .pp-explore { padding: 36px 24px 64px; }
  .pp-explore-heading { font-size: 1.6rem; }
  .pp-explore-grid { grid-template-columns: 1fr; gap: 24px; }
  .pp-journal-lede { font-size: 1.15rem; }
}

/* ── Trip-log readability tweaks ───────────────────────────────────── */

/* Image/video captions match body text size (1.05rem) on trip log pages.
   The default .image-caption is 0.85rem, which reads as a footnote next
   to Giuditta's longer block-style captions. */
.podcast-single .entry-content .image-caption {
  font-size: 1.05rem;
}

/* Desktop only: shrink portrait media (video + photo) to 45% of normal
   width. At full content width a phone-shot vertical frame is taller
   than a laptop viewport, so playing a video means scrolling and a
   tall photo dominates the layout. Landscape media renders unchanged.
   The .wa-video-portrait / .wa-image-portrait classes are added by
   trip-log.js after the source's natural dimensions are known
   (poster image, video metadata, or img.naturalSize). */
@media (min-width: 769px) {
  .podcast-single .entry-content .wp-block-image.wa-video-portrait,
  .podcast-single .entry-content .wp-block-image.wa-image-portrait {
    max-width: 45%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==================== JOURNAL ENTRY: MASTHEAD TAGS ==================== */
.entry-tags {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.entry-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(107,112,92,0.3);
  border-radius: 999px;
  padding: 4px 10px;
  background: transparent;
}

/* ==================== JOURNAL ENTRY: LEFT RAIL ====================
   Mirrors .podcast-single.podcast-trip-day .container > .day-side:
   right-aligned marginalia, terracotta uppercase eyebrows, Cormorant
   italic for item names. */
.podcast-single--with-rail .container {
  max-width: 980px;
}
@media (min-width: 900px) {
  .podcast-single--with-rail .container {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 56px;
    align-items: start;
  }
  .podcast-single--with-rail .container > .podcast-rail {
    grid-column: 1;
    grid-row: 1 / -1;
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 88px - var(--chrome-tagline-strip-height, 36px) - 16px);
    overflow-y: auto;
    padding-right: 8px;
  }
  .podcast-single--with-rail .container > .podcast-main {
    grid-column: 2;
    min-width: 0;
  }
}
.podcast-single--with-rail .podcast-main { min-width: 0; }

.podcast-rail {
  font-family: 'Raleway', sans-serif;
  color: var(--text-body);
  text-align: right;
}
.podcast-rail-eyebrow {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.podcast-rail-reading {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-body);
  opacity: 0.6;
}
.podcast-rail-section {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hb-rule, #d9d2c3);
}
.podcast-rail-related-list,
.podcast-rail-anchors-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.podcast-rail-related-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.25;
}
.podcast-rail-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.2s;
}
.podcast-rail-type {
  margin-top: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  opacity: 0.7;
}
.podcast-rail-related-link:hover .podcast-rail-name { color: var(--olive-dark); }

.podcast-rail-anchors-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--olive-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.podcast-rail-anchors-link:hover { color: var(--terracotta); }

@media (max-width: 899px) {
  .podcast-rail {
    text-align: left;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hb-rule, #d9d2c3);
  }
  .podcast-rail-related-link { align-items: flex-start; }
}

/* Drop cap on the first body paragraph of a journal entry. :first-of-type
   matches the first <p> regardless of what precedes it (a leading blockquote
   like a Pavese pull-quote, a captioned image, etc). */
.podcast-single--with-rail .entry-content > p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--olive-dark, #3d3a2e);
}
