/* ============================================================
   CATEGORY LANDING PAGE — FULL STYLE REFRESH
   Matches the Three Black Sheep theme design
   ============================================================ */

/* ── HERO SECTION ─────────────────────────────────────────── */
.landing-hero {
  background: var(--color-linen-dark);
  padding: 4rem 2.5rem 3.5rem;
  border-bottom: 0.5px solid var(--color-border);
}

.landing-hero .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.landing-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 1rem;
}

.landing-hero p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-stone);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 0;
}

.landing-hero img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 2.5rem;
  display: block;
}

/* ── SECTION SPACING ──────────────────────────────────────── */
.landing-hero + section,
.cards-section + section,
.gallery-section + section {
  border-top: 1px solid var(--color-border);
}

.cards-section {
  padding: 3.5rem 2.5rem;
}

.cards-section:nth-of-type(even) {
  background: var(--color-linen-dark);
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.cards-section .section-header,
.gallery-section .section-header {
  margin-bottom: 2rem;
}

.cards-section .section-label,
.gallery-section .section-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 0.5rem;
}

.cards-section .section-title,
.gallery-section .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 1rem;
}
/* ============================================================
   ITINERARY — CONTENT AREA SPACING & TYPOGRAPHY FIX
   ============================================================ */

/* ── BODY TEXT ─────────────────────────────────────────────── */
.itinerary-content {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-ink);
  padding: 2rem 2.5rem;
}

/* ── PARAGRAPHS ────────────────────────────────────────────── */
.itinerary-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-stone);
  margin-bottom: 1.5rem;
}

.itinerary-content p:last-child {
  margin-bottom: 0;
}

/* ── HEADINGS INSIDE CONTENT ───────────────────────────────── */
.itinerary-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.itinerary-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.itinerary-content h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* First heading — no top margin needed */
.itinerary-content h2:first-child,
.itinerary-content h3:first-child {
  margin-top: 0;
}

/* ── LISTS ─────────────────────────────────────────────────── */
.itinerary-content ul,
.itinerary-content ol {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-stone);
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.itinerary-content li {
  margin-bottom: 0.5rem;
}

.itinerary-content li:last-child {
  margin-bottom: 0;
}

/* ── BLOCKQUOTES ───────────────────────────────────────────── */
.itinerary-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--color-ink);
  border-left: 2px solid var(--color-sage);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
}

/* ── TIP BOXES ─────────────────────────────────────────────── */
.itinerary-content .tip-box {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
}

.itinerary-content .tip-box p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--color-sage);
}

/* ── ACTIVITY TAGS ─────────────────────────────────────────── */
.itinerary-content .activity-tags {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ── IMAGES INSIDE CONTENT ─────────────────────────────────── */
.itinerary-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  display: block;
}

/* ── DAY SUB LABEL ─────────────────────────────────────────── */
.itinerary-content__day-sub,
.day-sub {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-sage);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: block;
}

/* ── OVERALL BODY LAYOUT SPACING ───────────────────────────── */
.itinerary-body {
  padding: 2.5rem 2.5rem 4rem;
  gap: 2.5rem;
}

/* ── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .itinerary-content {
    padding: 1.5rem;
  }

  .itinerary-content p,
  .itinerary-content ul,
  .itinerary-content ol {
    font-size: 1rem;
  }

  .itinerary-content h2 {
    font-size: 1.375rem;
  }

  .itinerary-content h3 {
    font-size: 1.125rem;
  }

  .itinerary-body {
    padding: 1.5rem 1.25rem 3rem;
  }
}