/* =========================================================
   OPEN ROADS — US Travel Blog Theme
   Campfire Americana Redesign
   ========================================================= */

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

:root {
  /* Brand — Campfire Americana palette */
  --forest:         #355E4B;   /* trail green (primary) */
  --forest-dark:    #254539;   /* hover / deep forest */
  --forest-deep:    #1A2E22;   /* darkest surface */
  --lime:           #F4A340;   /* sunset amber accent */
  --lime-dark:      #D96B2B;   /* burnt orange */
  --cream:          #FFF3E6;   /* warm sand base */
  --sand:           #F5E6D3;   /* light sand */
  --sand-dark:      #E0C9A8;   /* mid sand / placeholder bg */
  --warm-brown:     #7B5B43;   /* canyon brown */
  --earth:          #5A3E2B;   /* deep earth */
  --dusk:           #E8914F;   /* warm dusk */

  /* Surfaces */
  --surface:        #FFFFFF;
  --surface-warm:   var(--cream);
  --surface-sand:   var(--sand);
  --dark-bg:        #1A2E22;
  --dark-surface:   #22392C;

  /* Text */
  --on-surface:       #1C1008;
  --on-surface-muted: #5A4535;
  --text-light:       #9C8672;
  --on-dark:          #FFF3E6;
  --on-dark-muted:    rgba(255, 243, 230, 0.72);

  /* Borders */
  --border:         #E0C9A8;
  --border-dark:    rgba(255,255,255,0.12);

  /* Radius */
  --radius:         8px;
  --radius-md:      12px;
  --radius-lg:      24px;
  --radius-img:     20px;

  /* Typography */
  --font-headline: "Bitter", Georgia, serif;
  --font-body:     "Montserrat", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-w:  1200px;
  --section-py:   100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Wave/divider fills */
  --wave-sand:   #FFF3E6;
  --wave-forest: #1A2E22;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--on-surface);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.site-main { flex: 1; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--forest-dark); }
/* Sea shimmer keyframe used by wave decorators */
@keyframes wave-shimmer {
  0%   { opacity: .6; transform: translateX(0); }
  50%  { opacity: .8; transform: translateX(-8px); }
  100% { opacity: .6; transform: translateX(0); }
}
button { font-family: var(--font-body); }

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--accent  {
  background: var(--forest);
  color: #fff;
}
.btn--accent:hover {
  background: var(--forest-dark);
  color: #fff;
  box-shadow: 0 4px 18px rgba(61,107,90,.35);
}
.btn--outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: #fff;
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
.btn--full { width: 100%; }

/* Section head row */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.section-head__text { flex: 1; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}
.eyebrow--light { color: var(--lime); }
.eyebrow--amber { color: var(--lime); }

/* Section title */
.section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.15;
}

/* Section link  – animated underline */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 2px solid var(--sand-dark);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.section-link:hover { border-color: var(--forest); color: var(--forest-dark); }
.section-link svg { transition: transform .2s; }
.section-link:hover svg { transform: translateX(4px); }

/* No-post message */
.no-posts {
  font-style: italic;
  color: var(--on-surface-muted);
  padding: 24px 0;
}


/* ── HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow .3s var(--ease-out);
}
.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Admin bar offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.header-inner {
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 0 28px;
  height: 72px;
  display: grid;
  grid-template-columns: 2fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Logo */
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; object-fit: contain; }
.header-logo .custom-logo-link { display: flex; align-items: center; }
.site-title-text {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--on-surface);
  white-space: nowrap;
  transition: color .25s;
}
.site-title-text:hover { color: var(--forest); }

/* Primary nav */
.header-nav { justify-self: center; }
.header-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: stretch;
}
.header-nav .nav-list > li { position: relative; }
.header-nav .nav-list a {
  display: block;
  color: var(--on-surface);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 9px 15px;
  transition: color .2s;
}
.header-nav .nav-list > li > a:hover { color: var(--forest-dark); }

/* Active / current page — orange text */
.header-nav .nav-list > li.current-menu-item > a,
.header-nav .nav-list > li.current-page-ancestor > a,
.header-nav .nav-list > li.current-menu-ancestor > a {
  color: var(--lime-dark);
  font-weight: 700;
}
/* Small waypoint dot before active item text */
.header-nav .nav-list > li.current-menu-item > a::before,
.header-nav .nav-list > li.current-page-ancestor > a::before,
.header-nav .nav-list > li.current-menu-ancestor > a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime-dark);
  margin-right: 6px;
  vertical-align: 1px;
  flex-shrink: 0;
}

/* Animated orange underline — slides in from left */
.header-nav .nav-list > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--lime-dark);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease-out);
}
.header-nav .nav-list > li:hover::after,
.header-nav .nav-list > li.current-menu-item::after,
.header-nav .nav-list > li.current-page-ancestor::after,
.header-nav .nav-list > li.current-menu-ancestor::after {
  transform: scaleX(1);
}

/* Desktop dropdown */
.header-nav .nav-list li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: 2px;
  transition: transform .2s;
}
.header-nav .nav-list li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.header-nav .nav-list li.menu-item-has-children .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,.11);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.header-nav .nav-list li.menu-item-has-children:hover .sub-menu,
.header-nav .nav-list li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header-nav .nav-list .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .84rem;
  background: none;
  color: var(--on-surface);
  border-radius: 0;
  white-space: nowrap;
}
.header-nav .nav-list .sub-menu a:hover { color: var(--forest); background: var(--cream); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.header-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .2s, background .2s;
}
.header-search-btn:hover { color: var(--forest); background: var(--sand); }

