:root {
  color-scheme: light;
  --ink: #24302f;
  --muted: #65706e;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ded9cf;
  --sage: #6f846e;
  --pine: #223f36;
  --clay: #b56443;
  --sun: #e6b85c;
  --sky: #dcebf0;
  --shadow: 0 18px 45px rgba(37, 48, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17231f;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 26, 23, 0.18), rgba(17, 26, 23, 0.78)),
    url("assets/photos/01-grand-prismatic-spring.jpg") center / cover;
  transform: scale(1.02);
}

.topbar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.navlinks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 999px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 12vh;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #ffd681;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero__lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 800;
}

.button--primary {
  background: var(--sun);
  color: #1d211c;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.summary,
.section,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  transform: translateY(-44px);
}

.summary article,
.route-panel,
.check-card,
.kid-grid article,
.prep-list article,
.day-card,
.fuel-rules article,
.source-grid a,
.map-card,
.ticket-card,
.hotel-card,
.first-grid article,
.photo-card,
.town-card,
.yellowstone-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(37, 48, 47, 0.08);
}

.summary article {
  min-height: 150px;
  padding: 18px;
  border-radius: 8px;
}

.summary span,
.day-meta,
.tag,
table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary strong {
  display: block;
  margin: 6px 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 46px 0;
}

.section__header {
  max-width: 790px;
  margin-bottom: 24px;
}

.section__header p:not(.eyebrow),
.split > div > p {
  color: var(--muted);
}

.route-layout,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 22px;
  align-items: stretch;
}

.route-map {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(220, 235, 240, 0.92), rgba(246, 239, 219, 0.92)),
    radial-gradient(circle at 22% 78%, rgba(181, 100, 67, 0.2), transparent 26%),
    radial-gradient(circle at 56% 12%, rgba(111, 132, 110, 0.24), transparent 22%);
  border: 1px solid var(--line);
  color: var(--pine);
  box-shadow: var(--shadow);
}

.route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}

.route-node {
  position: absolute;
  z-index: 1;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  max-width: 112px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(34, 63, 54, 0.22);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(34, 63, 54, 0.16);
}

.route-node--start {
  background: var(--pine);
  color: #fff;
}

.route-node--park {
  background: var(--clay);
  color: #fff;
}

.route-node--stay {
  max-width: 144px;
  padding: 8px 10px;
  border: 2px solid var(--sun);
  border-radius: 8px;
  background: #fff9e8;
  color: var(--pine);
}

.route-node--stay strong,
.route-node--stay small {
  display: block;
}

.route-node--stay strong {
  font-size: 0.78rem;
  line-height: 1.2;
}

.route-node--stay small {
  margin-top: 4px;
  color: var(--clay);
  font-size: 0.66rem;
  line-height: 1.2;
}

.route-map__legend {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pine);
  font-size: 0.7rem;
  font-weight: 900;
}

.route-map__legend span {
  width: 14px;
  height: 10px;
  border: 2px solid var(--sun);
  border-radius: 3px;
  background: #fff9e8;
}

.route-map__hint {
  position: absolute;
  z-index: 1;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 63, 54, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(34, 63, 54, 0.16);
}

.route-map__hint--return {
  background: rgba(181, 100, 67, 0.9);
}

.route-panel,
.check-card {
  border-radius: 8px;
  padding: 22px;
}

.route-panel__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-flow {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}

.route-flow-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 8px;
  background: #f7f5ee;
  border: 1px solid var(--line);
  transition: transform 160ms ease, border-color 160ms ease;
}

.route-flow-item:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 63, 54, 0.34);
}

.route-flow-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.route-flow-item strong {
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.25;
}

