.story__card:hover,
.story__card:focus-within,
.details-grid__card:hover,
.details-grid__card:focus-within,
.travel__panel:hover,
.travel__panel:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px -40px rgba(10, 6, 20, 0.75);
  border-color: rgba(233, 168, 198, 0.45);
  background: linear-gradient(160deg, rgba(68, 50, 102, 0.85), rgba(20, 15, 33, 0.92));
}

.story__card:focus-visible,
.details-grid__card:focus-visible,
.travel__panel:focus-visible {
  outline: 2px solid rgba(233, 168, 198, 0.6);
  outline-offset: 4px;
}
.travel__panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-large);
  background: linear-gradient(160deg, rgba(33, 24, 52, 0.75), rgba(14, 10, 26, 0.88));
  border: 1px solid rgba(151, 128, 191, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease,
    background 0.4s ease;
}

:root {
  --color-background: #0f0c19;
  --color-surface: rgba(36, 29, 52, 0.72);
  --color-panel: rgba(22, 18, 35, 0.9);
  --color-dark: #141024;
  --color-text: #f6f3ff;
  --color-muted: #a69bc7;
  --color-accent: #e9a8c6;
  --color-accent-dark: #c97bac;
  --color-line: rgba(151, 128, 191, 0.25);
  --gradient-background: radial-gradient(circle at top, rgba(94, 76, 140, 0.35), transparent 55%),
    linear-gradient(160deg, rgba(20, 16, 36, 0.95), rgba(11, 8, 19, 1));
  --gradient-surface: linear-gradient(135deg, rgba(62, 49, 96, 0.6), rgba(25, 20, 40, 0.9));
  --font-heading: "Playfair Display", serif;
  --font-body: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --shadow-soft: 0 30px 80px -40px rgba(10, 6, 20, 0.8);
  --layout-width: min(1120px, 92vw);
  --transition-base: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--gradient-background);
  color: var(--color-text);
  scroll-behavior: smooth;
}

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

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(15, 12, 25, 0.82);
  backdrop-filter: blur(14px);
  z-index: 100;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.navbar--compact {
  box-shadow: 0 12px 24px -18px rgba(10, 6, 20, 0.6);
}

.page--single main {
  padding-top: 72px;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--color-text);
}

.navbar__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navbar__links a {
  font-weight: 500;
  color: var(--color-muted);
  position: relative;
  transition: color var(--transition-base);
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.navbar__links a:hover,
.navbar__links a:focus {
  color: var(--color-accent);
}

.navbar__links a:hover::after,
.navbar__links a:focus::after {
  transform: scaleX(1);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(140deg, rgba(14, 11, 25, 0.92), rgba(82, 52, 116, 0.75)),
    url("https://images.unsplash.com/photo-1520854221050-0f4caff449fb?auto=format&fit=crop&w=1600&q=80")
      center / cover no-repeat;
  overflow: hidden;
}

.hero--compact {
  min-height: 70vh;
  padding-top: 80px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(227, 178, 169, 0.35), transparent 55%);
  opacity: 0;
  animation: heroFade 6s ease forwards;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: grid;
  gap: 24px;
  animation: heroSlideUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.1rem;
  margin: 0;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.75);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 60px;
  display: grid;
  gap: 12px;
  justify-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: float 3.6s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  animation: scrollLine 2s linear infinite;
}

.section {
  padding: clamp(80px, 12vw, 120px) 0;
}

.section__inner {
  width: var(--layout-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.section__eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--color-muted);
}

.section__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.section--light {
  background: linear-gradient(135deg, rgba(24, 19, 40, 0.95), rgba(17, 13, 32, 0.85));
}

.section--dark {
  background: linear-gradient(160deg, rgba(10, 8, 18, 0.96), rgba(24, 17, 37, 0.9));
  color: var(--color-text);
}

.section--accent {
  background: radial-gradient(circle at top, rgba(83, 57, 120, 0.75), rgba(16, 12, 28, 0.92));
}