/* Burger button */
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  border-radius: 4px;
  transition: background .2s;
}
.burger-btn:hover { background: var(--sand); }
.burger-bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: width .2s, transform .3s, opacity .3s;
}
.burger-bar:nth-child(1) { width: 22px; }
.burger-bar:nth-child(2) { width: 16px; }
.burger-bar:nth-child(3) { width: 22px; }
.burger-btn[aria-expanded="true"] .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.burger-btn[aria-expanded="true"] .burger-bar:nth-child(2) { opacity: 0; }
.burger-btn[aria-expanded="true"] .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Search bar */
.header-search-bar {
  border-top: 1px solid var(--border);
  background: var(--sand);
  padding: 14px 0;
  display: flex;
  justify-content: center;
}
.header-search-bar[hidden] { display: none; }
.header-search-bar .search-form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: var(--container-w);
  padding-inline: 28px;
}
.header-search-bar input[type="search"] {
  flex: 1;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  outline: none;
  background: var(--surface);
  color: var(--on-surface);
  transition: border-color .2s;
  min-width: 0;
}
.header-search-bar input[type="search"]:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,107,90,.1);
}
.header-search-bar input[type="search"]::placeholder { color: var(--text-light); }
.header-search-bar button[type="submit"] {
  background: var(--forest);
  color: #fff;
  border: 2px solid var(--forest);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.header-search-bar button[type="submit"]:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

/* ── MOBILE NAV ─────────────────────────────────────────── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,31,28,.55);
  z-index: 299;
  backdrop-filter: blur(2px);
}
.nav-backdrop.is-open { display: block; }

.nav-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--cream);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform .38s var(--ease-out);
  box-shadow: 6px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
}
.nav-menu.is-open { transform: translateX(0); }

.nav-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-menu__brand {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--on-surface);
}
.nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--on-surface);
  padding: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .2s, background .2s;
}
.nav-close:hover { color: var(--forest); background: var(--sand); }

/* ── Nav menu body: no flex-grow so subscribe follows immediately ── */
.nav-menu__body { padding: 8px 0; }
.nav-menu .menu { list-style: none; }
.nav-menu .menu li a {
  display: block;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--on-surface);
  padding: 14px 24px;
  border-left: 3px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-menu .menu li a:hover {
  color: var(--forest);
  background: var(--sand);
  border-left-color: var(--forest);
}
/* Mobile dropdown expand */
.nav-menu .menu li.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-menu .menu li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  flex-shrink: 0;
  transition: transform .25s;
}
.nav-menu .menu li.menu-item-has-children.is-open > a::after { transform: rotate(180deg); }
.nav-menu .menu .sub-menu {
  display: none;
  list-style: none;
  background: var(--sand);
}
.nav-menu .menu li.menu-item-has-children.is-open > .sub-menu { display: block; }
.nav-menu .menu .sub-menu a {
  padding-left: 36px;
  font-size: .9rem;
  border-left: none;
}

.nav-menu__subscribe {
  padding: 16px 24px 24px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   MOSAIC HERO — Adventure post grid (Section 1)
═══════════════════════════════════════════════ */
.mosaic-hero {
  padding: 60px 0 0;
  background: var(--cream);
  /* Subtle topographic dot pattern overlay */
  background-image: radial-gradient(circle, rgba(91,62,43,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  z-index: 2;
}

.mosaic-hero__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.mosaic-hero__eyebrow {
  color: var(--lime-dark);
}
.mosaic-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0;
}
.mosaic-hero__all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.mosaic-hero__all-link:hover { border-color: var(--forest); color: var(--forest-dark); }
.mosaic-hero__all-link svg { transition: transform .2s; }
.mosaic-hero__all-link:hover svg { transform: translateX(4px); }

/* ── Mosaic grid layout ── */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;   /* 50 / 25 / 25 */
  grid-template-rows: 520px;             /* single tall row */
  gap: 6px;
}
/* Column wrappers — each fills the full grid-row height via flex */
.mosaic-col-mid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}
.mosaic-col-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
}

/* ── Shared mosaic card ── */
.mosaic-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sand-dark);
  transition: box-shadow .3s var(--ease-out);
}
.mosaic-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.18); }

.mosaic-card--a { border-radius: 24px; }   /* spans the single grid row naturally */
.mosaic-card--b { border-radius: 16px; flex: 1; }
.mosaic-card--c { border-radius: 12px; flex: 1; }
.mosaic-card--d { border-radius: 16px; flex: 1; }
.mosaic-card--e { border-radius: 12px; flex: 1; }

.mosaic-card__img-link {
  display: block;
  position: absolute;
  inset: 0;
}
.mosaic-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.mosaic-card:hover .mosaic-card__img { transform: scale(1.04); }
.mosaic-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sand-dark) 0%, var(--warm-brown) 100%);
}

.mosaic-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,34,.88) 0%, rgba(26,46,34,.1) 55%, transparent 100%);
  pointer-events: none;
}

.mosaic-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px 16px;
  z-index: 2;
}

