@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Nunito:wght@300;400;600;700&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:      #7BA05B;
  --sage-lt:   #B8D4A0;
  --parch:     #FAF4E8;
  --parch-dk:  #F0E6D0;
  --mauve:     #C4879A;
  --mauve-lt:  #EDD0DA;
  --forest:    #2D4A3E;
  --ink:       #1C2B24;
  --cream:     #FFFDF8;
  --sky:       #C8DFF0;
  --site-max:  56rem;
  --site-pad:  1.25rem;
}

html { scroll-behavior: smooth; font-size: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.site-container {
  width: min(100% - var(--site-pad) * 2, var(--site-max));
  margin-inline: auto;
}

.site-main {
  padding-top: 4.5rem;
}

/* ── HOME SCROLL PATH ── */
.home-scroll-path {
  display: none;
}

@media (min-width: 900px) {
  .home-scroll-path {
    display: block;
    position: fixed;
    left: max(0.75rem, calc((100vw - var(--site-max)) / 2 - 9.5rem));
    top: 4.5rem;
    height: calc(100vh - 4.5rem);
    width: 3.25rem;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
  }

  .home-scroll-path-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .home-scroll-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .home-scroll-track {
    fill: none;
    stroke: var(--sage-lt);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 8 10;
  }

  .home-scroll-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .home-scroll-marker,
  .home-scroll-traveler {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    will-change: transform;
  }

  .home-scroll-marker {
    font-size: 1rem;
    opacity: 0.55;
    filter: none;
  }

  .home-scroll-marker.is-passed {
    opacity: 0.85;
  }

  .home-scroll-marker.is-active {
    opacity: 1;
  }

  .home-scroll-traveler {
    font-size: 1.45rem;
    filter: drop-shadow(0 2px 4px rgba(28, 43, 36, 0.18));
    z-index: 2;
  }
}

.site-nav-inner,
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--parch-dk);
}

.nav-logo {
  font-family: "Klee One", cursive;
  font-size: 1.35rem;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-mark--footer {
  width: 1.65rem;
  height: 1.65rem;
  filter: brightness(0) invert(96%) sepia(8%) saturate(350%) hue-rotate(55deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--mauve);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
  border-radius: 1.5rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--mauve);
}

h1, .page-title {
  font-family: "Klee One", cursive;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

h1 em, .page-title em {
  font-style: normal;
  color: var(--sage);
  position: relative;
  display: inline-block;
}

h1 em::after, .page-title em::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--mauve-lt);
  border-radius: 99px;
}

.hero-body, .lead {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.75;
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.btn-primary, .button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover, .button:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.btn-secondary, .button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--sage-lt);
  padding-bottom: 1px;
  background: transparent;
  border-radius: 0;
  padding-top: 0;
  transition: border-color 0.2s;
}

.btn-secondary:hover, .button-secondary:hover {
  border-color: var(--sage);
  transform: none;
  background: transparent;
}

.button-danger {
  background: #b03050;
  color: var(--cream);
  border: none;
  box-shadow: none;
}

.button-danger:hover {
  background: #8f2640;
  transform: translateY(-1px);
}

.button-danger:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-right {
  position: relative;
  background: linear-gradient(160deg, var(--sky) 0%, var(--sage-lt) 55%, var(--parch-dk) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 1.25rem;
  min-height: 280px;
}

.hero-photo-stack {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 4 / 5;
}

.hero-photo-stack img {
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(44, 74, 62, 0.15);
  border: 3px solid rgba(255, 253, 248, 0.9);
}

.hero-stack-main {
  width: 72%;
  height: 78%;
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 2;
}

.hero-stack-accent {
  width: 58%;
  height: 52%;
  position: absolute;
  bottom: 4%;
  right: 0;
  z-index: 3;
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  border: 2px solid var(--parch-dk);
  border-radius: 1rem;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(44, 74, 62, 0.1);
  line-height: 1.5;
  z-index: 4;
}

.hero-badge .num {
  font-family: "Klee One", cursive;
  font-size: 1.6rem;
  display: block;
  color: var(--sage);
}

/* ── TRAIL DIVIDER ── */
.trail-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 2rem;
  opacity: 0.55;
}

.trail-divider::before, .trail-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sage-lt);
}

.trail-divider span {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: "Klee One", cursive;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.55;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* ── POSTS SECTION ── */
.posts-section {
  padding: 2rem 0 2.5rem;
}

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

.view-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mauve);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1.5px solid var(--mauve-lt);
  white-space: nowrap;
}

