/* ============================================================
   Lily Valley Journeys — Main Stylesheet
   Mobile-first, no frameworks
   ============================================================ */

/* ─── Custom Properties ───────────────────────────────────── */
:root {
  --green:           #3A6B35;
  --green-dark:      #2d5229;
  --green-light:     #4d8a47;
  --cream:           #F7F4F0;
  --cream-dark:      #EDE9E3;
  --cream-darker:    #DDD8CF;
  --terracotta:      #C4622D;
  --terracotta-dark: #a8521f;
  --rose:            #DBA5A1;
  --rose-light:      #F2E0DE;
  --charcoal:        #3C3C3C;
  --charcoal-light:  #666666;
  --white:           #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  --container-max:     1200px;
  --container-padding: 1.25rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);

  --transition: 0.28s ease;

  --section-pad: 4rem;
}

@media (min-width: 900px) {
  :root { --section-pad: 6rem; }
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--cream);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.125rem; line-height: 1.85; }

em { font-style: italic; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.container--narrow  { max-width: 780px; }
.container--wide    { max-width: 1400px; }

.section-padded { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

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

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Utility */
.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.mt-lg      { margin-top: 2rem; }
.mt-xl      { margin-top: 3rem; }
.mb-xl      { margin-bottom: 3rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  line-height: 1;
}
.btn-sm  { padding: 0.625rem 1.25rem; font-size: 0.75rem; }
.btn-lg  { padding: 1.0625rem 2.5rem; font-size: 0.875rem; }

.btn-primary {
  background-color: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background-color: var(--green);
  color: var(--white);
}

.btn-ghost-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-white:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--green);
}

.btn-outline-light {
  background-color: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}
.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* ─── Section Labels & Headers ────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--charcoal-light);
  line-height: 1.8;
  max-width: 600px;
}

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

/* ─── Site Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.site-branding {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1rem;
}

.site-logo-link {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
}

.site-logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: 0.02em;
}

.site-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  line-height: 1;
  margin: 0;
  padding: 0;
  position: relative;
  top: -15px;
}

.site-logo-img {
  display: block;
  height: 56px;
  width: auto;
  margin-left: -6%;
}

@media (max-width: 767px) {
  .site-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .site-logo-img { height: 48px; }
}

@media (max-width: 767px) {
  .site-logo-img { height: 56px; }
}

/* Nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 200;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline: 2px solid var(--green); }
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) 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(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.primary-navigation {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background-color: var(--cream);
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  z-index: 150;
  overflow-y: auto;
}
.primary-navigation.is-open { transform: translateX(0); }

.nav-menu { display: flex; flex-direction: column; }
.nav-menu li { border-bottom: 1px solid var(--cream-dark); }
.nav-menu li:last-child { border-bottom: none; }
.nav-menu li a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--charcoal);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: var(--green);
  padding-left: 0.5rem;
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 140;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nav-overlay.is-active { display: block; }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .primary-navigation {
    position: static;
    width: auto; padding: 0;
    transform: none; box-shadow: none;
    background: transparent;
    overflow: visible;
  }
  .nav-menu { flex-direction: row; align-items: center; gap: 0.25rem; }
  .nav-menu li { border-bottom: none; }
  .nav-menu li a {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition), color var(--transition);
  }
  .nav-menu li a:hover,
  .nav-menu li.current-menu-item > a,
  .nav-menu li.current_page_item > a {
    background-color: var(--cream-dark);
    color: var(--green);
    padding-left: 0.875rem;
  }
  .nav-menu li:last-child a {
    background-color: var(--green);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.5625rem 1.25rem;
  }
  .nav-menu li:last-child a:hover {
    background-color: var(--green-dark);
    color: var(--white);
    padding-left: 1.25rem;
  }
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--green);
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-color: rgba(58, 107, 53, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero h1 {
  color: var(--white);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
}
.hero h1 em {
  color: rgba(255,255,255,0.88);
  font-style: italic;
}

.hero-subtext {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 530px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

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

@media (max-width: 767px) {
  .hero { min-height: 70vh; padding: 3.5rem 0; }
}

/* ─── Intro Section ───────────────────────────────────────── */
.intro-section {
  background-color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.intro-section .section-title { margin-bottom: 1.25rem; }
.intro-section .lead {
  color: var(--charcoal-light);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Trips Section ───────────────────────────────────────── */
.trips-section { background-color: var(--cream); }

.trip-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.trip-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background-color: var(--cream-dark);
  flex-shrink: 0;
}
.trip-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trip-card:hover .trip-card-image img { transform: scale(1.04); }

.trip-card-badge {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  background-color: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.trip-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.trip-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.trip-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--charcoal-light);
  line-height: 1;
}
.trip-meta-item svg { color: var(--green); flex-shrink: 0; }