/* Category badge — burnt orange pill on mosaic cards */
.mosaic-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--lime-dark);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: background .2s;
}
.mosaic-badge:hover { background: var(--earth); color: #fff; }

.mosaic-card--a .mosaic-card__title {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}
.mosaic-card__title {
  font-family: var(--font-headline);
  font-size: clamp(.85rem, 1.3vw, 1.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.mosaic-card__title a { color: #fff; text-decoration: none; transition: opacity .2s; }
.mosaic-card__title a:hover { opacity: .85; }

.mosaic-card__date {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Wave out of mosaic hero */
.mosaic-hero__wave {
  line-height: 0;
  margin-top: 48px;
}
.mosaic-hero__wave svg { display: block; width: 100%; height: 100px; }


/* ═══════════════════════════════════════════════
   CATEGORIES — Trail Map Discovery (Section 2)
═══════════════════════════════════════════════ */
.categories-section {
  background: var(--forest-deep);
  padding: 60px 0;
  position: relative;
  z-index: 1;
  /* Crosshatch map grid overlay */
  background-image:
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(244,163,64,.05) 39px, rgba(244,163,64,.05) 40px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 39px, rgba(244,163,64,.05) 39px, rgba(244,163,64,.05) 40px);
}
.categories-head {
  text-align: center;
  margin-bottom: 20px;
}
.categories-head .eyebrow { margin-bottom: 10px; }
.categories-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* Dashed connector route line between cards */
.categories-route {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lime) 0px, var(--lime) 8px, transparent 8px, transparent 16px);
  opacity: .35;
  position: relative;
  z-index: 0;
  margin-bottom: -2px;
}

/* Trail cards row */
.trail-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.trail-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--dark-surface);
  border-top: 4px solid var(--lime);
  border-radius: 28px;
  padding: 32px 24px 28px;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  text-decoration: none;
  color: #fff;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.trail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  border-color: #fff;
  color: #fff;
}
.trail-card__icon {
  width: 40px; height: 40px;
  color: var(--lime);
  flex-shrink: 0;
}
.trail-card__icon svg { width: 100%; height: 100%; }
.trail-card__name {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.trail-card__count {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trail-card__count svg { transition: transform .2s; }
.trail-card:hover .trail-card__count { color: var(--lime); }
.trail-card:hover .trail-card__count svg { transform: translateX(4px); }

/* Bottom wave */
.categories-section__wave {
  line-height: 0;
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%;
}
.categories-section__wave svg { display: block; width: 100%; height: 70px; }


/* ═══════════════════════════════════════════════
   AROUND THE COUNTRY — was guides-section, now journal
   Effect: Wave bottom edge → dark reviews section
═══════════════════════════════════════════════ */
.guides-section {
  padding: var(--section-py) 0;
  padding-bottom: calc(var(--section-py) + 60px);
  background: var(--cream);
  position: relative;
  z-index: 2;
}
/* Keep old wave for compat but override via journal-section */
.guides-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%231A2E22' d='M0,20 C180,60 360,0 540,30 C720,60 900,10 1080,35 C1260,60 1380,15 1440,25 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   TRAVEL JOURNAL STACK — Section 3
═══════════════════════════════════════════════ */
.journal-section {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.journal-section .vr-badge {
  margin-bottom: 5px;
}

.journal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.journal-head__text { flex: 1; }
.journal-head .eyebrow { color: var(--lime-dark); }
.journal-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.1;
  margin: 0;
}
.journal-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.journal-all-link:hover { border-color: var(--forest); }
.journal-all-link svg { transition: transform .2s; }
.journal-all-link:hover svg { transform: translateX(4px); }

/* 2-col layout: featured 60% + stack 40% */
.journal-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* Featured story */
.journal-featured {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: 0 2px 0 0 var(--sand-dark), 0 6px 24px rgba(0,0,0,.06);
  transform: rotate(-0.8deg);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.journal-featured:hover {
  transform: rotate(0deg);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.journal-featured__img-link {
  display: block;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.journal-featured__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.journal-featured:hover .journal-featured__img { transform: scale(1.04); }
.journal-featured__img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
}
.journal-featured__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.journal-featured__title {
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
}
.journal-featured__title a { color: inherit; transition: color .2s; }
.journal-featured__title a:hover { color: var(--forest); }
.journal-featured__date {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-light);
}

/* Stacked rows */
.journal-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journal-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  border-left: 3px solid var(--lime);
  background: var(--surface);
}
.journal-row:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; }
.journal-row:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}
.journal-row:hover { background: var(--cream); }
.journal-row__img-link {
  display: block;
  flex-shrink: 0;
  width: 125px; height: 100px;
  overflow: hidden;
  padding: 5px;
}
.journal-row__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out);
}
.journal-row__img-link:hover .journal-row__img { transform: scale(1.07); }
.journal-row__img-placeholder {
  width: 100%; height: 100%;
  background: var(--sand-dark);
  border-radius: var(--radius);
}
.journal-row__body {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.journal-row__title {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-surface);
  margin: 0;
}
.journal-row__title a { color: inherit; transition: color .2s; }
.journal-row__title a:hover { color: var(--forest); }
.journal-row__date {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-light);
}

/* Wave bottom of journal into reviews */
.journal-section__wave {
  line-height: 0;
  margin-top: 80px;
}
.journal-section__wave svg { display: block; width: 100%; height: 90px; }