.view-all:hover { border-color: var(--mauve); }

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--parch);
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1.5px solid var(--parch-dk);
  box-shadow: 0 2px 16px rgba(44, 74, 62, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44, 74, 62, 0.12);
}

.featured-img {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--sage-lt);
}

.featured-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-img .scene-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 253, 248, 0.85);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.05em;
}

.featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--mauve-lt);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.post-tag.green {
  color: var(--forest);
  background: var(--sage-lt);
}

h2, h3.post-card-title {
  font-family: "Klee One", cursive;
  color: var(--forest);
  line-height: 1.3;
}

.featured-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.post-excerpt {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.post-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.45;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.post-meta .dot { opacity: 0.4; }

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

.card {
  background: var(--parch);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1.5px solid var(--parch-dk);
  box-shadow: 0 2px 12px rgba(44, 74, 62, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44, 74, 62, 0.12);
}

.card-img {
  height: 160px;
  overflow: hidden;
  background: var(--sage-lt);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem 1.5rem;
}

.card-body h3 {
  font-family: "Klee One", cursive;
  font-size: 1.08rem;
  color: var(--forest);
  line-height: 1.35;
  margin: 0.5rem 0 0.5rem;
}

.card-body p {
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 0.8rem;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--forest);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  border-radius: 1.5rem;
  margin: 0 0 2rem;
}

.about-portrait {
  border-radius: 1.25rem;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--sage);
}

.about-portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 300px;
}

.about-portrait-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-portrait-grid img:first-child {
  grid-row: span 2;
}

.about-portrait .portrait-label {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 253, 248, 0.92);
  border-radius: 99px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  z-index: 2;
}

.about-content .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-lt);
  margin-bottom: 1rem;
}

.about-content h2 {
  font-family: "Klee One", cursive;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 1.3rem;
  font-weight: 400;
}

.about-content p {
  font-size: 0.97rem;
  color: rgba(255, 253, 248, 0.72);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.chip {
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-lt);
  letter-spacing: 0.04em;
}

/* ── GALLERY / SLIDER ── */
.gallery-section {
  padding: 2rem 0 2.5rem;
  background: transparent;
}

.gallery-section .section-sub { margin-bottom: 0.6rem; }

.slider-intro {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-bottom: 2rem;
  max-width: 36rem;
}

.photo-slider {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1.5px solid var(--parch-dk);
  box-shadow: 0 4px 24px rgba(44, 74, 62, 0.08);
  background: var(--parch);
}

.photo-slider-viewport {
  position: relative;
  width: 100%;
  height: clamp(240px, 42vw, 360px);
  overflow: hidden;
  background: var(--parch);
}

.photo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.photo-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.photo-slide figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.92);
  border-radius: 99px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--forest);
  background: var(--cream);
  border: 1.5px solid var(--parch-dk);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}

.slider-btn:hover {
  background: var(--sage-lt);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 0.75rem; }
.slider-next { right: 0.75rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: var(--cream);
  border-top: 1.5px solid var(--parch-dk);
}

.slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--parch-dk);
  cursor: pointer;
  transition: transform 0.12s, background 0.12s;
}

.slider-dot.is-active {
  background: var(--sage);
  transform: scale(1.2);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 2.5rem 0 3rem;
  background: transparent;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner .section-title { margin-bottom: 0.6rem; }

.newsletter-inner p {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 99px;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus { border-color: var(--sage); }

.newsletter-form button {
  background: var(--sage);
  color: var(--cream);
  border: none;
  border-radius: 99px;
  padding: 0.8rem 1.6rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--forest); }

.newsletter-note {
  font-size: 0.75rem;
  opacity: 0.45;
  margin-top: 0.9rem;
}

/* ── PAGE SHELL (blog, about, post) ── */
.page-shell {
  width: min(100% - var(--site-pad) * 2, var(--site-max));
  margin-inline: auto;
  padding: 5.5rem 0 3rem;
  min-height: 50vh;
}

.page-shell-narrow {
  max-width: 40rem;
  margin: 0 auto;
}

.page-extra {
  padding-top: 1rem;
}

.page-intro {
  margin-bottom: 2.5rem;
}

.page-intro .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-intro .lead {
  max-width: 36rem;
  margin-bottom: 0;
}

/* ── SINGLE POST ── */
.post-article {
  max-width: 40rem;
  margin: 0 auto;
}

.post-article .post-header {
  margin-bottom: 0.75rem;
}

.post-tags-row {
  margin-bottom: 1.5rem;
}

.post-article h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.75rem 0 0;
}

.post-article .post-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 1.2fr);
  align-items: center;
  gap: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}

