:root {
  color-scheme: light dark;
  --paper: #faf6ef;
  --paper-soft: #f4eadf;
  --ink: #2b2926;
  --muted: #786f64;
  --line: rgba(43, 41, 38, .16);
  --forest: #27392f;
  --terracotta: #b65a3a;
  --heart: #b24130;
  --shadow: 0 18px 48px rgba(43, 41, 38, .12);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Optima, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #211f1c;
    --paper-soft: #2c2924;
    --ink: #fbf1e2;
    --muted: #c9bba9;
    --line: rgba(250, 246, 239, .18);
    --forest: #9eb28c;
    --terracotta: #d9825e;
    --shadow: 0 18px 48px rgba(0, 0, 0, .34);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: linear-gradient(180deg, var(--paper), var(--paper-soft) 52%, var(--paper));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: .65rem .9rem;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #1f201c;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 20, 16, .54), rgba(25, 20, 16, .1) 58%),
    linear-gradient(0deg, rgba(25, 20, 16, .58), transparent 46%);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  width: min(100%, 92rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5.5rem);
  color: #fff7ec;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.hero__eyebrow,
.section-kicker {
  margin: 0 0 .8rem;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: #ffd9c1;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .82;
}

.hero p:last-of-type {
  max-width: 46rem;
  margin: clamp(1rem, 2.4vw, 1.8rem) 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
}

.scroll-cue {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 4rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 247, 236, .6);
  border-radius: 999px;
}

.scroll-cue span {
  width: .45rem;
  height: .45rem;
  border-right: 2px solid #fff7ec;
  border-bottom: 2px solid #fff7ec;
  transform: rotate(45deg);
  animation: cue 1.8s ease-in-out infinite;
}

.story-section {
  padding: clamp(4rem, 9vw, 9rem) clamp(1rem, 4vw, 5rem);
}

.story-section--road {
  background: var(--paper-soft);
  background: color-mix(in srgb, var(--paper-soft) 64%, var(--paper));
}

.story-section--destinations {
  background: linear-gradient(180deg, transparent, rgba(39, 57, 47, .08), transparent);
}

.section-shell {
  width: min(100%, 96rem);
  margin-inline: auto;
}

h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .96;
}

h2 {
  max-width: 58rem;
  overflow-wrap: anywhere;
  font-size: 2.6rem;
}

.section-intro {
  max-width: 58rem;
  margin: clamp(1rem, 2vw, 1.6rem) 0 clamp(2rem, 4.5vw, 4.5rem);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.36;
}

.gallery {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.masonry {
  columns: 1;
  column-gap: clamp(.9rem, 2vw, 1.4rem);
}

.photo-card {
  position: relative;
  break-inside: avoid;
  margin: 0 0 clamp(.9rem, 2vw, 1.4rem);
}

.photo-card__button,
.travel-thumb,
.destination-card {
  border: 0;
  color: inherit;
}

.photo-card__button,
.travel-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.photo-frame {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(120, 111, 100, .18);
  background: color-mix(in srgb, var(--muted) 18%, transparent);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: auto;
  transition: transform .7s ease, filter .7s ease;
}

.photo-card figcaption {
  margin: .45rem .1rem 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.3;
}

.photo-card__button:hover img,
.photo-card__button:focus-visible img,
.destination-card:hover img,
.travel-thumb:focus-visible img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.025);
}

.road-divider {
  margin: clamp(1.6rem, 3vw, 3rem) 0 clamp(2rem, 4vw, 4rem);
  color: var(--terracotta);
}

.road-divider svg {
  width: 100%;
  height: clamp(4rem, 10vw, 7rem);
}

.road-divider path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
  opacity: .72;
}

.road-marker path,
.heart-divider path,
.footer-heart path {
  fill: none;
  stroke: var(--heart);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.2rem, 5vw, 4.5rem);
}

.destination-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
  padding: .8rem 0 1.2rem;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.destination-card h3 {
  font-size: 1.8rem;
}

.destination-card p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.destination-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(5.6rem, 8vw, 8rem);
  gap: .35rem;
  overflow: hidden;
  border-radius: 4px;
  background: var(--line);
}