/* ── SHARED CATEGORY BADGE ─────────────────────────────────── */
.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 3px 10px 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.vr-badge::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: background .2s;
}
.vr-badge:hover { background: var(--forest); color: #fff; }
.vr-badge:hover::before { background: #fff; }

/* Light variant — on dark image overlay */
.vr-badge--light {
  color: #fff;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.vr-badge--light::before { background: #fff; }
.vr-badge--light:hover { background: rgba(255,255,255,.25); color: #fff; border-color: #fff; }

/* Ocean variant — for dark section */
.vr-badge--ocean {
  color: var(--lime);
  border-color: rgba(240,192,64,.45);
  background: rgba(240,192,64,.08);
}
.vr-badge--ocean::before { background: var(--lime); }
.vr-badge--ocean:hover { background: var(--lime); color: var(--forest-deep); border-color: var(--lime); }
.vr-badge--ocean:hover::before { background: var(--forest-deep); }

/* Gold variant — on dark image overlay */
.vr-badge--gold {
  color: var(--lime);
  border-color: rgba(240,192,64,.6);
  background: rgba(10,45,69,.45);
  backdrop-filter: blur(4px);
}
.vr-badge--gold::before { background: var(--lime); }
.vr-badge--gold:hover { background: var(--lime); color: var(--forest-deep); }
.vr-badge--gold:hover::before { background: var(--forest-deep); }

/* ── VOYAGE REPORT layout ───────────────────────────── */
.vr-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
/* Old vr-* layout classes hidden — replaced by journal-section */
.vr-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-img);
  overflow: hidden;
}

/* Hero card */
.vr-hero {
  position: relative;
  display: flex;
  flex-direction: column;
}
.vr-hero__img-link {
  display: block;
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 320px;
}
.vr-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.vr-hero__img-link:hover .vr-hero__img { transform: scale(1.04); }
.vr-hero__img-placeholder {
  width: 100%; height: 100%; min-height: 320px;
  background: var(--sand-dark);
}
/* Gradient overlay on image for text */
.vr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,45,69,.82) 0%, rgba(10,45,69,.15) 55%, transparent 100%);
  pointer-events: none;
}
/* Text pinned to bottom of image */
.vr-hero__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}
.vr-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
/* ═══════════════════════════════════════════════
   POSTCARDS FROM THE ROAD — Section 5
═══════════════════════════════════════════════ */
.postcard-section {
  padding: var(--section-py) 0 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}
.postcard-head {
  text-align: center;
  margin-bottom: 52px;
}
.postcard-head .eyebrow { color: var(--lime-dark); }
.postcard-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.1;
  margin-top: 8px;
}
.postcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.postcard-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 3px solid var(--lime-dark);
  box-shadow: 4px 4px 0 0 var(--sand-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.postcard-card--green { border-color: var(--forest); }
.postcard-card--tilted { transform: rotate(1.2deg); }
.postcard-card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow: 6px 8px 0 0 var(--sand-dark);
}
.postcard-card__img-link {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.postcard-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.postcard-card:hover .postcard-card__img { transform: scale(1.04); }
.postcard-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
}
.postcard-stamp {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  color: var(--lime);
  opacity: .75;
}
.postcard-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}
.postcard-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-light);
}
.postcard-card__cat {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
}
.postcard-card__cat:hover { color: var(--lime-dark); }
.postcard-card__sep { color: var(--border); }
.postcard-card__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--on-surface);
  flex: 1;
}
.postcard-card__title a { color: inherit; transition: color .2s; }
.postcard-card__title a:hover { color: var(--forest); }
.postcard-card__read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--forest);
  border-bottom: 2px solid rgba(53,94,75,.25);
  padding-bottom: 1px;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}
.postcard-card__read:hover { border-color: var(--forest); }
.postcard-footer {
  text-align: center;
  margin-bottom: 80px;
}
.postcard-section__wave { display: block; line-height: 0; }
.postcard-section__wave svg { display: block; width: 100%; height: 80px; }


/* ═══════════════════════════════════════════════
   REVIEWS — Full-width immersive slider
   Effect: Deep forest green with animated wave bands
═══════════════════════════════════════════════ */
.reviews-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--forest-deep);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
  z-index: 1;
}
/* Radial amber glow + crosshatch */
.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(244,163,64,.06) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 40px,
      rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 40px,
      rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px
    );
  pointer-events: none;
  z-index: 0;
}
/* Wave bottom into subscribe section */
.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath fill='%23FFF3E6' d='M0,35 C200,0 400,70 600,35 C800,0 1000,70 1200,35 C1320,18 1400,42 1440,35 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.reviews-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.reviews-title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

.reviews-section .eyebrow {
  text-shadow: 0 0 6px black;
}

/* Slider wrapper */
.reviews-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 0;
}
.reviews-track {
  display: flex;
  transition: transform .55s var(--ease-out);
}
.review-slide {
  flex: 0 0 100%;
  padding: 40px 48px;
  background: rgba(0,0,0,.5);
  border: none;
  border-top: 3px solid var(--lime);
  border-radius: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
/* Decorative CSS open-quote top-right */
.review-slide::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 32px;
  font-family: var(--font-headline);
  font-size: 8rem;
  line-height: 1;
  color: var(--lime);
  opacity: .1;
  pointer-events: none;
}
.review-slide__quote {
  position: relative;
  margin-bottom: 0;
}
.review-slide__mark { display: none; }
.review-slide__quote p {
  font-family: var(--font-headline);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 0 24px;
}
.review-slide__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  color: var(--lime);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.review-slide__author::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}
.review-slide__author span {
  font-weight: 400;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
}

/* Arrows — square */
.reviews-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.reviews-arrow:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--forest-deep);
  transform: scale(1.05);
}

