:root {
  --ink: #17211d;
  --paper: #f6f1e7;
  --cream: #fffaf0;
  --green: #204a3c;
  --green-dark: #14362d;
  --red: #c84d38;
  --yellow: #e7b84b;
  --blue: #80a9ac;
  --line: rgba(23, 33, 29, 0.16);
  --shadow: 0 20px 60px rgba(24, 44, 36, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 5vw, 80px);
  background: rgba(246, 241, 231, 0.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--red);
  transition: right 180ms ease;
}

.site-nav a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 110px) clamp(24px, 5vw, 80px) 36px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 7.8vw, 8.3rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 600;
}

h1 em {
  color: var(--green);
  font-weight: 600;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(23, 33, 29, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: white; }
.button.ghost { background: transparent; }
.button.light { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 28px 28px 140px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 23% 24%, rgba(255,255,255,.7) 0 3%, transparent 3.5%),
    linear-gradient(145deg, #9ac2c1, #779b9f 58%, #5f7f83);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-8deg) scale(1.15);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.85);
  z-index: -1;
}

.hero-card::before {
  width: 420px;
  height: 220px;
  left: -160px;
  bottom: 70px;
  transform: rotate(18deg);
}

.hero-card::after {
  width: 440px;
  height: 260px;
  right: -230px;
  top: 65px;
  transform: rotate(-15deg);
}

.route {
  position: absolute;
  border: 3px dashed rgba(200, 77, 56, 0.92);
  border-color: var(--red) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(23deg);
}

.route-one {
  width: 370px;
  height: 230px;
  left: 12%;
  top: 24%;
}

.route-two {
  width: 260px;
  height: 180px;
  left: 42%;
  top: 45%;
  transform: rotate(133deg);
}

.pin {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(23, 33, 29, 0.15);
}

.pin-start { left: 20%; top: 35%; }
.pin-mid { left: 56%; top: 44%; background: var(--red); }
.pin-end { right: 20%; bottom: 27%; background: var(--green); }

.journey-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 2px;
  padding: 20px 22px;
  background: rgba(255, 250, 240, 0.92);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.journey-note strong { font-size: 1.2rem; }
.journey-note > span:last-child { opacity: 0.65; }
.journey-label {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-note {
  max-width: 1500px;
  width: 100%;
  margin: 32px auto 0;
  color: rgba(23,33,29,.56);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  padding: 18px 24px;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
}

.intro-strip p {
  margin: 0;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.intro-strip span { color: var(--yellow); }

.section {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 140px) clamp(24px, 5vw, 80px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-copy h2,
.follow-section h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5.1vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 600;
}

.section-heading > p:last-child {
  max-width: 580px;
  color: rgba(23,33,29,.66);
}

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

.trip-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(23,33,29,.08);
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(23,33,29,.06);
}

.trip-art {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.trip-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.45), transparent 25%),
    linear-gradient(to top, rgba(0,0,0,.13), transparent 60%);
}

