/* ============== TOKENS ============== */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE4;
  --ink: #1C1C1C;
  --ink-soft: #4a4640;
  --muted: #8a857d;
  --rule: #e3dccf;
  --terra: #B8533A;
  --sea: #2E5A6E;
  --gold: #B89968;
  --sand: #E8DDC9;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --container-narrow: 880px;
  --space: clamp(4rem, 8vw, 8rem);
}

/* ============== RESET ============== */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== TYPE ============== */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  margin-bottom: 1.25rem;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: rgba(255,255,255,0.92); }

/* Zoomed mobile map: hide far-south orientation chrome that falls outside the crop */
#sardiniaMap.map--zoomed .map__compass,
#sardiniaMap.map--zoomed .map__cagliari,
#sardiniaMap.map--zoomed .map__title { display: none; }

/* ----- Hero crest: OG GANG masthead ----- */
.hero__crest {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 0.45rem;
  color: #fff;
}
.hero__crest-rule {
  display: block;
  width: clamp(28px, 5vw, 56px);
  height: 1px;
  background: rgba(255,255,255,0.75);
}
.hero__crest-mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
  padding-left: 0.42em; /* visual centring vs trailing rule because of letter-spacing */
}
.hero__crest-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .hero__crest { gap: 0.7rem; }
  .hero__crest-mark { letter-spacing: 0.36em; }
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.display--center { text-align: center; }
.display--small { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-style: italic;
}
.lede--center { text-align: center; }

.footnote {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 2.5rem;
  letter-spacing: 0.02em;
}