.trip-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
.trip-card-title a { color: inherit; }
.trip-card-title a:hover { color: var(--green); }

.trip-card-excerpt {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}

.trip-price {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
}
.trip-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--charcoal-light);
}

/* ─── Founder Section ─────────────────────────────────────── */
.founder-section {
  background-color: var(--green);
  padding: var(--section-pad) 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .founder-inner { grid-template-columns: 280px 1fr; gap: 4rem; }
}
@media (min-width: 1024px) {
  .founder-inner { grid-template-columns: 320px 1fr; }
}

.founder-photo-wrap {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.08);
}
.founder-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

.founder-content .section-label { color: var(--rose); }
.founder-content .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.founder-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  padding-left: 1.5rem;
  border-left: 3px solid var(--rose);
  margin-bottom: 1rem;
}

.founder-attribution {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

/* ─── Testimonial ─────────────────────────────────────────── */
.testimonial-section {
  background-color: var(--rose-light);
  padding: var(--section-pad) 0;
  text-align: center;
}

.testimonial-card { max-width: 760px; margin: 0 auto; }
.testimonial-card--link { display: block; text-decoration: none; color: inherit; }

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--rose);
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background-color: var(--rose);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
}
.testimonial-details {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ─── Values Strip ────────────────────────────────────────── */
.values-section { background-color: var(--white); padding: var(--section-pad) 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
}

.value-item {
  text-align: center;
  padding: 2rem 1rem;
}
.value-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background-color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green);
  transition: background-color var(--transition), transform var(--transition);
}
.value-item:hover .value-icon {
  background-color: var(--green);
  color: var(--white);
  transform: scale(1.06);
}
.value-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.value-desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background-color: var(--cream-dark);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/placeholder.svg') center/cover no-repeat;
  opacity: 0.04;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--charcoal-light); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Page Header ─────────────────────────────────────────── */
.page-header {
  background-color: var(--green);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/placeholder.svg') center/cover no-repeat;
  opacity: 0.08;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p {
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}
.page-header .section-label { color: var(--rose); }

/* ─── About Page ──────────────────────────────────────────── */
.about-founder-section { background-color: var(--white); }

.about-founder-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-founder-inner { grid-template-columns: 340px 1fr; gap: 4rem; }
}

.about-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.about-photo-wrap {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--cream-dark);
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-caption {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  text-align: center;
  line-height: 1.5;
}
.about-photo-caption strong { color: var(--charcoal); display: block; }

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--charcoal-light); margin-bottom: 1.25rem; }
.about-content p.lead { color: var(--charcoal); }

/* Mission */
.mission-section {
  background-color: var(--green);
  padding: var(--section-pad) 0;
  text-align: center;
}
.mission-section .section-label { color: var(--rose); }
.mission-section h2 { color: var(--white); margin-bottom: 1.25rem; }
.mission-section .lead { color: rgba(255,255,255,0.85); }

.mission-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* Values detail */
.values-detail-section { background-color: var(--cream); padding: var(--section-pad) 0; }