/* Dots — horizontal bar style */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.reviews-dot {
  width: 20px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.reviews-dot--active {
  background: var(--lime);
  width: 36px;
}


/* ═══════════════════════════════════════════════
   SUBSCRIBE SECTION
   Effect: Cream bg with large diagonal nautical
           stripe accents and sea-light radials;
           bottom wave into editor dark section
═══════════════════════════════════════════════ */
.subscribe-section {
  padding: var(--section-py) 0;
  padding-top: calc(var(--section-py) + 60px);
  padding-bottom: calc(var(--section-py) + 60px);
  margin-top: -50px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
/* Diagonal nautical stripe bands — like port stripe painting */
.subscribe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 48px,
      rgba(53, 94, 75, .04) 48px,
      rgba(53, 94, 75, .04) 50px
    );
  pointer-events: none;
  z-index: 0;
}
/* Sea-light radial glow + wave bottom into editor */
.subscribe-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath fill='%23F5E6D3' d='M0,20 C120,50 300,0 480,28 C660,56 840,5 1020,28 C1200,51 1340,10 1440,22 L1440,70 L0,70 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  pointer-events: none;
}

/* Dark container wrapping both copy and form */
.subscribe-card {
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: 0 24px 72px rgba(0,0,0,.32);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* Gold porthole ring — top-right */
.subscribe-card::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 2px solid rgba(240,192,64,.12);
  background: radial-gradient(circle, rgba(91,184,212,.10) 0%, transparent 60%);
  pointer-events: none;
}
/* Radial glow — bottom-left */
.subscribe-card::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,.07) 0%, transparent 65%);
  pointer-events: none;
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}
.subscribe-inner__left {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.subscribe-inner__right {
  padding-left: 48px;
}
.subscribe-inner__left .eyebrow { margin-bottom: 12px; color: var(--lime); }
.subscribe-inner__title {
  font-family: var(--font-headline);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.subscribe-inner__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 44ch;
}
.subscribe-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subscribe-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}
.subscribe-perks li svg { color: var(--lime); flex-shrink: 0; }

/* Form area — subtle separation inside dark card */
.subscribe-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.subscribe-form-card::before,
.subscribe-form-card::after { display: none; }
.subscribe-form-card__label {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
}
.subscribe-form-card__note {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
  position: relative;
}

/* Contact Form 7 overrides */
.subscribe-form-card .wpcf7 { position: relative; }
.subscribe-form-card .wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.subscribe-form-card .wpcf7-form-control-wrap { display: block; }

/* Email + submit live in the same <p> separated by <br> — lay them out as a column */
.subscribe-form-card .form-fields p {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.subscribe-form-card .form-fields p br { display: none; }
.subscribe-form-card .form-privacy p { margin: 0; }

.subscribe-form-card input[type="text"],
.subscribe-form-card input[type="email"],
.subscribe-form-card textarea,
.subscribe-form-card select {
  width: 100%;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.subscribe-form-card input:focus,
.subscribe-form-card textarea:focus,
.subscribe-form-card select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(200,227,123,.18);
  background: rgba(255,255,255,.13);
}
.subscribe-form-card input::placeholder,
.subscribe-form-card textarea::placeholder { color: rgba(255,255,255,.42); }

/* Submit button — lime with dark text */
.subscribe-form-card .wpcf7-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--lime);
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  position: relative;
}
.subscribe-form-card .wpcf7-submit:hover {
  background: var(--dusk);
  box-shadow: 0 6px 24px rgba(232,145,79,.4);
  transform: translateY(-1px);
}

/* Acceptance / privacy checkbox */
.subscribe-form-card .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.subscribe-form-card .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.subscribe-form-card .wpcf7-acceptance input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
  cursor: pointer;
}
.subscribe-form-card .wpcf7-list-item-label {
  font-size: .8rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
}
.subscribe-form-card .wpcf7-list-item-label a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.subscribe-form-card .wpcf7-list-item-label a:hover { color: var(--dusk); }

/* Validation & response */
.subscribe-form-card .wpcf7-not-valid-tip {
  font-size: .76rem;
  color: #ff9f9f;
  margin-top: 4px;
  display: block;
}
.subscribe-form-card .wpcf7-response-output {
  font-size: .84rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  margin-top: 8px;
  color: rgba(255,255,255,.8);
}
.subscribe-form-card .wpcf7-spinner {
  display: none;
}


/* ═══════════════════════════════════════════════
   ABOUT THE EDITOR — Light magazine-spread layout
   Polaroid photo • warm sand background • dark text
═══════════════════════════════════════════════ */
.editor-section {
  padding: var(--section-py) 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
/* Subtle horizontal ruled-paper lines */
.editor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 28px,
    rgba(91,62,43,.03) 28px, rgba(91,62,43,.03) 29px
  );
  pointer-events: none;
}

.editor-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Photo: Polaroid / vintage print ── */
.editor-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 22px;  /* room for pushpin */
}
/* Pushpin dot above the frame */
.editor-portrait::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, var(--dusk) 0%, var(--lime-dark) 100%);
  box-shadow: 0 3px 10px rgba(0,0,0,.25), inset 0 -2px 3px rgba(0,0,0,.18);
  z-index: 3;
}
.editor-portrait__frame {
  background: #fff;
  padding: 14px 14px 52px;
  border-radius: 2px;
  box-shadow:
    2px 4px 0 0 var(--sand-dark),
    6px 8px 0 0 rgba(91,62,43,.12),
    0 20px 60px rgba(91,62,43,.16);
  transform: rotate(-2deg);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  width: 100%;
  position: relative;
  z-index: 2;
}
.editor-portrait:hover .editor-portrait__frame {
  transform: rotate(0deg);
  box-shadow:
    2px 4px 0 0 var(--sand-dark),
    6px 8px 0 0 rgba(91,62,43,.12),
    0 28px 80px rgba(91,62,43,.22);
}
.editor-portrait__frame::before { display: none; }
.editor-portrait__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.editor-portrait__caption {
  text-align: center;
  padding: 12px 0 0;
  font-family: var(--font-headline);
  font-size: .9rem;
  font-style: italic;
  font-weight: 400;
  color: var(--on-surface-muted);
  line-height: 1.3;
}
.editor-portrait::after { display: none; }
.editor-portrait__placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sand-dark);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--on-surface-muted);
  font-size: .84rem;
  text-align: center;
  padding: 24px;
}