/* ============== LAYOUT ============== */
.container {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.75rem;
}
.container--wide {
  max-width: var(--container);
}
.section {
  padding: var(--space) 0;
  position: relative;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  box-shadow: 0 1px 0 rgba(28,28,28,0.06);
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  color: #fff;
  transition: color 0.4s ease;
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
}
.nav__sep {
  opacity: 0.5;
  font-family: var(--serif);
  font-size: 14px;
}
.nav__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.4s ease, opacity 0.2s ease;
}
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--terra); }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  border: none; background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: background 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a { color: var(--ink); font-size: 14px; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero__image {
  position: absolute;
  inset: -5% 0 0 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 880px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.95;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.01em;
}
.hero__dates {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.45);
}
.hero__dates-em {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  opacity: 0.7;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.hero__scrollcue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scrollcue span {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  animation: scroll-cue 2.4s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
}

/* ============== AT A GLANCE ============== */
.section--glance {
  text-align: center;
}
.section--glance .display { max-width: 22ch; margin-left: auto; margin-right: auto; }
.section--glance .lede { margin-bottom: 4rem; text-align: center; }

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.5rem 0;
}
.glance-grid__item { text-align: center; }
.glance-grid__item .eyebrow { color: var(--muted); margin-bottom: 0.85rem; }
.glance-grid__value {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
}
.glance-grid__value span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}
@media (max-width: 760px) {
  .glance-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ============== ROUTE / MAP ============== */
.section--route { background: var(--bg-alt); text-align: center; }
.map {
  margin: 3rem auto 1rem;
  max-width: 1000px;
  background: #f7f1e3;
  border: 1px solid var(--rule);
  padding: 1.5rem;
  border-radius: 4px;
}
.map svg { width: 100%; height: auto; display: block; }

.route-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.route-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--ink { background: var(--ink); }
.dot--terra { background: var(--terra); }
.dash { width: 22px; height: 0; border-top: 2px dashed var(--terra); display: inline-block; }

/* ============== GETTING THERE ============== */
.section--getting { background: var(--bg); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-head__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.origins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.origin {
  background: var(--bg-alt);
  padding: 2rem 1.75rem;
  border-radius: 3px;
  border-top: 2px solid var(--terra);
  display: flex;
  flex-direction: column;
}
.origin--featured {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--terra);
}
.origin__head {
  margin-bottom: 1.25rem;
}
.origin__city {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}
.origin__detail {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-weight: 400;
}
.origin__notes {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.origin__placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  border-top: 1px dashed var(--rule);
  padding-top: 0.85rem;
  margin-top: auto;
}
.flight-block {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.flight-block__title {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.6rem 0 0.5rem;
}
.flight-block__title:first-child { margin-top: 0; }
.flights {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
.flights tr {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.flights tr:last-child { border-bottom: none; }
.flights td {
  padding: 0.45rem 0.4rem;
  color: var(--ink-soft);
}
.flights td:first-child { padding-left: 0; font-weight: 500; color: var(--ink); }
.flights td:last-child { padding-right: 0; text-align: right; }
.flights .f-air { color: var(--ink); font-weight: 500; }
.flights .f-route {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.flights .f-price {
  font-weight: 500;
  color: var(--ink);
}
.flights tr.f-best td { color: var(--terra); font-weight: 600; }
.flights tr.f-best .f-route { color: var(--terra); }
@media (max-width: 960px) { .origins { grid-template-columns: 1fr; } }

/* ============== STAYS ============== */
.section--stays { background: var(--bg-alt); }

.stay {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(28,28,28,0.04);
}
.stay--reverse { grid-template-columns: 1fr 1.1fr; }
.stay--reverse .stay__gallery { order: 2; }
.stay--reverse .stay__body { order: 1; }

.stay__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 520px;
}
.stay__photo {
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}
.stay__photo--main {
  grid-row: 1 / span 2;
}

.stay__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  margin: 0.4rem 0 1rem;
}
.stay__sub {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.stay__pills {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.stay__pills li {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.stay__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
  margin: 1rem 0 1.25rem;
}
.stay__price-block { padding-right: 1rem; }
.stay__price-block--per {
  border-left: 1px solid var(--rule);
  padding-left: 1.25rem;
  padding-right: 0;
}
.stay__price-block .eyebrow { color: var(--ink); margin-bottom: 0.65rem; }
.stay__price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  align-items: baseline;
}
.stay__cur {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stay__price-block--per .stay__cur {
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.stay__link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
  align-self: flex-start;
}

@media (max-width: 880px) {
  .stay, .stay--reverse { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
  .stay--reverse .stay__gallery { order: 0; }
  .stay--reverse .stay__body { order: 1; }
  .stay__gallery { height: auto; min-height: 320px; }
}
@media (max-width: 540px) {
  .stay__price { grid-template-columns: 1fr; gap: 1rem; }
  .stay__price-block--per { border-left: none; border-top: 1px dashed var(--rule); padding: 1rem 0 0; }
}
.base {
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(28,28,28,0.04);
}
.base__image {
  height: 320px;
  background-size: cover;
  background-position: center;
}
.base__body { padding: 2.25rem 2rem 2.5rem; }
.base__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0.4rem 0 1rem;
}
.base__body p {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.base__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.base__pills li {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 1.25rem;
}
.base__pills li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--terra);
}
@media (max-width: 880px) { .bases { grid-template-columns: 1fr; gap: 1.75rem; } }

.properties__head { text-align: center; margin-bottom: 2.5rem; }
.properties__head .eyebrow { color: var(--muted); }
.properties__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
}
.properties__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.property {
  display: block;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--rule);
}
.property:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(28,28,28,0.08);
}
.property__image {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.property__body { padding: 1.75rem 1.75rem 2rem; }
.property__body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0.4rem 0 0.75rem;
}
.property__body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.property__link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
}
@media (max-width: 760px) { .properties__grid { grid-template-columns: 1fr; } }

/* ============== ITINERARY ============== */
.section--itinerary { background: var(--bg); }
.section--itinerary .display { margin-bottom: 4.5rem; }

.days { margin-top: 1rem; }

