/* ============================================================
   FUNCLE HIKES — Design System
   Warm · Rugged · Personal · Albania
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@400;500;600&display=swap");

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Brand palette */
  --cream:       #FAF6EF;
  --olive:       #5B6B3C;
  --olive-deep:  #3E4A28;
  --terracotta:  #C4622D;
  --charcoal:    #2B2B26;

  /* Extended palette */
  --cream-dark:  #EDE7DA;
  --terracotta-light: #D97B49;
  --olive-muted: #7A8F57;
  --charcoal-mid: #4A4A44;
  --sand:        #D4C5A9;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", -apple-system, system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(43, 43, 38, 0.12);
  --shadow-md:  0 4px 16px rgba(43, 43, 38, 0.16);
  --shadow-lg:  0 8px 32px rgba(43, 43, 38, 0.22);
  --shadow-stamp: 2px 2px 0 rgba(43, 43, 38, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 220ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Keep anchor targets clear of the sticky header */
[id] {
  scroll-margin-top: 5.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Focus States ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none !important;
    color: black;
  }

  .tour-card,
  .quote-card {
    break-inside: avoid;
  }
}

/* ── Typography Helpers ──────────────────────────────────── */
.display-serif {
  font-family: var(--font-display);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p + p {
  margin-top: var(--space-md);
}

/* ── Decorative Textures ─────────────────────────────────── */
/* Noise grain layer for subtle texture — applied via body pseudo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65em 1.5em;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background-color var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 2px 0 var(--olive-deep), var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--terracotta-light);
  box-shadow: 0 3px 0 var(--olive-deep), var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline-color: var(--charcoal);
}

.btn-ghost {
  background-color: transparent;
  color: var(--cream);
  border: 2px solid rgba(250, 246, 239, 0.7);
}

.btn-ghost:hover {
  background-color: rgba(250, 246, 239, 0.12);
  border-color: var(--cream);
}

.btn-ghost--dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-ghost--dark:hover {
  background-color: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 1px 0 var(--cream-dark), 0 2px 12px rgba(43, 43, 38, 0.06);
  transition: box-shadow var(--duration) var(--ease-out);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-lg);
}

/* Logo area */
.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header__wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.site-header__wordmark span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 1px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.site-nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--duration) var(--ease-out);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.site-nav a:not(.btn):hover {
  color: var(--charcoal);
}

.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: background-color var(--duration) var(--ease-out);
}

.nav-toggle:hover {
  background-color: var(--cream-dark);
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out),
              opacity var(--duration) var(--ease-out);
  transform-origin: center;
}

/* Mobile nav */
@media (max-width: 719px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration) var(--ease-out);
    z-index: 99;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
  }

  .site-nav a:not(.btn) {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 400;
  }

  .site-nav a:not(.btn)::after {
    background: var(--terracotta);
    bottom: -4px;
  }

  /* Open state */
  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }
}

/* ── Section Base ────────────────────────────────────────── */
.section {
  padding-block: var(--space-3xl);
}

.section--alt {
  background-color: var(--cream-dark);
}

.section--dark {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section--olive {
  background-color: var(--olive-deep);
  color: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  color: inherit;
}

/* Decorative hand-drawn underline on section titles */
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

.section__title--left::after {
  margin-left: 0;
}

/* ── Hero ────────────────────────────────────────────────── */
/*
 * HERO BACKGROUND IMAGE WIRING:
 * The homepage uses .hero--photo, whose background image lives in this
 * stylesheet (URLs inside inline custom properties resolve against the
 * stylesheet, not the page, so an inline --hero-bg 404s — do not use it).
 * Tour pages use .hero--band for a solid-color treatment (no photo).
 */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--olive-deep); /* fallback while photo loads */
}

/* Homepage: full-bleed photo with legibility gradient */
.hero--photo {
  background-image:
    linear-gradient(
      to bottom,
      rgba(43, 43, 38, 0.35) 0%,
      rgba(43, 43, 38, 0.55) 55%,
      rgba(43, 43, 38, 0.78) 100%
    ),
    url("../images/hero.jpg");
}