/* Compass rose watermark — light bg, subtle border tone */
.editor-terrain {
  position: absolute;
  bottom: -30px; right: -50px;
  width: 180px; height: 180px;
  color: var(--border);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

/* ── Story text — dark on light ── */
.editor-story { position: relative; }
.editor-story .eyebrow { display: block; margin-bottom: 10px; color: var(--lime-dark); }
.editor-story__tagline {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--on-surface-muted);
  margin: 0 0 24px;
  line-height: 1.55;
  padding-left: 16px;
  border-left: 3px solid var(--lime);
}
.editor-story__name {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.05;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.editor-story__role { display: none; }
.editor-story__bio {
  font-size: .96rem;
  color: var(--on-surface-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.editor-story__bio p { margin-bottom: 12px; }
.editor-story__sig { display: none; }
/* btn--outline on light background */
.editor-story .btn--outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.editor-story .btn--outline:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--forest-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* 3-column grid: logo | nav-left | nav-right */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 20px 25px 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.home .footer-wave {
  background-color: #F5E6D3 !important;
}

/* Brand / Logo column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand__name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
  text-decoration: none;
  line-height: 1.1;
}
.footer-brand__name:hover { color: var(--lime); }
.footer-brand .custom-logo-link,
.footer-brand__logo-link {
  display: block;
  line-height: 0;
}
.footer-brand .custom-logo-link img,
.footer-brand__logo {
  height: 44px;
  width: auto;
  max-width: 200px;
}
.footer-brand__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.48);
  max-width: 230px;
}

/* Nav columns — vertical stacked links */
.footer-nav {
  position: relative;
  z-index: 1;
}
.footer-nav--left  { justify-self: center; text-align: center; }
.footer-nav--right { justify-self: end;    text-align: center; }

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav__list a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.68);
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .2s;
}
.footer-nav__list a:hover { color: var(--lime); }

/* Copyright bar */
.footer-bottom {
  background: rgba(0,0,0,.22);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}
.footer-copy a { color: rgba(255,255,255,.55); transition: color .2s; text-decoration: none; }
.footer-copy a:hover { color: var(--lime); }


/* ═══════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════ */
/* .single-post padding only applies to <main>, not body */
main.single-post {
  padding: 32px 0 60px;
}
.single-container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 28px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Post header */
.post-header { margin-bottom: 40px; }
.post-header .or-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 3px 10px 3px 8px;
  border-radius: 3px;
  margin: 0 6px 14px 0;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.post-header .or-chip::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: background .2s;
}
.post-header .or-chip:hover { background: var(--forest); color: #fff; }
.post-header .or-chip:hover::before { background: #fff; }
.post-title {
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--on-surface);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 500;
}
.post-meta__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.post-meta__item svg { flex-shrink: 0; }
.post-meta__sep { display: none; }
.post-meta__sep--show { display: inline; color: var(--border); }

/* Featured image */
.post-featured-img {
  width: 100%;
  border-radius: var(--radius-img);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* Post content typography */
.post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--on-surface);
}
.post-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
  margin: 44px 0 18px;
}
.post-content h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  margin: 36px 0 14px;
}
.post-content p { margin-bottom: 22px; }
.post-content a { color: var(--forest); border-bottom: 1px solid rgba(61,107,90,.3); transition: border-color .2s; }
.post-content a:hover { border-color: var(--forest); }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 22px; }
.post-content li { margin-bottom: 8px; line-height: 1.75; }
.post-content blockquote {
  border-left: 4px solid var(--forest);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--sand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--on-surface-muted);
}
.post-content img {
  border-radius: var(--radius-img);
  margin: 28px 0;
}
.post-content figure {
  width: 100% !important;
  margin: 28px 0;
}
.post-content figcaption {
  width: 100% !important;
  font-size: .8rem;
  color: var(--on-surface-muted);
  font-style: italic;
  text-align: center;
  padding: 8px 4px 0;
  line-height: 1.6;
}

/* Post sidebar */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Sidebar widget */
.sidebar-widget__title {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--forest);
  display: inline-block;
}

/* Recent posts list */
.sidebar-recent {
  list-style: none;
}
.sidebar-recent__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent__item:first-child { padding-top: 0; }
.sidebar-recent__item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent__thumb-link {
  flex-shrink: 0;
  display: block;
  width: 72px; height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-recent__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s var(--ease-out);
}
.sidebar-recent__thumb-link:hover .sidebar-recent__thumb { transform: scale(1.06); }
.sidebar-recent__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.sidebar-recent__title {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-surface);
}
.sidebar-recent__title a { color: inherit; transition: color .2s; }
.sidebar-recent__title a:hover { color: var(--forest); }
.sidebar-recent__date {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-light);
}
.sidebar-empty { font-size: .84rem; color: var(--text-light); }

