/* ==========================================================================
   URLAUB AFRICA TOURS — Design System
   Palette placeholder: derived from brief's earthy-Africa direction.
   Swap the six --brand-* values once the real logo is supplied; every
   other rule below references these variables, so a palette change is a
   six-line edit, not a rewrite.
   ========================================================================== */

:root {
  /* --- Brand palette (extracted from the Urlaub Africa Tours emblem) --- */
  --brand-ink:        #14371F;   /* the badge's forest green — text, header/footer, hero   */
  --brand-ochre:      #B08A3E;   /* the emblem's engraved gold — primary CTA / links       */
  --brand-ochre-dark: #8E6E2E;   /* hover state, deeper gold-bronze                        */
  --brand-gold:       #D9C089;   /* the emblem's pale gold highlight — dividers, trail, badges */
  --brand-sage:       #4F6B52;   /* a muted tone of the badge green — secondary tags/borders */
  --brand-parchment:  #F1EEE6;   /* the emblem's paper backdrop — page background          */
  --brand-cream:      #FBFAF6;   /* card / surface background, lighter than parchment      */

  /* --- Derived / functional --- */
  --text-primary:     var(--brand-ink);
  --text-muted:       #5C6456;
  --text-inverse:     #F6F2E8;
  --border-hairline:  rgba(28, 43, 32, 0.14);
  --shadow-soft:      0 12px 32px rgba(28, 43, 32, 0.10);
  --shadow-lift:      0 20px 44px rgba(28, 43, 32, 0.18);

  /* --- Type --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Work Sans", -apple-system, "Segoe UI", sans-serif;

  /* --- Scale --- */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.7rem, 1.45rem + 1.1vw, 2.25rem);
  --step-3:  clamp(2.3rem, 1.9rem + 1.9vw, 3.4rem);
  --step-4:  clamp(3rem, 2.3rem + 3.2vw, 5rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --maxw: 1240px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--brand-parchment);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand-ink);
  line-height: 1.12;
  margin: 0 0 var(--space-sm);
  font-weight: 600;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 var(--space-sm); }
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-md); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 2px;
}

/* --- Eyebrow / label utility --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-ochre);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--space-xs);
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: var(--brand-gold);
}

/* ==========================================================================
   SIGNATURE ELEMENT — the Migration Trail
   A dashed path with waypoint markers, used to link destination cards on the
   homepage and re-purposed as the literal day-by-day route on tour-detail.
   ========================================================================== */
.trail {
  position: relative;
  height: 2px;
  background-image: linear-gradient(to right, var(--brand-gold) 55%, transparent 0%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  margin: var(--space-lg) 0;
}
.trail__mark {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand-cream);
  border: 2px solid var(--brand-gold);
}
.trail--vertical {
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, var(--brand-gold) 55%, transparent 0%);
  background-size: 2px 14px;
  margin: 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 236, 218, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-sm);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.nav__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav__logo span { color: var(--brand-ochre); font-style: italic; }
.nav__links {
  display: flex;
  gap: var(--space-md);
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav__links a { position: relative; padding-block: 4px; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--brand-ochre);
  transition: width 0.25s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta {
  background: var(--brand-ochre);
  color: var(--text-inverse);
  padding: 0.65em 1.4em;
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav__cta:hover { background: var(--brand-ochre-dark); transform: translateY(-1px); }
.nav__toggle {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--brand-ink); display: block; }

@media (max-width: 860px) {
  .nav__links, .nav__cta.desktop-only { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--brand-cream);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-hairline);
    gap: var(--space-sm);
  }
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--step--1);
  color: var(--text-muted);
  padding-block: var(--space-sm);
}
.breadcrumbs a { color: var(--brand-ochre); }
.breadcrumbs span[aria-hidden="true"] { margin-inline: 0.5em; opacity: 0.6; }