/* Day = three rows stacked: header, media+content, experiences */
.day {
  display: block;
  margin: 0 0 1.5rem;
  position: relative;
}
.day__pin-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.day__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: stretch;
  padding: 1.75rem 0 2rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.75rem;
  position: sticky;
  top: var(--nav-h, 56px);
  z-index: 20;
  background: var(--bg);
  transition:
    padding 0.22s ease,
    gap 0.22s ease,
    box-shadow 0.22s ease,
    margin-bottom 0.22s ease;
}
.day__header.is-pinned {
  padding: 0.7rem 0 0.7rem;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 0 rgba(28,28,28,0.08), 0 10px 18px -16px rgba(28,28,28,0.22);
  border-bottom-color: transparent;
}
.day__header.is-pinned .day__numeral {
  font-size: clamp(2rem, 4vw, 2.6rem);
  padding: 0.05rem 1rem 0.1rem 0.25rem;
  line-height: 1;
}
.day__header.is-pinned .day__title {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: none;
}
.day__header.is-pinned .day__eyebrow {
  margin-bottom: 0.1rem;
}
@media (prefers-reduced-motion: reduce) {
  .day__header { transition: none; }
}
.day__numeral {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  line-height: 0.85;
  color: var(--terra);
  letter-spacing: -0.02em;
  padding: 0.4rem 2rem 0.4rem 0.5rem;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  min-width: 4.5rem;
  justify-content: center;
}
.day__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.day__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.day__eyebrow-num {
  color: var(--terra);
  font-weight: 600;
}
.day__eyebrow-sep {
  color: var(--rule);
  letter-spacing: 0;
}
.day__eyebrow-date {
  color: var(--muted);
}
.day__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  max-width: 34ch;
}

/* Body row: media left, schedule right (or reversed) */
.day__body {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.day--reverse .day__body {
  grid-template-columns: 1fr 1.05fr;
}
.day--reverse .day__media { order: 2; }
.day--reverse .day__content { order: 1; }

.day__media {
  height: 540px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.day__schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.schedule-block {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.25rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px dotted var(--rule);
}
.schedule-block:last-child { border-bottom: 0; padding-bottom: 0; }
.schedule-block__time {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  padding-top: 4px;
}
.schedule-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Day divider — sits between articles */
.day-divider {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 5rem 0;
  position: relative;
  overflow: visible;
}
.day-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--terra);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px var(--bg);
}