/* Sidebar subscribe widget */
.sidebar-subscribe {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.sidebar-subscribe .sidebar-widget__title {
  color: var(--on-surface);
  border-bottom-color: var(--forest);
}
.sidebar-subscribe__sub {
  font-size: .84rem;
  color: var(--on-surface-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-subscribe .wpcf7 { position: relative; }
.sidebar-subscribe .wpcf7-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-subscribe .wpcf7-form-control-wrap { display: block; }
.sidebar-subscribe .form-fields p { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.sidebar-subscribe .form-fields p br { display: none; }
.sidebar-subscribe .form-privacy p { margin: 0; }
.sidebar-subscribe input[type="email"] {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .84rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.sidebar-subscribe input[type="email"]:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,107,90,.1);
}
.sidebar-subscribe input[type="email"]::placeholder { color: var(--text-light); }
.sidebar-subscribe .wpcf7-submit {
  width: 100%;
  padding: 13px 20px;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.sidebar-subscribe .wpcf7-submit:hover {
  background: var(--forest-dark);
  box-shadow: 0 4px 16px rgba(61,107,90,.25);
}
.sidebar-subscribe .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.sidebar-subscribe .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.sidebar-subscribe .wpcf7-acceptance input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--forest); }
.sidebar-subscribe .wpcf7-list-item-label { font-size: .73rem; color: var(--on-surface-muted); line-height: 1.55; }
.sidebar-subscribe .wpcf7-list-item-label a { color: var(--forest); text-decoration: underline; }
.sidebar-subscribe .wpcf7-not-valid-tip { font-size: .73rem; color: #c0392b; }
.sidebar-subscribe .wpcf7-response-output { font-size: .78rem; padding: 10px 14px; border-radius: var(--radius); border: 1px solid var(--border); color: var(--on-surface-muted); }
.sidebar-subscribe .wpcf7-spinner { display: none; }

/* Related posts */
.related-posts {
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.related-posts__title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-surface);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--forest);
  display: inline-block;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
}
.related-card__img-link {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.related-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
}
.related-card:hover .related-card__img { transform: scale(1.05); }
.related-card__img-placeholder {
  width: 100%; height: 100%;
  min-height: 140px;
  background: var(--sand);
}
.related-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.related-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 3px 10px 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.related-card__tag::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: background .2s;
}
.related-card__tag:hover { background: var(--forest); color: #fff; }
.related-card__tag:hover::before { background: #fff; }
.related-card__title {
  font-family: var(--font-headline);
  font-size: clamp(.9rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--on-surface);
  margin-bottom: 10px;
  flex: 1;
}
.related-card__title a { color: inherit; transition: color .2s; }
.related-card__title a:hover { color: var(--forest); }
.related-card__date {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
}


/* ═══════════════════════════════════════════════
   ARCHIVE / INDEX BLOG GRID
═══════════════════════════════════════════════ */
.archive-page { padding: 60px 0 100px; }
.archive-header {
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.archive-header__eyebrow { display: block; margin-bottom: 8px; }
.archive-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.1;
}
.archive-header__desc {
  margin-top: 12px;
  font-size: .96rem;
  color: var(--on-surface-muted);
  max-width: 55ch;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}
.post-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.post-card__img-link {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.post-card:hover .post-card__img { transform: scale(1.05); }
.post-card__img-placeholder { width: 100%; height: 220px; background: var(--sand-dark); }
.post-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
}
.post-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 3px 10px 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.post-card__cat::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: background .2s;
}
.post-card__cat:hover { background: var(--forest); color: #fff; }
.post-card__cat:hover::before { background: #fff; }
.post-card__title {
  font-family: var(--font-headline);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--on-surface);
  margin-bottom: 12px;
}
.post-card__title a { color: inherit; transition: color .2s; }
.post-card__title a:hover { color: var(--forest); }
.post-card__excerpt {
  font-size: .875rem;
  color: var(--on-surface-muted);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 18px;
}
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--forest);
  align-self: flex-start;
  border-bottom: 2px solid rgba(61,107,90,.25);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.post-card__link:hover { border-color: var(--forest); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--on-surface);
  transition: background .2s, border-color .2s, color .2s;
}
.pagination a:hover, .pagination .current {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}


/* ═══════════════════════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════════════════════ */
.page-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}
.page-header {
  margin-bottom: 32px;
}
.page-header .or-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  padding: 3px 10px 3px 8px;
  border-radius: 3px;
  margin: 0 6px 14px 0;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.page-header .or-chip::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  transition: background .2s;
}
.page-header .or-chip:hover { background: var(--forest); color: #fff; }
.page-header .or-chip:hover::before { background: #fff; }
.page-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 0;
  line-height: 1.1;
}
.page-content-wrap h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 28px;
  line-height: 1.1;
}
.page-content-wrap .entry-content { font-size: .97rem; line-height: 1.85; color: var(--on-surface); }
.page-content-wrap .entry-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin: 40px 0 16px;
}
.page-content-wrap .entry-content p { margin-bottom: 20px; }
.page-content-wrap .entry-content a { color: var(--forest); border-bottom: 1px solid rgba(61,107,90,.3); }
.page-content-wrap .entry-content a:hover { border-color: var(--forest); }
.page-content-wrap .entry-content ul,
.page-content-wrap .entry-content ol { padding-left: 28px; margin-bottom: 20px; }
.page-content-wrap .entry-content li { margin-bottom: 8px; line-height: 1.75; }