/* ==========================================================================
   HERO — asymmetric, not centered-over-full-bleed
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 86vh;
  background: var(--brand-ink);
  color: var(--text-inverse);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
}
.hero__copy .eyebrow { color: var(--brand-gold); }
.hero__copy .eyebrow::before { background: var(--brand-gold); }
.hero h1 {
  color: var(--text-inverse);
  font-size: var(--step-4);
  max-width: 14ch;
}
.hero h1 em { color: var(--brand-gold); font-style: italic; }
.hero__sub {
  max-width: 42ch;
  color: rgba(246, 242, 232, 0.82);
  font-size: var(--step-1);
}
.hero__actions { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary { background: var(--brand-ochre); color: var(--text-inverse); }
.btn--primary:hover { background: var(--brand-ochre-dark); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(246, 242, 232, 0.5); color: var(--text-inverse); }
.btn--ghost:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
.btn--dark { border-color: var(--brand-ink); color: var(--brand-ink); }
.btn--dark:hover { background: var(--brand-ink); color: var(--text-inverse); }

.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,43,32,0.35), transparent 40%);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }
.section--dark { background: var(--brand-ink); color: var(--text-inverse); }
.section--dark h2, .section--dark h3 { color: var(--text-inverse); }
.section--cream { background: var(--brand-cream); }
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.section__head p { max-width: 46ch; color: var(--text-muted); margin: 0; }
.section__head--center { justify-content: center; text-align: center; }
.section__head--center .eyebrow::before { display: none; }
.section__head--center p { max-width: 62ch; margin-inline: auto; }

/* --- Card grid: destinations / trips --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-md);
}
.card {
  background: var(--brand-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(28, 43, 32, 0.75);
  color: var(--text-inverse);
  font-size: var(--step--1);
  padding: 0.3em 0.8em;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.card__body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.4em; flex: 1; }
.card__meta { font-size: var(--step--1); color: var(--text-muted); display: flex; gap: 1em; flex-wrap: wrap; }
.card__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--brand-ochre); margin-top: auto; }
.card__price small { font-family: var(--font-body); font-size: 0.6em; color: var(--text-muted); text-transform: uppercase; }
.card__cta { margin-top: var(--space-xs); }

/* --- About / brand story snippet --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.split img { border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.stat-row { display: flex; gap: var(--space-lg); margin-top: var(--space-md); flex-wrap: wrap; }
.stat { }
.stat__num { font-family: var(--font-display); font-size: var(--step-2); color: var(--brand-ochre); display: block; }
.stat__label { font-size: var(--step--1); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- Timeline (About milestones) --- */
.timeline { position: relative; padding-left: var(--space-lg); }
.timeline::before {
  content: "";
  position: absolute; left: 6px; top: 4px; bottom: 4px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--brand-gold) 55%, transparent 0%);
  background-size: 2px 14px;
}
.timeline__item { position: relative; padding-bottom: var(--space-lg); }
.timeline__item::before {
  content: "";
  position: absolute; left: -34px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand-cream); border: 2px solid var(--brand-gold);
}
.timeline__year { font-family: var(--font-display); color: var(--brand-ochre); font-size: var(--step-1); }

/* --- Values grid --- */
.value {
  padding: var(--space-md);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.value h3 { color: var(--brand-ink); margin-top: 0.2rem; }
.value__icon { font-size: 1.8rem; margin-bottom: var(--space-xs); }
.value ul { list-style: none; margin: 0.7rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.value li { font-size: var(--step--1); color: var(--text-muted); padding: 0; text-align: center; max-width: 42ch; line-height: 1.5; }
.value li + li { border-top: 1px solid var(--border-hairline); padding-top: 0.5rem; width: 100%; }

/* Alternating coloured tiles (light / deep-green) */
.value:nth-child(even) {
  background: var(--brand-ink);
  border-color: transparent;
}
.value:nth-child(even) h3 { color: var(--brand-gold); }
.value:nth-child(even),
.value:nth-child(even) li { color: rgba(246, 242, 232, 0.82); }
.value:nth-child(even) li + li { border-top-color: rgba(246, 242, 232, 0.18); }
.value:nth-child(even) .reason-num { background: var(--brand-gold); color: var(--brand-ink); }
.reason-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--brand-ochre); color: var(--text-inverse);
  font-family: var(--font-display); font-weight: 600; margin-bottom: 0.5rem;
}
.brand-quote {
  font-family: var(--font-display); font-style: italic; font-size: var(--step-2);
  color: var(--brand-ink); border-left: 3px solid var(--brand-ochre);
  padding-left: 1.2rem; margin: 1.5rem 0; max-width: 60ch;
}

/* --- Auth forms (password change / reset) --- */
.auth-wrap { min-height: 70vh; display: grid; place-items: center; padding-block: var(--space-xl); }
.auth-card {
  width: min(460px, 92vw); background: var(--brand-cream); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-soft); text-align: center;
}
.auth-card .eyebrow { justify-content: center; }
.auth-card form { display: flex; flex-direction: column; gap: var(--space-sm); text-align: left; margin-top: var(--space-md); }
.auth-card .field { display: flex; flex-direction: column; gap: 0.4em; }
.auth-card .field label { font-size: var(--step--1); font-weight: 600; }
.auth-card .field input {
  font-family: var(--font-body); font-size: var(--step-0); padding: 0.75em 1em;
  border: 1px solid var(--border-hairline); border-radius: var(--radius-sm); background: var(--brand-parchment);
}
.auth-card .btn { width: 100%; text-align: center; margin-top: 0.5rem; }
.auth-card .error, .auth-card .errornote { color: var(--brand-ochre-dark); font-size: var(--step--1); }
.auth-card .helptext { font-size: var(--step--1); color: var(--text-muted); }
.auth-card p { font-size: var(--step--1); }

/* --- Team --- */
.team-card { text-align: center; }
.team-card__photo {
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--space-xs);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__role { color: var(--brand-sage); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.04em; }