.travel-thumb {
  overflow: hidden;
  min-width: 0;
}

.travel-thumb:first-child {
  grid-row: span 2;
}

.travel-thumb:only-child,
.travel-thumb:nth-last-child(2):first-child {
  grid-column: span 2;
}

.travel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.before-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.6rem, 1.4vw, 1rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}

.before-strip .photo-card {
  margin: 0;
}

.before-strip .photo-frame {
  aspect-ratio: 3 / 2;
}

.before-strip img {
  height: 100%;
  object-fit: cover;
}

.heart-divider {
  width: min(5rem, 18vw);
  margin: 0 auto clamp(1rem, 3vw, 2rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 7vw, 5.5rem);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-heart {
  width: 1.8rem;
  flex: 0 0 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(2.8rem, 8vw) minmax(0, 1fr) minmax(2.8rem, 8vw);
  align-items: center;
  background: rgba(20, 18, 15, .93);
  color: #fff7ec;
  padding: clamp(.75rem, 2vw, 1.5rem);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: 1rem;
  min-width: 0;
  margin: 0;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: min(78svh, 58rem);
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, .45);
}

.lightbox__figure figcaption {
  max-width: 54rem;
  color: #f7dfc8;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.lightbox button {
  border: 1px solid rgba(255, 247, 236, .28);
  border-radius: 999px;
  background: rgba(255, 247, 236, .08);
  color: #fff7ec;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  right: clamp(.75rem, 2vw, 1.5rem);
  top: clamp(.75rem, 2vw, 1.5rem);
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav {
  width: clamp(2.6rem, 5vw, 4rem);
  height: clamp(2.6rem, 5vw, 4rem);
  justify-self: center;
  font-size: 2.2rem;
  line-height: .6;
}

.lightbox__nav--prev {
  grid-column: 1;
}

.lightbox__nav--next {
  grid-column: 3;
}

.reveal {
  opacity: 0;
  transform: translateY(1.35rem);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (min-width: 700px) {
  .photo-card figcaption {
    position: absolute;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    margin: 0;
    border-radius: 4px;
    background: rgba(30, 24, 18, .58);
    color: #fff7ec;
    padding: .45rem .55rem;
    opacity: 0;
    transform: translateY(.35rem);
    transition: opacity .25s ease, transform .25s ease;
  }

  .photo-card:hover figcaption,
  .photo-card:focus-within figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .masonry {
    columns: 2;
  }
}

@media (min-width: 760px) {
  body {
    font-size: 1.03125rem;
  }

  .hero h1 {
    font-size: 7rem;
  }

  .hero p:last-of-type,
  .section-intro {
    font-size: 1.55rem;
  }

  h2 {
    font-size: 4.8rem;
  }

  .destination-card h3 {
    font-size: 2.1rem;
  }

  .lightbox__figure figcaption {
    font-size: 1.25rem;
  }

  .lightbox__nav {
    font-size: 3rem;
  }
}

@media (min-width: 980px) {
  .masonry {
    columns: 3;
  }
}

@media (min-width: 1160px) {
  .hero h1 {
    font-size: 10rem;
  }

  h2 {
    font-size: 6rem;
  }
}

@media (min-width: 1540px) {
  .masonry {
    columns: 4;
  }

  body {
    font-size: 1.0625rem;
  }

  .hero h1 {
    font-size: 12rem;
  }

  h2 {
    font-size: 7rem;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 92svh;
  }

  .hero__content {
    padding-bottom: 2rem;
  }

  .before-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .lightbox__figure {
    grid-column: 1 / -1;
    align-self: center;
  }

  .lightbox__nav {
    align-self: end;
    margin-top: 1rem;
  }

  .lightbox__nav--prev {
    grid-column: 1;
    justify-self: start;
  }

  .lightbox__nav--next {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .story-section {
    padding-inline: .8rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes cue {
  0%, 100% {
    transform: translateY(-.25rem) rotate(45deg);
  }

  50% {
    transform: translateY(.25rem) rotate(45deg);
  }
}
