:root {
  --ink: #171715;
  --paper: #f4f0e7;
  --paper-deep: #eae3d6;
  --yellow: #f4cf36;
  --aqua: #9fd9d2;
  --salmon: #e8664b;
  --lilac: #a991ce;
  --white: #fffef8;
  --muted: #6f6a61;
  --rule: rgba(23, 23, 21, 0.28);
  --serif: "Noto Serif SC", "Songti SC", serif;
  --sans: "Archivo", "Noto Sans SC", sans-serif;
  --display: "Archivo Black", "Noto Sans SC", sans-serif;
  --page: min(1440px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(244, 207, 54, 0.08), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: absolute;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.read-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 4px;
  background: transparent;
}

.read-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--salmon);
}

.site-header {
  width: var(--page);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 2px solid var(--ink);
}

.wordmark {
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.08em;
  text-decoration: none;
}

.wordmark b {
  margin-left: 5px;
  color: var(--salmon);
}

.header-edition {
  display: flex;
  gap: 22px;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.top-nav a {
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--salmon);
  text-underline-offset: 5px;
}

.hero {
  width: var(--page);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 110px) 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

.kicker,
.overline {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.kicker span {
  padding: 4px 7px;
  background: var(--ink);
  color: var(--white);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 8.1rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.marker {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.marker::after {
  position: absolute;
  right: -0.05em;
  bottom: 0.05em;
  left: -0.03em;
  z-index: -1;
  height: 0.22em;
  content: "";
  background: var(--yellow);
  transform: rotate(-1.2deg);
}

.dek {
  max-width: 720px;
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.45vw, 1.5rem);
  line-height: 1.65;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font: 800 0.78rem/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.button-outline {
  color: var(--ink);
  background: transparent;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.text-link {
  padding: 10px 2px;
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.byline {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  padding: 22px 22px 0 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  background: var(--aqua);
  box-shadow: 18px 18px 0 var(--aqua), 20px 20px 0 var(--ink);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 55%, rgba(19, 50, 35, 0.28));
  mix-blend-mode: multiply;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(0.78) contrast(1.07);
  transform: scale(1.02);
}

.weather-stamp {
  position: absolute;
  top: 0;
  right: -16px;
  width: 140px;
  aspect-ratio: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
}

.weather-stamp small,
.weather-stamp span {
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.weather-stamp strong {
  margin: 2px 0;
  font-family: var(--display);
  font-size: 2.45rem;
}

.vertical-note {
  position: absolute;
  right: 0;
  bottom: 108px;
  margin: 0;
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.issue-number {
  position: absolute;
  bottom: -36px;
  left: -70px;
  color: var(--salmon);
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 11rem);
  line-height: 0.75;
  letter-spacing: -0.12em;
  mix-blend-mode: multiply;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ticker div {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  animation: ticker 24s linear infinite;
}

.ticker i {
  color: var(--yellow);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-pad {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(96px, 10vw, 168px) 0;
}

.quick-route {
  display: grid;
  grid-template-columns: 130px minmax(260px, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}

.section-label {
  padding-top: 4px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.section-label span {
  color: var(--salmon);
  font-family: var(--display);
  font-size: 2rem;
}

.section-label p {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: 0.61rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.route-intro h2,
.notes-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.route-intro > p:last-child {
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.75;
}

.timeline {
  position: relative;
  border-top: 2px solid var(--ink);
}

.timeline::before {
  position: absolute;
  top: 33px;
  bottom: 33px;
  left: 110px;
  width: 2px;
  content: "";
  background: var(--ink);
}

.timeline-item {
  position: relative;
  min-height: 134px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 90px 40px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.timeline-item time {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin: 5px auto 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--yellow);
  transform: scale(1.35);
}

.timeline-item span {
  font-family: var(--display);
  font-size: 0.57rem;
  letter-spacing: 0.11em;
}

.timeline-item h3 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.1;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.stops {
  overflow: hidden;
}

.stop {
  position: relative;
  min-height: 820px;
}

.stop-number {
  position: absolute;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(11rem, 24vw, 26rem);
  line-height: 0.75;
  letter-spacing: -0.15em;
  pointer-events: none;
  user-select: none;
}

.stop-copy {
  position: relative;
  z-index: 2;
}

.stop-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 7.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.standfirst {
  max-width: 690px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.7;
}

.stop-garden {
  padding: clamp(96px, 9vw, 150px) max(24px, calc((100vw - min(1440px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  background: var(--aqua);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.stop-garden .stop-number {
  top: 74px;
  right: -28px;
  color: rgba(255, 255, 255, 0.32);
}

.stop-photo-landscape {
  position: relative;
  z-index: 1;
  padding: 16px 16px 48px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(-2deg);
}

.stop-photo-landscape img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.photo-caption {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.photo-caption span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.55rem;
}

.big-stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.big-stats div {
  padding: 22px 18px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.big-stats div + div {
  padding-left: 18px;
  border-left: 1px solid var(--ink);
}

.big-stats strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  letter-spacing: -0.06em;
}

.big-stats span {
  font-size: 0.68rem;
  font-weight: 700;
}

.micro-plan {
  margin-top: 30px;
}

.micro-plan > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(23, 23, 21, 0.35);
}

.micro-plan time {
  font-family: var(--display);
  font-size: 0.75rem;
}

.micro-plan p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.fine-print,
address {
  margin: 18px 0 0;
  color: rgba(23, 23, 21, 0.68);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
}

.stop-dinner {
  min-height: 960px;
  padding: clamp(110px, 11vw, 178px) max(24px, calc((100vw - min(1440px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
  background: var(--paper-deep);
}

.stop-dinner .color-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 37%;
  background: var(--lilac);
  border-left: 2px solid var(--ink);
}

.stop-dinner .stop-number {
  bottom: -40px;
  left: -40px;
  z-index: 0;
  color: rgba(232, 102, 75, 0.25);
}

.stop-dinner .stop-copy h2 {
  font-size: clamp(3.1rem, 5.6vw, 6.6rem);
}

.reservation-box {
  max-width: 480px;
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.reservation-box span {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.reservation-box strong {
  margin: 8px 0 5px;
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.reservation-box p {
  margin: 0;
  font-size: 0.8rem;
}

.dinner-collage {
  position: relative;
  z-index: 1;
  min-height: 600px;
}

.dinner-main {
  position: absolute;
  top: 0;
  right: -8%;
  width: 112%;
  height: 62%;
  object-fit: cover;
  object-position: 50% center;
  border: 2px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.dinner-detail {
  position: absolute;
  bottom: 0;
  left: -4%;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 12px solid var(--white);
  outline: 2px solid var(--ink);
  transform: rotate(4deg);
}

.collage-label {
  position: absolute;
  right: 0;
  bottom: 10%;
  max-width: 220px;
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  transform: rotate(-3deg);
}

.stop-boardwalk {
  min-height: 1040px;
  padding: clamp(100px, 10vw, 170px) max(24px, calc((100vw - min(1440px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: minmax(400px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 9vw, 144px);
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.stop-boardwalk::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.stop-boardwalk .stop-number {
  top: 70px;
  right: -24px;
  color: rgba(244, 207, 54, 0.18);
}

.boardwalk-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
}

.boardwalk-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 2px solid var(--white);
  filter: saturate(0.88) contrast(1.08);
}

.sunset-badge {
  position: absolute;
  right: -52px;
  bottom: 11%;
  width: 154px;
  aspect-ratio: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  text-align: center;
  transform: rotate(5deg);
}

.sunset-badge span,
.sunset-badge small {
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.sunset-badge strong {
  margin: 5px 0;
  font-family: var(--display);
  font-size: 2.15rem;
  letter-spacing: -0.07em;
}

.stop-boardwalk .stop-copy {
  max-width: 720px;
}

.stop-boardwalk .overline {
  color: var(--yellow);
}

.field-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.field-list li {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.field-list b {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.78rem;
}

.field-list span {
  font-size: 0.88rem;
  line-height: 1.5;
}

.field-notes {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 50px clamp(36px, 6vw, 100px);
}

.notes-head {
  max-width: 780px;
}

.notes-grid,
.cost-strip {
  grid-column: 2;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.note-card {
  min-height: 270px;
  padding: 28px 24px 30px;
}

.note-card + .note-card {
  border-left: 1px solid var(--ink);
}

.note-card:nth-child(2) {
  background: var(--yellow);
}

.note-card:nth-child(4) {
  color: var(--white);
  background: var(--salmon);
}

.note-card > span {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.note-card h3 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.note-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.cost-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.cost-strip div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cost-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.cost-strip span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.cost-strip strong {
  font-size: 0.82rem;
}

.final-callout {
  padding: clamp(100px, 13vw, 210px) 24px;
  color: var(--ink);
  background: var(--salmon);
  border-top: 2px solid var(--ink);
  text-align: center;
}

.final-callout p {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.final-callout h2 {
  max-width: 1120px;
  margin: 0 auto 42px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.site-footer {
  padding: 54px max(24px, calc((100vw - min(1440px, calc(100vw - 48px))) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 0.7rem;
}

.footer-mark {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.07em;
}

.footer-mark span {
  color: var(--salmon);
}

.site-footer p {
  margin: 0 0 12px;
  color: var(--white);
  font-weight: 800;
}

.site-footer a {
  margin: 7px 0;
  display: block;
  text-underline-offset: 3px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.62) !important;
  font-weight: 500 !important;
  line-height: 1.7;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 36px); }

  .header-edition { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr); gap: 42px; }
  .quick-route { grid-template-columns: 90px 1fr; }
  .quick-route .timeline { grid-column: 2; }
  .stop-garden,
  .stop-dinner,
  .stop-boardwalk { grid-template-columns: 1fr 1fr; gap: 44px; }
  .stop-copy h2 { font-size: clamp(3rem, 6.2vw, 5.8rem); }
  .dinner-collage { min-height: 520px; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
  .note-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--ink); }
  .note-card:nth-child(4) { border-top: 1px solid var(--ink); }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  :root { --page: calc(100vw - 28px); }

  .site-header { min-height: 66px; }
  .top-nav { gap: 15px; }
  .top-nav a { font-size: 0.68rem; }
  .hero { min-height: auto; padding: 54px 0 82px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.45rem, 16vw, 6rem); }
  .hero-visual { width: calc(100% - 18px); margin-top: 18px; }
  .hero-frame { aspect-ratio: 5 / 4; }
  .issue-number { left: -8px; bottom: -24px; }
  .vertical-note { display: none; }
  .weather-stamp { right: -8px; width: 118px; }
  .section-pad { padding: 88px 0; }
  .quick-route,
  .field-notes { grid-template-columns: 1fr; gap: 34px; }
  .quick-route .timeline,
  .notes-grid,
  .cost-strip { grid-column: 1; }
  .section-label { width: max-content; }
  .timeline::before { left: 91px; }
  .timeline-item { grid-template-columns: 72px 38px 1fr; }
  .timeline-item time { font-size: 1.15rem; }
  .stop { min-height: 0; }
  .stop-garden,
  .stop-dinner,
  .stop-boardwalk {
    padding: 96px 20px;
    grid-template-columns: 1fr;
  }
  .stop-photo-landscape { max-width: 600px; margin: 0 auto 20px; }
  .stop-copy h2,
  .stop-dinner .stop-copy h2 { font-size: clamp(3.2rem, 14vw, 6rem); }
  .stop-garden .stop-number { top: 40px; right: -8px; }
  .stop-dinner .color-panel { width: 28%; }
  .stop-dinner .stop-copy { order: 2; }
  .dinner-collage { min-height: 480px; order: 1; }
  .dinner-main { right: 0; width: 100%; }
  .boardwalk-visual { width: min(82%, 500px); margin: 0 auto; }
  .sunset-badge { right: -56px; }
  .stop-boardwalk .stop-copy { margin-top: 24px; }
  .notes-grid { grid-template-columns: 1fr; }
  .note-card + .note-card { border-left: 0; border-top: 1px solid var(--ink); }
  .note-card { min-height: 220px; }
  .note-card h3 { margin-top: 35px; }
  .cost-strip { grid-template-columns: repeat(2, 1fr); }
  .cost-strip div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.38); }
  .cost-strip div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.38); }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wordmark { font-size: 1.15rem; }
  .top-nav { display: none; }
  .hero h1 { font-size: 3.05rem; overflow-wrap: anywhere; }
  .kicker { max-width: 100%; font-size: 0.62rem; overflow-wrap: anywhere; }
  .hero-actions,
  .link-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .weather-stamp { width: 102px; padding: 14px; }
  .weather-stamp strong { font-size: 2rem; }
  .big-stats { grid-template-columns: 1fr; }
  .big-stats div + div { padding-left: 0; border-top: 1px solid var(--ink); border-left: 0; }
  .big-stats div { padding: 15px 0; }
  .dinner-collage { min-height: 380px; }
  .dinner-detail { width: 52%; border-width: 8px; }
  .collage-label { max-width: 165px; font-size: 0.64rem; }
  .boardwalk-visual { width: calc(100% - 36px); margin-left: 0; }
  .sunset-badge { right: -44px; width: 128px; }
  .field-list li { grid-template-columns: 68px 1fr; }
  .cost-strip { grid-template-columns: 1fr; }
  .cost-strip div + div { border-top: 1px solid rgba(255, 255, 255, 0.38); border-left: 0; }
  .toast { right: 14px; bottom: 14px; left: 14px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .read-progress, .toast { display: none !important; }
}