/* --- Testimonials --- */
.testimonial-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
}
.testimonial {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 86vw);
  background-color: #FBFAF6;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  color: #14371F;
}
.testimonial__stars { color: var(--brand-ochre); letter-spacing: 0.15em; margin-bottom: var(--space-xs); }
.testimonial__quote { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); color: #14371F; }
.testimonial__author { display: flex; align-items: center; gap: 0.7em; margin-top: var(--space-sm); }
.testimonial__author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { display: block; font-size: var(--step-0); color: #14371F; }
.testimonial__author span { font-size: var(--step--1); color: var(--text-muted); }

/* --- Trust signals / partner strip --- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
  justify-content: space-between;
  opacity: 0.75;
}
.trust-strip img { height: 34px; width: auto; filter: grayscale(1); }

/* --- Filters (destinations/tours/blog) --- */
.filters {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-sm);
  background: var(--brand-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hairline);
}
.filters select, .filters input[type="search"] {
  font-family: var(--font-body);
  font-size: var(--step--1);
  padding: 0.6em 0.9em;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  background: var(--brand-parchment);
  color: var(--text-primary);
}
.filters input[type="search"] { flex: 1; min-width: 180px; }
.chip-group { display: flex; gap: 0.5em; flex-wrap: wrap; }
.chip {
  padding: 0.45em 1em;
  border: 1px solid var(--brand-sage);
  border-radius: 999px;
  font-size: var(--step--1);
  color: var(--brand-sage);
  background: transparent;
}
.chip[aria-pressed="true"], .chip:hover { background: var(--brand-sage); color: var(--text-inverse); }

/* --- Tour detail --- */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-xs);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery a:first-child { grid-row: 1 / 3; }
.tour-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-block: var(--space-md);
}
.tour-highlights { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.tour-highlights li {
  background: var(--brand-cream);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  padding: 0.6em 1em;
  font-size: var(--step--1);
}
.tour-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.itinerary-day { position: relative; padding-left: var(--space-lg); padding-bottom: var(--space-lg); }
.itinerary-day:last-child { padding-bottom: 0; }
.itinerary-day::before {
  content: "";
  position: absolute; left: 6px; top: 4px; bottom: -4px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--brand-gold) 55%, transparent 0%);
  background-size: 2px 14px;
}
.itinerary-day:last-child::before { display: none; }
.itinerary-day::after {
  content: "";
  position: absolute; left: -2px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand-ochre); border: 2px solid var(--brand-cream);
}
.itinerary-day__label { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-ochre); }
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.inclusions-grid h4 { font-size: var(--step-0); }
.inclusions-grid li { padding: 0.35em 0; font-size: var(--step--1); }
.inclusions-grid li.no::before { content: "✕  "; color: var(--brand-ochre); }
.inclusions-grid li.yes::before { content: "✓  "; color: var(--brand-sage); }
.booking-card {
  background: var(--brand-cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 96px;
}
.booking-card__price { font-family: var(--font-display); font-size: var(--step-3); color: var(--brand-ochre); }
.booking-card__price small { font-size: var(--step--1); font-family: var(--font-body); color: var(--text-muted); }
.booking-card .btn { width: 100%; text-align: center; margin-top: var(--space-sm); }

/* --- Forms --- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 0.4em; }
.field label { font-size: var(--step--1); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 0.75em 1em;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  background: var(--brand-cream);
  color: var(--text-primary);
}
.field input:invalid[data-touched="true"], .field textarea:invalid[data-touched="true"] {
  border-color: var(--brand-ochre);
}
.field__error {
  font-size: var(--step--1);
  color: var(--brand-ochre-dark);
  display: none;
}
.field__error.is-visible { display: block; }
.form-status { margin-top: var(--space-sm); font-size: var(--step--1); }
.form-status.success { color: var(--brand-sage); }

.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-lg); }
.contact-info li { display: flex; gap: 0.8em; padding-block: 0.5em; border-bottom: 1px solid var(--border-hairline); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-hairline); }
.map-frame iframe { width: 100%; height: 320px; border: 0; }
.social-row { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.social-row a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--brand-sage); border-radius: 50%;
  font-size: var(--step--1);
}
.social-row a:hover { background: var(--brand-sage); color: var(--text-inverse); }

/* --- Blog --- */
.post-card__cat { color: var(--brand-sage); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.04em; }
.post-card__date { color: var(--text-muted); font-size: var(--step--1); }

/* --- Footer --- */
.site-footer { background: var(--brand-ink); color: var(--text-inverse); padding-block: var(--space-xl) var(--space-md); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(246, 242, 232, 0.14);
}
.footer-grid h4 { color: var(--text-inverse); font-size: var(--step-0); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-grid a, .footer-grid li { color: rgba(246, 242, 232, 0.78); font-size: var(--step--1); padding-block: 0.3em; }
.footer-grid a:hover { color: var(--brand-gold); }
.footer-brand p { color: rgba(246, 242, 232, 0.7); max-width: 32ch; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-sm);
  padding-top: var(--space-md);
  font-size: var(--step--1);
  color: rgba(246, 242, 232, 0.6);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__media { min-height: 320px; order: -1; }
  .split, .contact-layout, .tour-layout, .form-grid, .inclusions-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery a:first-child { grid-row: auto; grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-card { position: static; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section__head { flex-direction: column; align-items: flex-start; }
}