.post-article .post-title-row h1 {
  margin: 0;
  justify-self: start;
  font-family: "Klee One", cursive;
  color: var(--forest);
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

.post-article .post-title-row .journey-path {
  justify-self: end;
  width: 100%;
}

.post-article .post-meta {
  margin: 0;
  opacity: 0.55;
}

.post-hero-image {
  margin: 0 0 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1.5px solid var(--parch-dk);
  box-shadow: 0 4px 20px rgba(44, 74, 62, 0.08);
}

.post-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* ── JOURNEY WAYPOINTS ── */
.journey-post {
  margin-bottom: 1.5rem;
}

.journey-path {
  position: relative;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0.15rem 0 0;
}

.journey-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 3rem;
  overflow: visible;
}

.journey-track {
  fill: none;
  stroke: var(--sage-lt);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
}

.journey-marker-paw {
  font-size: 18px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  user-select: none;
}

.journey-marker .journey-marker-paw {
  fill: var(--mauve);
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.journey-marker.is-passed .journey-marker-paw {
  opacity: 0.85;
  fill: var(--sage);
}

.journey-marker.is-active .journey-marker-paw {
  opacity: 1;
  fill: var(--forest);
}

.journey-marker-hit {
  fill: transparent;
  stroke: none;
  cursor: pointer;
}

.journey-traveler {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.55rem;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(28, 43, 36, 0.18));
  z-index: 2;
  will-change: transform;
}

.journey-stage {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.journey-stage .journey-btn {
  flex-shrink: 0;
}

.journey-hero {
  margin: 0;
  flex: 1;
  min-width: 0;
  min-height: 14rem;
  transition: opacity 0.25s ease;
}

.journey-hero.is-empty {
  background: linear-gradient(135deg, var(--parch) 0%, var(--parch-dk) 100%);
  border-style: dashed;
}

.journey-hero.is-empty img {
  display: none;
}

.journey-stage .post-hero-image {
  margin-bottom: 0;
}

.journey-counter {
  margin: 0 0 1.25rem;
  text-align: center;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.journey-slides {
  position: relative;
  min-height: 8rem;
}

.journey-slide {
  display: none;
  animation: journeyFade 0.35s ease;
}

.journey-slide.is-active {
  display: block;
}

@keyframes journeyFade {
  from {
    opacity: 0;
    transform: translateX(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.journey-slide-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.85rem;
}

.journey-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--parch-dk);
  background: var(--cream);
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.journey-btn:hover:not(:disabled) {
  background: var(--parch);
  border-color: var(--mauve-lt);
}

.journey-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.journey-counter-sep {
  opacity: 0.45;
  margin-inline: 0.15rem;
}

.post-content h2 {
  font-family: "Klee One", cursive;
  font-size: 1.35rem;
  color: var(--forest);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.post-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.post-content li {
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.trail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.post-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--parch-dk);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.post-delete-wrap {
  display: grid;
  gap: 0.35rem;
}

.post-footer a {
  font-weight: 700;
  color: var(--mauve);
  text-decoration: none;
  border-bottom: 1.5px solid var(--mauve-lt);
}

.post-footer a:hover { border-color: var(--mauve); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 2rem 0;
  margin-top: 1rem;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: "Klee One", cursive;
  font-size: 1.15rem;
  color: var(--parch);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

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

.footer-links a {
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--parch); }

.footer-authlink {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-authlink:hover { color: var(--parch); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 253, 248, 0.3);
  margin: 0;
}

/* ── WRITE BUTTON ── */
.write-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 101;
  padding: 0.7rem 1.3rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--mauve);
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(44, 74, 62, 0.15);
  transition: background 0.2s, transform 0.15s;
}

.write-btn:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

/* ── ADMIN ── */
.hidden { display: none !important; }

.admin-page {
  padding: 5.5rem 0 3rem;
  max-width: 42rem;
  margin: 0 auto;
  width: min(100% - var(--site-pad) * 2, var(--site-max));
}

.admin-panel {
  background: var(--parch);
  border: 1.5px solid var(--parch-dk);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(44, 74, 62, 0.06);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.admin-toolbar h1 {
  font-size: 1.8rem;
  margin: 0;
}

.admin-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.admin-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--forest);
}

.admin-form input,
.admin-form textarea {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 0.75rem;
  background: var(--cream);
  color: var(--ink);
}

.admin-form textarea {
  resize: vertical;
  min-height: 12rem;
}

.label-hint {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.6;
}

.form-error {
  margin: 0;
  color: #b03050;
  font-size: 0.9rem;
}

.publish-success {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--parch-dk);
}