@media (max-width: 880px) {
  .day__header {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.25rem 0 1.5rem;
    margin-bottom: 1.75rem;
    top: var(--nav-h, 52px);
  }
  .day__header.is-pinned {
    padding: 0.7rem 0 0.7rem;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
  }
  .day__header.is-pinned .day__numeral {
    font-size: 2.4rem;
    padding: 0.05rem 0.75rem 0.1rem 0.25rem;
    line-height: 1;
  }
  .day__header.is-pinned .day__eyebrow {
    margin-bottom: 0.15rem;
    font-size: 9px;
    gap: 0.4rem;
  }
  .day__header.is-pinned .day__title {
    font-size: 1.05rem;
    line-height: 1.25;
  }
  .day__numeral {
    font-size: 3.5rem;
    padding: 0.2rem 1rem 0.2rem 0.25rem;
    min-width: 0;
  }
  .day__eyebrow { gap: 0.5rem; font-size: 10px; letter-spacing: 0.22em; flex-wrap: wrap; }
  .day__body, .day--reverse .day__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .day--reverse .day__media,
  .day--reverse .day__content { order: initial; }
  .day__media { height: 280px; }
  .schedule-block {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .day-divider { margin: 3rem 0; }
}

/* ============== INLINE DAY EXPERIENCES ============== */
.day__experiences {
  margin-top: 2.5rem;
}
.eyebrow--small {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.exp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-row:has(.exp-mini:only-child) {
  grid-template-columns: minmax(0, 28rem);
}
.exp-mini {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exp-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(28,28,28,0.06);
}
.exp-mini__image {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.exp-mini__body { padding: 1.25rem 1.25rem 1.5rem; }
.exp-mini__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.exp-mini h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  color: var(--ink);
}
.exp-mini p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.exp-mini--feature {
  grid-column: span 2;
}
.exp-mini--feature .exp-mini__image { height: 320px; }
.exp-mini--feature h4 { font-size: 1.45rem; }
.exp-mini--feature p { font-size: 15px; }

@media (max-width: 880px) {
  .exp-row { grid-template-columns: 1fr 1fr; }
  .exp-mini--feature { grid-column: span 2; }
  .exp-mini__image { height: 200px; }
  .exp-mini--feature .exp-mini__image { height: 240px; }
}
@media (max-width: 540px) {
  .exp-row { grid-template-columns: 1fr; }
  .exp-mini--feature { grid-column: span 1; }
  .exp-mini__image, .exp-mini--feature .exp-mini__image { height: 220px; }
}

/* ============== LAX CALLOUT (Hogan & Giovanni) ============== */
.lax-callout {
  margin-top: 3rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--bg-tint, #faf7f2);
  overflow: hidden;
}
.lax-callout__tag {
  background: var(--ink);
  color: var(--bg);
  padding: 0.65rem 1.25rem;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.lax-callout__body {
  padding: 1.75rem 2rem 1.5rem;
}
.lax-callout__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.lax-callout__leg { text-align: left; }
.lax-callout__leg:last-child { text-align: right; }
.lax-callout__time {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  position: relative;
}
.lax-callout__time span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-left: 0.35rem;
  vertical-align: super;
}
.lax-callout__city {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0.4rem;
}
.lax-callout__line {
  text-align: center;
}
.lax-callout__hops {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.lax-callout__rule {
  height: 1px;
  background: var(--rule);
  position: relative;
}
.lax-callout__rule::before,
.lax-callout__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  transform: translateY(-50%);
}
.lax-callout__rule::before { left: 0; }
.lax-callout__rule::after { right: 0; }
.lax-callout__dur {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.lax-callout__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dotted var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 640px) {
  .lax-callout__body { padding: 1.25rem 1.25rem 1rem; }
  .lax-callout__route { gap: 0.75rem; }
  .lax-callout__time { font-size: 1.5rem; }
  .lax-callout__meta { flex-direction: column; gap: 0.3rem; text-align: center; }
}



/* ============== NOTES ============== */
.section--notes { background: var(--bg); }
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 4rem;
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
}
.note .eyebrow { color: var(--muted); margin-bottom: 0.65rem; }
.note p {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 760px) { .notes-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============== FOOTER ============== */
.footer {
  background: var(--bg);
  padding: 3rem 0 4rem;
}
.footer__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 2rem;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__mark {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-bottom: 0.25rem;
}
.footer__sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
}
.footer__small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scrollcue { display: none; }
  html { scroll-behavior: auto; }
}


/* Stay gallery variants */
.stay__gallery--single {
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
}
.stay__gallery--single .stay__photo--main {
  grid-column: 1 / -1 !important;
  grid-row: 1 / -1 !important;
  min-height: 460px;
}
.stay__gallery--double {
  grid-template-columns: 1fr !important;
  grid-template-rows: 1.55fr 1fr !important;
  gap: 8px !important;
}
.stay__gallery--double .stay__photo--main {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-height: 0;
}
.stay__gallery--double .stay__photo:not(.stay__photo--main) {
  grid-column: 1 !important;
  grid-row: 2 !important;
  min-height: 0;
}
@media (max-width: 720px) {
  .stay__gallery--single .stay__photo--main,
  .stay__gallery--double .stay__photo--main,
  .stay__gallery--double .stay__photo:not(.stay__photo--main) {
    min-height: 280px;
  }
  .stay__gallery--double {
    grid-template-columns: 1fr !important;
    grid-template-rows: 2fr 1fr !important;
  }
  .stay__gallery--double .stay__photo:not(.stay__photo--main) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
}