.story {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.story__card {
  background: var(--gradient-surface);
  border: 1px solid rgba(151, 128, 191, 0.2);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transform: translateY(40px);
  opacity: 0;
  animation: cardPop 0.8s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease,
    background 0.4s ease;
}

.story__card:nth-child(2) {
  animation-delay: 0.2s;
}

.story__card:nth-child(3) {
  animation-delay: 0.4s;
}

.story__card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.story__card time {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  color: var(--color-muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 48px;
  margin-bottom: 60px;
}

.timeline__line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(233, 168, 198, 0.25);
}

.timeline__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  transform: translateX(-40px);
  opacity: 0;
}

.timeline__item.reveal--visible {
  animation: slideIn 0.8s forwards;
}

.timeline__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(233, 168, 198, 0.95), rgba(189, 120, 182, 0.8));
  box-shadow: 0 0 0 8px rgba(233, 168, 198, 0.12);
}

.timeline__content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.timeline__content time {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2rem;
  color: rgba(231, 219, 255, 0.65);
}

.details-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.details-grid__card {
  background: linear-gradient(160deg, rgba(32, 26, 50, 0.92), rgba(15, 11, 27, 0.88));
  border-radius: var(--radius-medium);
  padding: 28px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-soft);
  transform: translateY(30px);
  opacity: 0;
  animation: cardPop 0.8s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease,
    background 0.4s ease;
}

.details-grid__card:nth-child(2) {
  animation-delay: 0.15s;
}

.details-grid__card:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 240px;
  position: relative;
}

.gallery[data-loading="true"] {
  opacity: 0.35;
  pointer-events: none;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  background: rgba(17, 13, 29, 0.9);
  border: 1px solid rgba(151, 128, 191, 0.18);
  isolation: isolate;
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(233, 168, 198, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: saturate(1.1);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(45, 35, 74, 0.35), rgba(233, 168, 198, 0.2));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.1);
  filter: saturate(1.25);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover::before {
  opacity: 1;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item figcaption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 12px 16px;
  border-radius: var(--radius-small);
  background: rgba(16, 12, 30, 0.82);
  color: rgba(246, 241, 255, 0.92);
  font-size: 0.85rem;
  letter-spacing: 0.04rem;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery__item:hover figcaption,
.gallery__item:focus-within figcaption,
.gallery__item:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item:focus-visible {
  outline: 2px solid rgba(233, 168, 198, 0.8);
  outline-offset: 4px;
}

.gallery__empty {
  margin: 0;
  padding: 40px;
  grid-column: 1 / -1;
  text-align: center;
  border-radius: var(--radius-large);
  border: 1px dashed rgba(151, 128, 191, 0.3);
  color: rgba(214, 206, 244, 0.7);
  background: rgba(17, 13, 29, 0.6);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 20, 0.86);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.lightbox--open {
  display: flex;
}

.lightbox__content {
  max-width: min(900px, 90vw);
  max-height: 90vh;
  display: grid;
  gap: 16px;
  text-align: center;
  color: var(--color-text);
}

.lightbox__image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-medium);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

.lightbox__caption {
  font-size: 1rem;
  color: rgba(246, 243, 255, 0.85);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(246, 243, 255, 0.9);
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
}

.rsvp {
  display: grid;
  gap: 24px;
  background: rgba(19, 15, 33, 0.9);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(151, 128, 191, 0.22);
}

.rsvp__feedback {
  min-height: 1.5em;
  border-radius: var(--radius-small);
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04rem;
  color: rgba(214, 206, 244, 0.85);
  transition: opacity 0.3s ease;
}

.rsvp__feedback--hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

.rsvp__feedback--success {
  color: #c6ffdd;
}

.rsvp__feedback--error {
  color: #ffb3c1;
}

.rsvp__row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.input {
  display: grid;
  gap: 8px;
}

.input span {
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: var(--color-muted);
}

.input input,
.input select,
.input textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(151, 128, 191, 0.25);
  font-size: 1rem;
  background: rgba(12, 9, 22, 0.85);
  color: var(--color-text);
  transition: border var(--transition-base), box-shadow var(--transition-base), background 0.3s ease;
  font-family: var(--font-body);
}