.route-flow-item em {
  color: var(--clay);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.compact-list {
  margin: 0;
  padding-left: 22px;
}

.compact-list li + li {
  margin-top: 8px;
}

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

.day-reader__layout {
  display: grid;
  gap: 14px;
  align-items: start;
}

.route-health {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.route-health article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff8e8;
  border: 1px solid rgba(181, 100, 67, 0.24);
}

.route-health span {
  display: inline-flex;
  min-width: 54px;
  justify-content: center;
  margin-bottom: 0;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(181, 100, 67, 0.12);
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.route-health p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.lodging-strip {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(37, 48, 47, 0.08);
}

.lodging-strip__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}

.lodging-strip__header h3,
.lodging-strip__header p {
  margin-bottom: 0;
}

.lodging-strip__items {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.lodging-pill {
  flex: 0 0 154px;
  display: grid;
  gap: 3px;
  min-height: 78px;
  padding: 10px;
  border-radius: 8px;
  background: #f7f5ee;
  border: 1px solid var(--line);
}

.lodging-pill span,
.lodging-pill em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.lodging-pill strong {
  font-size: 0.88rem;
  line-height: 1.18;
}

.day-index {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
  max-height: none;
  overflow-x: auto;
  padding: 10px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(37, 48, 47, 0.08);
}

.day-index__item {
  flex: 0 0 190px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f7f5ee;
  color: var(--ink);
  cursor: pointer;
  padding: 9px;
  text-align: left;
}

.day-index__item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.day-index__item strong {
  min-width: 0;
  font-size: 0.86rem;
  line-height: 1.2;
}

.day-index__item em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.day-index__item.is-active {
  border-color: var(--pine);
  background: var(--pine);
  color: #fff;
}

.day-index__item.is-active em {
  color: rgba(255, 255, 255, 0.74);
}

.day-index__item.is-active span {
  background: var(--sun);
  color: #1d211c;
}

.day-focus {
  min-width: 0;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.day-focus__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 0;
  background: #fff;
}

.day-focus__photo-shell {
  min-width: 0;
  background: #e8e4da;
}

.day-focus__photos {
  padding: 8px;
  height: 384px;
  background: #e8e4da;
}

.day-focus__photos figure {
  display: block;
  width: 100%;
  height: 368px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe4df;
}

.day-focus__photos img {
  display: block;
  width: 100%;
  height: 314px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #dfe4df;
}

.day-focus__photos figcaption {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 9px 12px;
  background: #17231f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.day-focus__photo-toolbar {
  position: relative;
  min-height: 54px;
  padding: 7px 10px 9px 14px;
  border-top: 1px solid rgba(37, 48, 47, 0.12);
  background: #e8e4da;
}

.day-focus__photo-toolbar > span {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.day-focus__photo-toolbar > div {
  position: absolute;
  top: 50%;
  right: 10px;
  display: flex;
  gap: 8px;
  transform: translateY(-50%);
}

.day-focus__photo-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(17, 26, 23, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.day-focus__photo-nav:hover,
.day-focus__photo-nav:focus-visible {
  background: var(--pine);
}

.day-focus__summary {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--pine);
  color: #fff;
}

.day-focus__summary h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.day-focus__summary p,
.day-focus__summary h3 {
  margin-bottom: 0;
}

.day-focus__summary .stop-row span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.day-focus__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 0;
  background: #fff;
}

.day-focus__kpis div {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 86px;
  padding: 12px;
  border-radius: 8px;
  background: #f7f5ee;
  border: 1px solid var(--line);
}

.day-focus__kpis span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.day-focus__kpis strong {
  font-size: 0.96rem;
  line-height: 1.25;
}

.day-focus__kpis p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.day-focus__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  padding: 16px;
}

.day-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.day-block h4 {
  margin: 0;
  font-size: 1rem;
}

.day-block--timeline,
.day-block--highlight {
  grid-column: 1 / -1;
}

.day-block--timeline {
  grid-column: 1;
  grid-row: span 2;
}

.day-block--highlight {
  background: #fff8e8;
  border-color: rgba(181, 100, 67, 0.28);
}

.day-card-list,
.day-link-list {
  display: grid;
  gap: 9px;
}

.day-info-card,
.day-link-card {
  display: grid;
  gap: 4px;
  padding: 11px;
  border-radius: 8px;
  background: #f7f5ee;
  border: 1px solid var(--line);
}

.day-info-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.day-link-card span,
.day-link-card em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.day-link-card strong {
  color: var(--pine);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}

.text-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 9px;
  background: #eef4f2;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
}