.publish-success .button {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.photo-preview {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1.5px dashed var(--parch-dk);
  border-radius: 1rem;
  background: var(--cream);
}

.photo-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.waypoints-editor {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.waypoints-editor-head h2 {
  font-family: "Klee One", cursive;
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.waypoint-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 1rem;
  background: var(--cream);
}

.waypoint-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.waypoint-card-head h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--forest);
}

.waypoint-remove,
.waypoint-add {
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0;
  line-height: 1;
  font-size: 1.35rem;
}

.waypoint-remove {
  border-radius: 999px;
  border: 1.5px solid var(--parch-dk);
  background: var(--cream);
  color: var(--mauve);
  cursor: pointer;
}

.waypoint-remove:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.waypoint-add {
  justify-self: start;
}

.admin-panel .post-delete-wrap {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--parch-dk);
}

.photo-preview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.upload-label input[type="file"] {
  padding: 0.45rem 0;
  border: none;
  background: transparent;
}

.upload-label input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--sage-lt);
  border: none;
  border-radius: 99px;
  cursor: pointer;
}

/* ── COMMENTS (enabled via features.member_comments) ── */
.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parch-dk);
}

.comments-section .section-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.comments-empty,
.comments-signin-hint {
  font-size: 0.95rem;
  opacity: 0.7;
}

.comments-signin-hint a {
  color: var(--mauve);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--mauve-lt);
}

.comment-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.comment-meta {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 0.35rem;
}

.comment-meta .dot { opacity: 0.4; }

.comment-body {
  font-size: 0.95rem;
  line-height: 1.65;
}

.comment-form {
  display: grid;
  gap: 0.75rem;
}

.comment-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--forest);
}

.comment-form textarea {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 0.75rem;
  background: var(--cream);
  resize: vertical;
  min-height: 6rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 240px; }
  .featured-post { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .hero-left { padding: 0.5rem 0; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .site-nav ul { gap: 1.2rem; }
  .newsletter-form { flex-direction: column; }
  .site-footer-inner { flex-direction: column; text-align: center; }
  .about-portrait-grid { grid-template-columns: 1fr; }
  .about-portrait-grid img:first-child { grid-row: auto; }
  .post-article .post-title-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .post-article .post-title-row .journey-path {
    justify-self: stretch;
    max-width: none;
  }
}

/* ══════════════════════════════════════════════════════════════════
   OVERHAUL ADDITIONS
   ══════════════════════════════════════════════════════════════════ */

/* ── Accessibility helpers ── */
.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 0.5rem; left: 0.5rem;
  width: auto; height: auto;
  margin: 0; padding: 0.6rem 1rem;
  clip: auto;
  z-index: 1000;
  background: var(--forest);
  color: var(--cream);
  border-radius: 0.5rem;
  font-weight: 700;
}
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}
.linklike {
  background: none; border: none; padding: 0;
  font: inherit; color: inherit; cursor: pointer;
}

/* ── Mobile navigation toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .site-nav-inner { position: relative; }
  .site-nav ul {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    padding-top: 0.75rem;
  }
  .site-nav ul.is-open { display: flex; }
  .site-nav ul li { width: 100%; }
  .site-nav ul a { display: block; padding: 0.5rem 0; }
}

/* ── Blog search + tag cloud (item 6) ── */
.blog-search {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin: 1.4rem auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-search input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 1.1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 99px;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
}
.blog-search button {
  background: var(--sage);
  color: var(--cream);
  border: none;
  border-radius: 99px;
  padding: 0.65rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
}
.blog-search-clear {
  align-self: center;
  font-size: 0.85rem;
  color: var(--mauve);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0.5rem auto 0;
  max-width: 640px;
}
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  background: var(--parch);
  border: 1.5px solid var(--parch-dk);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.tag-chip:hover { border-color: var(--sage); }
.tag-chip.is-active { background: var(--sage-lt); border-color: var(--sage); }
.tag-chip .tag-count { opacity: 0.55; font-size: 0.72rem; }

/* ── Pagination (item 6) ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 1rem;
}
.pagination-link {
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 99px;
}
.pagination-link:hover { border-color: var(--sage); color: var(--mauve); }
.pagination-info { font-size: 0.85rem; opacity: 0.6; }

/* ── Post extras: prev/next, related, reading time (item 7) ── */
.post-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.post-adjacent-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 1rem;
  text-decoration: none;
  background: var(--cream);
  transition: border-color 0.15s;
}
.post-adjacent-link:hover { border-color: var(--sage); }
.post-adjacent-link.next { text-align: right; grid-column: 2; }
.post-adjacent-dir { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mauve); font-weight: 700; }
.post-adjacent-title { font-family: "Klee One", cursive; color: var(--forest); font-size: 1.05rem; }
.related-posts { margin: 3rem 0 1rem; }
.related-posts .section-title { text-align: center; margin-bottom: 1.5rem; }