.input input::placeholder,
.input textarea::placeholder {
  color: rgba(166, 155, 199, 0.6);
}

.input select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-accent) 50%),
    linear-gradient(135deg, var(--color-accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 4px), calc(100% - 15px) calc(1em + 4px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.input input:focus,
.input select:focus,
.input textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233, 168, 198, 0.2);
  background: rgba(19, 15, 33, 0.95);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.button--primary {
  background: linear-gradient(120deg, rgba(233, 168, 198, 0.8), rgba(134, 101, 173, 0.9));
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.button--secondary {
  background: linear-gradient(135deg, rgba(11, 8, 20, 0.9), rgba(42, 28, 65, 0.9));
  color: var(--color-text);
  border: 1px solid rgba(151, 128, 191, 0.3);
}

.button:hover,
.button:focus {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(13, 9, 23, 0.9);
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.section__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(214, 206, 244, 0.72);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion__item {
  background: var(--gradient-surface);
  border-radius: var(--radius-medium);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(151, 128, 191, 0.18);
}

.accordion__item[open] {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -28px rgba(31, 27, 44, 0.5);
}

.accordion__item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
}

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

.accordion__item p {
  margin-bottom: 0;
  color: rgba(214, 206, 244, 0.7);
}

.travel {
  display: grid;
  gap: 32px;
}

.travel__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.travel__panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-large);
  background: linear-gradient(160deg, rgba(33, 24, 52, 0.75), rgba(14, 10, 26, 0.88));
  border: 1px solid rgba(151, 128, 191, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.travel__panel-header h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.travel__panel-header p {
  margin: 0;
  color: rgba(214, 206, 244, 0.85);
  line-height: 1.5;
}

.travel__panel-map {
  position: relative;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: 0 25px 60px -35px rgba(8, 6, 20, 0.8);
}

.travel__panel-footer {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(214, 206, 244, 0.75);
  line-height: 1.5;
}

.travel__panel--placeholder {
  position: relative;
}

.travel__panel--placeholder::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-large) - 10px);
  border: 1px dashed rgba(233, 168, 198, 0.35);
  pointer-events: none;
}

.travel__map {
  display: grid;
  gap: 12px;
}

.map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.map--placeholder {
  position: relative;
  background: linear-gradient(140deg, rgba(45, 35, 74, 0.4), rgba(20, 15, 32, 0.8));
  border: 1px dashed rgba(233, 168, 198, 0.3);
  display: grid;
  place-items: center;
}

.map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__note {
  margin: 0;
  color: rgba(214, 206, 244, 0.62);
  font-size: 0.9rem;
}

.map__placeholder {
  text-align: center;
  color: rgba(214, 206, 244, 0.75);
  padding: 32px;
  font-size: 1.05rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.footer {
  background: linear-gradient(180deg, rgba(11, 8, 20, 0.95), rgba(19, 14, 30, 0.9));
  color: rgba(246, 243, 255, 0.8);
  padding: 32px 0;
}

.footer__inner {
  width: var(--layout-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer__back-to-top {
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  position: relative;
}

.footer__back-to-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: rgba(246, 243, 255, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.footer__back-to-top:hover::after,
.footer__back-to-top:focus::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFade {
  to {
    opacity: 1;
  }
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 960px) {
  .navbar {
    padding: 14px 20px;
  }

  .navbar__links {
    position: absolute;
    top: 68px;
    right: 20px;
    flex-direction: column;
    background: rgba(17, 13, 29, 0.95);
    padding: 24px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transform: scale(0.95);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(151, 128, 191, 0.3);
  }

  .navbar__links--open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .navbar__toggle {
    display: flex;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .travel {
    gap: 32px;
  }
  .travel--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__scroll-indicator {
    display: none;
  }

  .timeline__line {
    left: 12px;
  }

  .timeline__item {
    grid-template-columns: 24px 1fr;
  }

  .details-grid__card,
  .story__card {
    padding: 24px;
  }

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

  .map {
    aspect-ratio: 1 / 1;
  }
}