.planner,
.legacy-itinerary {
  display: none;
}

.support-section,
#towns,
#yellowstone,
#photos,
#fuel,
.first-timer,
.table-section,
.prep,
.sources,
.kid-section,
.media-band,
#route .route-layout {
  display: none;
}

.day-note {
  margin-bottom: 0;
  color: var(--muted);
}

.planner-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) minmax(340px, 1.15fr);
  gap: 16px;
  align-items: start;
}

.planner-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(37, 48, 47, 0.08);
}

.planner-panel--library,
.planner-panel--result {
  position: sticky;
  top: 16px;
}

.planner-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.planner-panel__top h3,
.planner-panel__top p {
  margin-bottom: 0;
}

.planner-panel__top > span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef4f2;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
}

.field-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.planner-input,
.planner-controls select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 9px 11px;
}

.spot-library,
.selected-spots,
.planned-days {
  display: grid;
  gap: 10px;
}

.spot-card,
.selected-spot,
.planned-day {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spot-card img,
.selected-spot img,
.planned-day img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--sky);
}

.spot-card h4,
.selected-spot h4,
.planned-day h4,
.custom-spot h4 {
  margin: 0 0 5px;
  line-height: 1.2;
}

.spot-card span,
.selected-spot span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
}

.spot-card p,
.selected-spot p,
.planned-day p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.custom-spot {
  display: grid;
  gap: 9px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.planner-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.planner-controls label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.planner-controls .button {
  grid-column: 1 / -1;
}

.mini-button,
.icon-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef4f2;
  color: var(--pine);
  cursor: pointer;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.selected-spot {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: center;
}

.selected-spot img {
  min-height: 68px;
}

.selected-spot__actions {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 5px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  padding: 0;
}

.icon-button--danger {
  background: #f6e7e2;
  color: var(--clay);
}

.planner-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.planned-day {
  grid-template-columns: 118px minmax(0, 1fr);
}

.planned-day .stop-row {
  margin-bottom: 8px;
}

figure {
  margin: 0;
}

.media-band figure {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.media-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 800;
}

.filter.is-active {
  border-color: var(--pine);
  background: var(--pine);
  color: #fff;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.day-card {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
  overflow: hidden;
}

.day-gallery {
  width: calc(100% + 36px);
  max-width: none;
  margin: -18px -18px 2px;
  background: var(--sky);
}

.day-gallery__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sky);
}

.day-gallery__viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 180ms ease, transform 240ms ease;
}

.day-gallery__viewport img.is-active {
  opacity: 1;
  transform: scale(1);
}

.photo-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17, 26, 23, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.day-gallery__controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: #f7f5ee;
  border-top: 1px solid var(--line);
}

.gallery-nav {
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--pine);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.gallery-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #c6c0b4;
  cursor: pointer;
}

.gallery-dots button.is-active {
  background: var(--pine);
}

.day-gallery.is-empty {
  display: none;
}

.day-card.is-hidden {
  display: none;
}

.day-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.day-badge {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--pine);
  font-weight: 900;
}

.day-card h3 {
  margin-bottom: 4px;
  font-size: 1.16rem;
}

.day-card p {
  margin-bottom: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2eee5;
}

.detail-list {
  display: grid;
  gap: 9px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
}

.detail-list strong {
  color: var(--pine);
}

.detail-list--wide {
  gap: 10px;
}

.day-card .card-link {
  justify-self: start;
}

.fuel-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.fuel-rules article {
  border-radius: 8px;
  padding: 16px;
}

.fuel-rules strong,
.fuel-rules span {
  display: block;
}

