:root {
  --ivory: #f7f2e9;
  --paper: #fffdf8;
  --champagne: #dcc8aa;
  --gold: #ad8b59;
  --brown: #34251f;
  --brown-soft: #66564f;
  --forest: #263d34;
  --line: rgba(52, 37, 31, 0.14);
  --shadow: 0 24px 60px rgba(70, 48, 37, 0.13);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--brown);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

svg {
  display: block;
  width: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--brown);
  transform: translateY(-150%);
}

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

.screen {
  display: none;
  min-height: 100svh;
  animation: screen-in 500ms ease both;
}

.screen.active {
  display: block;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  align-items: center;
  height: calc(4.5rem + var(--safe-top));
  padding: var(--safe-top) 1rem 0;
  border-bottom: 1px solid rgba(52, 37, 31, 0.08);
  background: rgba(247, 242, 233, 0.9);
  backdrop-filter: blur(16px);
}

.icon-button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--brown);
  border: 0;
  border-radius: 50%;
  background: transparent;
  place-items: center;
}

.mini-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-brand__mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
}

.mini-brand__mark span {
  color: var(--gold);
  font-size: 0.7rem;
  font-style: italic;
}

.menu {
  position: fixed;
  z-index: 50;
  inset: 0;
}

.menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 24, 21, 0.45);
  backdrop-filter: blur(3px);
}

.menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(88%, 390px);
  height: 100%;
  padding: calc(1.5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(30, 20, 15, 0.18);
  animation: menu-in 300ms ease both;
}

@keyframes menu-in {
  from { transform: translateX(100%); }
}

.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.menu a {
  padding: 1.2rem 0;
  color: var(--brown);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.5rem;
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus {
  outline: none;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 14vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 11vw, 4rem);
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button svg {
  width: 1.1rem;
}

.button--primary {
  color: white;
  background: var(--brown);
  box-shadow: 0 12px 30px rgba(52, 37, 31, 0.18);
}

.button--light {
  color: var(--brown);
  background: var(--paper);
}

.button--text {
  color: var(--brown);
  border-color: var(--line);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(2.5rem + var(--safe-top)) 1.5rem calc(2rem + var(--safe-bottom));
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(24, 39, 34, 0.14), rgba(24, 39, 34, 0.78)),
    radial-gradient(circle at 70% 10%, rgba(229, 206, 171, 0.34), transparent 30%),
    linear-gradient(145deg, #64766b 0%, #344c41 42%, #172c25 100%);
}

.hero::before,
.reveal-screen::before,
.finale::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -12rem;
  left: -12rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 8rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 32rem;
  margin: auto;
}

.hero .eyebrow {
  color: var(--champagne);
}

.hero h1 em {
  color: var(--champagne);
}

.hero__intro {
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.hero .button--primary {
  color: var(--brown);
  background: var(--paper);
}

.hero__from {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: calc(1.25rem + var(--safe-bottom));
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.monogram {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.monogram i {
  color: var(--champagne);
  font-size: 0.8rem;
}

.route-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.route-line svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-dasharray: 4 9;
  stroke-width: 1.2;
}

.paper-screen {
  padding: calc(6rem + var(--safe-top)) 1rem calc(3rem + var(--safe-bottom));
  background:
    radial-gradient(circle at 90% 5%, rgba(220, 200, 170, 0.26), transparent 24%),
    var(--ivory);
}

.paper-wrap {
  width: min(100%, 42rem);
  margin: auto;
}

.letter {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 3.5rem 1.6rem 2.3rem;
  border: 1px solid rgba(173, 139, 89, 0.28);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.letter::before {
  position: absolute;
  inset: 0.55rem;
  content: "";
  border: 1px solid rgba(173, 139, 89, 0.18);
  pointer-events: none;
}

.letter__seal {
  position: absolute;
  top: -2rem;
  left: 50%;
  display: grid;
  width: 4rem;
  height: 4rem;
  color: #f4e6d0;
  border: 4px double rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #8d4e42;
  box-shadow: 0 5px 12px rgba(87, 44, 35, 0.25);
  font-family: var(--serif);
  place-items: center;
  transform: translateX(-50%) rotate(-5deg);
}

.letter__seal span {
  position: absolute;
  font-size: 0.55rem;
}

.letter h2 {
  font-size: 2.15rem;
}

.letter__body {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.72;
}

.letter__body p {
  margin-bottom: 1.15rem;
}

.letter__body strong {
  color: var(--brown);
  font-weight: 500;
}

.letter__signature {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  line-height: 1.55;
}

.letter__signature span,
.letter__signature strong {
  display: block;
}

.letter__signature span {
  margin-bottom: 0.5rem;
  color: var(--brown-soft);
  font-style: italic;
}

.letter__signature strong {
  font-weight: 500;
}

.paper-wrap > .button {
  width: 100%;
}

.reveal-screen,
.finale {
  position: relative;
  overflow: hidden;
  padding: calc(5rem + var(--safe-top)) 1.5rem calc(3rem + var(--safe-bottom));
  color: white;
  background:
    radial-gradient(circle at 10% 90%, rgba(220, 200, 170, 0.18), transparent 33%),
    var(--forest);
}

.reveal-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 8rem);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 34rem;
  margin: auto;
  text-align: center;
}

.reveal-card__icon {
  display: grid;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  color: var(--champagne);
  border: 1px solid rgba(220, 200, 170, 0.34);
  border-radius: 50%;
  place-items: center;
}

.reveal-card__icon svg {
  width: 3.8rem;
}

.reveal-card .eyebrow,
.finale .eyebrow {
  color: var(--champagne);
}

.reveal-card h2 em,
.finale h2 em {
  color: var(--champagne);
}

.reveal-card > p:not(.eyebrow) {
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.gift-summary {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem 0 2rem;
  border: solid rgba(255, 255, 255, 0.15);
  border-width: 1px 0;
}

.gift-summary div {
  padding: 1.3rem 0.5rem;
}

.gift-summary div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.gift-summary span,
.gift-summary small {
  display: block;
}

.gift-summary span {
  margin-bottom: 0.3rem;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2rem;
}

.gift-summary small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.reveal-card .button {
  color: var(--brown);
  background: var(--paper);
}

.content-screen {
  max-width: 48rem;
  margin: auto;
  padding: calc(7rem + var(--safe-top)) 1.25rem calc(3rem + var(--safe-bottom));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--brown-soft);
  line-height: 1.65;
}

.route-grid {
  display: grid;
  gap: 1rem;
}

.route-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 19rem;
  padding: 1.25rem;
  cursor: pointer;
  color: white;
  border: 0;
  border-radius: 1.5rem;
  background: var(--route-bg);
  box-shadow: 0 16px 38px rgba(57, 39, 31, 0.15);
  text-align: left;
  isolation: isolate;
}