.values-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .values-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-detail-card {
  background-color: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value-detail-icon {
  color: var(--green);
  margin-bottom: 1rem;
}
.value-detail-card h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.value-detail-card p { font-size: 0.9375rem; color: var(--charcoal-light); }

/* ─── Trips Archive ───────────────────────────────────────── */
.trips-archive-section { background-color: var(--cream); }

/* Reassurance section */
.reassurance-section { background-color: var(--white); }
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .reassurance-grid { grid-template-columns: repeat(4, 1fr); }
}
.reassurance-item { padding: 1rem; }
.reassurance-item svg {
  color: var(--green);
  margin: 0 auto 1rem;
}
.reassurance-item h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.reassurance-item p { font-size: 0.875rem; color: var(--charcoal-light); }

/* ─── Single Trip ─────────────────────────────────────────── */
.trip-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  background-color: var(--green-dark);
}
.trip-hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.trip-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.trip-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem var(--container-padding);
  color: var(--white);
}
.trip-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trip-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,0.9); }

/* Trip layout */
.trip-content-section { background-color: var(--cream); }
.trip-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .trip-layout { grid-template-columns: 1fr 360px; align-items: start; }
}

.trip-intro {
  padding: 1.75rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  margin-bottom: 2.5rem;
}
.trip-intro .lead { color: var(--charcoal); margin: 0; }

.trip-body h2 { font-size: 1.875rem; margin-bottom: 1.25rem; margin-top: 2.5rem; }
.trip-body h2:first-child { margin-top: 0; }
.trip-body p { color: var(--charcoal-light); }

.trip-inclusions { margin-bottom: 1.5rem; padding-left: 0; }
.trip-inclusions li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}
.trip-inclusions li:last-child { border-bottom: none; }
.trip-inclusions li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background-color: var(--cream);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A6B35' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Itinerary */
.itinerary-list { margin-bottom: 1rem; }
.itinerary-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.itinerary-day:last-child { border-bottom: none; }
.day-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  padding-top: 3px;
  line-height: 1.2;
}
.day-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.day-content p { font-size: 0.875rem; color: var(--charcoal-light); margin: 0; }

/* Booking card */
.trip-sidebar { position: sticky; top: calc(70px + 1.5rem); }
.trip-booking-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.price-display {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}
.booking-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}
.booking-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.booking-detail-label { color: var(--charcoal-light); }
.booking-detail-value { font-weight: 600; color: var(--charcoal); }
.booking-cta { display: flex; flex-direction: column; gap: 0.75rem; }
.booking-cta .btn { text-align: center; }
.booking-note {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 0.5rem;
}
.trip-sidebar-reassurance {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.trip-sidebar-reassurance h3 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.trip-sidebar-reassurance li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--charcoal-light);
}
.trip-sidebar-reassurance li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* More trips */
.more-trips-section { background-color: var(--white); }

/* ─── Contact Page ────────────────────────────────────────── */
.contact-section { background-color: var(--cream); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 280px 1fr; gap: 5rem; }
}

.contact-info h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.contact-info p { color: var(--charcoal-light); margin-bottom: 1rem; }

.contact-details { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 0.875rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 0.9rem; color: var(--charcoal);
}
.contact-detail svg { color: var(--green); flex-shrink: 0; }