.fuel-rules span {
  margin-top: 4px;
  color: var(--muted);
}

.check-card {
  align-self: start;
  position: sticky;
  top: 16px;
}

.check-card label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.check-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--pine);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(37, 48, 47, 0.08);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.source-grid a {
  display: block;
  border-radius: 8px;
  padding: 17px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.source-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 63, 54, 0.38);
}

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

.source-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.all-days-map {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.all-days-map__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.all-days-map__header h3,
.all-days-map__header p {
  margin-bottom: 0;
}

.all-days-map__header > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--pine);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.all-days-map__canvas {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(220, 235, 240, 0.92), rgba(247, 245, 238, 0.96)),
    linear-gradient(90deg, rgba(34, 63, 54, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34, 63, 54, 0.08) 1px, transparent 1px);
  background-size: auto, 10% 10%, 10% 10%;
  border: 1px solid var(--line);
}

.all-days-map__canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.all-days-map__canvas rect {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(34, 63, 54, 0.14);
}

.all-days-map__path {
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.78;
  vector-effect: non-scaling-stroke;
}

.all-days-map__path:nth-of-type(2n) {
  stroke: var(--pine);
}

.all-days-map__path:nth-of-type(3n) {
  stroke: #7a6d2f;
}

.all-days-map__day {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 38px;
  min-height: 30px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--sun);
  color: #1d211c;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 48, 47, 0.18);
}

.all-days-map__day:hover,
.all-days-map__day.is-active {
  background: var(--pine);
  color: #fff;
}

.all-days-map__path.is-active {
  stroke: var(--sun);
  stroke-width: 3;
  opacity: 1;
}

.all-days-map__node {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  max-width: 112px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 63, 54, 0.18);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 18px rgba(37, 48, 47, 0.1);
}

.map-hero__notes {
  padding: 22px;
  border-radius: 8px;
  background: var(--pine);
  color: #fff;
}

.map-hero__notes p {
  color: rgba(255, 255, 255, 0.82);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--sun);
  color: #1d211c;
  font-weight: 900;
}

.card-link--light {
  background: #eef4f2;
  color: var(--pine);
}

.card-link--wide {
  width: 100%;
}

.text-link--quiet {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.apple-map-board {
  display: grid;
  align-content: stretch;
  gap: 18px;
  min-height: 420px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 245, 238, 0.94), rgba(220, 235, 240, 0.9)),
    url("assets/photos/01-grand-prismatic-spring.jpg") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.apple-map-board__header,
.apple-map-board__footer {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(34, 63, 54, 0.14);
}

.apple-map-board__header h3,
.apple-map-board__header p {
  margin-bottom: 0;
}

.apple-route-line {
  display: grid;
  grid-template-columns: repeat(var(--route-count, 4), 1fr);
  gap: 8px;
  align-items: center;
  min-height: 28px;
}

.apple-route-line i {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: var(--pine);
}

.apple-route-line i::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--clay);
  border: 2px solid #fff;
}

.apple-stop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.apple-stop {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 63, 54, 0.14);
  color: var(--pine);
  font-weight: 900;
}

.apple-stop span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-size: 0.78rem;
}

.apple-stop strong {
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.apple-map-board__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-weight: 900;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.route-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.route-chip {
  min-width: 44px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.route-chip.is-active {
  background: var(--sun);
  border-color: var(--sun);
  color: #1d211c;
}

.selected-route {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.selected-route h3,
.selected-route p {
  margin-bottom: 0;
}

.total-route-card {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.total-route-card--primary {
  margin: 0 0 18px;
  background: var(--pine);
  color: #fff;
}

.total-route-card--primary p,
.total-route-card--primary h4 {
  color: inherit;
}

.total-route-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.total-route-card p {
  margin-bottom: 0;
}

.total-route-card .card-link {
  justify-self: start;
}

.total-route-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.total-route-mini span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
}

.total-route-mini span strong,
.total-route-mini span em {
  display: block;
}

.total-route-mini span em {
  margin-top: 2px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.total-route-mini span.is-stay {
  border-color: var(--sun);
  border-radius: 6px;
  background: #fff9e8;
  color: var(--pine);
}

.total-route-segments {
  display: grid;
  gap: 8px;
}

.total-route-segment {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 4px 9px;
  align-items: center;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.total-route-segment span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sun);
  color: #1d211c;
  font-size: 0.78rem;
  font-weight: 900;
}

.total-route-segment strong,
.total-route-segment em {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.total-route-segment strong {
  font-size: 0.86rem;
}

.total-route-segment em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-style: normal;
}

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

.quick-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--pine);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 48, 47, 0.06);
}

