/*
 * marketing.css — Perfectly Paced Journeys
 * Marketing pages: Home, About, Work With Us, Destinations, Plan Your Journey
 * Version 1.0 — March 2026
 *
 * LOAD ORDER:
 *   1. /assets/css/site.css   (tokens, reset, nav, footer, buttons)
 *   2. /assets/css/marketing.css  (this file)
 *
 * DO NOT include inline <style> blocks on marketing pages.
 * DO NOT hardcode hex values — use CSS variables from site.css.
 */

/* ============================================================
   PAGE BASE — marketing pages use cream background
   ============================================================ */
body {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================================
   HERO — full-viewport, dark overlay, bottom-anchored content
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 30, 20, 0.15) 0%,
    rgba(30, 30, 20, 0.55) 60%,
    rgba(30, 30, 20, 0.82) 100%
  );
}

.hero--loaded .hero__bg {
  transform: scale(1);
}

/* Fallback gradient when no image is set */
.hero__bg--gradient {
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    #3d5c3f 40%,
    var(--slate) 70%,
    #8a6830 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 80px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.7s ease forwards 0.2s;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-up 0.8s ease forwards 0.4s;
}

.hero__headline em {
  font-style: italic;
  color: var(--ochre);
}

.hero__subhead {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.7s ease forwards 0.6s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade-up 0.7s ease forwards 0.8s;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 40px;
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.35), transparent);
}

@keyframes hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   PAGE HERO — shorter, for interior pages (About, Destinations)
   ============================================================ */
.page-hero {
  background: var(--forest);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 100%, rgba(168,188,196,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 10%, rgba(196,135,58,0.06) 0%, transparent 50%);
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.25rem;
}

.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.page-hero__headline em {
  font-style: italic;
  color: var(--ochre);
}

.page-hero__dek {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section--cream    { background: var(--cream); }
.section--parchment { background: var(--parchment); }
.section--forest   { background: var(--forest); color: var(--cream); }
.section--ink      { background: var(--ink); color: var(--cream); }

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: 60px;
}

.section__header--centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}

.section--forest .section__eyebrow,
.section--ink .section__eyebrow {
  color: var(--ochre);
}

.section__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section--forest .section__headline,
.section--ink .section__headline {
  color: var(--cream);
}

.section__headline em { font-style: italic; color: var(--ochre); }

.section__body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(60, 55, 50, 0.85);
  max-width: 640px;
}

.section--forest .section__body,
.section--ink .section__body {
  color: rgba(245, 240, 232, 0.65);
}

/* ============================================================
   DIFFERENTIATOR — the "why every other approach fails" section
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.diff-card {
  padding: 48px 40px;
  background: var(--parchment);
  border-top: 3px solid var(--mist);
  transition: border-color 0.3s ease;
}

.diff-card:hover {
  border-top-color: var(--ochre);
}

.diff-card__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.diff-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.diff-card__body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(60, 55, 50, 0.8);
}

.diff-card__problem {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(196, 135, 58, 0.07);
  border-left: 2px solid rgba(196, 135, 58, 0.4);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================================
   FOUR PILLARS — how we're different
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.pillar {
  background: var(--cream);
  padding: 40px 32px;
  border-top: 3px solid var(--forest);
  transition: border-color 0.3s ease;
}

.section--forest .pillar {
  background: rgba(245, 240, 232, 0.05);
  border-top-color: rgba(245, 240, 232, 0.15);
}

.pillar:hover { border-top-color: var(--ochre); }

.pillar__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 1rem;
}

.section--forest .pillar__number { color: rgba(245, 240, 232, 0.15); }

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.section--forest .pillar__title { color: var(--cream); }

.pillar__body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(60, 55, 50, 0.75);
}

.section--forest .pillar__body { color: rgba(245, 240, 232, 0.55); }

/* ============================================================
   DESTINATION CARDS — teaser on home, full grid on /destinations/
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}

.dest-grid--equal {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dest-card--featured {
  grid-row: span 2;
}

.dest-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card__bg {
  transform: scale(1.05);
}

/* Placeholder gradients — replace with real images */
.dest-card__bg--iceland {
  background: linear-gradient(135deg, #4a6741 0%, var(--slate) 60%, var(--forest) 100%);
}
.dest-card__bg--southwest {
  background: linear-gradient(135deg, var(--ochre) 0%, #a05a2c 50%, var(--forest) 100%);
}
.dest-card__bg--uk {
  background: linear-gradient(135deg, var(--forest) 0%, #4a5568 50%, var(--slate) 100%);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 15, 0.88) 0%,
    rgba(20, 20, 15, 0.1) 55%
  );
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 2;
}

.dest-card__region {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.4rem;
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.dest-card--featured .dest-card__name {
  font-size: 2.2rem;
}

.dest-card__tagline {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.dest-card__meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.dest-card__badge {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: rgba(245, 240, 232, 0.6);
}

.dest-card__stars {
  color: var(--ochre);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.dest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dest-card:hover .dest-card__link {
  opacity: 1;
  transform: translateX(0);
}

.dest-card__link::after { content: ' →'; }

/* "Don't see your destination" note */
.dest-note {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--slate);
  text-align: center;
}

.dest-note a {
  color: var(--ochre);
  border-bottom: 1px solid rgba(196, 135, 58, 0.4);
  transition: border-color 0.2s;
}

.dest-note a:hover { border-color: var(--ochre); }

/* ============================================================
   JOURNAL TEASER — 2-3 post cards on home page
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.journal-card {
  background: var(--cream);
  transition: background 0.25s ease;
}

.journal-card:hover { background: #ede8df; }

.journal-card__image {
  height: 200px;
  overflow: hidden;
  background: var(--ink);
}

.journal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}

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

.journal-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.journal-card__category {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.5rem;
}

.journal-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.journal-card__excerpt {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.journal-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
}

.journal-card__date {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.journal-card__read {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  transition: opacity 0.2s;
}

.journal-card:hover .journal-card__read { opacity: 0.7; }

/* ============================================================
   CTA STRIP — single full-width conversion section
   ============================================================ */
.cta-strip {
  background: var(--forest);
  padding: 80px 40px;
  text-align: center;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-strip__headline em {
  font-style: italic;
  color: var(--ochre);
}

.cta-strip__body {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.cta-strip__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT TEASER — founders + dog, home page version
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__image {
  position: relative;
  height: 520px;
}

.about-teaser__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 72%;
  background: linear-gradient(135deg, #4a6741, var(--slate));
  /* REPLACE: background: url('/assets/images/founders.jpg') center/cover */
}

.about-teaser__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  background: linear-gradient(135deg, var(--ochre), var(--forest));
  /* REPLACE: background: url('/assets/images/dog-travel.jpg') center/cover */
  border: 5px solid var(--parchment);
}

.about-teaser__text { }

.about-teaser__quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--ochre);
  background: rgba(196, 135, 58, 0.05);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
}

/* ============================================================
   SERVICE TRACKS — Work With Us page + home teaser
   ============================================================ */
.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.track-card {
  padding: 52px 44px;
  background: var(--parchment);
  position: relative;
  border-top: 3px solid var(--mist);
  transition: border-color 0.3s ease;
}

.track-card--featured {
  background: var(--forest);
  color: var(--cream);
  border-top-color: var(--ochre);
}

.track-card:not(.track-card--featured):hover {
  border-top-color: var(--ochre);
}

.track-card__label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
}

.track-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.track-card--featured .track-card__title { color: var(--cream); }

.track-card__body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(60, 55, 50, 0.8);
  margin-bottom: 1rem;
}

.track-card--featured .track-card__body { color: rgba(245, 240, 232, 0.65); }

.track-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--mist);
  color: var(--slate);
  margin-top: 0.75rem;
}