/* ═══════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
}
.error-page__num {
  font-family: var(--font-headline);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 800;
  color: var(--forest);
  opacity: .12;
  line-height: 1;
  margin-bottom: -20px;
}
.error-page__icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  line-height: 1;
}
.error-page__title {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 14px;
}
.error-page__text {
  font-size: .97rem;
  color: var(--on-surface-muted);
  max-width: 44ch;
  margin: 0 auto 36px;
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════
   SEARCH RESULTS
═══════════════════════════════════════════════ */
.search-page { padding: 60px 0 100px; }
.search-header { margin-bottom: 44px; }
.search-header__title {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.search-header__count { font-size: .88rem; color: var(--text-light); }
.search-header__count strong { color: var(--on-surface); font-weight: 700; }


/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════ */

/* ── Nav collapses to hamburger at 1200px ── */
@media (max-width: 1200px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .burger-btn { display: flex; }
}

/* ── Mosaic + categories: 1100px ── */
@media (max-width: 1100px) {
  /* Mosaic hero: right column moves below the main grid */
  .mosaic-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 460px auto;
  }
  .mosaic-col-right {
    display: flex;
    flex-direction: row;
    gap: 6px;
    grid-column: 1 / -1;
    height: 220px;
  }
  .mosaic-card--c,
  .mosaic-card--e {
    border-radius: var(--radius-md);
    height: 100%;
    flex: 1;
  }

  /* Categories: prevent 5 cards from overflowing */
  .trail-cards { gap: 10px; }
  .trail-card {
    min-width: 0;
    max-width: none;
    flex: 1;
    padding: 24px 12px 20px;
  }
}

/* ── Tablet wide: 1024px ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  /* Journal — narrow the stack column */
  .journal-layout { grid-template-columns: 1fr 340px; gap: 20px; }

  /* Postcard — reduce gap */
  .postcard-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .editor-inner { grid-template-columns: 300px 1fr; gap: 52px; }
  .single-container { grid-template-columns: 1fr 280px; gap: 44px; }
}

/* ── Tablet breakpoint: 991px ── */
@media (max-width: 991px) {
  :root {
    --section-py: 60px;
    --container-w: 100%;
  }

  /* Mosaic hero — single column stack, hide all-link */
  .mosaic-hero__all-link { display: none; }
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .mosaic-card--a { border-radius: var(--radius-md); aspect-ratio: 4/3; }
  .mosaic-card--b, .mosaic-card--c, .mosaic-card--d, .mosaic-card--e { border-radius: var(--radius-md); height: 220px; }
  .mosaic-col-mid, .mosaic-col-right { display: flex; flex-direction: row; gap: 6px; height: auto; }

  /* Categories */
  .trail-cards { flex-wrap: wrap; }
  .trail-card { min-width: calc(50% - 8px); max-width: calc(50% - 8px); }

  /* Journal — stack right part below */
  .journal-layout { grid-template-columns: 1fr; }
  .journal-featured { transform: rotate(0deg); }

  /* Postcard — 2 per row */
  .postcard-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .postcard-card--tilted { transform: none; }

  /* Reviews */
  .review-slide { padding: 36px 18px; }
  .reviews-arrow { width: 42px; height: 42px; }

  /* Subscribe */
  .subscribe-card { padding: 36px 28px; }
  .subscribe-inner { grid-template-columns: 1fr; }
  .subscribe-inner__left { padding-right: 0; border-right: none; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .subscribe-inner__right { padding-left: 0; padding-top: 28px; }
  .subscribe-inner__sub { max-width: 100%; }

  /* Editor */
  .editor-inner { grid-template-columns: 1fr; gap: 40px; }
  .editor-portrait { max-width: 300px; margin: 0 auto; }

  /* Footer — logo centered on top, 2 menus in one row below */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-block: 48px; }
  .footer-brand { grid-column: 1 / -1; align-items: center; text-align: center; }
  .footer-nav--left  { justify-self: center; text-align: center; }
  .footer-nav--right { justify-self: center; text-align: center; }

  /* Single post */
  .single-container { grid-template-columns: 1fr; }
  .post-sidebar { display: flex; position: static; }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Archive */
  .post-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Section head: stack */
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Mobile: 560px ── */
@media (max-width: 560px) {

  /* Mosaic hero — 1 post per row */
  .mosaic-grid { gap: 4px; }
  .mosaic-col-mid, .mosaic-col-right { flex-direction: column; }
  .mosaic-card--b, .mosaic-card--c, .mosaic-card--d, .mosaic-card--e { flex: none; height: 210px; }

  /* Journal stack — single column */
  .journal-layout { gap: 16px; }

  /* Postcard — 1 per row */
  .postcard-grid { grid-template-columns: 1fr; }

  .post-grid { grid-template-columns: 1fr; }

  .related-posts__grid { grid-template-columns: 1fr; }

  .reviews-section { padding-top: 80px; }
  .reviews-slider-wrap {
    display: grid;
    grid-template-areas: "viewport viewport" "prev next";
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .reviews-viewport { grid-area: viewport; width: 100%; }
  .reviews-prev { grid-area: prev; justify-self: end; }
  .reviews-next { grid-area: next; justify-self: start; }
  .reviews-arrow { width: 44px; height: 44px; }

  .subscribe-form-card { padding: 32px 24px; }
  .editor-portrait::before { display: none; }
  .editor-portrait::after { display: none; }

  .journal-head {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .related-posts__grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  /* Footer — keep 2-column layout on phones (same as tablet) */
}

/* ── Narrow: 1000px — hide 3rd related post card ── */
@media (max-width: 1000px) {
  .related-card:nth-child(3) { display: none; }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reviews-section { background-attachment: scroll; }
}

/* ── Screen reader text ── */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}