/* LAX origin tweaks */
.origin--lax .origin__pp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--terra);
  font-weight: 400;
  margin-left: 0.5rem;
}
.origin--lax .f-route small {
  display: inline-block;
  margin-left: 0.4rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.85em;
}
.flights tr td sup {
  font-size: 0.65em;
  color: var(--muted);
  margin-left: 2px;
}

/* ================= BUDGET ================= */
.section--budget {
  background: var(--bg-alt);
}
.budget-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.budget-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--terra);
  padding: 2rem 1.85rem 1.85rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}
.budget__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0.4rem 0 0.35rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.budget__big {
  font-weight: 600;
  color: var(--terra);
}
.budget__alt {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.25rem;
}
.budget-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  vertical-align: top;
}
.bt__item {
  color: var(--ink);
  font-weight: 500;
}
.bt__sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.bt__amt {
  text-align: right;
  font-family: var(--serif);
  white-space: nowrap;
  color: var(--ink);
  padding-left: 1rem !important;
}
.bt__total td {
  border-bottom: none;
  padding-top: 0.95rem;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--terra);
}
.bt__total .bt__amt {
  font-family: var(--serif);
  font-weight: 600;
}

.budget-flights {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
}
.budget-flights li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.budget-flights li:last-child { border-bottom: none; }
.bf__city {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}
.bf__city small {
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  margin-left: 0.4rem;
  letter-spacing: 0.04em;
}
.bf__range {
  font-size: 13px;
  color: var(--muted);
}

.budget__rule {
  height: 1px;
  background: var(--ink);
  margin: 0.5rem 0 1.25rem;
  opacity: 0.85;
}
.budget__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.budget__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.budget__total {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--terra);
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 880px) {
  .budget-grid { grid-template-columns: 1fr; }
  .budget__total-row { flex-direction: column; align-items: flex-start; }
  .budget__total { font-size: 1.35rem; }
}