/* Tour page: solid olive-deep band instead of photo */
.hero--band {
  min-height: clamp(280px, 35vw, 420px);
  background-image:
    linear-gradient(135deg, var(--olive-deep) 0%, var(--charcoal) 100%);
  background-color: var(--olive-deep);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: var(--space-xl) var(--space-lg);
  color: var(--cream);
}

/* Hero badge — echoes hand-drawn stamp logo */
.hero__badge {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px dashed rgba(250, 246, 239, 0.6);
  padding: 6px;
  margin: 0 auto var(--space-xl);
  transform: rotate(-2deg);
  transition: transform var(--duration) var(--ease-out);
}

.hero__badge:hover {
  transform: rotate(0deg) scale(1.04);
}

.hero__badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__title em {
  font-style: italic;
  color: var(--sand);
}

.hero__tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(250, 246, 239, 0.85);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll cue arrow at bottom of hero */
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(250, 246, 239, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Tour-page hero specific */
.hero--band .hero__content {
  padding-block: var(--space-2xl);
}

.hero--band .hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* ── Badge Motif ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed var(--olive);
  box-shadow: var(--shadow-stamp);
  transform: rotate(-1.5deg);
  background-color: var(--cream);
  padding: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1.2;
  text-align: center;
}

.badge--stamp {
  position: relative;
  border: 3px double var(--terracotta);
  border-radius: 50%;
  padding: var(--space-lg);
  transform: rotate(2.5deg);
  background-color: var(--cream);
}

.badge--stamp::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 98, 45, 0.4);
  pointer-events: none;
}

.badge--icon {
  width: 56px;
  height: 56px;
  font-size: 1.6rem;
  flex-shrink: 0;
  background-color: rgba(91, 107, 60, 0.1);
  border-color: var(--olive-muted);
}

/* ── Tour Card ───────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 600px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  /* auto-fit keeps 2 cards centered today and absorbs a 3rd tour later */
  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
    justify-content: center;
  }
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  border: 1px solid var(--cream-dark);
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tour-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--olive-deep);
}

.tour-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease-out);
}

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

.tour-card__duration {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--charcoal);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25em 0.65em;
  border-radius: var(--radius-sm);
}

.tour-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1.2;
}

.tour-card__pitch {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.55;
  flex: 1;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-dark);
}

.tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  transition: gap var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out);
}

.tour-card__link:hover {
  color: var(--olive-deep);
  gap: var(--space-sm);
}

.tour-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* ── Price Tag ───────────────────────────────────────────── */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background-color: var(--terracotta);
  color: var(--cream);
  padding: 0.3em 0.75em 0.3em 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 3px 3px 3px 0;
  position: relative;
  line-height: 1;
  box-shadow: var(--shadow-stamp);
}

/* Ticket-stub notch at bottom-left */
.price-tag::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  border-style: solid;
  border-width: 6px 6px 0 0;
  border-color: var(--olive-deep) transparent transparent transparent;
}

.price-tag__from {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.65em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-right: 3px;
}

/* ── Highlight Grid ──────────────────────────────────────── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .highlight-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
  }
}

.highlight-grid__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background-color: rgba(250, 246, 239, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.12);
  border-radius: var(--radius-md);
  transition: background-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.section--olive .highlight-grid__tile,
.section--dark .highlight-grid__tile {
  background-color: rgba(250, 246, 239, 0.06);
  border-color: rgba(250, 246, 239, 0.12);
}

.section--alt .highlight-grid__tile {
  background-color: white;
  border-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.highlight-grid__tile:hover {
  transform: translateY(-2px);
  background-color: rgba(250, 246, 239, 0.1);
}

.highlight-grid__icon {
  font-size: 2rem;
  line-height: 1;
}

.highlight-grid__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.9;
}

/* ── Quote Card ──────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Oversized quote mark */
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  left: var(--space-lg);
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
}

.quote-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}

.quote-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--olive-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}

.quote-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.quote-card__tour {
  font-size: 0.78rem;
  color: var(--terracotta);
  font-style: italic;
}