.contact-reassurance { margin-top: 2rem; }
.contact-reassurance h3 { font-size: 1.125rem; margin-bottom: 0.875rem; }
.contact-topics { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-topics li {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  padding-left: 1.25rem;
  position: relative;
}
.contact-topics li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Contact form */
.contact-form-wrap { background-color: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 500px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.06em;
}
.form-group label span { color: var(--terracotta); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background-color: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(58,107,53,0.12);
}
.form-group textarea { min-height: 180px; resize: vertical; line-height: 1.65; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-footer { display: flex; flex-direction: column; gap: 1rem; }
.form-privacy { font-size: 0.8rem; color: var(--charcoal-light); }

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.form-message.success {
  background-color: rgba(58,107,53,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(58,107,53,0.3);
}
.form-message.error {
  background-color: rgba(196,98,45,0.08);
  color: var(--terracotta-dark);
  border: 1px solid rgba(196,98,45,0.3);
}

/* ─── Site Footer ─────────────────────────────────────────── */
.site-footer {
  background-color: #2c2c2c;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1.2fr; }
}

.footer-logo-link .site-logo-wordmark { color: var(--cream); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.25rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.footer-contact .btn-outline-light { display: inline-block; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ─── Generic Post / Index ────────────────────────────────── */
.post-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.post-item h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.post-item h2 a { color: var(--charcoal); }
.post-item h2 a:hover { color: var(--green); }
.post-meta { font-size: 0.8125rem; color: var(--charcoal-light); margin-bottom: 1rem; }
.post-excerpt { color: var(--charcoal-light); margin-bottom: 1.25rem; }

/* Pagination */
.nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.page-numbers:hover,
.page-numbers.current {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.nav-previous a, .nav-next a {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
  transition: color var(--transition);
}
.nav-previous a:hover, .nav-next a:hover { color: var(--green-dark); }

/* ─── Fade-in animation ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-in.is-visible { opacity: 1; transform: translateY(0); }
}

/* ─── WordPress alignment classes ────────────────────────── */
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignleft   { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright  { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.alignwide   { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull   { max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 0.8125rem; color: var(--charcoal-light); text-align: center; padding-top: 0.5rem; }

/* ============================================================
   Journey Stories
   ============================================================ */

/* ─── Stories Archive Page ────────────────────────────────── */
.stories-archive-section { background-color: var(--cream); }

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Story Card ──────────────────────────────────────────── */
.story-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.story-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.story-card-image-link { display: block; }
.story-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  background-color: var(--cream-dark);
  flex-shrink: 0;
}
.story-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story-card:hover .story-card-image img { transform: scale(1.04); }

.story-destination-label {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  background-color: rgba(58,107,53,0.92);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.story-card-body {
  padding: 1.625rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.story-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0;
}
.story-card-title a { color: inherit; transition: color var(--transition); }
.story-card-title a:hover { color: var(--green); }

.story-card-byline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  font-weight: 500;
  margin: 0;
}
.story-from { color: var(--charcoal-light); font-weight: 400; }

.story-card-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  border-left: 3px solid var(--rose);
  padding-left: 1rem;
  margin: 0;
  flex: 1;
}

.story-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
  transition: gap var(--transition), color var(--transition);
}
.story-read-link:hover {
  color: var(--green-dark);
  gap: 0.625rem;
}

/* ─── Empty state ─────────────────────────────────────────── */
.stories-empty { padding: 4rem 0; }
.stories-empty-inner { max-width: 480px; margin: 0 auto; }
.stories-empty-icon {
  color: var(--cream-darker);
  margin: 0 auto 1.5rem;
  width: fit-content;
}
.stories-empty h2 { margin-bottom: 0.875rem; }
.stories-empty p { color: var(--charcoal-light); margin-bottom: 2rem; }

/* ─── Stories Archive CTA ─────────────────────────────────── */
.stories-cta-section { background-color: var(--rose-light); }
.stories-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .stories-cta-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.stories-cta-content h2 { margin-bottom: 1rem; }
.stories-cta-content p { color: var(--charcoal-light); margin-bottom: 2rem; }
.stories-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.stories-cta-quote {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.stories-cta-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.85;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.stories-cta-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.stories-cta-quote cite {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  font-style: normal;
  letter-spacing: 0.06em;
}

/* ─── Single Story: Hero ──────────────────────────────────── */
.story-hero {
  position: relative;
  height: 65vh;
  min-height: 450px;
  overflow: hidden;
  background-color: var(--green-dark);
}
.story-hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.story-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.story-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem var(--container-padding);
  color: var(--white);
}
.story-hero-destination {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.story-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  max-width: 800px;
}
.story-hero-byline {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ─── Single Story: Layout ────────────────────────────────── */
.story-content-section { background-color: var(--cream); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .story-layout { grid-template-columns: 1fr 320px; align-items: start; }
}

/* ─── Pull Quote ──────────────────────────────────────────── */
.story-pull-quote {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.pull-quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: 0.7;
  color: var(--rose);
  margin-bottom: 0.75rem;
  -webkit-user-select: none;
  user-select: none;
}
.pull-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
}

/* ─── Story Narrative ─────────────────────────────────────── */
.story-narrative p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.story-narrative em { color: var(--charcoal); }
.story-narrative p:last-child { margin-bottom: 0; }

/* ─── Story back nav ──────────────────────────────────────── */
.story-back-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.story-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  transition: gap var(--transition), color var(--transition);
}
.story-back-link:hover { gap: 0.625rem; color: var(--green-dark); }

/* ─── Story Sidebar ───────────────────────────────────────── */
.story-sidebar { position: sticky; top: calc(70px + 1.5rem); display: flex; flex-direction: column; gap: 1.5rem; }

.story-cta-card {
  background-color: var(--green);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.story-cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.story-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.story-cta-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.story-cta-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.story-cta-actions .btn { text-align: center; }
.story-cta-actions .btn-secondary {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
  background-color: transparent;
}
.story-cta-actions .btn-secondary:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.story-cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 0;
}

.story-traveller-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.story-traveller-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--cream-dark);
}
.story-traveller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-traveller-info { display: flex; flex-direction: column; gap: 0.25rem; }
.story-traveller-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
}
.story-traveller-meta {
  font-size: 0.8rem;
  color: var(--charcoal-light);
}
.story-traveller-trip {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── More Stories section ────────────────────────────────── */
.more-stories-section { background-color: var(--white); }
.stories-grid--compact .story-card-image { height: 200px; }
.stories-grid--compact .story-card-title { font-size: 1.25rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   JOURNEYS PAGE — Cards, Featured, Quiz, Waitlist
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Journeys grid (2 × 2) ──────────────────────────────────────────────── */
.journeys-grid-section { background-color: var(--cream); }

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

@media (max-width: 767px) {
  .journeys-grid { grid-template-columns: 1fr; }
}

/* ─── Journey card ───────────────────────────────────────────────────────── */
.journey-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.journey-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--cream-dark);
}
.journey-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Journey badges ─────────────────────────────────────────────────────── */
.journey-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-badge--interest {
  background-color: var(--terracotta);
  color: var(--white);
}

.journey-badge--soon {
  background-color: rgba(60,60,60,0.55);
  color: var(--white);
}

/* ─── Journey card body ──────────────────────────────────────────────────── */
.journey-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.journey-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.journey-card-subtitle {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin: 0;
}

.journey-card-copy {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
  margin: 0.25rem 0 0;
}

.journey-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-darker);
}