.route-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(25, 24, 21, 0.05), rgba(25, 24, 21, 0.82)),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.25), transparent 30%);
}

.route-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.route-card__number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-family: var(--serif);
  place-items: center;
}

.route-card__arrow {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--brown);
  border-radius: 50%;
  background: var(--paper);
  place-items: center;
}

.route-card__bottom {
  align-self: end;
}

.route-card__bottom h3 {
  max-width: 16rem;
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.route-card__bottom p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.route-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.route-card__tags span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  backdrop-filter: blur(5px);
}

.route-card--surprise {
  color: var(--brown);
  border: 1px solid rgba(173, 139, 89, 0.28);
  background: linear-gradient(135deg, #f7ead7, #e7cfad);
}

.route-card--surprise::before {
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(180deg, transparent, rgba(173, 139, 89, 0.12));
}

.route-card--surprise .route-card__number {
  border-color: rgba(52, 37, 31, 0.3);
}

.route-card--surprise .route-card__bottom p {
  color: var(--brown-soft);
}

.route-card--surprise .route-card__tags span {
  border-color: rgba(52, 37, 31, 0.2);
  background: rgba(255, 255, 255, 0.24);
}

.fine-print {
  margin: 1.5rem 0 0;
  color: var(--brown-soft);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

.route-hero {
  position: relative;
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin: -1rem -0.25rem 2rem;
  padding: 2rem 1.4rem;
  color: white;
  border-radius: 0 0 1.75rem 1.75rem;
  background: var(--route-bg);
  isolation: isolate;
}

.route-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 20, 17, 0.08), rgba(15, 20, 17, 0.85));
}

.route-hero .eyebrow {
  color: var(--champagne);
}

.route-hero h2 {
  margin-bottom: 0.65rem;
}

.route-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.route-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  border: solid var(--line);
  border-width: 1px 0;
}

.route-facts div {
  padding: 1rem 0.35rem;
  text-align: center;
}

.route-facts div + div {
  border-left: 1px solid var(--line);
}

.route-facts strong,
.route-facts span {
  display: block;
}

.route-facts strong {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.route-facts span {
  color: var(--brown-soft);
  font-size: 0.64rem;
}

.detail-heading {
  margin: 2rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.route-gallery {
  margin-bottom: 2rem;
}

.route-gallery__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.route-gallery__heading .detail-heading {
  margin-top: 0;
}

.route-gallery__heading span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.route-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 10rem;
  margin: 0;
  border-radius: 1.1rem;
  background: var(--champagne);
}

.route-gallery__item--wide {
  grid-column: 1 / -1;
  min-height: 14rem;
}

.route-gallery__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-gallery__item::after {
  position: absolute;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(21, 27, 23, 0.78));
}

.route-gallery__item figcaption {
  position: absolute;
  z-index: 1;
  right: 0.8rem;
  bottom: 0.7rem;
  left: 0.8rem;
  color: white;
  font-family: var(--serif);
  font-size: 0.92rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.venue-section {
  margin-bottom: 2rem;
}

.venue-section .route-gallery__heading {
  align-items: flex-start;
  gap: 1rem;
}

.venue-section .route-gallery__heading span {
  max-width: 7rem;
  padding-top: 0.35rem;
  line-height: 1.45;
  text-align: right;
}

.venue-list {
  display: grid;
  gap: 0.75rem;
}

.venue-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--paper);
}

.venue-card .eyebrow {
  margin-bottom: 0.45rem;
}