.quote-card__stars {
  margin-left: auto;
  color: var(--terracotta);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ── About Section ───────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 720px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Stamp accent on about image — DOM span, hidden from screen readers via aria-hidden */
.about-stamp {
  position: absolute;
  bottom: calc(-1 * var(--space-md));
  right: calc(-1 * var(--space-md));
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transform: rotate(3deg);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.about-copy p + p {
  margin-top: 0;
}

/* ── Included / Excluded Lists ───────────────────────────── */
.included-list,
.excluded-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0;
  list-style: none;
}

.included-list li,
.excluded-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.5;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--cream-dark);
}

.included-list li:last-child,
.excluded-list li:last-child {
  border-bottom: none;
}

.included-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--olive);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

.excluded-list li::before {
  content: "✗";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream-dark);
  color: var(--charcoal-mid);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ── Tour Page: Two-column layout ───────────────────────── */
.tour-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 720px) {
  .tour-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
  }
}

.tour-content__main {}

.tour-content__sidebar {}

.tour-sidebar-box {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 80px;
}

.tour-sidebar-box__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.tour-sidebar-box__price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-mid);
}

.tour-sidebar-box__price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--olive-deep);
}

.itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.itinerary__item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  position: relative;
}

.itinerary__item:not(:last-child) {
  border-bottom: 1px solid var(--cream-dark);
}

.itinerary__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 7px;
  position: relative;
  z-index: 1;
}

.itinerary__time {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--olive);
  width: 60px;
  text-align: right;
  margin-top: 4px;
}

.itinerary__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--charcoal);
}

/* ── CTA Band (Tour pages) ───────────────────────────────── */
.cta-band {
  background-color: var(--terracotta);
  padding-block: var(--space-3xl);
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.cta-band__sub {
  color: rgba(250, 246, 239, 0.8);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-inline: auto;
}

.cta-band .btn-ghost {
  border-color: rgba(250, 246, 239, 0.7);
}

.cta-band .btn-primary {
  background: var(--cream);
  color: var(--terracotta);
  box-shadow: 0 2px 0 rgba(43,43,38,0.2);
}

.cta-band .btn-primary:hover {
  background: var(--cream-dark);
}

/* ── Site Footer ─────────────────────────────────────────── */
.site-footer {
  background-color: var(--olive-deep);
  color: var(--cream);
  padding-block: var(--space-3xl) var(--space-xl);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.site-footer__brand {}

.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.site-footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px dashed rgba(250, 246, 239, 0.4);
  padding: 3px;
  object-fit: cover;
}

.site-footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

.site-footer__tagline {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.65);
  line-height: 1.6;
  max-width: 280px;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-md);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__links a {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.75);
  transition: color var(--duration) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.site-footer__links a:hover {
  color: var(--cream);
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.75);
  margin-bottom: var(--space-sm);
}

.site-footer__contact-item a {
  color: rgba(250, 246, 239, 0.75);
  transition: color var(--duration) var(--ease-out);
}

.site-footer__contact-item a:hover {
  color: var(--cream);
}

.site-footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(250, 246, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-footer__copyright {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.45);
}

.site-footer__social {
  display: flex;
  gap: var(--space-md);
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.2);
  color: rgba(250, 246, 239, 0.65);
  transition: border-color var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out),
              background-color var(--duration) var(--ease-out);
}

