:root {
  color-scheme: light;
  --ink: #1b211c;
  --muted: #5d655d;
  --paper: #f7f3eb;
  --panel: #fffdf8;
  --line: #d8d0c2;
  --forest: #243d2b;
  --moss: #6b7b48;
  --lake: #5d8791;
  --clay: #b66a42;
  --gold: #c7a348;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 20, 18, 0.08), rgba(15, 20, 18, 0.72)),
    linear-gradient(90deg, rgba(15, 20, 18, 0.64), rgba(15, 20, 18, 0.1));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 8vh;
  color: #fffdf8;
}

.hero__content p,
.section-heading p {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__content p {
  color: #f3c872;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__budget {
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  border-left: 5px solid #f3c872;
  border-radius: 8px;
  padding: 13px 18px;
  background: rgba(20, 25, 22, 0.52);
  color: #fffdf8;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero__budget span,
.hero__budget strong {
  display: block;
}

.hero__budget span {
  color: #f3c872;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__budget strong {
  margin-top: 3px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.08;
}

.hero__facts span,
.area-tags span,
.origin-list span,
.check-grid span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  font-weight: 750;
  overflow-wrap: anywhere;
  white-space: normal;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

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

.intro-grid article,
.route-board,
.brief-grid article,
.budget-origin-grid article,
.budget-box,
.day-card,
.van-card,
.gallery-card,
.tile-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(61, 48, 33, 0.07);
}

.intro-grid article {
  padding: 26px;
}

.intro-grid h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

.section-heading span {
  display: block;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
}

.budget-top {
  padding-bottom: 42px;
}

.budget-origin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.budget-origin-grid article {
  padding: 20px;
}

.budget-origin-grid h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

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

.budget-origin-grid strong {
  color: var(--forest);
  font-size: 1.45rem;
  line-height: 1.08;
}

.budget-origin-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.budget-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.original-brief {
  padding-top: 38px;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.brief-grid article {
  padding: 24px;
}

.brief-grid h3 {
  margin-bottom: 10px;
}

.route-board {
  padding: 26px;
}

.origin-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.origin-list span,
.check-grid span,
.area-tags span {
  border-color: var(--line);
  background: #f8efe1;
  color: var(--ink);
}

.route-flow {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(60px, 0.45fr) minmax(160px, 1fr) minmax(60px, 0.45fr) minmax(160px, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.route-node {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 2px solid var(--forest);
  border-radius: 8px;
  padding: 12px;
  color: var(--forest);
  font-weight: 850;
  text-align: center;
}

.route-node--main {
  border-color: var(--clay);
  color: var(--clay);
}

.route-line {
  height: 2px;
  position: relative;
  background: var(--moss);
}

.route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--moss);
  border-right: 2px solid var(--moss);
  transform: translateY(-50%) rotate(45deg);
}

.return-flow {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.return-flow strong {
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.gallery-card figure,
.area-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.gallery-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
}

.gallery-card--tall {
  align-self: stretch;
}

.gallery-card img {
  height: 220px;
  object-fit: cover;
}

.gallery-card--tall img {
  height: 235px;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-band {
  margin-top: 22px;
  border-left: 5px solid var(--gold);
  padding: 15px 18px;
  background: #fff9ea;
  font-weight: 780;
}

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

.area-grid img {
  height: 280px;
  object-fit: cover;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tile-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  text-decoration: none;
}

.tile-map img {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  max-width: 170px;
  border: 2px solid #fffdf8;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--clay);
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  box-shadow: 0 8px 18px rgba(23, 21, 18, 0.24);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 10px;
  height: 10px;
  background: inherit;
  border-right: 2px solid #fffdf8;
  border-bottom: 2px solid #fffdf8;
  transform: translateX(-50%) rotate(45deg);
}

.map-pin--main {
  background: var(--forest);
}

/*
.map-section iframe {
  width: 100%;
  height: 520px;
}
*/

.van-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
}

.van-card .gallery-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.van-card .van-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px;
  font-size: 1.08rem;
}

.itinerary {
  display: grid;
  gap: 18px;
}

.day-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 28px;
}

.day-card--image {
  grid-template-columns: 96px minmax(0, 1fr) 380px;
}

.day-card--image .gallery-card {
  align-self: stretch;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.day-card--image .gallery-card img {
  height: 210px;
}

.day-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fffdf8;
  font-weight: 900;
  text-align: center;
}

.budget-checklist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.budget-box {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.budget-box strong {
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--forest);
}

.booking-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.booking-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px 16px;
  font-weight: 720;
}

.prompt-source {
  padding-top: 28px;
}

.prompt-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(61, 48, 33, 0.07);
}

.prompt-box h3 {
  margin: 26px 0 10px;
  color: var(--forest);
}

.prompt-box h3:first-child {
  margin-top: 0;
}

.prompt-box p {
  max-width: 920px;
  margin-bottom: 10px;
}

.prompt-box ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.prompt-box li {
  padding-left: 4px;
}

.credits {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.credits h2 {
  font-size: 1.2rem;
}

@media (max-width: 860px) {
  .hero {
    min-height: 82vh;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 48px 0;
  }

  .hero__content {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }

  .hero__facts span {
    max-width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__facts span:last-child {
    grid-column: auto;
  }

  .hero__budget {
    width: 100%;
  }

  .intro-grid,
  .split,
  .area-grid,
  .brief-grid,
  .budget-origin-grid,
  .van-card,
  .budget-checklist,
  .day-card,
  .day-card--image {
    grid-template-columns: 1fr;
  }

  .route-flow {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 2px;
    height: 38px;
    justify-self: center;
  }

  .route-line::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .gallery-card,
  .gallery-card--tall,
  .day-card--image .gallery-card {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .gallery-card--tall img,
  .area-grid img,
  .day-card--image .gallery-card img {
    height: 280px;
    min-height: 0;
  }

  .day-card {
    padding: 22px;
    gap: 18px;
  }

  .prompt-box {
    padding: 22px;
  }

  .tile-map {
    aspect-ratio: 1 / 1;
  }

  .map-pin {
    max-width: 118px;
    padding: 5px 8px;
    font-size: 0.68rem;
  }
}