.journey-card-meta {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ─── Featured Journey (dark green banner) ───────────────────────────────── */
.signature-journey-section {
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.featured-journey-inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.featured-badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
}

.signature-journey-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.featured-journey-subtitle {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.featured-journey-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  max-width: 600px;
  margin: 0;
}

/* ─── Quiz section ───────────────────────────────────────────────────────── */
.quiz-section { background-color: var(--white); }

.quiz-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.quiz-intro p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.quiz-option:hover {
  border-color: var(--green);
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(58,107,53,0.12);
}
.quiz-option.is-selected {
  border-color: var(--green);
  background-color: var(--white);
  box-shadow: 0 2px 16px rgba(58,107,53,0.16);
}

.quiz-option-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }

.quiz-option-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── Quiz result ────────────────────────────────────────────────────────── */
.quiz-result {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.quiz-result.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.quiz-result[hidden] { display: none !important; }

.quiz-result-inner {
  background-color: var(--cream);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-result-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.quiz-result-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}

.quiz-result-desc {
  color: var(--charcoal-light);
  line-height: 1.65;
  margin: 0;
}

.quiz-result-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ─── Inline text button (quiz reset) ───────────────────────────────────── */
.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal-light);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.btn-text:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

/* ─── Waitlist section ───────────────────────────────────────────────────── */
.waitlist-section { background-color: var(--cream); }

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .waitlist-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.waitlist-info { padding-top: 0.5rem; }

.waitlist-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}