.site-footer__social a:hover {
  border-color: var(--terracotta);
  color: var(--cream);
  background-color: rgba(196, 98, 45, 0.15);
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

/* The contact section reuses footer link components, but sits on cream —
   re-map the cream link colors to charcoal for contrast */
.contact-layout .site-footer__contact-item,
.contact-layout .site-footer__links a {
  color: rgba(43, 43, 38, 0.78);
}

.contact-layout .site-footer__contact-item:hover,
.contact-layout .site-footer__links a:hover {
  color: var(--terracotta);
}

@media (min-width: 720px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7em 1em;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background-color: white;
  color: var(--charcoal);
  width: 100%;
  transition: border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--sand);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(91, 107, 60, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── Divider / Separator ─────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-block: var(--space-2xl);
  color: var(--sand);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.divider__icon {
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ── Utility ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-cream   { color: var(--cream); }
.text-olive   { color: var(--olive); }
.text-terracotta { color: var(--terracotta); }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* Inline flex row utility */
.stack-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s var(--ease-out) both;
}

.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.2s; }
.fade-up--delay-3 { animation-delay: 0.3s; }
.fade-up--delay-4 { animation-delay: 0.4s; }

/* ── Tour Page Components ────────────────────────────────── */
/*
 * Shared classes used by tours/the-pilgrimage.html and
 * tours/cape-of-rodon.html. No per-page duplicates — both
 * pages reference these identical rules.
 */

/* Hero price line (below tagline, above actions) */
.hero__price {
  color: var(--sand);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xl);
}

/* Intro paragraph (top of main column) */
.tour-intro {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--cream-dark);
}

/* Highlights block wrapper */
.tour-highlights {
  margin-bottom: var(--space-2xl);
}

/* Section header forced left-aligned (overrides .section__header center) */
.section__header--left {
  text-align: left;
  margin-bottom: var(--space-xl);
}

/* Smaller variant used inside tour inclusions headings */
.section__title--sub {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

/* Section header tighter bottom gap (inclusions headings) */
.section__header--tight {
  text-align: left;
  margin-bottom: var(--space-lg);
}

/* Highlight grid: 2-col override for tour pages (always 2-col, never 5) */
.highlight-grid--tour {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .highlight-grid--tour {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tile modifier: white background, left-aligned, card shadow */
.highlight-grid__tile--tour {
  background-color: white;
  border-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
  text-align: left;
}

.highlight-grid__tile--tour .highlight-grid__label {
  color: var(--charcoal);
}

/* Full-width tile spanning both columns */
.highlight-grid__tile--full {
  grid-column: 1 / -1;
}

/* Tour inclusions grid (included / not included two-column section) */
.tour-inclusions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--cream-dark);
}

/* Good-to-know callout box */
.good-to-know {
  background-color: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 4px solid var(--terracotta);
}

.good-to-know__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.good-to-know__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Sidebar price note (below the large price value) */
.tour-sidebar-box__price-note {
  font-size: 0.78rem;
  color: var(--charcoal-mid);
  margin-top: 2px;
}

/* Sidebar details list (location / duration / group size / terrain) */
.sidebar-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--cream-dark);
}

.sidebar-details__row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
}

.sidebar-details__icon {
  font-size: 1rem;
}

.sidebar-details__label {
  color: var(--charcoal-mid);
}

/* Sidebar full-width CTA button */
.btn--full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85em 1.5em;
}

/* Sidebar "Questions? Message @funclehikes" text */
.sidebar-contact {
  text-align: center;
  font-size: 0.78rem;
  color: var(--charcoal-mid);
  margin-top: var(--space-md);
}

.sidebar-contact__link {
  color: var(--terracotta);
  font-weight: 600;
}

/* Sidebar photo figure */
.sidebar-figure {
  margin-top: var(--space-xl);
}

.sidebar-figure__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* Pilgrimage: portrait crop */
.sidebar-figure__img--portrait {
  aspect-ratio: 3/4;
  object-position: center top;
}

/* Rodon: landscape crop */
.sidebar-figure__img--landscape {
  aspect-ratio: 4/3;
  object-position: center;
}

.sidebar-figure__caption {
  font-size: 0.75rem;
  color: var(--charcoal-mid);
  text-align: center;
  margin-top: var(--space-sm);
  font-style: italic;
}

/* Container narrow variant (CTA band, 720px cap) */
.container--narrow {
  max-width: 720px;
}

/* CTA band button wrapper */
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* CTA band body text */
.cta-band__body {
  color: rgba(250, 246, 239, 0.8);
  font-size: 0.9rem;
}