.map-grid,
.ticket-grid,
.hotel-grid,
.town-grid,
.first-grid,
.photo-grid {
  display: grid;
  gap: 14px;
}

.map-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-card,
.ticket-card {
  display: grid;
  gap: 8px;
  align-content: start;
  border-radius: 8px;
  padding: 17px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.map-card:hover,
.ticket-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 63, 54, 0.38);
}

.map-card span,
.ticket-card span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card p,
.ticket-card p,
.first-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.ticket-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border-radius: 8px;
  padding: 18px;
}

.hotel-card__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.hotel-card__top span,
.hotel-check {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
}

.hotel-card__top strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--pine);
  color: #fff;
  font-size: 0.82rem;
}

.hotel-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hotel-card .card-link {
  justify-self: start;
  margin-top: 4px;
}

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

.ticket-card .card-link {
  justify-self: start;
  margin-top: 4px;
}

.first-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first-grid article {
  border-radius: 8px;
  padding: 18px;
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  overflow: hidden;
  border-radius: 8px;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  display: grid;
  gap: 4px;
}

.photo-card figcaption strong {
  color: var(--ink);
}

.photo-card figcaption span {
  color: var(--muted);
}

.town-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border-radius: 8px;
  padding: 18px;
}

.town-card > span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.town-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.town-tip {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.yellowstone-deep {
  background: linear-gradient(180deg, transparent, rgba(220, 235, 240, 0.42), transparent);
}

.yellowstone-grid {
  display: grid;
  gap: 16px;
}

.yellowstone-card {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: 20px;
}

.yellowstone-card .eyebrow {
  margin-bottom: 6px;
}

.yellowstone-route {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.yellowstone-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.yellowstone-columns div {
  padding: 14px;
  border-radius: 8px;
  background: #f7f5ee;
  border: 1px solid var(--line);
}

.yellowstone-columns strong {
  display: block;
  margin-bottom: 5px;
  color: var(--pine);
}

.yellowstone-columns p,
.yellowstone-columns ul {
  margin: 0;
  color: var(--muted);
}

.yellowstone-columns ul {
  padding-left: 18px;
}

.stop-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stop-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 7px;
}

.timeline li::marker {
  color: var(--clay);
  font-weight: 900;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.kid-section {
  background: linear-gradient(180deg, transparent, rgba(220, 235, 240, 0.52), transparent);
}

.kid-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kid-grid article {
  border-radius: 8px;
  padding: 18px;
}

.kid-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.prep-list article {
  display: flex;
  gap: 14px;
  border-radius: 8px;
  padding: 18px;
}

.prep-list article > span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-weight: 900;
}

.prep-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 36px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--pine);
}

