:root {
  --page-width: 640px;
  --page-padding: 24px;
  --ink: #333333;
  --muted: #757575;
  --line: #e7e7e7;
  --soft: #fbfbfb;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --serif: "Averia Serif Libre", Georgia, serif;
  --sans: "Karla", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-180%);
}

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

.page-shell {
  width: min(100%, var(--page-width));
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 var(--page-padding) 48px;
}

.site-header {
  padding: 46px 0 18px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header h1 {
  margin: 4px 0 28px;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 7vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.nav-link {
  position: relative;
  padding: 3px 0;
  color: var(--ink);
  font-size: 0.72rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.hero {
  padding: 34px 0 56px;
  text-align: center;
}

.hero-poster {
  width: min(100%, 350px);
  margin: 0 auto;
}

.hero-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.event-summary {
  padding-top: 26px;
}

.event-date {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.event-location {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.event-theme {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: 1rem;
}

.theme-swatches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 9px;
}

.theme-swatch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.theme-swatch::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
}

.theme-swatch-teal::before {
  background: #187f7f;
}

.theme-swatch-fuchsia::before {
  background: #d54687;
}

.theme-reference {
  max-width: 310px;
  margin: 17px auto 0;
  border: 1px solid var(--line);
  padding: 5px;
  background: #ffffff;
}

.theme-reference img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-reference figcaption {
  margin: 8px 3px 2px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 360px);
  margin: 26px auto 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.countdown-unit {
  display: grid;
  gap: 1px;
  text-align: center;
}

.countdown-unit + .countdown-unit {
  border-left: 1px solid var(--line);
}

.countdown-value {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.1;
}

.countdown-label {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown.is-complete {
  display: block;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
}

.save-the-date {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 0 auto 18px;
}

.save-the-date-button {
  min-width: 136px;
}

.save-the-date-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.text-button {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding: 2px 0;
  font-size: 0.78rem;
  text-decoration: none;
}

.content-section,
.thank-you-section {
  border-top: 1px solid var(--line);
  padding: 54px 0;
  scroll-margin-top: 20px;
}

.section-heading {
  margin-bottom: 20px;
  text-align: center;
}

.section-heading h2,
.thank-you-section h2 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-intro,
.qa-list,
.thank-you-section > p:not(.section-kicker):not(.thank-you-lead) {
  font-size: 0.94rem;
}

.section-intro {
  margin: 0 0 18px;
  text-align: center;
}

.placeholder-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.schedule-list {
  border-top: 1px solid var(--line);
}

.schedule-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.schedule-time {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.schedule-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.25;
}

.schedule-item div p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.portrait-card {
  margin: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.portrait-card:hover img {
  transform: scale(1.02);
}

.qa-list {
  border-top: 1px solid var(--line);
}

.qa-list details {
  border-bottom: 1px solid var(--line);
}

.qa-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  list-style: none;
}

.qa-list summary::-webkit-details-marker {
  display: none;
}

.qa-list summary::after {
  color: var(--muted);
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
}

.qa-list details[open] summary::after {
  content: "−";
}

.qa-list details p {
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.info-card {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--soft);
}

.info-block + .info-block {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.info-block p {
  margin: 0;
}

.info-block p + p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}

.travel-hero {
  margin: 0 0 22px;
}

.travel-hero img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.travel-hero figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.map-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.map-card-header,
.map-card-footer,
.nearby-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-card-header {
  padding: 18px 20px 16px;
}

.map-card-header p,
.nearby-heading p {
  margin: 0;
}

.map-card-header p + p,
.nearby-heading p + p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.map-link {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  padding: 2px 0;
  font-size: 0.76rem;
  text-decoration: none;
  white-space: nowrap;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e9e6df;
}

.map-stage {
  position: relative;
  overflow: hidden;
  height: 300px;
  transform: scale(var(--map-scale, 1));
  transition: transform 180ms ease;
  transform-origin: center;
}

.map-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-marker {
  position: absolute;
  top: 52%;
  left: 55%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: #d54687;
  box-shadow: 0 4px 12px rgba(23, 34, 48, 0.32);
  cursor: pointer;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.map-marker span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  transform: rotate(45deg);
}

.map-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(51, 51, 51, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.map-controls button {
  display: grid;
  width: 34px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.map-controls button + button {
  border-top: 1px solid var(--line);
}

.map-controls button:hover,
.map-controls button:focus-visible,
.map-marker:hover,
.map-marker:focus-visible {
  background: #f5f5f5;
  outline: 2px solid rgba(213, 70, 135, 0.4);
  outline-offset: 2px;
}

.map-marker:focus-visible {
  background: #d54687;
}

.map-card-footer {
  justify-content: flex-start;
  padding: 14px 20px 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.map-card-footer strong {
  color: var(--ink);
  font-weight: 600;
}

.map-pin-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 18px;
  border: 2px solid #187f7f;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-pin-icon::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #187f7f;
  content: "";
}

.hotel-list {
  display: grid;
  gap: 12px;
}

.hotel-card {
  display: grid;
  grid-template-columns: minmax(130px, 36%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.hotel-image-wrap {
  position: relative;
  min-height: 100%;
  background: #ece9e3;
}

.hotel-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.hotel-image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 3px 8px;
  color: #ffffff;
  background: rgba(25, 36, 49, 0.74);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-card-content {
  min-width: 0;
  padding: 20px;
}

.hotel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hotel-header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.25;
}

.hotel-header span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.hotel-badge {
  border: 1px solid #b9dfdc;
  border-radius: 999px;
  padding: 3px 7px;
  color: #187f7f !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hotel-distance {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hotel-card-content > p:not(.hotel-status) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hotel-status {
  margin: 16px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.hotel-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--ink);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.74rem;
  text-decoration: none;
}

.secondary-button {
  background: #ffffff;
  color: var(--ink);
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  outline: 2px solid rgba(51, 51, 51, 0.2);
  outline-offset: 2px;
}

.stay-search {
  margin-bottom: 20px;
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--soft);
}

.stay-search-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.stay-search-header p {
  margin: 0;
}

.stay-search-header p + p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
  color: #187f7f;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #187f7f;
}

.stay-search-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
}

.stay-search-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stay-search-form input,
.stay-search-form select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 7px 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 0.82rem;
}

.api-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.api-status.is-error {
  color: #9a435d;
}

.api-status.is-success {
  color: #187f7f;
}

.nearby-hotels {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.nearby-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
}

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

.nearby-hotel {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 10px;
}

.nearby-hotel img {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.nearby-hotel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.2;
}

.nearby-hotel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.nearby-hotel a {
  display: inline-block;
  margin-top: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  text-decoration: none;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed #d8d8d8;
  padding: 18px;
  color: var(--muted);
  background: var(--soft);
  font-size: 0.82rem;
  text-align: center;
}

.hotel-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.neighborhood-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
  margin-top: 24px;
  border: 1px dashed #d8d8d8;
  background: var(--soft);
}

.neighborhood-media {
  min-height: 220px;
}

.neighborhood-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.neighborhood-content {
  padding: 22px 20px;
  text-align: center;
}

.neighborhood-card h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.neighborhood-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.neighborhood-card .neighborhood-label {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rsvp-section {
  padding-top: 42px;
}

.rsvp-panel {
  border: 1px solid var(--line);
  padding: 22px 20px;
  background: var(--soft);
}

.rsvp-intro {
  text-align: center;
}

.rsvp-intro p {
  margin: 0;
}

.rsvp-intro p + p {
  max-width: 480px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: .9rem;
}

.rsvp-form {
  max-width: 560px;
  margin: 0 auto;
}

.rsvp-guest-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  text-align: center;
  margin-top: 20px;
}

.rsvp-guest-heading p {
  margin: 0;
}

.rsvp-guest-name {
  margin-top: 3px !important;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.rsvp-form fieldset {
  margin: 18px 0 0;
  border: 0;
  padding: 0;
}

.rsvp-form legend,
.plus-one-field > label {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.rsvp-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.rsvp-option {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d4d4d4;
  padding: 12px;
  background: #ffffff;
  cursor: pointer;
  font-size: .82rem;
}

.rsvp-option:has(input:checked) {
  border-color: #187f7f;
  box-shadow: inset 0 0 0 1px #187f7f;
}

.plus-one-field {
  margin-top: 18px;
}

.plus-one-field > label {
  display: block;
}

.plus-one-field > label span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: .75rem;
}

.plus-one-field input {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  border: 1px solid #d4d4d4;
  padding: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: .85rem;
}

.plus-one-field p,
.rsvp-form-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.rsvp-form-note {
  margin-top: 18px;
}

.rsvp-error {
  margin: 12px 0 0;
  border: 1px solid #e0b7c1;
  padding: 10px 12px;
  color: #9a435d;
  background: #fff7f8;
  font-size: .8rem;
}

.rsvp-form .primary-button {
  margin-top: 16px;
}

.rsvp-confirmation {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-confirmation > p,
.rsvp-confirmation > h3 {
  margin-right: auto;
  margin-left: auto;
}

.rsvp-confirmation h3 {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.rsvp-confirmation > p:not(.section-kicker) {
  max-width: 480px;
  color: var(--muted);
  font-size: .9rem;
}

.rsvp-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid var(--line);
  padding: 17px;
  background: #ffffff;
  text-align: left;
}

.rsvp-ticket-details {
  display: grid;
  gap: 12px;
}

.rsvp-ticket-details p {
  margin: 0;
}

.rsvp-ticket-details span {
  display: block;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rsvp-ticket-details strong {
  display: block;
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.rsvp-ticket-details .rsvp-code {
  color: #187f7f;
  font-size: 1.25rem;
  letter-spacing: .07em;
}

.rsvp-qr-wrap {
  text-align: center;
}

.rsvp-qr {
  width: 128px;
  min-height: 128px;
  margin: 0 auto;
}

.rsvp-qr img {
  display: block;
  width: 128px;
  height: 128px;
}

.rsvp-qr-wrap p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.3;
}

.rsvp-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.rsvp-actions .text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
}

.whatsapp-action {
  gap: 7px;
}

.whatsapp-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: currentColor;
}

.thank-you-section {
  padding: 64px 0 74px;
  text-align: center;
}

.thank-you-section h2 {
  margin-bottom: 24px;
}

.thank-you-section p {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.thank-you-lead {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.4;
}

.courtesy-credit {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 28px;
}

.courtesy-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.courtesy-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.flourish {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.15rem;
}

.welcome-overlay {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.38);
}

.welcome-overlay[aria-hidden="true"] {
  display: none;
}

.welcome-modal {
  width: min(100%, 380px);
  background: #fbfbfb;
  box-shadow: var(--shadow);
}

.welcome-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.welcome-modal-header p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.modal-close {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #999;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.welcome-modal-body {
  padding: 20px;
  color: #555555;
  font-size: 0.86rem;
}

.welcome-modal-body p {
  margin: 0 0 14px;
}

.welcome-modal-body p:last-child {
  margin-bottom: 0;
}

.modal-continue {
  display: block;
  min-width: 102px;
  margin: 0 auto 22px;
  border: 1px solid #999;
  border-radius: 999px;
  padding: 7px 16px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
}

.modal-close:hover,
.modal-close:focus-visible,
.modal-continue:hover,
.modal-continue:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--ink);
  outline: 2px solid rgba(51, 51, 51, 0.15);
  outline-offset: 2px;
}

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

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  :root {
    --page-padding: 18px;
  }

  .site-header {
    padding-top: 32px;
  }

  .site-header h1 {
    margin-bottom: 22px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-navigation {
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 0;
    padding: 4px 12px 10px;
  }

  .site-navigation.is-open {
    display: flex;
  }

  .nav-link {
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    text-align: left;
  }

  .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-link::after {
    right: auto;
    width: 32px;
    transform-origin: left;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-poster {
    width: min(100%, 335px);
  }

  .rsvp-panel {
    padding: 18px 16px;
  }

  .rsvp-options,
  .rsvp-ticket {
    grid-template-columns: 1fr;
  }

  .rsvp-qr-wrap {
    order: -1;
  }

  .travel-hero img {
    height: 210px;
  }

  .map-card-header,
  .nearby-heading,
  .stay-search-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card-header,
  .map-card-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .map-stage {
    height: 240px;
  }

  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hotel-image {
    height: 210px;
    min-height: 0;
  }

  .hotel-card-content {
    padding: 16px;
  }

  .stay-search {
    padding: 16px;
  }

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

  .stay-search-form .primary-button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .neighborhood-card {
    grid-template-columns: 1fr;
  }

  .neighborhood-media {
    min-height: 180px;
  }

  .neighborhood-content {
    padding: 18px 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