/* CTA band inline link */
.cta-band__link {
  color: var(--cream);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Line Icons (inline SVG, hand-drawn feel) ────────────── */
/*
 * Replaces the old emoji icons. Each icon is a 24x24 stroke SVG
 * inheriting currentColor, tinted per section below.
 */
.highlight-grid__icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section--olive .highlight-grid__icon {
  color: var(--sand);
}

.highlight-grid__tile--tour .highlight-grid__icon {
  color: var(--terracotta);
}

.sidebar-details__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.sidebar-details__icon {
  color: var(--olive);
  display: inline-flex;
}

/* ── Photo Gallery (real trip photos, print-pile feel) ───── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Editorial rhythm: let a couple of shots breathe wider */
  .gallery-card--wide {
    grid-column: span 2;
  }

  .gallery-card.gallery-card--wide img {
    aspect-ratio: 16 / 10;
  }
}

.gallery-card {
  position: relative;
  margin: 0;
  background: white;
  padding: 8px 8px 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transform: rotate(-0.6deg);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.gallery-card:nth-child(even) {
  transform: rotate(0.7deg);
}

.gallery-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

.gallery-card--tall img {
  aspect-ratio: 3 / 4;
}

.gallery-card figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--charcoal-mid);
  text-align: center;
  padding: var(--space-sm) var(--space-xs);
}

/* ── Mission Band ────────────────────────────────────────── */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 720px) {
  .mission-layout {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
  }
}

.mission-photo {
  position: relative;
  margin: 0;
}

.mission-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.mission-photo figcaption {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(250, 246, 239, 0.6);
  margin-top: var(--space-sm);
  text-align: center;
}

.mission-copy p {
  color: rgba(250, 246, 239, 0.88);
  line-height: 1.8;
}

.mission-copy strong {
  color: var(--cream);
}

.mission-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--sand);
  line-height: 1.35;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px dashed rgba(212, 197, 169, 0.4);
}

/* ── Reviews: excerpts + full stories ────────────────────── */
.quote-card__year {
  font-size: 0.72rem;
  color: var(--charcoal-mid);
  margin-left: var(--space-xs);
  font-style: normal;
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.reviews-cta a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}

.reviews-cta a:hover {
  color: var(--olive-deep);
  border-color: var(--olive-deep);
}

/* Full review cards (tour page) */
.reviews-intro {
  max-width: 56ch;
  color: var(--charcoal-mid);
  margin: calc(-1 * var(--space-lg)) 0 var(--space-xl);
}

.review-full {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  break-inside: avoid;
  margin-bottom: var(--space-lg);
}

.reviews-columns {
  column-count: 1;
  column-gap: var(--space-lg);
}

@media (min-width: 720px) {
  .reviews-columns {
    column-count: 2;
  }
}

.review-full__stars {
  color: var(--terracotta);
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.review-full__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--olive-deep);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.review-full__text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.review-full__text p + p {
  margin-top: var(--space-sm);
}

.review-full__meta {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px dashed var(--cream-dark);
  font-size: 0.85rem;
  color: var(--charcoal-mid);
}

.review-full__meta strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* ── Itinerary (tour page walk-through) ──────────────────── */
.tour-itinerary {
  margin-bottom: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--cream-dark);
}

.itinerary__step {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px dashed var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--terracotta);
  background: var(--cream);
  transform: rotate(-4deg);
}

.itinerary__item {
  align-items: flex-start;
}

.itinerary__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.itinerary__note {
  display: block;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--charcoal-mid);
  margin-top: var(--space-xs);
}

.meal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px var(--space-lg);
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  list-style: none;
  padding: 0;
}

.meal-list li::before {
  content: "·";
  color: var(--terracotta);
  font-weight: 700;
  margin-right: 6px;
}

/* ── Coming Soon (Cape of Rodon) ─────────────────────────── */
.tour-card__duration--soon {
  background-color: var(--terracotta);
}

.tour-card--soon .tour-card__image-wrap img {
  filter: saturate(0.75);
}

.coming-soon-note {
  background-color: var(--cream-dark);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-2xl);
  font-size: 0.95rem;
  line-height: 1.7;
}
