:root {
  --paper: #fffdf7;
  --ink: #151515;
  --muted: #66615b;
  --line: #202020;
  --sky: #29a9e8;
  --sea: #078ea6;
  --tomato: #f05a3f;
  --sun: #f5c542;
  --leaf: #2f9d62;
  --lavender: #8b6fd6;
  --pink: #ff8fb3;
  --cream: #fff3cf;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(30, 38, 50, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(21, 21, 21, 0.028) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.hero {
  min-height: 74vh;
  padding: 22px clamp(18px, 4vw, 56px) 34px;
  background:
    radial-gradient(circle at 15% 18%, rgba(245, 197, 66, 0.22), transparent 25%),
    linear-gradient(135deg, rgba(41, 169, 232, 0.13), rgba(255, 143, 179, 0.11) 48%, rgba(47, 157, 98, 0.11)),
    var(--paper);
  border-bottom: 3px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(10px, 3vw, 52px);
  bottom: -38px;
  width: min(32vw, 360px);
  aspect-ratio: 1;
  background:
    linear-gradient(50deg, transparent 49%, rgba(21, 21, 21, 0.2) 50%, transparent 51%),
    linear-gradient(140deg, transparent 49%, rgba(21, 21, 21, 0.12) 50%, transparent 51%),
    rgba(255, 255, 255, 0.34);
  border: 2px solid rgba(21, 21, 21, 0.18);
  transform: rotate(-9deg);
  pointer-events: none;
}

.topbar {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 4px 4px 0 var(--line);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 8px 11px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  background: var(--white);
  outline: none;
}

.hero-grid {
  max-width: 1240px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.62fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 9vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #2f2a24;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  font-weight: 650;
}

.route-strip {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.route-strip span {
  display: inline-flex;
  min-width: 54px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--line);
  font-weight: 900;
  font-size: 0.88rem;
}

.route-strip i {
  width: 22px;
  height: 2px;
  background: var(--line);
}

.boarding-stack {
  display: grid;
  gap: 15px;
}

.boarding-pass {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 7px 7px 0 var(--line);
  position: relative;
  overflow: hidden;
}

.boarding-pass::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 68%;
  border-left: 2px dashed rgba(21, 21, 21, 0.36);
}

.boarding-pass.takeoff {
  transform: rotate(1.5deg);
}

.boarding-pass.return {
  transform: rotate(-1deg);
  background: #fff7d6;
}

.boarding-pass div {
  display: grid;
  gap: 6px;
}

.boarding-pass strong {
  font-size: 1.1rem;
}

.boarding-pass p {
  margin: 14px 0 0;
  max-width: 84%;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.35;
}

.tiny-label {
  width: max-content;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

main {
  padding: 34px clamp(16px, 4vw, 56px) 64px;
}

.calendar-section,
.details-section,
.personalise-section {
  max-width: 1240px;
  margin: 0 auto;
}

.details-section,
.personalise-section {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.section-heading h2,
.personalise-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-heading p,
.personalise-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.icon-button,
.primary-button,
.text-button,
.tiny-action {
  border: 2px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--line);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.calendar-shell {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.weekday-row,
.calendar-grid {
  min-width: 1040px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday-row {
  background: var(--ink);
  color: var(--white);
}

.weekday-row span {
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.calendar-grid {
  border-top: 3px solid var(--line);
  position: relative;
}

.day {
  min-height: 188px;
  padding: 10px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
}

.day:nth-child(7n) {
  border-right: 0;
}

.day:nth-last-child(-n + 7) {
  border-bottom: 0;
}

.day.place-paris {
  background: linear-gradient(180deg, rgba(255, 143, 179, 0.16), var(--white) 50%);
}

.day.place-montpellier {
  background: linear-gradient(180deg, rgba(47, 157, 98, 0.16), var(--white) 54%);
}

.day.place-tbc {
  background: linear-gradient(180deg, rgba(139, 111, 214, 0.16), var(--white) 54%);
}

.day.place-positioning {
  background: linear-gradient(180deg, rgba(139, 111, 214, 0.16), var(--white) 54%);
}

.day.place-constance {
  background: linear-gradient(180deg, rgba(46, 125, 123, 0.17), var(--white) 54%);
}

.day.place-nice {
  background: linear-gradient(180deg, rgba(7, 142, 166, 0.18), var(--white) 54%);
}

.day.place-serbia {
  background: linear-gradient(180deg, rgba(240, 90, 63, 0.15), var(--white) 54%);
}

.day.place-final-paris {
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.2), var(--white) 54%);
}

.nice-alt-note {
  position: absolute;
  grid-column: 1 / 4;
  grid-row: 5;
  left: 12px;
  right: 12px;
  top: 104px;
  z-index: 5;
  pointer-events: none;
  border-top: 3px dashed var(--scrap-blue);
  transform: rotate(-1.5deg);
}

.nice-alt-note::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -9px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--scrap-blue);
  border-right: 3px solid var(--scrap-blue);
  transform: rotate(45deg);
}

.nice-alt-note span {
  position: absolute;
  left: 34%;
  top: -24px;
  padding: 2px 9px;
  background: #fffdf7;
  color: var(--scrap-blue);
  border: 2px solid var(--scrap-blue);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--line);
  font-family: var(--hand);
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}