@media (max-width: 920px) {
  .summary,
  .kid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-layout,
  .day-reader__layout,
  .route-health,
  .planner-shell,
  .split,
  .itinerary-grid,
  .prep-list,
  .source-grid,
  .map-hero,
  .map-grid,
  .ticket-grid,
  .hotel-grid,
  .town-grid,
  .first-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

  .route-map {
    min-height: 420px;
  }

  .day-index {
    position: static;
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    max-height: none;
    overflow-x: auto;
  }

  .day-focus__hero,
  .day-focus__grid {
    grid-template-columns: 1fr;
  }

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

  .all-days-map__canvas {
    min-height: 460px;
  }

  .check-card {
    position: static;
  }

  .planner-panel--library,
  .planner-panel--result {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .navlinks a {
    padding: 7px 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero__content {
    padding-bottom: 8vh;
  }

  .summary,
  .media-band,
  .day-reader__layout,
  .planner-shell,
  .kid-grid,
  .fuel-rules,
  .map-grid,
  .ticket-grid,
  .hotel-grid,
  .town-grid,
  .first-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .summary {
    transform: none;
    padding-top: 18px;
  }

  .section {
    padding: 34px 0;
  }

  .day-index {
    display: flex;
    gap: 8px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 10px 18px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

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

  .lodging-strip {
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 0;
  }

  .lodging-strip__items {
    display: flex;
    overflow-x: auto;
  }

  .lodging-pill {
    flex: 0 0 150px;
  }

  .day-index__item {
    flex: 0 0 168px;
  }

  .day-focus__photos {
    height: 298px;
    margin-right: 0;
  }

  .day-focus__photos figure {
    height: 282px;
  }

  .day-focus__photos img {
    height: 228px;
  }

  .day-focus__photo-nav {
    width: 36px;
    height: 36px;
  }

  .day-focus__summary {
    padding: 18px;
  }

  .day-focus__grid {
    padding: 12px;
  }

  .day-focus__kpis {
    grid-template-columns: 1fr;
    padding: 12px 12px 0;
  }

  .route-map {
    min-height: 480px;
  }

  .planner-panel {
    padding: 13px;
  }

  .planner-panel__top,
  .planner-actions {
    display: grid;
  }

  .spot-card,
  .planned-day {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .selected-spot {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .selected-spot__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .icon-button {
    width: 100%;
  }

  .planner-controls {
    grid-template-columns: 1fr;
  }

  .all-days-map {
    padding: 14px;
  }

  .all-days-map__header {
    display: grid;
  }

  .all-days-map__header > span {
    justify-self: start;
  }

  .all-days-map__canvas {
    min-height: 420px;
  }

  .all-days-map__node {
    max-width: 86px;
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .all-days-map__day {
    width: 34px;
    min-height: 28px;
    font-size: 0.7rem;
  }

  .apple-map-board {
    min-height: 360px;
    padding: 16px;
  }

  .apple-stop-list {
    grid-template-columns: 1fr;
  }

  .apple-map-board__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .route-node {
    max-width: 86px;
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .route-node--stay {
    max-width: 104px;
    padding: 6px 7px;
  }

  .route-node--stay strong {
    font-size: 0.66rem;
  }

  .route-node--stay small {
    font-size: 0.58rem;
  }

  .route-node--stay[data-stay="vegas"] {
    --x: 23% !important;
    --y: 61% !important;
  }

  .route-node--stay[data-stay="kingman"] {
    --x: 14% !important;
    --y: 82% !important;
  }

  .route-node--stay[data-stay="page"] {
    --x: 53% !important;
    --y: 82% !important;
  }

  .route-node--stay[data-stay="moab"] {
    --x: 73% !important;
    --y: 56% !important;
  }

  .route-node--stay[data-stay="jackson"] {
    --x: 73% !important;
    --y: 23% !important;
  }

  .route-node--stay[data-stay="west-yellowstone"] {
    --x: 32% !important;
    --y: 13% !important;
  }

  .day-card__top {
    align-items: flex-start;
  }

  .day-badge {
    width: 46px;
    height: 46px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer {
    display: block;
  }

  .footer a {
    display: inline-block;
    margin-top: 16px;
  }
}

@media print {
  .topbar,
  .hero__actions,
  .filters,
  .footer a {
    display: none;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: #fff;
  }

  .hero__media {
    opacity: 0.16;
  }

  .summary {
    transform: none;
  }

  .section {
    page-break-inside: avoid;
  }
}