/* ===== Budget currency switcher ===== */
.cur-switch {
  display: inline-flex;
  gap: 0;
  margin: 1.5rem auto 0;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 4px;
  align-items: stretch;
}
.cur-switch__btn {
  font: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: background 0.15s, color 0.15s;
  color: var(--ink);
  min-width: 130px;
}
.cur-switch__btn:hover {
  background: rgba(184, 83, 58, 0.08);
}
.cur-switch__btn.is-active {
  background: var(--ink);
  color: #fff;
}
.cur-switch__city {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.cur-switch__sym {
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.7;
}
.cur-switch__btn.is-active .cur-switch__sym { opacity: 0.9; }

/* center the switch row above the grid */
.section--budget .cur-switch {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .cur-switch__btn { min-width: 100px; padding: 0.55rem 0.7rem; }
  .cur-switch__city { font-size: 0.9rem; }
  .cur-switch__sym { font-size: 10px; letter-spacing: 0.12em; }
}

.budget__caveat {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rule);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.budget__caveat strong { color: var(--ink); font-weight: 600; }

/* Stays caveat */
.stays-caveat {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  background: rgba(184, 83, 58, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.stays-caveat__mark {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 2px;
}
.stays-caveat p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.stays-caveat strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .stays-caveat { flex-direction: column; gap: 0.8rem; padding: 1.1rem 1.2rem; }
}

/* Stay free-cancellation badge */
.stay__flex {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  background: rgba(46, 109, 64, 0.07);
  color: #2a6e3a;
  border: 1px solid rgba(46, 109, 64, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1.3;
}
.stay__flex strong { font-weight: 600; }
.stay__flex-ico { color: #2a6e3a; flex-shrink: 0; }

/* Vertically align Outbound/Return blocks across the London + Berlin cards.
   Reserve enough vertical space in each table for 4 rows so the "Return"
   title sits at the same position regardless of how many flights are listed. */
.origin:not(.origin--lax) .flights--out {
  min-height: 132px;   /* ~ 4 flight rows */
}

/* ================= CUISINE ================= */
.section--cuisine {
  background: var(--bg);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cuisine {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 30px 80px -40px rgba(40,28,20,0.18);
}
.cuisine__media {
  background-size: cover;
  background-position: center;
  min-height: 620px;
  position: relative;
}
.cuisine__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0) 60%, rgba(40,28,20,0.18) 100%);
  pointer-events: none;
}
.cuisine__body {
  padding: 3.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cuisine__body .display {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  margin: 0.55rem 0 1.2rem;
}
.cuisine__body .lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
}

/* Tasting menu list */
.menu {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.menu li {
  display: grid;
  grid-template-columns: minmax(160px, max-content) 1fr;
  gap: 1.25rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.menu__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.menu__note {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* "To drink" pour line */
.cuisine__pour {
  margin-top: 0.25rem;
  padding: 1.1rem 1.2rem;
  background: rgba(184, 83, 58, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}
.cuisine__pour-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.85rem;
}
.cuisine__pour-list {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.cuisine__pour-list strong { color: var(--ink); font-weight: 600; }

@media (max-width: 960px) {
  .cuisine {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cuisine__media { min-height: 360px; }
  .cuisine__body { padding: 2.25rem 1.75rem 2rem; }
  .menu li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ================= ENCORE / OPTIONAL ADD-ON ================= */
.section--encore {
  background: linear-gradient(180deg, var(--bg) 0%, #f3ece1 100%);
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
}
.section--encore::before {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background: var(--rule);
  margin: -5rem auto 3rem;
}
.encore {
  max-width: 1100px;
  margin: 0 auto;
}
.encore__head { margin-bottom: 2.5rem; }
.encore__head .display { margin-top: 0.5rem; }
.encore__head .lede { margin-top: 1rem; }

.eyebrow--accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
  padding: 0 0.85rem;
}
.eyebrow--center.eyebrow--accent {
  display: block;
  text-align: center;
}
.eyebrow--center.eyebrow--accent::before,
.eyebrow--center.eyebrow--accent::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 0.85rem;
  opacity: 0.55;
}

.encore__diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 30px 80px -40px rgba(40,28,20,0.18);
}
.encore__photo {
  background-size: cover;
  background-position: center;
  height: 380px;
  position: relative;
}
.encore__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(20,14,8,0.55) 100%);
  pointer-events: none;
}
.encore__photo-cap {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.encore__photo-cap small {
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-left: 0.25rem;
}

/* Stops */
.encore-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  overflow: hidden;
}
.encore-stop {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.5rem;
  padding: 2rem 2.25rem;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.encore-stop:last-child { border-bottom: none; }
.encore-stop--bridge { background: rgba(184, 83, 58, 0.04); }

.encore-stop__date {
  text-align: center;
  border-right: 1px solid var(--rule);
  padding-right: 2rem;
}
.encore-stop__day {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.encore-stop__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 1;
  margin: 0.2rem 0 0.1rem;
  color: var(--ink);
}
.encore-stop__mon {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.encore-stop__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.encore-stop__body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.encore-stop__body strong { color: var(--ink); font-weight: 600; }

.encore-stop__legs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.encore-leg {
  padding: 0.4rem 0.75rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.encore-leg strong { color: var(--ink); font-weight: 600; }

.encore__footnote {
  margin: 2rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
}

@media (max-width: 880px) {
  .encore__diptych { grid-template-columns: 1fr; }
  .encore__photo { height: 240px; }
  .encore-stop {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
  .encore-stop__date {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-right: 0;
    padding-bottom: 0.75rem;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
  }
  .encore-stop__num { font-size: 2.2rem; }
  .encore-stop__title { font-size: 1.2rem; }
}