.day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.day-name {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.day-number {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-weight: 950;
}

.july-day .day-number {
  background: var(--cream);
}

.place-photo,
.mum-photo {
  min-height: 54px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  background: #d9f2ff;
}

.place-photo strong {
  position: absolute;
  left: 8px;
  bottom: 6px;
  z-index: 2;
  padding: 3px 6px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.78);
  font-size: 0.64rem;
  line-height: 1;
  max-width: calc(100% - 16px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-photo .sun,
.place-photo .landmark,
.place-photo .wave {
  position: absolute;
  display: block;
}

.place-photo .sun {
  width: 22px;
  height: 22px;
  right: 10px;
  top: 8px;
  background: var(--sun);
  border: 2px solid var(--line);
  border-radius: 50%;
}

.place-photo.paris {
  background: linear-gradient(#bfeaff 0 58%, #ffe1ea 58% 100%);
}

.place-photo.paris .landmark {
  left: 47%;
  bottom: 11px;
  width: 34px;
  height: 38px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 38px solid #222;
  transform: translateX(-50%);
}

.place-photo.montpellier {
  background: linear-gradient(#bdf1d1 0 48%, #f7db8f 48% 100%);
}

.place-photo.montpellier .landmark {
  left: 34px;
  bottom: 14px;
  width: 62px;
  height: 22px;
  background: #fffcf0;
  border: 2px solid var(--line);
  box-shadow: 24px -12px 0 #fffcf0, 24px -12px 0 2px var(--line);
}

.place-photo.tbc {
  background: linear-gradient(135deg, #d9d0ff, #fff0a8);
}

.place-photo.tbc .landmark {
  left: 50%;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 3px dashed var(--line);
  border-radius: 50%;
  transform: translateX(-50%);
}

.place-photo.positioning {
  background: linear-gradient(135deg, #d9d0ff, #fff0a8);
}

.place-photo.positioning .landmark {
  left: 50%;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 3px dashed var(--line);
  border-radius: 50%;
  transform: translateX(-50%);
}

.place-photo.constance {
  background: linear-gradient(#c8f5ff 0 42%, #4ab3ae 42% 62%, #9ec56a 62% 100%);
}

.place-photo.constance .wave {
  left: 0;
  right: 0;
  bottom: 24px;
  height: 14px;
  background:
    radial-gradient(circle at 16px -4px, transparent 15px, rgba(255, 255, 255, 0.95) 16px 18px, transparent 19px) 0 0 / 42px 14px;
}

.place-photo.constance .landmark {
  left: 50%;
  bottom: 12px;
  width: 78px;
  height: 28px;
  border-radius: 50% 50% 8px 8px;
  background:
    radial-gradient(circle at 18px 20px, transparent 0 10px, #1f1f1f 11px 13px, transparent 14px),
    radial-gradient(circle at 60px 20px, transparent 0 10px, #1f1f1f 11px 13px, transparent 14px),
    linear-gradient(135deg, transparent 0 36%, #1f1f1f 37% 41%, transparent 42%),
    linear-gradient(45deg, transparent 0 44%, #1f1f1f 45% 49%, transparent 50%);
  transform: translateX(-50%);
}

.place-photo.nice {
  background: linear-gradient(#9ce9ff 0 46%, #0e9ab2 46% 70%, #ffd875 70%);
}

.place-photo.nice .wave {
  left: 0;
  right: 0;
  bottom: 18px;
  height: 12px;
  background:
    radial-gradient(circle at 14px -3px, transparent 15px, #ffffff 16px 18px, transparent 19px) 0 0 / 46px 18px;
  opacity: 0.9;
}

.place-photo.serbia {
  background: linear-gradient(#ffd0c4 0 52%, #f4b25d 52% 100%);
}

.place-photo.serbia .landmark {
  left: 26px;
  bottom: 14px;
  width: 78px;
  height: 30px;
  background:
    linear-gradient(90deg, transparent 0 15%, #222 15% 21%, transparent 21% 40%, #222 40% 46%, transparent 46% 69%, #222 69% 75%, transparent 75%),
    #fff7eb;
  border: 2px solid var(--line);
}

.place-photo.singapore {
  background: linear-gradient(#171d4f 0 56%, #ff9a65 56% 100%);
}

.place-photo.singapore .landmark {
  left: 34px;
  bottom: 14px;
  width: 82px;
  height: 34px;
  background:
    linear-gradient(90deg, #ffffff 0 12px, transparent 12px 22px, #ffffff 22px 34px, transparent 34px 46px, #ffffff 46px 58px, transparent 58px),
    transparent;
}

.place-photo.auckland {
  background: linear-gradient(#bdeeff 0 50%, #2db182 50% 100%);
}

.place-photo.auckland .landmark {
  left: 50%;
  bottom: 10px;
  width: 8px;
  height: 44px;
  background: #222;
  transform: translateX(-50%);
}

.place-photo.auckland .landmark::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 15px;
  width: 32px;
  height: 7px;
  background: #222;
  border-radius: 999px;
}

.event-list {
  display: grid;
  gap: 6px;
}

.event-chip {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  padding: 7px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 2px 2px 0 rgba(21, 21, 21, 0.92);
}

.event-chip svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  color: var(--chip-color, var(--ink));
}

.event-chip strong {
  display: block;
  font-size: 0.76rem;
  line-height: 1.12;
}

.event-chip span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1.25;
}

.event-chip.flight {
  --chip-color: var(--sky);
  background: #e5f7ff;
}

.event-chip.train {
  --chip-color: var(--tomato);
  background: #fff1e6;
}

.event-chip.home {
  --chip-color: var(--leaf);
  background: #eef9ef;
}

.event-chip.linked {
  --chip-color: var(--lavender);
}

.tiny-action {
  width: max-content;
  max-width: 100%;
  padding: 6px 8px;
  background: var(--sun);
  box-shadow: 2px 2px 0 var(--line);
  color: var(--ink);
  font-size: 0.68rem;
}

.mum-photo {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: #f0fff5;
}

.mum-photo .photo-preview {
  width: 44px;
  height: 44px;
  box-shadow: none;
}

.mum-photo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.mum-photo span {
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
}

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

.chapter-card {
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line);
  overflow: hidden;
}

.chapter-card .place-photo {
  min-height: 118px;
  border: 0;
  border-bottom: 3px solid var(--line);
  border-radius: 0;
}

.chapter-body {
  padding: 15px;
}

.chapter-body h3 {
  margin: 0;
  font-size: 1.08rem;
}

.chapter-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.38;
}

.chapter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chapter-meta span,
.chapter-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.trip-notes {
  margin-top: 18px;
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #fff8d9;
  box-shadow: 5px 5px 0 var(--line);
}

.trip-notes h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.trip-notes p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.personalise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 1fr);
  gap: 22px;
  padding: 24px;
  border: 3px solid var(--line);
  border-radius: var(--radius);
  background: #eaf8ff;
  box-shadow: var(--shadow);
}

.personalise-copy {
  align-self: center;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field span,
.photo-field strong {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  font-weight: 650;
}

.field input:focus,
.photo-field:focus-within,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(41, 169, 232, 0.48);
  outline-offset: 2px;
}

.photo-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 10px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.photo-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-field small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 680;
}

.photo-preview {
  width: 68px;
  height: 68px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffd8c9 0 15px, transparent 16px),
    radial-gradient(circle at 50% 92%, #2f9d62 0 30px, transparent 31px),
    #f8d2e0;
  box-shadow: 3px 3px 0 var(--line);
  overflow: hidden;
}

.photo-preview.has-image {
  background-size: cover;
  background-position: center;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-button {
  padding: 11px 16px;
  background: var(--tomato);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--line);
}

.text-button {
  padding: 10px 14px;
  background: var(--white);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .personalise-section {
    grid-template-columns: 1fr;
  }

  .boarding-stack {
    max-width: 560px;
  }

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

@media (max-width: 680px) {
  .topbar,
  .section-heading,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-grid {
    margin-top: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .route-strip span {
    min-width: 48px;
  }

  main {
    padding-inline: 12px;
  }

  .weekday-row,
  .calendar-grid {
    min-width: 900px;
  }

  .day {
    min-height: 178px;
  }

  .chapter-grid,
  .personalise-form {
    grid-template-columns: 1fr;
  }

  .personalise-section {
    padding: 16px;
  }
}

@media print {
  body {
    background: var(--white);
  }

  .hero,
  main {
    padding: 0;
  }

  .topbar,
  .boarding-stack,
  .details-section,
  .personalise-section,
  .icon-button,
  .tiny-action {
    display: none !important;
  }

  .hero {
    min-height: 0;
    border: 0;
  }

  .hero-grid {
    display: block;
    margin: 0 0 14px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .route-strip {
    display: none;
  }

  .calendar-shell,
  .day,
  .event-chip,
  .place-photo,
  .mum-photo {
    box-shadow: none;
  }

  .weekday-row,
  .calendar-grid {
    min-width: 0;
  }

  .day {
    min-height: 132px;
    padding: 6px;
  }
}

@media screen {
  :root {
    --scrap-blue: #064fc4;
    --scrap-red: #c93c31;
    --scrap-paper: #fffefa;
    --scrap-line: #d9d9d9;
    --hand:
      "Bradley Hand", "Segoe Print", "Comic Sans MS", "Marker Felt", cursive;
  }

  body {
    background:
      linear-gradient(90deg, rgba(149, 115, 77, 0.12) 1px, transparent 1px) 0 0 / 62px 62px,
      linear-gradient(rgba(149, 115, 77, 0.1) 1px, transparent 1px) 0 0 / 62px 62px,
      radial-gradient(circle at 8% 20%, rgba(191, 147, 92, 0.22), transparent 28%),
      radial-gradient(circle at 90% 12%, rgba(5, 79, 196, 0.14), transparent 24%),
      #f3eadc;
  }

  .hero {
    min-height: auto;
    padding: 12px clamp(16px, 3vw, 36px);
    background: rgba(255, 254, 250, 0.84);
    border-bottom: 0;
    overflow: visible;
  }

  .hero::after,
  .hero-grid {
    display: none;
  }

  .topbar {
    max-width: 1600px;
  }

  .brand-mark {
    background: #ffd84d;
    box-shadow: 2px 2px 0 var(--line);
  }

  main {
    padding: 0 clamp(10px, 2vw, 28px) 64px;
  }

  .calendar-section {
    max-width: 1660px;
    scroll-margin-top: 10px;
  }

  .scrapbook-paper {
    position: relative;
    isolation: isolate;
    min-height: 92vh;
    padding: 30px clamp(18px, 7vw, 132px) 42px;
    background:
      linear-gradient(90deg, rgba(6, 79, 196, 0.9) 0 9px, transparent 9px) right top / 18px 100% no-repeat,
      linear-gradient(90deg, transparent 0 calc(100% - 18px), rgba(255, 255, 255, 0.58) calc(100% - 18px)),
      var(--scrap-paper);
    border: 1px solid rgba(93, 72, 44, 0.18);
    box-shadow: 0 30px 90px rgba(67, 52, 35, 0.22);
    overflow: hidden;
  }

  .scrapbook-paper::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: clamp(64px, 8vw, 132px);
    background:
      linear-gradient(135deg, transparent 10px, rgba(151, 107, 58, 0.22) 11px 12px, transparent 13px) 0 0 / 32px 32px,
      linear-gradient(70deg, transparent 46%, rgba(92, 66, 34, 0.18) 48%, transparent 51%) 0 0 / 46px 46px,
      #e8d5b7;
    clip-path: polygon(0 0, 84% 0, 72% 8%, 92% 16%, 74% 27%, 88% 39%, 70% 51%, 92% 63%, 76% 74%, 86% 86%, 70% 100%, 0 100%);
    z-index: -1;
  }

  .scrapbook-top {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 230px;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
  }

  .scrapbook-title {
    text-align: center;
  }

  .scrapbook-title h2 {
    margin: 0;
    font-family: var(--hand);
    font-size: clamp(3.4rem, 7.4vw, 7.6rem);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: 0;
  }

  .scrapbook-title h2 span {
    color: var(--scrap-red);
  }

  .scrapbook-title p {
    display: inline-block;
    margin: 14px 0 0;
    padding: 7px 32px 8px;
    background: #ffd84d;
    color: #141414;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
    font-family: var(--hand);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    transform: rotate(-1.5deg);
  }

  .ticket-sticker,
  .couple-polaroid,
  .stamp-sticker,
  .bon-sticker,
  .blue-note,
  .yellow-tag,
  .scooter-sticker,
  .packing-note {
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 8px 20px rgba(32, 28, 22, 0.18);
  }

  .ticket-sticker {
    display: grid;
    gap: 7px;
    padding: 13px 16px 12px;
    background: #fff;
    border-radius: 8px;
    transform: rotate(-8deg);
  }

  .ticket-sticker span {
    width: max-content;
    margin: -14px 0 0 -17px;
    padding: 7px 24px;
    background: var(--scrap-blue);
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.08em;
    transform: rotate(-1deg);
  }

  .ticket-sticker strong {
    font-size: 1.9rem;
    letter-spacing: 0.03em;
  }

  .ticket-sticker i {
    font-style: normal;
    font-size: 1.2rem;
  }

  .ticket-sticker small {
    color: var(--scrap-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .ticket-sticker b {
    height: 28px;
    background: repeating-linear-gradient(90deg, #111 0 3px, transparent 3px 7px);
  }

  .couple-polaroid {
    justify-self: end;
    width: 235px;
    padding: 10px 10px 14px;
    background: #fff;
    transform: rotate(7deg);
  }

  .couple-polaroid img {
    display: block;
    width: 100%;
    aspect-ratio: 1.42;
    object-fit: cover;
    border-radius: 4px;
  }

  .couple-polaroid strong {
    display: block;
    margin-top: 8px;
    font-family: var(--hand);
    color: var(--scrap-red);
    font-size: 1.12rem;
    text-align: center;
  }

  .calendar-decor {
    pointer-events: none;
  }

  .calendar-decor > span {
    position: absolute;
    z-index: 3;
  }

  .stamp-sticker {
    top: 34px;
    right: clamp(245px, 17vw, 320px);
    display: grid;
    place-items: center;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 1.02rem;
    font-weight: 850;
    line-height: 1.12;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-9deg);
  }

  .bon-sticker {
    top: 260px;
    left: clamp(22px, 3vw, 58px);
    padding: 14px 16px;
    background: #e95736;
    color: #fff;
    border-radius: 10px;
    font-family: var(--hand);
    font-size: 1.45rem;
    line-height: 1;
    text-align: center;
    transform: rotate(-11deg);
  }

  .tower-sticker {
    top: 392px;
    left: clamp(12px, 2.7vw, 46px);
    width: 150px;
    height: 160px;
    background: url("assets/plush-toys-sticker.svg") center / contain no-repeat;
    border: 0;
    box-shadow: none;
    transform: rotate(-6deg);
  }

  .blue-note {
    left: clamp(18px, 2.8vw, 48px);
    bottom: 310px;
    width: 142px;
    padding: 14px 10px;
    background: var(--scrap-blue);
    color: #fff;
    border-radius: 10px;
    font-family: var(--hand);
    font-size: 1.08rem;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-7deg);
  }

  .yellow-tag {
    top: 120px;
    right: 28px;
    width: 126px;
    padding: 14px 10px;
    background: #ffd02d;
    border-radius: 12px;
    font-family: var(--hand);
    font-size: 1.28rem;
    line-height: 1;
    text-align: center;
    transform: rotate(10deg);
  }

  .yellow-tag small {
    font-size: 0.85rem;
  }

  .scooter-sticker {
    top: 360px;
    right: 46px;
    display: grid;
    place-items: center;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 48%, #df583b 0 16px, transparent 17px),
      #fff;
    font-family: var(--hand);
    font-size: 0.98rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
  }

  .packing-note {
    right: 32px;
    bottom: 265px;
    width: 156px;
    padding: 15px 14px;
    background: #fff8e8;
    font-family: var(--hand);
    font-size: 0.96rem;
    line-height: 1.5;
    transform: rotate(7deg);
  }

  .calendar-actions {
    display: flex;
    justify-content: flex-end;
    max-width: 1280px;
    margin: -4px auto 10px;
  }

  .icon-button {
    background: #ffd84d;
    box-shadow: 3px 3px 0 #111;
  }

  .calendar-shell {
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 35px rgba(48, 39, 28, 0.14);
  }

  .weekday-row,
  .calendar-grid {
    min-width: 0;
    width: 100%;
  }

  .weekday-row {
    background: var(--scrap-blue);
  }

  .weekday-row span {
    padding: 9px 12px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .calendar-grid {
    border-top: 0;
  }

  .day {
    min-height: 160px;
    padding: 9px 10px 10px;
    border-right: 1px solid var(--scrap-line);
    border-bottom: 1px solid var(--scrap-line);
    background: rgba(255, 255, 255, 0.92);
    gap: 5px;
  }

  .day.place-paris,
  .day.place-montpellier,
  .day.place-tbc,
  .day.place-nice,
  .day.place-serbia,
  .day.place-final-paris {
    background: rgba(255, 255, 255, 0.94);
  }

  .day-head {
    justify-content: flex-start;
    gap: 8px;
    min-height: 23px;
  }

  .day-number {
    order: -1;
    min-width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 500;
    font-family: var(--hand);
  }

  .day-name {
    color: #4a4a4a;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.04em;
  }

  .place-photo,
  .mum-photo {
    border: 0;
    box-shadow: none;
  }

  .place-photo {
    min-height: 72px;
    margin-top: 2px;
    background-size: cover;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
  }

  .place-photo .sun,
  .place-photo .landmark,
  .place-photo .wave {
    position: absolute;
    display: block;
  }

  .place-photo .landmark {
    border: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }

  .place-photo .landmark::before,
  .place-photo .landmark::after {
    content: "";
    position: absolute;
    display: block;
  }

  .place-photo strong {
    top: 4px;
    bottom: auto;
    left: 50%;
    max-width: calc(100% - 12px);
    transform: translateX(-50%);
    padding: 0;
    background: transparent;
    color: var(--scrap-blue);
    font-family: var(--hand);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 0 #fff, 0 0 3px #fff;
  }

  .place-photo.paris {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0 55%, rgba(255, 241, 222, 0.78) 56%),
      radial-gradient(circle at 80% 26%, #ffd45b 0 12px, transparent 13px),
      linear-gradient(#b9e5ff 0 47%, #d8b77c 47% 50%, #7aa26b 50% 57%, #ead2ac 57% 100%);
  }

  .place-photo.paris .landmark {
    left: 50%;
    bottom: 7px;
    width: 54px;
    height: 58px;
    background: #1f1f1f;
    clip-path: polygon(46% 0, 54% 0, 60% 28%, 68% 71%, 90% 100%, 62% 100%, 52% 78%, 48% 78%, 38% 100%, 10% 100%, 32% 71%, 40% 28%);
    transform: translateX(-50%);
  }

  .place-photo.paris .landmark::before {
    left: 8px;
    top: 24px;
    width: 38px;
    height: 5px;
    background: #1f1f1f;
    border-radius: 999px;
  }

  .place-photo.paris .landmark::after {
    left: 2px;
    bottom: 10px;
    width: 50px;
    height: 6px;
    background: #1f1f1f;
    border-radius: 999px;
  }

  .place-photo.montpellier {
    background:
      radial-gradient(circle at 82% 28%, #ffd45b 0 11px, transparent 12px),
      linear-gradient(#bce8ff 0 46%, #ffefb6 46% 100%);
  }

  .place-photo.montpellier .landmark {
    left: 50%;
    bottom: 11px;
    width: 70px;
    height: 36px;
    border: 2px solid #1f1f1f;
    border-radius: 16px 16px 3px 3px;
    background:
      radial-gradient(ellipse at 50% 100%, transparent 0 16px, #f8e8bd 17px),
      linear-gradient(90deg, #b98043 0 8px, #f8e8bd 8px 62px, #b98043 62px);
    transform: translateX(-50%);
  }

  .place-photo.montpellier .landmark::before {
    left: 12px;
    bottom: -2px;
    width: 10px;
    height: 24px;
    background: #f8e8bd;
    border: 2px solid #1f1f1f;
    border-bottom: 0;
  }

  .place-photo.montpellier .landmark::after {
    right: 12px;
    bottom: -2px;
    width: 10px;
    height: 24px;
    background: #f8e8bd;
    border: 2px solid #1f1f1f;
    border-bottom: 0;
  }

  .place-photo.nice {
    background:
      radial-gradient(circle at 78% 24%, #ffd45b 0 11px, transparent 12px),
      linear-gradient(#aeefff 0 39%, #029bc8 39% 63%, #fff0a8 63% 100%);
  }

  .place-photo.nice .wave {
    left: 0;
    right: 0;
    bottom: 22px;
    height: 16px;
    background:
      radial-gradient(circle at 18px -4px, transparent 17px, rgba(255, 255, 255, 0.95) 18px 20px, transparent 21px) 0 0 / 48px 16px;
  }

  .place-photo.nice .landmark {
    right: 13px;
    bottom: 17px;
    width: 26px;
    height: 37px;
    border-radius: 50% 50% 0 0;
    background: #24825f;
    clip-path: polygon(45% 100%, 55% 100%, 58% 44%, 100% 16%, 62% 28%, 74% 0, 50% 26%, 23% 0, 38% 30%, 0 15%, 42% 44%);
  }

  .place-photo.serbia {
    background:
      linear-gradient(#fec5a5 0 48%, #6f3f35 48% 65%, #e0a65b 65% 100%);
  }

  .place-photo.serbia .landmark {
    left: 50%;
    bottom: 13px;
    width: 72px;
    height: 33px;
    background:
      radial-gradient(circle at 50% 0, #d8d8d8 0 16px, transparent 17px),
      linear-gradient(#f4eee5 0 100%);
    border: 2px solid #1f1f1f;
    border-radius: 12px 12px 4px 4px;
    transform: translateX(-50%);
  }

  .place-photo.serbia .landmark::before {
    left: 9px;
    bottom: 27px;
    width: 13px;
    height: 18px;
    background: #f4eee5;
    border: 2px solid #1f1f1f;
    border-radius: 50% 50% 0 0;
    box-shadow: 38px 0 0 #f4eee5, 38px 0 0 2px #1f1f1f;
  }

  .place-photo.serbia .landmark::after {
    left: 30px;
    top: 12px;
    width: 12px;
    height: 21px;
    background: #513024;
    border-radius: 8px 8px 0 0;
  }

  .place-photo.singapore,
  .dream-card.singapore span {
    background:
      radial-gradient(circle at 78% 24%, #ffd45b 0 10px, transparent 11px),
      linear-gradient(#202462 0 52%, #ff9673 52% 100%);
  }

  .place-photo.singapore .landmark {
    left: 50%;
    bottom: 14px;
    width: 82px;
    height: 34px;
    background:
      linear-gradient(90deg, #ffffff 0 9px, transparent 9px 16px, #ffffff 16px 25px, transparent 25px 34px, #ffffff 34px 43px, transparent 43px 55px, #ffffff 55px 63px, transparent 63px),
      linear-gradient(#ffffff 0 100%);
    clip-path: polygon(0 100%, 0 45%, 10% 45%, 10% 12%, 22% 12%, 22% 45%, 34% 45%, 34% 0, 46% 0, 46% 45%, 60% 45%, 60% 22%, 72% 22%, 72% 45%, 88% 45%, 88% 35%, 100% 35%, 100% 100%);
    transform: translateX(-50%);
  }

  .place-photo.auckland,
  .dream-card.auckland span {
    background:
      radial-gradient(circle at 80% 24%, #ffd45b 0 10px, transparent 11px),
      linear-gradient(#bcefff 0 48%, #1789b3 48% 63%, #f7f2d8 63%);
  }

  .place-photo.auckland .landmark {
    left: 50%;
    bottom: 14px;
    width: 8px;
    height: 48px;
    background: #1f1f1f;
    transform: translateX(-50%);
  }

  .place-photo.auckland .landmark::before {
    left: -15px;
    top: 16px;
    width: 38px;
    height: 7px;
    background: #1f1f1f;
    border-radius: 999px;
  }

  .place-photo.auckland .landmark::after {
    left: -23px;
    bottom: -5px;
    width: 54px;
    height: 8px;
    background: #ffffff;
    border: 2px solid #1f1f1f;
    border-radius: 999px 999px 0 0;
  }

  .place-photo.tbc {
    min-height: 58px;
    background: #fff5c9;
    box-shadow: none;
  }

  .place-photo.tbc strong {
    top: 18px;
    color: var(--scrap-red);
    font-size: 1.45rem;
  }

  .place-photo.final-paris strong,
  .place-photo.paris strong {
    color: var(--scrap-red);
  }

  .event-list {
    gap: 3px;
  }

  .flight-window-card {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 2px;
    min-height: 92px;
    margin-top: 2px;
    padding: 10px 7px 8px;
    overflow: hidden;
    border-radius: 999px 999px 12px 12px;
    background:
      linear-gradient(rgba(10, 18, 32, 0.3), rgba(10, 18, 32, 0.35)),
      linear-gradient(#7e97b8 0 42%, #cfaa78 42% 60%, #4b5871 60% 100%);
    color: #fff;
    box-shadow: 0 5px 13px rgba(24, 24, 24, 0.18);
    text-align: center;
  }

  .flight-window-card::before {
    content: "";
    position: absolute;
    inset: 8px 8px auto;
    height: 74px;
    border: 8px solid rgba(255, 255, 255, 0.9);
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    pointer-events: none;
  }

  .flight-window-card::after {
    content: "";
    position: absolute;
    left: 22%;
    top: 24px;
    width: 17px;
    height: 54px;
    background: rgba(20, 20, 20, 0.75);
    clip-path: polygon(42% 0, 58% 0, 65% 100%, 35% 100%);
    box-shadow: 0 28px 0 -7px rgba(20, 20, 20, 0.75);
    pointer-events: none;
  }

  .flight-window-card > * {
    position: relative;
    z-index: 1;
  }

  .flight-trip {
    font-size: 0.56rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .flight-window-card strong {
    margin-top: 18px;
    font-size: 0.78rem;
    line-height: 1;
  }

  .flight-route {
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .flight-route i {
    font-style: normal;
    padding: 0 2px;
  }

  .flight-window-card small {
    max-width: 86%;
    font-size: 0.58rem;
    font-weight: 780;
    line-height: 1.05;
  }

  .event-chip {
    display: flex;
    grid-template-columns: none;
    gap: 7px;
    align-items: flex-start;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
  }

  .event-chip.flight,
  .event-chip.train,
  .event-chip.home,
  .event-chip.linked {
    background: transparent;
  }

  .event-chip svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    stroke-width: 2.4;
    color: var(--scrap-red);
  }

  .event-chip.train svg {
    color: #111;
  }

  .event-chip.home svg,
  .event-chip.linked svg {
    color: var(--scrap-blue);
  }

  .event-chip strong {
    font-family: var(--hand);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.05;
  }

  .event-chip span span {
    margin-top: 2px;
    color: #202020;
    font-family: var(--hand);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.15;
  }

  .tiny-action {
    margin-top: 4px;
    padding: 5px 10px;
    border-color: var(--scrap-blue);
    background: #fff;
    color: var(--scrap-blue);
    box-shadow: none;
    font-family: var(--hand);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .mum-photo {
    min-height: 54px;
    padding: 3px;
    background: transparent;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .mum-photo .photo-preview,
  .mum-photo img {
    width: 52px;
    height: 46px;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    object-fit: cover;
  }

  .mum-photo span {
    font-family: var(--hand);
    font-size: 0.8rem;
    color: #111;
  }

  .dream-strip {
    max-width: 1280px;
    margin: 22px auto 0;
    overflow: hidden;
  }

  .dream-strip h3 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 12px;
    font-family: var(--hand);
    font-size: 1.7rem;
    font-weight: 600;
  }

  .dream-strip h3::before {
    content: "▣";
    font-family: system-ui, sans-serif;
    font-size: 1.2rem;
  }

  .dream-strip h3::after {
    content: "";
    flex: 1;
    border-top: 2px dashed rgba(201, 60, 49, 0.55);
  }

  .dream-photos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
  }

  .dream-card {
    position: relative;
    margin: 0;
    min-height: 118px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  .dream-card span {
    display: block;
    height: 100%;
  }

  .dream-card.paris span {
    background: linear-gradient(#aadaff 0 55%, #d9b16c 55%);
  }

  .dream-card.montpellier span {
    background: linear-gradient(#aedfff 0 44%, #f4d893 44%);
  }

  .dream-card.constance span {
    background: linear-gradient(#c8f5ff 0 42%, #4ab3ae 42% 62%, #9ec56a 62%);
  }

  .dream-card.nice span {
    background: linear-gradient(#9feaff 0 43%, #0f91c1 43% 68%, #ffe6a0 68%);
  }

  .dream-card.serbia span {
    background: linear-gradient(#f9a68d 0 44%, #442621 44% 64%, #e1aa60 64%);
  }

  .dream-card figcaption {
    position: absolute;
    left: 10px;
    top: 7px;
    color: #fff;
    font-family: var(--hand);
    font-size: 1.35rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.52);
  }
}

@media screen and (max-width: 1280px) {
  .scrapbook-paper {
    padding-inline: 24px;
  }

  .calendar-decor {
    display: block;
  }

  .calendar-decor > span:not(.tower-sticker) {
    display: none;
  }

  .tower-sticker {
    top: 238px;
    left: 18px;
    width: 118px;
    height: 126px;
    z-index: 8;
  }

  .scrapbook-top {
    grid-template-columns: minmax(0, 1fr);
  }

  .ticket-sticker,
  .couple-polaroid {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .scrapbook-paper {
    padding-inline: 18px;
  }

  .calendar-shell {
    overflow: hidden;
  }

  .day {
    min-height: 135px;
    padding: 7px 6px;
  }

  .day-head {
    gap: 4px;
  }

  .day-number {
    font-size: 0.96rem;
  }

  .day-name {
    font-size: 0.55rem;
  }

  .place-photo {
    min-height: 50px;
    border-radius: 6px;
  }

  .place-photo strong {
    font-size: 0.74rem;
    white-space: normal;
    line-height: 0.95;
  }

  .place-photo.tbc strong {
    top: 16px;
    font-size: 1rem;
  }

  .event-chip {
    gap: 4px;
  }

  .flight-window-card {
    min-height: 54px;
    padding: 5px 3px 4px;
    border-radius: 999px 999px 8px 8px;
  }

  .flight-window-card::before {
    inset: 5px 5px auto;
    height: 42px;
    border-width: 5px;
  }

  .flight-window-card::after {
    left: 18%;
    top: 17px;
    width: 10px;
    height: 28px;
  }

  .flight-trip {
    display: none;
  }

  .flight-window-card strong {
    margin-top: 10px;
    font-size: 0.52rem;
  }

  .flight-route {
    font-size: 0.7rem;
  }

  .flight-window-card small {
    display: none;
  }

  .event-chip svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .event-chip strong {
    font-size: 0.68rem;
    line-height: 1;
  }

  .event-chip span span {
    display: none;
  }

  .mum-photo {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 44px;
    gap: 4px;
  }

  .mum-photo .photo-preview,
  .mum-photo img {
    width: 40px;
    height: 36px;
  }

  .mum-photo span {
    font-size: 0.62rem;
  }

  .tiny-action {
    min-width: 30px;
    max-width: 100%;
    padding: 3px 6px;
    overflow: hidden;
    font-size: 0.64rem;
    white-space: nowrap;
  }

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

@media screen and (max-width: 760px) {
  .scrapbook-paper {
    padding: 20px 12px 34px;
  }

  .scrapbook-title h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .scrapbook-title p {
    padding-inline: 18px;
  }

  .calendar-actions {
    justify-content: flex-start;
  }

  .weekday-row,
  .calendar-grid {
    min-width: 0;
    width: 100%;
  }

  .day {
    min-height: 155px;
  }

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

@media screen and (max-width: 560px) {
  .calendar-shell {
    overflow-x: auto;
  }

  .weekday-row,
  .calendar-grid {
    min-width: 920px;
    width: auto;
  }
}

@media screen {
  .place-photo:not(.tbc):not(.positioning):not(.constance) {
    min-height: 78px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .place-photo:not(.tbc):not(.positioning):not(.constance)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 42%, rgba(0, 0, 0, 0.12));
    pointer-events: none;
  }

  .place-photo:not(.tbc):not(.positioning):not(.constance) .sun,
  .place-photo:not(.tbc):not(.positioning):not(.constance) .landmark,
  .place-photo:not(.tbc):not(.positioning):not(.constance) .wave {
    display: none !important;
  }

  .place-photo:not(.tbc):not(.positioning):not(.constance) strong {
    z-index: 1;
    color: #fff !important;
    font-size: 1.04rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.68);
  }

  .place-photo.paris {
    background-image: url("assets/place-paris.jpg") !important;
  }

  .place-photo.montpellier {
    background-image: url("assets/place-montpellier.jpg") !important;
  }

  .place-photo.nice {
    background-image: url("assets/place-nice.jpg") !important;
  }

  .place-photo.serbia {
    background-image: url("assets/place-serbia.jpg") !important;
  }

  .place-photo.singapore {
    background-image: url("assets/place-singapore.jpg") !important;
  }

  .place-photo.auckland {
    background-image: url("assets/place-auckland.jpg") !important;
  }

  .dream-card.paris span {
    background-image: url("assets/place-paris.jpg") !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.montpellier span {
    background-image: url("assets/place-montpellier.jpg") !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.constance span {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.24)),
      linear-gradient(#c8f5ff 0 42%, #4ab3ae 42% 62%, #9ec56a 62%) !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.nice span {
    background-image: url("assets/place-nice.jpg") !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.serbia span {
    background-image: url("assets/place-serbia.jpg") !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.singapore span {
    background-image: url("assets/place-singapore.jpg") !important;
    background-size: cover;
    background-position: center;
  }

  .dream-card.auckland span {
    background-image: url("assets/place-auckland.jpg") !important;
    background-size: cover;
    background-position: center;
  }
}