.track-card--featured .track-card__tag {
  border-color: rgba(245, 240, 232, 0.2);
  color: rgba(245, 240, 232, 0.45);
}

/* ============================================================
   PROCESS STEPS — how working together works
   ============================================================ */
.process {
  padding: 60px;
  background: var(--cream);
  margin-top: 2px;
}

.process__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 48px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 1rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.step__body {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(60, 55, 50, 0.75);
}

/* ============================================================
   UPCOMING JOURNEYS — home page list
   ============================================================ */
.journeys-list {
  display: grid;
  gap: 2px;
}

.journey-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 36px;
  background: var(--parchment);
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.journey-item:hover {
  background: var(--cream);
  border-left-color: var(--ochre);
  transform: translateX(3px);
}

.journey-item__season {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  line-height: 1.5;
}

.journey-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.journey-item__desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
}

.journey-item__type {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--mist);
  color: var(--slate);
  white-space: nowrap;
}

/* ============================================================
   INTELLIGENCE STANDARD NOTE — teaser for destination depth
   ============================================================ */
.intel-standard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.intel-standard__item {
  background: var(--parchment);
  padding: 32px 28px;
  border-top: 2px solid var(--mist);
  transition: border-color 0.3s ease;
}

.intel-standard__item:hover { border-top-color: var(--ochre); }

.intel-standard__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.5rem;
}

.intel-standard__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.intel-standard__body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(60, 55, 50, 0.75);
}

/* ============================================================
   VERIFIED BADGE — last verified date callout
   ============================================================ */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 135, 58, 0.08);
  border: 1px solid rgba(196, 135, 58, 0.25);
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ochre);
}

.verified-badge::before {
  content: '✦';
  font-size: 0.55rem;
}

/* ============================================================
   SCORECARD — destination intelligence grid (marketing version)
   ============================================================ */
.scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

.scorecard__item {
  background: var(--parchment);
  padding: 24px 28px;
}

.scorecard__label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.scorecard__value {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
}

.scorecard__stars {
  margin-top: 0.35rem;
  color: var(--ochre);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.scorecard__stars .star-empty { color: var(--mist); }

/* ============================================================
   INLINE BLOCKQUOTE / PULL QUOTE
   ============================================================ */
.pull-quote {
  margin: 60px 0;
  padding: 40px 48px;
  border-left: 3px solid var(--ochre);
  background: var(--parchment);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
}

.section--forest .pull-quote {
  background: rgba(245, 240, 232, 0.06);
}

.section--forest .pull-quote p { color: var(--cream); }

/* ============================================================
   RESPONSIVE — marketing pages
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content,
  .page-hero__inner,
  .section__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__scroll { right: 24px; }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 280px;
  }
  .dest-card--featured { grid-row: span 2; }

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

  .about-teaser { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser__image { height: 380px; }

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

  .process { padding: 40px 24px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .intel-standard { grid-template-columns: 1fr 1fr; }

  .scorecard { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .page-hero { padding: 72px 24px 60px; }

  .diff-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px;
  }
  .dest-card--featured { grid-row: span 1; }

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

  .tracks-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }

  .intel-standard { grid-template-columns: 1fr; }

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

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .cta-strip { padding: 60px 24px; }
  .cta-strip__actions { flex-direction: column; align-items: center; }

  .journey-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 20px 24px;
  }
  .journey-item__type { display: none; }
}

@media (max-width: 480px) {
  .hero__content { padding: 0 20px 60px; }
  .scorecard { grid-template-columns: 1fr; }
  .pull-quote { padding: 28px 24px; }
}