.waitlist-info > p {
  color: var(--charcoal-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.waitlist-promises {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.waitlist-promises li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.waitlist-promises li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

/* ─── Waitlist form wrapper ──────────────────────────────────────────────── */
.waitlist-form-wrap {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.waitlist-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .waitlist-name-row { grid-template-columns: 1fr; }
  .waitlist-form-wrap { padding: 1.5rem; }
}

/* ─── Waitlist success state ─────────────────────────────────────────────── */
.waitlist-success {
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.waitlist-success-icon {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.waitlist-success h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
}

.waitlist-success p {
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.waitlist-success-note {
  font-size: 0.875rem !important;
  color: var(--charcoal-light) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SINGLE JOURNEY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Badge in hero context — spacing handled by hero layout */
.journey-badge--hero { margin-bottom: 0.75rem; }

/* Meta strip (price + footer line) directly below hero */
.journey-meta-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.875rem 0;
}
.journey-meta-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.journey-price-display {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
}
.journey-footer-meta {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  letter-spacing: 0.03em;
}

/* Price in sidebar CTA card */
.journey-cta-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin: 0.75rem 0;
}

/* Price line on cards (related + homepage teaser) */
.journey-card-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  margin: 0;
}

/* ─── 3-column journey grid (single-journey related, homepage teaser) ──── */
.journeys-grid--3col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
  .journeys-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .journeys-grid--3col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOURNEY DETAIL PAGE — HERO & CHROME
   ═══════════════════════════════════════════════════════════════════════════ */

.journey-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.journey-hero-inner {
  padding-top: 2rem;
  padding-bottom: 2.75rem;
  width: 100%;
}

.journey-hero .breadcrumb { color: rgba(255,255,255,0.72); margin-bottom: 1.25rem; }
.journey-hero .breadcrumb a { color: rgba(255,255,255,0.72); text-decoration: none; }
.journey-hero .breadcrumb a:hover { color: #fff; }
.journey-hero .breadcrumb span[aria-current] { color: #fff; }

.journey-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  margin-bottom: 0.625rem;
}

.journey-hero-subtitle {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(246,236,225,0.95);
  max-width: 46ch;
  margin: 0;
}

.journey-hero-footerline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(240,230,218,0.9);
}

/* ─── Intro / Price Strip ────────────────────────────────────────────── */
.journey-intro-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.25rem 0;
}

.journey-intro-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.journey-price-block { line-height: 1.3; }

.journey-price-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

.journey-price-sub {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin: 0.25rem 0 0;
}

/* ─── Body Wrapper & Reading Column ─────────────────────────────────── */
.journey-body-wrap {
  background-color: var(--cream);
}

.journey-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Group blocks act as body sections with ruled separators */
.journey-body .wp-block-group,
.journey-body > section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.journey-body .wp-block-group:last-child,
.journey-body > section:last-child {
  border-bottom: none;
}

/* ─── Final CTA ──────────────────────────────────────────────────────── */
.final-cta {
  background-color: var(--green);
  color: var(--cream);
  text-align: center;
  padding: 4.5rem var(--container-padding);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  margin-bottom: 0.875rem;
}

.final-cta p {
  color: rgba(246,244,240,0.88);
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-cta .btn-outline-white {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.final-cta .btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOURNEY DETAIL PAGE — CONTENT SECTION CLASSES
   Rendered by single-journey.php. All values use theme CSS variables.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Eyebrow label — small uppercase label above a section heading */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* Headings inside journey body */
.journey-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--green);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.journey-body h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.journey-body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 600;
  margin: 0 0 0.375rem;
}

/* Lede — add to a Paragraph block for an italic intro line */
.lede {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ─── Highlights Grid ────────────────────────────────────────────────── */
.highlights-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

/* Highlight Card */
.highlight-card {
  background-color: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.highlight-card .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 0.375rem;
  line-height: 1;
}

.highlight-card h4 { font-size: 1.1rem; }
.highlight-card p  { font-size: 0.94rem; color: var(--charcoal-light); margin: 0; }

/* ─── Itinerary Timeline ─────────────────────────────────────────────── */
/* Each .day-row has: p.day-marker[.bloom], p.day-city, h4, p */
.itinerary { margin-top: 0.5rem; }

.itinerary .itin-note {
  background-color: var(--white);
  border-left: 3px solid var(--rose);
  padding: 0.875rem 1.125rem;
  font-size: 0.94rem;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.itinerary .day-row {
  position: relative;
  padding-left: calc(56px + 1.25rem);
  padding-bottom: 2.25rem;
}

/* Vertical connector line */
.itinerary .day-row::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background-color: var(--cream-dark);
}
.itinerary .day-row:last-child::after { display: none; }

/* Day number circle */
.itinerary .day-row > p.day-marker {
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  z-index: 1;
  line-height: 1;
  text-align: center;
}
.itinerary .day-row > p.day-marker.bloom { background-color: var(--terracotta); }

/* City label */
.itinerary .day-row > p.day-city {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.25rem;
}

/* Day title heading */
.itinerary .day-row > h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 0.375rem;
}

/* Day description */
.itinerary .day-row > p:not(.day-marker):not(.day-city) {
  font-size: 0.94rem;
  color: var(--charcoal-light);
  margin: 0;
}

/* ─── Two-Column Layout ─────────────────────────────────────────────── */
.columns-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

/* ─── Check/X Lists ──────────────────────────────────────────────────── */
.check-list,
.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}

.check-list li,
.x-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}