.trip-art.water {
  background:
    linear-gradient(160deg, transparent 0 45%, rgba(246,241,231,.75) 46% 54%, transparent 55%),
    linear-gradient(18deg, #477a7f 0 46%, #8fc0c2 47%);
}

.trip-art.coast {
  background:
    radial-gradient(circle at 78% 22%, #efd06d 0 8%, transparent 8.5%),
    linear-gradient(165deg, transparent 0 47%, #d9c69b 48% 62%, transparent 63%),
    linear-gradient(#7aa7b7 0 55%, #3f6f74 56%);
}

.trip-art.mountain {
  background:
    linear-gradient(145deg, transparent 0 42%, #304d40 43% 57%, transparent 58%),
    linear-gradient(215deg, transparent 0 38%, #4c6b58 39% 59%, transparent 60%),
    linear-gradient(#a8c0bc 0 55%, #d6c7a2 56%);
}

.trip-number {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
}

.trip-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trip-badge.alt { background: var(--yellow); }
.trip-badge.warm { background: #e5b9a9; }

.trip-content { padding: 28px; }
.trip-kicker,
.journal-meta {
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trip-content h3,
.journal-copy h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.trip-content p:not(.trip-kicker) {
  color: rgba(23,33,29,.7);
  min-height: 104px;
}

.trip-content a {
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}

.quote-section {
  padding: 24px clamp(24px, 5vw, 80px);
}

.quote-card {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px);
  border-radius: 28px;
  background: var(--ink);
  color: var(--cream);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.coming-soon {
  padding-bottom: 8px;
  font-size: .9rem;
  font-weight: 600;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.journal-card {
  display: grid;
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
}

.journal-card.large {
  grid-row: span 2;
}

.journal-image {
  min-height: 230px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.journal-card.large .journal-image { min-height: 420px; }

.journal-image span {
  position: relative;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.65);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.image-boat {
  background:
    linear-gradient(178deg, transparent 0 47%, rgba(255,255,255,.4) 48% 49%, transparent 50%),
    linear-gradient(#88b2bd 0 58%, #3d7279 59%);
}

.image-food {
  background:
    radial-gradient(circle at center, #ddb967 0 24%, #b84f3d 25% 34%, #f1e3bf 35% 52%, #8ca276 53%);
}

.image-map {
  background:
    linear-gradient(30deg, transparent 0 48%, rgba(255,255,255,.24) 49% 51%, transparent 52%),
    linear-gradient(120deg, #cfb786, #5e857f);
}

.journal-copy { padding: 26px 28px 30px; }
.journal-copy p:last-child { color: rgba(23,33,29,.66); }

.about-section { padding-top: 30px; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(#e3c97d 0 42%, #c97353 43% 55%, #396a70 56%);
}

.sun {
  position: absolute;
  width: 130px;
  height: 130px;
  right: 18%;
  top: 14%;
  border-radius: 50%;
  background: #ffe8a3;
}

.horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 32%;
  height: 90px;
  border-radius: 50%;
  background: rgba(31,73,66,.44);
}

.boat-shape {
  position: absolute;
  left: 28%;
  bottom: 23%;
  width: 45%;
  height: 26px;
  border-radius: 0 0 70% 70%;
  background: var(--cream);
  transform: rotate(-3deg);
}

.boat-shape::before {
  content: "";
  position: absolute;
  left: 38%;
  bottom: 24px;
  width: 4px;
  height: 110px;
  background: var(--cream);
}

.boat-shape::after {
  content: "";
  position: absolute;
  left: 39%;
  bottom: 46px;
  width: 95px;
  height: 75px;
  background: rgba(255,250,240,.92);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.about-copy { max-width: 700px; }
.about-copy p:not(.eyebrow) {
  color: rgba(23,33,29,.72);
  font-size: 1.06rem;
}

.follow-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 60px;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--red);
  color: white;
}

.follow-section > div { max-width: 820px; }
.follow-section .eyebrow { color: var(--cream); opacity: .8; }
.follow-section p:last-child { max-width: 650px; opacity: .85; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 34px clamp(24px, 5vw, 80px);
  background: var(--green-dark);
  color: var(--cream);
  font-size: .84rem;
}

.site-footer p { margin: 0; opacity: .7; }
.footer-brand .brand-mark { border-color: var(--cream); }

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 480px; }

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

  .trip-card.featured { grid-column: 1 / -1; }

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

  .journal-card.large { grid-row: auto; }

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: 79px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .site-nav a::after { display: none; }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  h1 { font-size: clamp(3.5rem, 16vw, 5.6rem); }
  .hero-card { min-height: 400px; border-radius: 22px 22px 90px 22px; }

  .intro-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .trip-grid { grid-template-columns: 1fr; }
  .trip-card.featured { grid-column: auto; }

  .split-heading {
    display: block;
  }

  .quote-card {
    padding: 56px 28px;
  }
}

/* Trip detail pages */
.trip-nav { flex-wrap: wrap; }

.trip-hero {
  max-width: 1500px;
  margin: 0 auto;
  min-height: calc(100vh - 79px);
  padding: clamp(60px, 8vw, 110px) clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.trip-hero-copy h1 {
  font-size: clamp(4rem, 7.2vw, 7.7rem);
}

.trip-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.trip-stat-row > div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.trip-stat-row strong,
.trip-stat-row span {
  display: block;
}

.trip-stat-row strong { font-size: 1rem; }
.trip-stat-row span {
  margin-top: 3px;
  font-size: .78rem;
  color: rgba(23,33,29,.56);
}

.trip-hero-art {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 150px 30px;
  background: linear-gradient(#91bec6 0 40%, #5d8f98 41% 100%);
  box-shadow: var(--shadow);
}

.trip-water {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -40px;
  height: 52%;
  background:
    repeating-linear-gradient(175deg, rgba(255,255,255,.18) 0 2px, transparent 2px 18px),
    #477a83;
}

.trip-island {
  position: absolute;
  background: #315445;
  border-radius: 55% 45% 20% 18%;
  box-shadow: inset 0 16px 0 rgba(255,255,255,.07);
}

.island-a { width: 390px; height: 170px; left: -70px; bottom: 34%; transform: rotate(7deg); }
.island-b { width: 330px; height: 135px; right: -40px; bottom: 30%; transform: rotate(-9deg); }
.island-c { width: 170px; height: 78px; left: 44%; bottom: 42%; }

.trip-route-line {
  position: absolute;
  left: 23%;
  top: 22%;
  width: 52%;
  height: 47%;
  border: 4px dashed rgba(255,250,240,.9);
  border-color: rgba(255,250,240,.9) transparent transparent rgba(255,250,240,.9);
  border-radius: 50%;
  transform: rotate(25deg);
}

.trip-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid var(--cream);
}
.dot-a { left: 20%; top: 31%; }
.dot-b { left: 53%; top: 41%; background: var(--red); }
.dot-c { right: 19%; top: 57%; background: var(--green); }

.trip-boat-icon {
  position: absolute;
  left: 49%;
  top: 34%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.35rem;
  box-shadow: 0 8px 25px rgba(0,0,0,.14);
}

.trip-art-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px 22px;
  background: rgba(255,250,240,.92);
  border-radius: 18px;
  display: grid;
  gap: 2px;
}

.trip-art-caption span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.trip-art-caption strong { font-size: 1.18rem; }
.trip-art-caption small { color: rgba(23,33,29,.62); }

.route-story {
  position: relative;
  max-width: 1000px;
}

.route-story::before {
  content: "";
  position: absolute;
  left: 126px;
  top: 16px;
  bottom: 20px;
  width: 1px;
  background: rgba(23,33,29,.2);
}

.route-stop {
  display: grid;
  grid-template-columns: 100px 28px 1fr;
  gap: 14px;
  padding: 0 0 46px;
  position: relative;
}

.route-day {
  padding-top: 3px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: right;
}

.route-marker {
  width: 13px;
  height: 13px;
  margin: 4px auto 0;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--green);
  z-index: 1;
}

.route-stop h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.06;
}

.route-stop p {
  max-width: 760px;
  color: rgba(23,33,29,.7);
}

.highlight-stop h3 { color: var(--green); }
.highlight-stop .route-marker {
  background: var(--yellow);
  box-shadow: 0 0 0 5px var(--paper);
}

.trip-break {
  margin: 0 clamp(24px, 5vw, 80px);
  padding: clamp(70px, 9vw, 130px);
  border-radius: 28px;
  background: var(--green);
  color: var(--cream);
}

.trip-break .eyebrow { color: var(--yellow); }

.trip-break blockquote {
  max-width: 1100px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

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

.chapter-card {
  min-height: 360px;
  padding: 30px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(23,33,29,.08);
  display: flex;
  flex-direction: column;
}

.chapter-no {
  margin-bottom: auto;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  color: rgba(23,33,29,.18);
}

.chapter-card h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.chapter-card p:last-child { color: rgba(23,33,29,.68); }
.featured-chapter {
  background: var(--ink);
  color: var(--cream);
}
.featured-chapter .chapter-no { color: rgba(255,250,240,.18); }
.featured-chapter p:last-child { color: rgba(255,250,240,.72); }

.favorites-section { padding-top: 30px; }

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(23,33,29,.12);
  border: 1px solid rgba(23,33,29,.12);
}

.favorites-grid > div {
  padding: 28px 30px;
  background: var(--paper);
}

.favorites-grid span,
.favorites-grid strong {
  display: block;
}

.favorites-grid span {
  margin-bottom: 5px;
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.favorites-grid strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
}

.next-trip-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 5vw, 80px);
  background: var(--red);
  color: white;
}
.next-trip-section > div { max-width: 850px; }
.next-trip-section .eyebrow { color: var(--cream); opacity: .8; }
.next-trip-section h2 {
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.04em;
}
.next-trip-section p:last-child { max-width: 690px; opacity: .85; }

@media (max-width: 980px) {
  .trip-hero { grid-template-columns: 1fr; }
  .trip-hero-art { min-height: 500px; }
  .chapter-grid { grid-template-columns: 1fr; }
  .next-trip-section { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .trip-nav { display: none; }
  .trip-stat-row { grid-template-columns: 1fr; }
  .trip-hero-art { min-height: 420px; border-radius: 22px 22px 90px 22px; }
  .route-story::before { left: 17px; }
  .route-stop { grid-template-columns: 34px 1fr; gap: 10px; }
  .route-day {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }
  .route-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .route-stop > div:last-child { grid-column: 2; }
  .favorites-grid { grid-template-columns: 1fr; }
}

.trip-hero-photo {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px 30px 150px 30px;
  background: #d9ddd6;
  box-shadow: var(--shadow);
}

.trip-hero-photo img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trip-hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  background: rgba(255,250,240,.92);
  border-radius: 16px;
  display: grid;
  gap: 3px;
}

.trip-hero-photo figcaption span {
  color: var(--red);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.trip-hero-photo figcaption strong {
  font-size: 1.05rem;
}

.trip-photo-pair {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  margin-top: 28px;
}

.trip-photo-pair figure {
  margin: 0;
}

.trip-photo-pair img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.trip-photo-pair figure:first-child img {
  object-position: center 35%;
}

.trip-photo-pair figcaption {
  margin-top: 8px;
  color: rgba(23,33,29,.58);
  font-size: .78rem;
}

@media (max-width: 980px) {
  .trip-hero-photo { min-height: 500px; }
  .trip-hero-photo img { height: 500px; }
}

@media (max-width: 720px) {
  .trip-hero-photo { min-height: 420px; border-radius: 22px 22px 90px 22px; }
  .trip-hero-photo img { height: 420px; }
  .trip-photo-pair { grid-template-columns: 1fr; }
  .trip-photo-pair img { height: auto; max-height: 520px; }
}


/* Summer 2026 story page v2 */
.trip-page-v2{background:#f5f0e6}.trip-page-v2 main{overflow:hidden}
.story-hero{max-width:1540px;min-height:calc(100vh - 79px);margin:0 auto;padding:clamp(52px,7vw,104px) clamp(22px,5vw,76px);display:grid;grid-template-columns:.86fr 1.14fr;gap:clamp(34px,6vw,88px);align-items:center}
.story-hero-copy h1{font-size:clamp(4rem,7vw,7.8rem)}.story-hero-image{position:relative;margin:0;min-height:640px;overflow:hidden;border-radius:28px 28px 120px 28px;box-shadow:var(--shadow);cursor:zoom-in;background:#d9ddd6}.story-hero-image img{width:100%;height:640px;object-fit:cover;display:block}.story-hero-image figcaption{position:absolute;left:22px;right:22px;bottom:22px;padding:18px 20px;border-radius:16px;background:rgba(255,250,240,.92);backdrop-filter:blur(10px);display:grid;gap:3px}.story-hero-image figcaption span{color:var(--red);font-size:.68rem;font-weight:700;letter-spacing:.14em}.story-hero-image figcaption strong{font-size:1.05rem}
.chapter-nav{position:sticky;top:79px;z-index:14;display:flex;gap:0;overflow-x:auto;max-width:1540px;margin:0 auto;padding:0 clamp(22px,5vw,76px);background:rgba(245,240,230,.94);backdrop-filter:blur(12px);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.chapter-nav a{flex:1 0 auto;padding:16px 18px;font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;white-space:nowrap}.chapter-nav a span{color:var(--red);margin-right:6px}
.trip-intro{max-width:1260px;margin:0 auto;padding:clamp(84px,10vw,150px) clamp(22px,5vw,76px)}.trip-intro blockquote{max-width:1100px;margin:0 0 34px;font-family:"Playfair Display",serif;font-size:clamp(2.6rem,5.3vw,5.8rem);line-height:1.02;letter-spacing:-.045em}.intro-copy{max-width:760px;font-size:1.08rem;color:rgba(23,33,29,.7)}
.trip-chapter{max-width:1540px;margin:0 auto;padding:clamp(80px,9vw,138px) clamp(22px,5vw,76px);border-top:1px solid rgba(23,33,29,.11)}.chapter-princess{background:#e9eee7;max-width:none;padding-left:max(clamp(22px,5vw,76px),calc((100vw - 1540px)/2 + 76px));padding-right:max(clamp(22px,5vw,76px),calc((100vw - 1540px)/2 + 76px))}.chapter-heading{display:grid;grid-template-columns:100px minmax(0,760px);gap:26px;margin-bottom:46px;align-items:start}.chapter-index{font-family:"Playfair Display",serif;font-size:4rem;line-height:1;color:rgba(23,33,29,.16)}.chapter-heading h2{margin-bottom:14px;font-family:"Playfair Display",serif;font-size:clamp(3rem,5.5vw,6rem);line-height:.95;letter-spacing:-.045em}.chapter-heading p:last-child{color:rgba(23,33,29,.68);font-size:1.04rem;max-width:700px}
.chapter-features{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin-bottom:22px}.chapter-features .chapter-feature-photo:only-child{grid-column:1/-1}.chapter-feature-photo{margin:0;position:relative;overflow:hidden;min-height:520px;border-radius:22px;background:#ddd;cursor:zoom-in}.chapter-feature-photo img{width:100%;height:560px;object-fit:cover;display:block;transition:transform .35s ease}.chapter-feature-photo:hover img,.gallery-photo:hover img{transform:scale(1.015)}.chapter-feature-photo figcaption{position:absolute;left:18px;bottom:18px;max-width:72%;padding:12px 14px;background:rgba(255,250,240,.9);border-radius:12px;font-size:.8rem}.portrait-feature img{object-position:center 40%}
.photo-gallery{columns:4 250px;column-gap:16px}.gallery-photo{break-inside:avoid;margin:0 0 16px;border-radius:16px;overflow:hidden;background:#ddd;cursor:zoom-in}.gallery-photo img{width:100%;height:auto;display:block;transition:transform .35s ease}.gallery-photo figcaption{padding:9px 11px;font-size:.75rem;color:rgba(23,33,29,.62);background:#fffaf0}
.trip-favorites-v2{max-width:1540px;margin:0 auto;padding:clamp(90px,10vw,150px) clamp(22px,5vw,76px);display:grid;grid-template-columns:.75fr 1.25fr;gap:clamp(38px,7vw,100px)}.trip-favorites-v2 h2{font-family:"Playfair Display",serif;font-size:clamp(3rem,5vw,5.4rem);line-height:.96;letter-spacing:-.04em}.memory-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;border:1px solid var(--line);background:var(--line)}.memory-grid article{padding:26px;background:var(--paper)}.memory-grid span{display:block;color:var(--red);font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.memory-grid strong{display:block;margin:6px 0 8px;font-family:"Playfair Display",serif;font-size:1.45rem}.memory-grid p{margin:0;color:rgba(23,33,29,.65);font-size:.9rem}
.closing-photo{position:relative;max-width:1540px;margin:0 auto clamp(40px,5vw,80px);min-height:760px;overflow:hidden;cursor:zoom-in}.closing-photo img{width:100%;height:760px;object-fit:cover;object-position:center 44%;display:block}.closing-copy{position:absolute;left:clamp(22px,5vw,76px);bottom:clamp(22px,5vw,70px);max-width:670px;padding:28px 30px;border-radius:18px;background:rgba(20,54,45,.9);color:white;backdrop-filter:blur(12px)}.closing-copy .eyebrow{color:var(--yellow)}.closing-copy h2{margin-bottom:12px;font-family:"Playfair Display",serif;font-size:clamp(2.7rem,4.8vw,5rem);line-height:.95;letter-spacing:-.04em}.closing-copy p:last-child{margin:0;opacity:.82}
.photo-lightbox{position:fixed;inset:0;z-index:100;display:none;align-items:center;justify-content:center;padding:26px 70px;background:rgba(10,16,14,.94)}.photo-lightbox.open{display:flex}.photo-lightbox figure{margin:0;max-width:min(92vw,1500px);max-height:90vh;display:grid;gap:10px}.photo-lightbox img{max-width:100%;max-height:82vh;object-fit:contain;border-radius:10px}.photo-lightbox figcaption{color:white;text-align:center;font-size:.88rem;opacity:.8}.lightbox-close,.lightbox-prev,.lightbox-next{position:absolute;border:0;background:rgba(255,255,255,.1);color:white;cursor:pointer;border-radius:50%;display:grid;place-items:center}.lightbox-close{top:18px;right:18px;width:44px;height:44px;font-size:2rem}.lightbox-prev,.lightbox-next{top:50%;transform:translateY(-50%);width:48px;height:48px;font-size:2.1rem}.lightbox-prev{left:14px}.lightbox-next{right:14px}
@media(max-width:980px){.story-hero{grid-template-columns:1fr}.story-hero-image,.story-hero-image img{min-height:0;height:560px}.chapter-heading{grid-template-columns:70px 1fr}.chapter-features{grid-template-columns:1fr}.chapter-feature-photo,.chapter-feature-photo img{min-height:0;height:auto;max-height:760px}.trip-favorites-v2{grid-template-columns:1fr}}
@media(max-width:720px){.trip-page-v2 .trip-nav{display:none}.chapter-nav{top:79px;padding:0 10px}.chapter-nav a{padding:13px 12px;font-size:.7rem}.story-hero-image,.story-hero-image img{height:460px}.chapter-heading{grid-template-columns:1fr;gap:10px}.chapter-index{font-size:2.7rem}.photo-gallery{columns:2 140px;column-gap:10px}.gallery-photo{margin-bottom:10px;border-radius:12px}.memory-grid{grid-template-columns:1fr}.closing-photo,.closing-photo img{min-height:620px;height:620px}.closing-copy{right:18px;left:18px}.photo-lightbox{padding:56px 14px}.lightbox-prev,.lightbox-next{top:auto;bottom:14px;transform:none}}


.summer-2026-card{background-image:linear-gradient(to top,rgba(0,0,0,.18),rgba(0,0,0,.02)),url("images/summer-2026/IMG_6698.jpg")!important;background-size:cover!important;background-position:center!important}.summer-2026-card::after{background:linear-gradient(to top,rgba(0,0,0,.25),transparent 60%)}
