:root {
  --blush: #efd8d3;
  --red: #ff2c2f;
  --burgundy: #581913;
  --lilac: #d9bfdf;
  --lime: #d7ff00;
  --sky: #9ec7e8;
  --ink: #431611;
  --soft-red: #ff8f92;
  --gutter: clamp(1.4rem, 4vw, 3rem);
  --serif: "moret", "Libertinus Serif", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  --type-nav: var(--type-meta);
  --type-meta: clamp(.95rem, 1.35vw, 1.18rem);
  --type-card-copy: clamp(1.05rem, 1.55vw, 1.32rem);
  --type-body: var(--type-card-copy);
  --type-serif-copy: clamp(1.45rem, 2.55vw, 2.15rem);
  --type-h3: clamp(2.25rem, 4.1vw, 3.45rem);
  --type-serif-mid: var(--type-h3);
  --type-section-title: clamp(3.7rem, 8vw, 7rem);
  --type-hero-title: clamp(5.25rem, 13.5vw, 10.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  overscroll-behavior-x: none;
}

html.js .infos .shape {
  opacity: 0;
  transition:
    opacity .7s ease,
    transform .9s cubic-bezier(.2, .75, .2, 1);
  will-change: opacity, transform;
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--red);
  font-family: var(--sans);
  font-optical-sizing: none;
  font-variation-settings: "opsz" 20;
  font-weight: 500;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

main,
.section {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.password-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  min-height: 100svh;
  background: var(--blush);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.password-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.password-locked {
  overflow: hidden;
}

.password-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100svh;
  max-width: none;
  object-fit: fill;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

.password-form {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: .95rem;
  width: min(24rem, calc(100vw - 3rem));
}

.password-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(.98rem, 1.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.password-title span {
  font-family: var(--serif);
  letter-spacing: 0;
}

.password-form input {
  min-height: clamp(2.6rem, 3.6vw, 3rem);
  border-color: var(--ink);
  color: var(--ink);
  text-align: center;
  font-size: clamp(.98rem, 1.5vw, 1.25rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.password-form input::placeholder {
  color: var(--ink);
}

.password-error {
  min-height: 1.2rem;
  margin: 0;
  color: var(--ink);
  font-size: var(--type-meta);
  text-align: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  padding: clamp(1rem, 2.8vw, 2.25rem) var(--gutter) 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(8.5rem, 1fr) auto minmax(3rem, 1fr);
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: clamp(2.45rem, 3.25vw, 3rem);
  border: 1.5px solid var(--red);
  border-radius: 999px;
  background: color-mix(in srgb, var(--blush) 84%, transparent);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: background-color .35s ease;
}

body.nav-on-dark .nav-shell {
  background: color-mix(in srgb, var(--burgundy) 88%, transparent);
}

.brand,
.nav-links a,
.menu-toggle,
.language-toggle {
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.brand {
  padding-left: clamp(.95rem, 1.6vw, 1.35rem);
}

.brand-heart {
  font-family: var(--serif);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 3.2vw, 3rem);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 100%;
  border: 0;
  color: var(--red);
  background: transparent;
  cursor: pointer;
}

.menu-toggle::before {
  content: "×";
  display: none;
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: .22rem auto;
  background: currentColor;
  transition: transform .25s ease;
}

body.menu-open .menu-toggle {
  display: grid;
  place-items: center;
}

body.menu-open .menu-toggle::before {
  display: block;
}

body.menu-open .menu-toggle span {
  display: none;
}

.language-toggle {
  justify-self: end;
  width: clamp(3rem, 4.5vw, 3.8rem);
  height: 100%;
  border: 0;
  color: var(--red);
  background: transparent;
  cursor: pointer;
}

.section {
  min-height: 100svh;
  padding: clamp(6.5rem, 13vw, 12rem) var(--gutter) clamp(4rem, 9vw, 7rem);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.hero h1 {
  transform: translateY(-4svh);
}

.hero-marquee {
  position: absolute;
  inset: auto 0 clamp(1rem, 2vw, 1.7rem);
  overflow: hidden;
  color: var(--red);
  pointer-events: none;
  white-space: nowrap;
}

.hero-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: hero-marquee 22s linear infinite;
}

.hero-marquee span {
  padding-right: clamp(1.4rem, 3vw, 2.8rem);
  font-size: var(--type-meta);
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-marquee .marquee-heart {
  font-family: var(--serif);
  letter-spacing: 0;
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }

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

h1,
h2,
h3,
.hotel-row strong {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
}

h1 {
  font-size: var(--type-hero-title);
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  font-size: .82em;
}

.hero-kicker,
.hero-rsvp,
.section-subtitle,
label span,
.hotel-head span {
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-kicker,
.hero-rsvp {
  position: absolute;
  font-size: var(--type-meta);
  line-height: 1.28;
  text-decoration: none;
}

.hero-kicker.left {
  left: clamp(2rem, 15vw, 13rem);
  top: 49%;
}

.hero-kicker.right {
  right: clamp(2rem, 15vw, 11rem);
  top: 49%;
}

.hero-rsvp {
  top: calc(50% + clamp(11.5rem, 18vw, 15rem));
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 8rem;
  order: 2;
  padding-top: 0;
  justify-self: center;
  text-align: center;
}

.story h2,
.weekend h2,
.infos h2,
.hotels h2,
.rsvp h2 {
  font-size: var(--type-section-title);
  text-align: center;
  text-transform: uppercase;
}

.weekend > h2,
.infos > h2,
.rsvp > h2 {
  position: sticky;
  top: 8rem;
  align-self: start;
  justify-self: center;
}

.weekend > h2 {
  margin-top: 0;
}

.story-column {
  max-width: 42rem;
  text-align: center;
}

.story-column p {
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  max-width: 34rem;
  font-family: var(--serif);
  font-size: var(--type-serif-copy);
  font-weight: 700;
  line-height: 1.15;
}

.story-photo {
  display: block;
  margin: .4rem auto clamp(2.4rem, 5vw, 4rem);
  max-width: min(76%, 24rem);
  height: auto;
  object-fit: cover;
}

.story-polaroid {
  transform: rotate(-7deg);
  filter: drop-shadow(0 .75rem 1.2rem rgb(88 25 19 / .12));
}

.weekend {
  display: grid;
  grid-template-columns: minmax(16rem, .9fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 9vw, 8rem);
  align-items: start;
}

.timeline {
  display: grid;
  gap: clamp(2.2rem, 4vw, 4rem);
  max-width: 42rem;
}

.timeline article {
  font-size: var(--type-body);
  font-weight: 500;
  line-height: 1.34;
}

.timeline p {
  margin: .7rem 0 0;
}

.date {
  display: inline-block;
  border-bottom: 1.5px solid currentColor;
  font-size: var(--type-body);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.timeline h3 {
  margin-top: 1.05rem;
  font-size: var(--type-h3);
}

@media (min-width: 901px) {
  .timeline h3 br {
    display: none;
  }
}

.schedule {
  margin: 1.9rem 0 0;
}

.schedule div {
  display: grid;
  grid-template-columns: 7.6rem 1fr;
  gap: 1.25rem;
}

.schedule dt,
.schedule dd {
  margin: 0;
}

.timeline-block {
  display: contents;
}

.timeline-map {
  display: inline-flex;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  margin-top: 1.1rem;
  padding: .55rem clamp(.95rem, 4vw, 1.45rem);
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.1rem;
}

.timeline-links a {
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: .55rem clamp(.95rem, 4vw, 1.45rem);
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.infos {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  overflow: clip;
}

.infos h2 {
  max-width: min(100%, 34rem);
  margin-inline: auto;
  text-align: center;
}

.info-shapes {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, .95fr) minmax(21rem, 1.1fr) minmax(17rem, .95fr);
  grid-template-rows: auto auto;
  gap: clamp(1.2rem, 3.2vw, 3.4rem);
  align-items: center;
  width: min(100%, 78rem);
  min-height: 0;
  margin-inline: auto;
}

.shape {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .9rem;
  padding: 2rem;
  text-align: center;
  color: var(--ink);
}

.shape h3 {
  font-size: var(--type-h3);
  line-height: .95;
  text-transform: uppercase;
}

.shape p {
  margin: 0;
  max-width: 24rem;
  font-size: var(--type-card-copy);
  font-weight: 500;
  line-height: 1.25;
}

.shape-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  z-index: 2;
  width: 100%;
  min-height: clamp(21rem, 27vw, 29rem);
  border-radius: 1.1rem;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-2deg);
}

html.js .shape-card {
  transform: translateY(1.5rem) rotate(5deg);
}

html.js .infos.is-visible .shape-card {
  opacity: 1;
  transform: rotate(-2deg);
}

.shape-lime {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  width: 112%;
  min-height: clamp(9rem, 12vw, 11.5rem);
  border-radius: 999px;
  color: var(--ink);
  background: var(--red);
  transform: rotate(-11deg);
}

html.js .shape-lime {
  transform: translateY(1.5rem) rotate(-14deg);
}

html.js .infos.is-visible .shape-lime {
  opacity: 1;
  transform: rotate(-11deg);
  transition-delay: .18s;
}

.shape-lilac {
  grid-column: 3;
  grid-row: 2;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lilac);
}

.shape-kids {
  grid-column: 1;
  grid-row: 2;
  width: min(132%, 38rem);
  aspect-ratio: .82;
  min-height: clamp(28rem, 38vw, 40rem);
  color: var(--ink);
  background: var(--sky);
  clip-path: polygon(50% 0, 96% 94%, 4% 94%);
  transform: rotate(-2deg);
}

.shape-kids h3,
.shape-kids p {
  max-width: 68%;
}

.shape-kids h3 {
  margin-top: clamp(3rem, 5vw, 5.5rem);
}

.shape-kids p {
  margin-top: clamp(1.1rem, 2vw, 1.9rem);
}

html.js .shape-lilac {
  transform: translateY(1.5rem) scale(.96);
}

html.js .infos.is-visible .shape-lilac {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition-delay: .36s;
}

html.js .shape-kids {
  transform: translateY(1.5rem) rotate(-5deg);
}

html.js .infos.is-visible .shape-kids {
  opacity: 1;
  transform: rotate(-2deg);
  transition-delay: .54s;
}

.shape-card a {
  margin-top: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}

.hotel-jump {
  display: inline-grid;
  justify-items: center;
  gap: .55rem;
}

.hotel-jump-icon {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1.45rem;
  line-height: 1;
}

.dark {
  background: var(--burgundy);
  color: var(--red);
}

.hotels {
  min-height: 100svh;
  overflow-x: hidden;
}

.hotels h2 {
  margin: 0 auto 4rem;
  max-width: 48rem;
  font-size: var(--type-section-title);
  text-align: center;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0 0 1.6rem;
  font-size: var(--type-meta);
  text-align: center;
}

.hotel-table {
  border-top: 7px double currentColor;
  max-width: 100%;
}

.hotel-row {
  display: grid;
  grid-template-columns: minmax(11rem, 1.55fr) minmax(4.8rem, .55fr) minmax(14rem, 2.1fr) max-content max-content;
  gap: clamp(.75rem, 1.35vw, 1.35rem);
  align-items: center;
  border-bottom: 2px solid currentColor;
  padding: 1rem .2rem;
  font-size: var(--type-meta);
  font-weight: 500;
}

.hotel-head {
  padding-block: .85rem;
}

.hotel-head span {
  justify-self: start;
  text-align: left;
}

.hotel-row strong {
  font-size: var(--type-h3);
  font-style: italic;
  line-height: 1;
}

.hotel-row a {
  justify-self: start;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: var(--type-nav);
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.rsvp {
  display: grid;
  grid-template-columns: minmax(18rem, .85fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
}

.rsvp-form {
  display: grid;
  gap: 1.35rem;
  width: 100%;
}

label {
  display: grid;
  gap: .55rem;
}

label span {
  font-size: var(--type-meta);
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  padding: .85rem 1.9rem;
  color: var(--red);
  background: transparent;
  font: 500 var(--type-meta)/1.2 var(--sans);
  letter-spacing: .05em;
  text-transform: none;
  outline: none;
}

select {
  appearance: none;
  padding-right: 3.4rem;
  background-image:
    linear-gradient(45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(135deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
  background-position:
    calc(100% - 1.78rem) 50%,
    calc(100% - 1.42rem) 50%;
  background-size: .48rem .48rem, .48rem .48rem;
  background-repeat: no-repeat;
}

textarea {
  min-height: 8.5rem;
  border-radius: 2rem;
  resize: vertical;
}

::placeholder {
  color: var(--soft-red);
  opacity: 1;
}

.rsvp-form button {
  min-height: 3.25rem;
  border: 0;
  border-radius: 999px;
  color: var(--blush);
  background: var(--red);
  font: 500 var(--type-meta)/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-weight: 500;
}

.rsvp-target {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  :root {
    --type-h3: clamp(2.15rem, 9vw, 3.25rem);
  }

  .site-header {
    padding-inline: 1rem;
  }

  .nav-shell {
    position: relative;
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: 3rem;
    overflow: visible;
  }

  .password-heart {
    width: 118vw;
    height: 112svh;
    transform: translate(-50%, -50%);
  }

  .password-form {
    width: min(19rem, calc(100vw - 3rem));
    gap: .8rem;
  }

  .password-title {
    font-size: .95rem;
  }

  .password-form input {
    min-height: 2.65rem;
    font-size: .95rem;
  }

  .brand {
    justify-self: center;
    min-width: 0;
    padding-left: 0;
    text-align: center;
  }

  .menu-toggle {
    position: absolute;
    inset: 0 0 0 auto;
    display: block;
    width: 3.4rem;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: .65rem;
    height: .65rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translate(-50%, -62%) rotate(45deg);
  }

  .menu-toggle span {
    display: none;
  }

  body.menu-open .menu-toggle::before {
    transform: translate(-50%, -38%) rotate(225deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + .45rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .85rem;
    border: 1.5px solid var(--red);
    border-radius: 1.25rem;
    padding: 1rem clamp(.95rem, 1.6vw, 1.35rem);
    background: color-mix(in srgb, var(--blush) 92%, transparent);
    backdrop-filter: blur(10px);
  }

  body.nav-on-dark .nav-links {
    background: color-mix(in srgb, var(--burgundy) 92%, transparent);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding-block: .2rem;
    text-align: center;
  }

  .language-toggle {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    width: 3.4rem;
    justify-self: auto;
  }

  .hero-kicker {
    position: static;
  }

  .hero {
    align-content: stretch;
  }

  .hero-main {
    position: absolute;
    top: calc(50% - clamp(2.6rem, 13vw, 3.8rem));
    left: 50%;
    display: grid;
    justify-items: center;
    gap: clamp(1.25rem, 4vw, 1.7rem);
    width: min(100%, calc(100vw - (2 * var(--gutter))));
    transform: translate(-50%, -50%);
  }

  .hero h1 {
    transform: none;
  }

  .section:not(.hero) {
    min-height: auto;
    padding-top: clamp(4.25rem, 10vw, 6rem);
    padding-bottom: clamp(3rem, 7vw, 4.75rem);
  }

  .hero-rsvp {
    position: absolute;
    top: calc(50% + clamp(13.9rem, 64vw, 18.6rem));
    left: 50%;
    transform: translateX(-50%);
    display: inline-grid;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    width: calc(100vw - 2rem);
    min-height: 3rem;
    padding: 0 1.35rem;
    text-align: center;
    white-space: nowrap;
  }

  .story,
  .weekend,
  .infos,
  .rsvp {
    grid-template-columns: 1fr;
  }

  .weekend {
    min-height: auto;
    margin: 2.25rem 0 3rem;
    padding: 1.9rem var(--gutter) 0;
    color: var(--red);
    background: transparent;
  }

  .sticky-title {
    position: static;
    order: -1;
  }

  .story h2,
  .weekend h2,
  .infos h2,
  .hotels h2,
  .rsvp h2 {
    position: static;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .story-column {
    max-width: 100%;
  }

  .story-column p {
    max-width: 32rem;
    margin-bottom: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.12;
  }

  .story-polaroid {
    max-width: min(78vw, 24rem);
    margin-block: .2rem clamp(2.1rem, 8vw, 3rem);
  }

  .weekend h2 {
    margin-top: 0;
    font-size: clamp(3.2rem, 14.2vw, 5.05rem);
    line-height: .9;
    color: var(--red);
    overflow-wrap: normal;
    word-break: normal;
  }

  .hotels h2 {
    font-size: clamp(2.9rem, 11.2vw, 4.5rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .weekend h2::before {
    content: none;
  }

  html[lang="en"] .weekend h2::before {
    content: none;
  }

  .infos h2 {
    order: -1;
  }

  .timeline {
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    margin-top: clamp(2.35rem, 9vw, 3.45rem);
    text-align: center;
  }

  .timeline article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.05rem .65rem;
    border-radius: 1.25rem;
    padding: clamp(.75rem, 2.8vw, 1.15rem) clamp(1.55rem, 5.8vw, 2.5rem) clamp(2.05rem, 7vw, 2.95rem);
    color: var(--blush);
    background: var(--red);
    font-size: var(--type-card-copy);
    line-height: 1.26;
    text-align: center;
  }

  .timeline article + article {
    padding-top: clamp(.75rem, 2.8vw, 1.15rem);
  }

  .timeline article:last-child {
    padding-bottom: clamp(2.05rem, 7vw, 2.95rem);
  }

  .timeline article > * {
    flex: 0 0 100%;
  }

  .timeline article p {
    max-width: 31rem;
  }

  .timeline article > p:not(.date):not(.timeline-location) {
    order: 3;
  }

  .timeline-block {
    display: grid;
    gap: 1.2rem;
    justify-items: center;
    margin-top: .15rem;
  }

  .timeline-block p {
    margin-bottom: 0;
  }

  .timeline h3 {
    order: 1;
    font-size: var(--type-h3);
    line-height: .95;
    color: inherit;
    text-transform: uppercase;
  }

  .timeline h3::before {
    content: "";
    display: block;
    width: 100%;
    border-top: 2px solid currentColor;
    margin: 0 0 1.05rem;
  }

  .timeline-location {
    order: 3;
    font-size: var(--type-card-copy);
    font-style: italic;
    font-weight: 700;
    margin-bottom: .15rem;
  }

  .timeline-location span {
    display: inline-block;
    margin-top: .25rem;
    font-style: normal;
    font-weight: 500;
  }

  .timeline .date {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .34rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-top: .25rem;
    padding-block: .55rem;
    width: 100%;
    font-size: var(--type-card-copy);
    font-weight: 700;
    text-align: center;
  }

  .timeline .date::before,
  .timeline .date::after {
    content: "·";
  }

  .timeline-block {
    order: 4;
  }

  .timeline-map {
    order: 5;
    flex: 0 0 auto !important;
    min-width: min(100%, 16rem);
    margin-top: .55rem;
    border-color: currentColor;
    padding-block: .58rem;
  }

  .timeline-block + .timeline-map {
    margin-top: 1.1rem;
  }

  .timeline-links {
    order: 4;
    flex: 0 0 100%;
    display: grid;
    gap: .8rem;
    justify-content: center;
    justify-items: center;
    margin-top: 1.15rem;
  }

  .timeline-links a {
    min-width: min(100%, 16rem);
    padding-block: .58rem;
    text-align: center;
  }

  .schedule {
    display: grid;
    gap: .35rem;
    margin-top: 0;
  }

  .schedule div {
    display: block;
    font-size: var(--type-card-copy);
    font-weight: 700;
    line-height: 1.25;
  }

  .schedule dt,
  .schedule dd {
    display: inline;
  }

  .schedule dt::after {
    content: " · ";
  }

  .info-shapes {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .shape {
    position: static;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    transform: none;
  }

  html.js .shape-lime,
  html.js .shape-lilac,
  html.js .shape-card,
  html.js .shape-kids,
  html.js .infos.is-visible .shape-lime,
  html.js .infos.is-visible .shape-lilac,
  html.js .infos.is-visible .shape-card,
  html.js .infos.is-visible .shape-kids {
    transform: translateY(1.5rem);
  }

  html.js .infos.is-visible .shape-lime,
  html.js .infos.is-visible .shape-lilac,
  html.js .infos.is-visible .shape-card,
  html.js .infos.is-visible .shape-kids {
    transform: translateY(0);
  }

  .shape-lime,
  .shape-lilac,
  .shape-card,
  .shape-kids {
    width: 100%;
    aspect-ratio: auto;
    min-height: 13rem;
    border-radius: 8px;
    clip-path: none;
  }

  .hotel-table {
    overflow: hidden;
    padding-bottom: 0;
  }

  .hotel-table .hotel-head {
    display: none !important;
  }

  .hotel-row {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem .65rem;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1.35rem 0;
    text-align: center;
  }

  .hotel-row strong,
  .hotel-row span {
    flex: 0 0 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hotel-row strong {
    overflow-wrap: anywhere;
  }

  .hotel-row span {
    font-size: var(--type-card-copy);
    line-height: 1.25;
  }

  .hotel-row span:first-of-type::before {
    content: "Distanz: ";
  }

  .hotel-row a {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
    padding: .55rem clamp(.95rem, 4vw, 1.45rem);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  :root {
    --type-hero-title: clamp(4.8rem, 27vw, 6.8rem);
    --type-serif-copy: clamp(1.45rem, 7.8vw, 2.05rem);
  }

  .section:not(.hero) {
    padding-top: 4.25rem;
    padding-bottom: 3.25rem;
  }

  .brand {
    padding-left: 0;
  }

  .schedule div {
    grid-template-columns: 4.5rem 1fr;
  }
}

@media (max-width: 380px) {
  :root {
    --gutter: 1rem;
    --type-meta: clamp(.88rem, 4.1vw, .96rem);
    --type-card-copy: clamp(.98rem, 4.8vw, 1.12rem);
    --type-body: var(--type-card-copy);
    --type-h3: clamp(1.8rem, 8.4vw, 2.35rem);
    --type-section-title: clamp(2.95rem, 15.8vw, 3.85rem);
    --type-hero-title: clamp(4.1rem, 25vw, 5.85rem);
  }

  .site-header {
    padding-inline: .75rem;
  }

  .nav-shell {
    min-height: 2.75rem;
  }

  .brand {
    padding-left: 0;
    letter-spacing: .06em;
  }

  .menu-toggle {
    width: 2.9rem;
  }

  .language-toggle {
    width: 2.9rem;
  }

  .hero-main {
    top: calc(50% - clamp(1.6rem, 8vw, 2.3rem));
    gap: 1rem;
  }

  .hero-rsvp {
    top: calc(50% + clamp(11.9rem, 58vw, 14.25rem));
    width: calc(100vw - 1.5rem);
    min-height: 2.75rem;
    padding: 0 1.1rem;
    font-size: .82rem;
  }

  .hero-marquee {
    bottom: .75rem;
  }

  .section:not(.hero) {
    padding-top: 3.75rem;
    padding-bottom: 2.85rem;
  }

  .story,
  .weekend,
  .infos,
  .hotels,
  .rsvp {
    gap: 1.75rem;
  }

  .weekend h2 {
    font-size: clamp(2.85rem, 14vw, 3.45rem);
  }

  .hotels h2 {
    font-size: clamp(2.6rem, 12.2vw, 3.1rem);
  }

  .timeline article {
    padding-inline: 1rem;
  }

  .hotel-row {
    gap: .75rem .6rem;
    padding-block: 1.15rem;
  }

  .hotel-row span {
    line-height: 1.32;
  }

  .hotel-row a {
    padding: .5rem clamp(.85rem, 3.9vw, 1.05rem);
    letter-spacing: .06em;
  }

  input,
  select,
  textarea {
    min-height: 2.8rem;
    padding-inline: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-marquee-track {
    animation: none;
  }

  html.js .infos .shape {
    opacity: 1;
    transition: none;
  }

  html.js .shape-lime,
  html.js .infos.is-visible .shape-lime {
    transform: rotate(-11deg);
  }

  html.js .shape-lilac,
  html.js .infos.is-visible .shape-lilac {
    transform: translate(0, 0) scale(1);
  }

  html.js .shape-card,
  html.js .infos.is-visible .shape-card {
    transform: rotate(-2deg);
  }
}