/* ── Route map (item 11) ── */
.post-map-section { margin: 2.5rem 0; }
.post-map-section .section-title { text-align: center; margin-bottom: 1rem; }
.post-map {
  height: 360px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid var(--parch-dk);
}
.map-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28, 43, 36, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.map-picker-inner {
  background: var(--cream);
  border-radius: 1rem;
  width: min(720px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.map-picker-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-bottom: 1.5px solid var(--parch-dk);
}
.map-picker-head h2 { font-size: 1.05rem; margin: 0; }
.map-picker-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; line-height: 1; color: var(--forest); }
.map-picker-canvas { height: 50vh; min-height: 300px; }
.map-picker-foot {
  display: flex;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-top: 1.5px solid var(--parch-dk);
  flex-wrap: wrap;
}
.map-picker-foot input {
  flex: 1;
  min-width: 160px;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 99px;
  font-family: inherit;
}
.waypoint-location { margin-top: 1rem; }
.waypoint-latlng { display: flex; gap: 0.75rem; margin: 0.5rem 0; }
.waypoint-latlng label { flex: 1; display: flex; flex-direction: column; font-size: 0.8rem; gap: 0.25rem; }
.waypoint-latlng input {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 0.5rem;
  font-family: inherit;
}
.waypoint-location-actions { display: flex; gap: 0.5rem; }

/* ── Newsletter + comment status messages (items 2, 8) ── */
.newsletter-status,
.comment-status {
  min-height: 1.2em;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.newsletter-status.is-success,
.comment-status.is-success { color: var(--sage); }
.newsletter-status.is-error,
.comment-status.is-error { color: var(--mauve); }
.newsletter-post { margin: 3rem 0 1rem; padding: 2rem 1.5rem; background: var(--parch); border-radius: 1.25rem; }

/* ── Draft/scheduled banner (item 9) ── */
.draft-banner {
  background: var(--mauve-lt);
  color: var(--forest);
  padding: 0.75rem 1.1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.confirm-message { text-align: center; max-width: 520px; margin: 2rem auto; }

/* ── Member auth pages (item 8) ── */
.auth-page { padding-top: 1rem; }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.auth-card {
  background: var(--cream);
  border: 1.5px solid var(--parch-dk);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.auth-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1rem; }
.auth-form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.auth-form input {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--parch-dk);
  border-radius: 0.6rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-success { color: var(--sage); font-weight: 600; }
@media (max-width: 700px) { .auth-grid { grid-template-columns: 1fr; } }

/* ── Admin dashboard (item 9) ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
.stat-card {
  background: var(--cream);
  border: 1.5px solid var(--parch-dk);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}
.stat-card.stat-alert { border-color: var(--mauve); background: var(--mauve-lt); }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--forest); font-family: "Klee One", cursive; }
.stat-label { display: block; font-size: 0.8rem; opacity: 0.7; margin-top: 0.25rem; }
.dash-section { margin: 2.5rem 0; }
.dash-section h2 { font-family: "Klee One", cursive; color: var(--forest); margin-bottom: 1rem; }
.post-table { width: 100%; border-collapse: collapse; }
.post-table th, .post-table td { text-align: left; padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--parch-dk); font-size: 0.9rem; }
.post-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }
.post-table-actions a { margin-right: 0.9rem; color: var(--sage); font-weight: 600; text-decoration: none; }
.status-badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 99px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-published { background: var(--sage-lt); color: var(--forest); }
.status-draft { background: var(--parch-dk); color: var(--ink); }
.status-scheduled { background: var(--sky); color: var(--forest); }
.moderation-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.moderation-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: 1.5px solid var(--parch-dk);
  border-radius: 1rem;
  transition: opacity 0.4s;
}
.moderation-meta { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.35rem; }
.moderation-actions { display: flex; gap: 0.4rem; align-items: flex-start; flex-shrink: 0; }
.moderation-actions .button { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
@media (max-width: 600px) {
  .moderation-item { flex-direction: column; }
  .post-adjacent { grid-template-columns: 1fr; }
  .post-adjacent-link.next { grid-column: 1; text-align: left; }
}

/* ── Respect reduced-motion preference (item 12) ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