.x-list li::before {
  content: "–";
  position: absolute;
  left: 0; top: 0;
  color: var(--charcoal-light);
  font-weight: 700;
}

/* ─── Info Card ──────────────────────────────────────────────────────── */
.info-card {
  background-color: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.875rem;
  margin-bottom: 1.5rem;
}
.info-card:last-child { margin-bottom: 0; }
.info-card h3 { margin-bottom: 0.75rem; }
.info-card p:last-child { margin-bottom: 0; }

/* ─── Host Card ──────────────────────────────────────────────────────── */
.host-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.host-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--rose-light);
  flex-shrink: 0;
}

.host-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .journey-hero { min-height: 60vh; }
  .journey-intro-strip-inner { flex-direction: column; align-items: flex-start; }
  .highlights-grid { grid-template-columns: 1fr; }
  .columns-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .host-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .final-cta-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ PAGE — DETAILS BLOCK (ACCORDION)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── FAQ page layout ─────────────────────────────────────────────────── */
.faq-content-body > .container {
  max-width: 740px;
}

/* Category headings on the FAQ page */
.faq-content-body .wp-block-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--green);
  margin: 3rem 0 0;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--cream-dark);
}
.faq-content-body .wp-block-heading:first-child { margin-top: 0; }

/* ─── Details block base ──────────────────────────────────────────────── */
details.wp-block-details {
  border-bottom: 1px solid var(--cream-dark);
}
.wp-block-heading + details.wp-block-details,
details.wp-block-details:first-child {
  border-top: 1px solid var(--cream-dark);
}

details.wp-block-details > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.125rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  transition: color 180ms ease;
}
details.wp-block-details > summary::-webkit-details-marker { display: none; }

details.wp-block-details > summary:hover { color: var(--green); }
details.wp-block-details[open] > summary { color: var(--green); }

details.wp-block-details > summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* + indicator — rotates 45° to × when open */
details.wp-block-details > summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--terracotta);
  transition: transform 280ms ease, color 180ms ease;
}
details.wp-block-details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--green);
}
details.wp-block-details.is-closing > summary::after {
  transform: rotate(0deg);
  color: var(--terracotta);
  transition: transform 260ms ease, color 180ms ease;
}

/* ─── Answer content ──────────────────────────────────────────────────── */
details.wp-block-details > *:not(summary) {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--charcoal-light);
  margin-top: 0;
}
details.wp-block-details > *:not(summary):last-child {
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

/* ─── Open / close animations ─────────────────────────────────────────── */
details.wp-block-details[open]:not(.is-closing) > *:not(summary) {
  animation: faq-open 260ms ease both;
}
details.wp-block-details.is-closing > *:not(summary) {
  animation: faq-close 260ms ease both;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes faq-close {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  details.wp-block-details > summary { padding: 1rem 0; font-size: 0.95rem; }
  .faq-content-body .wp-block-heading { margin-top: 2.25rem; }
}