.venue-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.venue-card__location {
  display: block;
  margin: 0.25rem 0 0.75rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
}

.venue-card > p:not(.eyebrow) {
  margin-bottom: 1rem;
  color: var(--brown-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.venue-card__links {
  display: flex;
  gap: 0.55rem;
}

.venue-card__links a {
  padding: 0.55rem 0.75rem;
  color: var(--brown);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  text-decoration: none;
}

.venue-card__links a:first-child {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.venue-disclaimer {
  margin: 0.75rem 0 0;
  color: var(--brown-soft);
  font-size: 0.64rem;
  line-height: 1.5;
}

.timeline {
  position: relative;
  margin: 0 0 2rem 0.55rem;
}

.timeline::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0.35rem;
  width: 1px;
  content: "";
  background: var(--champagne);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1.2rem 3.5rem 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0;
}

.timeline__dot {
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.28rem;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline__time {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.timeline__content strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.timeline__content p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.highlight-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.highlight-list div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.55);
  font-size: 0.8rem;
}

.highlight-list svg {
  flex: 0 0 auto;
  width: 1.1rem;
  color: var(--gold);
}

.route-actions {
  display: grid;
  gap: 0.75rem;
}

.route-actions .button {
  width: 100%;
}

.route-actions small {
  color: var(--brown-soft);
  font-size: 0.66rem;
  line-height: 1.5;
  text-align: center;
}

.voucher-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.voucher {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(173, 139, 89, 0.32);
  border-radius: 1.5rem;
  background: var(--paper);
  box-shadow: 0 15px 40px rgba(71, 49, 38, 0.09);
}

.voucher__image {
  position: relative;
  height: 12rem;
  margin: 0;
  overflow: hidden;
}

.voucher__image::after {
  position: absolute;
  inset: 55% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(24, 20, 17, 0.28));
}

.voucher__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voucher__content {
  position: relative;
  padding: 1.7rem;
}

.voucher::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 10rem;
  height: 10rem;
  content: "";
  border: 1px solid rgba(173, 139, 89, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5rem rgba(173, 139, 89, 0.06);
}

.voucher__icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  border: 1px solid var(--champagne);
  border-radius: 50%;
  place-items: center;
}

.voucher__icon svg {
  width: 2rem;
}

.voucher h3 {
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.voucher__amount {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
}

.voucher__content > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 21rem;
  color: var(--brown-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.voucher__for {
  display: block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
}

.voucher--dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--forest);
}

.voucher--dark .eyebrow,
.voucher--dark .voucher__amount,
.voucher--dark .voucher__for,
.voucher--dark .voucher__icon {
  color: var(--champagne);
}

.voucher--dark .voucher__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.info-card {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: #ebe0cf;
}

.info-card > svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.info-card h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.info-card p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

#waardebonnen > .button {
  width: 100%;
}

.contact-screen {
  text-align: center;
}

.contact-portrait {
  display: grid;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.7rem;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  place-items: center;
}

.contact-portrait__ring {
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  color: var(--paper);
  border-radius: 50%;
  background: var(--forest);
  font-family: var(--serif);
  font-size: 2.4rem;
  place-items: center;
}

.contact-screen .section-heading > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-confirmation {
  text-align: left;
}

.contact-actions .button,
.contact-screen > .button {
  width: 100%;
}

.contact-note {
  margin: 1rem 0;
  color: var(--brown-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.install-button {
  width: 100%;
  margin-bottom: 1rem;
}

.install-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.install-card {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--paper);
}

.install-card__number {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  color: white;
  border-radius: 50%;
  background: var(--forest);
  font-family: var(--serif);
  place-items: center;
}

.install-card h3 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.install-card p,
.offline-note p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.offline-note {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #ebe0cf;
}

.offline-note svg {
  flex: 0 0 auto;
  color: var(--gold);
}

#installeren > .button:last-child {
  width: 100%;
}

.finale {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.finale.active {
  display: flex;
}

.finale > * {
  position: relative;
  z-index: 1;
}

.finale__ornament {
  display: grid;
  width: 6rem;
  height: 6rem;
  margin-bottom: 2.5rem;
  color: var(--champagne);
  border: 1px solid rgba(220, 200, 170, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  place-items: center;
}

.finale__ornament span {
  position: absolute;
  font-size: 0.7rem;
}

.finale__message {
  max-width: 30rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.finale__names {
  display: flex;
  max-width: 28rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin-bottom: 2rem;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.finale__names i {
  opacity: 0.45;
}

.finale__closing {
  margin-bottom: 2rem;
  color: white;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.offline-banner,
.toast {
  position: fixed;
  z-index: 70;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  left: 1rem;
  padding: 0.85rem 1rem;
  color: white;
  border-radius: 0.8rem;
  background: var(--brown);
  box-shadow: var(--shadow);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.toast {
  z-index: 80;
  background: var(--forest);
}

@media (min-width: 620px) {
  .route-grid,
  .voucher-list,
  .install-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .letter {
    padding: 4rem 3.5rem 3rem;
  }

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

  .content-screen {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (min-width: 900px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .content-screen {
    padding-top: 8rem;
  }
}

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