:root {
  --navy: #1d2a46;
  --navy-2: #273957;
  --ink: #202b38;
  --cream: #f4e8d1;
  --paper: #fbf6ec;
  --olive: #56644e;
  --olive-soft: #a9b49c;
  --terracotta: #c97348;
  --orange: #f15a22;
  --gold: #d69d27;
  --blush: #d7b4b0;
  --sky: #c9dfef;
  --oak: #946d46;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgb(29 42 70 / 14%);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--terracotta); color: white; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .8rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--navy);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(29 42 70 / 92%);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .14em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: 0;
}

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  position: relative;
  padding: .4rem 0;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .07em;
  opacity: .76;
  transition: opacity .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--terracotta);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  color: white;
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

main { overflow: clip; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.display,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.display { font-size: clamp(3.7rem, 7.9vw, 6.6rem); line-height: .88; }
.display span { display: block; white-space: nowrap; }
.page-title { font-size: clamp(3.4rem, 6.8vw, 6.3rem); line-height: .92; }
.section-title { font-size: clamp(2.7rem, 4.8vw, 4.7rem); line-height: .96; }
.lede {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #b9623c; }
.button.secondary { border-color: currentColor; background: transparent; color: inherit; }
.button.secondary:hover { background: rgb(255 255 255 / 8%); }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  background: var(--navy);
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  left: min(-22vw, -250px);
  bottom: min(-29vw, -390px);
  border: 1px solid rgb(244 232 209 / 20%);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: 5rem 0;
}
.hero-copy .eyebrow { color: var(--terracotta); }
.hero-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.hero-details::before { content: ""; width: 70px; height: 3px; background: var(--terracotta); }
.hero-venue { margin-top: .75rem; color: #dce5ef; font-size: 1rem; }

.photo-stack { position: relative; width: min(100%, 440px); justify-self: end; }
.photo-frame {
  position: relative;
  z-index: 2;
  padding: .75rem;
  background: var(--cream);
  box-shadow: 0 28px 70px rgb(0 0 0 / 35%);
  transform: rotate(1.5deg);
}
.photo-frame img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.photo-tab {
  position: absolute;
  z-index: 3;
  right: -.65rem;
  bottom: -.65rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.countdown { background: var(--cream); }
.countdown-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}
.countdown-cells { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.count-cell {
  min-height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 35px rgb(29 42 70 / 8%);
}
.count-cell strong { font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4.1rem); line-height: 1; }
.count-cell span { margin-top: .55rem; font-size: .65rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; opacity: .58; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.route-card {
  position: relative;
  min-height: 250px;
  padding: 1.7rem;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.route-card:hover { transform: translateY(-6px); box-shadow: 0 28px 80px rgb(29 42 70 / 20%); }
.route-card:nth-child(1) { background: var(--sky); }
.route-card:nth-child(2) { background: var(--gold); }
.route-card:nth-child(3) { background: var(--blush); }
.route-card:nth-child(4) { background: var(--olive); color: white; }
.route-card:nth-child(5) { background: var(--navy); color: white; }
.route-card:nth-child(6) { background: var(--terracotta); color: white; }
.route-number { font-size: .66rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; opacity: .65; }
.route-card h3 { position: absolute; left: 1.7rem; bottom: 1.45rem; margin: 0; font-family: var(--serif); font-size: 2.15rem; letter-spacing: -.04em; }
.route-arrow { position: absolute; right: 1.7rem; top: 1.5rem; font-size: 1.35rem; }

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: clamp(5rem, 10vw, 8rem) 0 4.6rem;
  background: var(--cream);
}
.page-hero.dark { background: var(--navy); color: var(--cream); }
.page-hero.olive { background: var(--olive); color: white; }
.page-hero::after {
  content: attr(data-page);
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  bottom: 2rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .55;
}
.page-hero .lede { margin: 1.7rem 0 0; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.info-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.info-card h2, .info-card h3 { margin-top: 0; }
.info-card h2 { font-family: var(--serif); font-size: 2.6rem; letter-spacing: -.04em; }
.info-card p { line-height: 1.65; }
.info-card + .info-card { margin-top: 1rem; }

.timeline { position: relative; display: grid; gap: 1rem; }
.timeline::before { content: ""; position: absolute; left: 112px; top: 4rem; bottom: 4rem; width: 2px; background: rgb(29 42 70 / 12%); }
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 132px;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 35px rgb(29 42 70 / 8%);
}
.timeline-time { display: grid; place-items: center; padding: 1rem; background: var(--navy); color: white; text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.timeline-copy { padding: 1.8rem 2rem; }
.timeline-copy h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.timeline-copy p { margin: 0; line-height: 1.5; color: #52606d; }

.travel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.travel-card { min-height: 330px; padding: 2rem; border-radius: var(--radius); }
.travel-card:nth-child(1) { background: var(--sky); }
.travel-card:nth-child(2) { background: var(--gold); }
.travel-card:nth-child(3) { background: var(--cream); }
.travel-icon { margin-bottom: 3rem; font-size: 2rem; }
.travel-card h2 { font-family: var(--serif); font-size: 2.2rem; letter-spacing: -.04em; }
.travel-card p { line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-size: .8rem; font-weight: 850; letter-spacing: .04em; }

.palette-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.swatch { min-height: 230px; display: flex; align-items: end; padding: 1.5rem; border-radius: var(--radius); font-weight: 850; }
.swatch.olive { background: var(--olive); color: white; }
.swatch.oak { background: var(--oak); color: white; }
.swatch.tan { background: #d5c19a; }
.swatch.blush { background: var(--blush); }

.coming-soon {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.coming-copy { padding: clamp(2.2rem, 6vw, 5rem); }
.coming-art { display: grid; place-items: center; background: var(--navy); color: var(--cream); }
.seal { width: min(240px, 65%); aspect-ratio: 1; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.4rem); }

.note-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 8vw, 6rem); align-items: center; }
.note-paper { padding: clamp(2rem, 5vw, 4rem); border-radius: 22px; background: var(--cream); color: var(--ink); box-shadow: 0 25px 70px rgb(0 0 0 / 24%); transform: rotate(-1deg); }
.note-lines { display: grid; gap: 1.6rem; margin: 2.5rem 0; }
.note-lines span { height: 1px; background: rgb(29 42 70 / 24%); }
.stamp { display: inline-block; padding: .75rem 1rem; border: 2px solid var(--terracotta); color: var(--terracotta); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; transform: rotate(-3deg); }

.story-hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
}
.story-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.story-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.5vw, 6.7rem);
  line-height: .88;
  font-weight: 700;
  letter-spacing: -.052em;
}
.story-title span { display: block; }
.story-lede {
  max-width: 610px;
  margin: 2rem 0 0;
  color: #dce5ef;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}
.story-hero-photo {
  position: relative;
  margin: 0;
  padding: .75rem;
  background: var(--cream);
  box-shadow: 0 30px 80px rgb(0 0 0 / 38%);
  transform: rotate(1.5deg);
}
.story-hero-photo img {
  width: 100%;
  height: min(66svh, 650px);
  object-fit: cover;
  object-position: center 58%;
}
.story-intro { background: var(--cream); }
.story-chapter {
  max-width: 980px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.story-chapter-number {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  line-height: .8;
  opacity: .45;
}
.story-copy { max-width: 670px; }
.story-copy > p:not(.eyebrow) { font-size: 1.08rem; line-height: 1.75; }
.story-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.story-tags span {
  padding: .7rem .9rem;
  border: 1px solid rgb(29 42 70 / 16%);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-wide { padding: 0 0 clamp(4.5rem, 8vw, 8rem); background: var(--cream); }
.story-wide figure { position: relative; margin: 0; padding: .75rem; background: var(--white); box-shadow: var(--shadow); transform: rotate(-.6deg); }
.story-crepe-collage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: .65rem;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--cream);
}
.story-crepe-collage img { width: 100%; height: 100%; object-fit: cover; }
.story-crepe-collage .story-crepe-main { grid-row: 1 / -1; }
.story-wide figcaption {
  position: absolute;
  left: 2rem;
  bottom: 1.8rem;
  padding: .65rem .85rem;
  background: var(--cream);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-photo-credit {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgb(29 42 70 / 82%);
  color: white;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.story-detail-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.story-detail-photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-detail-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-detail-photo figcaption,
.story-ravenswood-photo figcaption {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.story-quote {
  margin: 2rem 0 0;
  padding-left: 1.4rem;
  border-left: 4px solid var(--terracotta);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.15;
}
.story-two-blocks { background: var(--navy); color: var(--cream); }
.story-two-blocks-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}
.story-two-blocks .story-copy > p:not(.eyebrow) { color: #dce5ef; }
.story-hands-photo {
  margin: 0;
  padding: .7rem;
  background: var(--cream);
  box-shadow: 0 30px 80px rgb(0 0 0 / 35%);
  transform: rotate(-1.5deg);
}
.story-hands-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.story-ravenswood { background: var(--cream); }
.story-ravenswood-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}
.story-ravenswood-photo {
  position: relative;
  margin: 0;
  padding: .7rem;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.story-ravenswood-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.story-finale { text-align: center; background: var(--gold); }
.story-finale .container { max-width: 920px; }
.story-finale .eyebrow { color: var(--navy); }
.story-finale p:not(.eyebrow) { margin: 1.5rem 0 2rem; font-size: 1.1rem; }
.story-finale .button { background: var(--navy); }
.story-finale .button:hover { background: var(--navy-2); }

.site-footer { padding: 2.2rem 0; background: var(--navy); color: var(--cream); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-small { font-size: .72rem; letter-spacing: .08em; opacity: .65; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { animation: reveal-in .55s ease both; }
@keyframes reveal-in {
  from { opacity: .01; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 84px;
    display: grid;
    gap: .2rem;
    padding: 1rem;
    border-radius: 20px;
    background: var(--navy);
    box-shadow: 0 24px 60px rgb(0 0 0 / 35%);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav[data-open="true"] { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: .8rem 1rem; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .hero-grid, .countdown-grid, .split, .note-layout { grid-template-columns: 1fr; }
  .story-hero-grid, .story-detail-grid, .story-two-blocks-grid, .story-ravenswood-grid { grid-template-columns: 1fr; }
  .story-hero { min-height: auto; }
  .story-hero-photo { width: min(78vw, 520px); justify-self: center; }
  .story-hero-photo img { height: min(78svh, 680px); }
  .story-chapter { grid-template-columns: 90px 1fr; }
  .story-crepe-collage { aspect-ratio: 4 / 3; }
  .story-hands-photo { width: min(76vw, 460px); justify-self: center; }
  .story-ravenswood-photo { width: min(90vw, 720px); justify-self: center; }
  .hero { min-height: auto; }
  .hero-grid { padding: 5rem 0 6rem; }
  .photo-stack { width: min(86vw, 460px); justify-self: center; }
  .route-grid, .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-soon { grid-template-columns: 1fr; }
  .coming-art { min-height: 320px; }
}

@media (max-width: 600px) {
  .header-inner { min-height: 68px; }
  .brand { font-size: .68rem; }
  .brand-mark { width: 36px; height: 36px; }
  .site-nav { top: 76px; }
  .section { padding: 4rem 0; }
  .hero-grid { padding-top: 4rem; }
  .display { font-size: clamp(3rem, 15vw, 3.7rem); }
  .story-title { font-size: clamp(3.3rem, 15vw, 4.3rem); }
  .story-chapter { grid-template-columns: 1fr; }
  .story-chapter-number { font-size: 4.4rem; }
  .story-hero-photo { width: min(88vw, 440px); }
  .story-wide figure { padding: .45rem; }
  .story-wide figcaption { left: 1rem; bottom: 1rem; }
  .story-photo-credit { right: .8rem; top: .8rem; }
  .story-detail-photo figcaption,
  .story-ravenswood-photo figcaption { right: .5rem; bottom: .5rem; }
  .hero-details { align-items: flex-start; }
  .hero-details::before { width: 38px; margin-top: .5rem; }
  .photo-tab { right: -.25rem; }
  .countdown-cells { grid-template-columns: repeat(2, 1fr); }
  .route-grid, .travel-grid, .palette-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 190px; }
  .timeline::before { display: none; }
  .timeline-row { grid-template-columns: 88px 1fr; }
  .timeline-copy { padding: 1.4rem; }
  .page-hero { min-height: 410px; }
  .page-hero::after { display: none; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal].is-visible { animation: none; }
}
