:root {
  --cream: #dfd9c9;
  --cream-alt: #dfd9c9;
  --cream-soft: rgba(223, 217, 201, 0.75);
  --section-dark: #36350b;
  --ink: #2c2420;
  --ink-soft: #665c50;
  --olive: #7d8058;
  --olive-light: #cdd0ac;
  --blush: #d9a9a0;
  --accent: #b56f76;
  --accent-deep: #4a1620;
  --hairline: #c8bda4;
  --gold: #a3813f;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Pinyon Script", "Brush Script MT", cursive;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --nav-height: 4rem;
  /* Background for cards nested inside a section; flipped by .section.alt so
     cards always contrast with whatever the section behind them is. */
  --surface: var(--cream-alt);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 0.75rem);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(181, 111, 118, 0.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(181, 111, 118, 0.08), transparent 40%);
}

/* Pinned header — fades in on scroll */
.site-nav {
  --nav-reveal: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 8px 24px rgba(58, 53, 48, 0.08);
  opacity: var(--nav-reveal);
  transform: translateY(calc((1 - var(--nav-reveal)) * -14px));
  pointer-events: none;
  transition:
    opacity 0.15s linear,
    transform 0.15s linear,
    box-shadow 0.3s ease;
  will-change: opacity, transform;
}

.site-nav.is-visible {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
    transform: none;
  }
}

.nav-brand {
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.nav-brand .amp {
  color: var(--accent);
  padding: 0 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.55rem 0.15rem;
  box-shadow: inset 0 -1px 0 0 transparent;
  transition:
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 0 var(--accent);
  outline: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0 0 8px 8px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(36, 31, 26, 0.08) 0%,
      transparent 48%,
      rgba(36, 31, 26, 0.18) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(880px, calc(100% - 2rem));
  margin-top: clamp(4rem, 10vh, 7rem);
  padding: clamp(1.35rem, 3vw, 2.25rem) clamp(1.25rem, 4vw, 3.5rem);
  overflow-wrap: anywhere;
  background: rgba(223, 217, 201, 0.96);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  box-shadow:
    0 0 0 4px rgba(223, 217, 201, 0.96),
    0 0 0 5px var(--hairline),
    0 10px 28px rgba(44, 36, 32, 0.18);
  animation: fadeInUp 0.9s ease-out both;
}

.hero-kicker {
  font-family: var(--script);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--olive);
  margin-bottom: 0.75rem;
  animation: fadeInUp 1s ease-out both;
}

.hero-names {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.75rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: 0 0.5rem;
  white-space: nowrap;
}

.hero-names .amp {
  color: var(--accent);
}

.hero-date {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 0.85rem;
  margin: 0;
  max-width: 100%;
  border-top: 1px solid var(--hairline);
  overflow-wrap: anywhere;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3.5vh, 2.25rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  color: #fff;
  background: rgba(45, 39, 33, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(36, 31, 26, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  transform: translateX(-50%);
  animation: scroll-indicator-in 1s ease-out 0.75s both;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.scroll-indicator svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  color: #fff;
  background: rgba(45, 39, 33, 0.9);
  box-shadow: 0 10px 32px rgba(36, 31, 26, 0.36);
  transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
  border-radius: 2px;
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes scroll-indicator-in {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background-color: var(--olive);
  padding: 0.9rem 2.4rem;
  border-radius: 3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 8px 20px rgba(181, 111, 118, 0.3);
  animation: fadeInUp 1s ease-out 0.45s both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  background-color: #656844;
  box-shadow: 0 12px 24px rgba(181, 111, 118, 0.4);
}

/* Photo marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  background: var(--cream-alt);
  padding: 2rem 0;
}

/* Drag support is JS-driven; without it the CSS keyframes still run. */
.marquee.is-draggable {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.marquee.is-dragging {
  cursor: grabbing;
}

.marquee.is-draggable .marquee-track {
  animation: none;
  will-change: transform;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

/* Touch devices keep a sticky :hover state after a tap, which would leave the
   marquee paused until the page reloads. */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee-track {
    animation-play-state: paused;
  }
}

.marquee-group {
  display: flex;
  gap: 1.35rem;
  padding-right: 1.35rem;
}

.marquee-group img {
  -webkit-user-drag: none;
  width: 340px;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(58, 53, 48, 0.1);
}

.marquee-group img.marquee-focus-bottom {
  object-position: center bottom;
}

.marquee-group img.marquee-focus-ring {
  object-position: center 62%;
}

.marquee-group img.marquee-focus-left {
  object-position: 38% center;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .scroll-indicator svg {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Sections */
.section {
  --surface: var(--cream-alt);
  padding: 5.5rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section.alt {
  --surface: var(--cream);
  max-width: 100%;
  background-color: var(--section-dark);
  color: var(--cream);
}

.section.alt .section-title {
  color: var(--cream);
}

.section.alt .section-text {
  color: var(--cream-soft);
}

.section.alt .nearby-cities h3 {
  color: var(--cream);
}

.section.alt .nearby-cities > p {
  color: var(--cream-soft);
}

.section-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--ink);
}

#save-date-heading {
  color: #482117;
}

.faq-section .section-title {
  color: #482117;
}

.divider {
  position: relative;
  width: 2.5rem;
  height: 1px;
  margin: 1.35rem auto 2.15rem;
  background: var(--hairline);
}

.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--cream);
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.section-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* Our Story */
.story-section {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 1100px;
  text-align: left;
}

.story-photo-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.story-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(58, 53, 48, 0.14);
}

.story-text-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.story-text-wrap .section-title,
.story-text-wrap .divider {
  text-align: left;
  margin-left: 0;
}

.story-text-wrap .section-text {
  margin-left: 0;
}

@media (max-width: 768px) {
  .story-section {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .story-photo {
    aspect-ratio: 16 / 10;
  }

  .story-text-wrap .section-title,
  .story-text-wrap .divider,
  .story-text-wrap .section-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 24px rgba(58, 53, 48, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(58, 53, 48, 0.2);
}

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

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    flex-direction: column;
    height: auto;
    padding: 0.7rem 0.75rem 0.65rem;
    gap: 0.45rem;
  }

  .nav-links {
    width: 100%;
    gap: 0.85rem;
    justify-content: center;
  }

  .nav-links a {
    padding: 0.4rem 0.15rem;
    font-size: 0.64rem;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  .marquee-group img {
    width: 240px;
    height: 350px;
  }

  .hero {
    padding-inline: 0.75rem;
  }

  .hero-bg {
    object-position: 52% center;
  }

  .hero-content {
    width: calc(100% - 1rem);
    margin-top: clamp(5rem, 13vh, 7rem);
    padding: 1.4rem 0.65rem 1.25rem;
  }

  .hero-names {
    display: block;
    font-size: clamp(2rem, 9.2vw, 2.4rem);
    line-height: 1;
    padding-inline: 0;
  }

  .hero-date {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
    padding-top: 0.65rem;
    max-width: 18rem;
  }
}

/* Venue banner */
.venue-section {
  max-width: 1000px;
}

.venue-banner-wrap {
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.venue-banner {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(58, 53, 48, 0.14);
}

.venue-details {
  max-width: 540px;
  margin: 0 auto;
}

.venue-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.venue-card {
  padding: 2rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--olive-light);
  border-radius: 16px;
}

.venue-label {
  margin-bottom: 0.55rem;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.venue-details h3,
.venue-card h3 {
  margin-bottom: 0.65rem;
  color: var(--olive);
  font-family: var(--script);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.venue-details p,
.venue-card p:not(.venue-label) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
}

.venue-note {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  .venue-locations {
    grid-template-columns: 1fr;
  }
}

/* Details */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.detail-card {
  background-color: var(--surface);
  border: 1px solid var(--olive-light);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(181, 111, 118, 0.18);
}

.detail-card h3 {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.detail-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Travel */
.section-kicker {
  margin-bottom: 0.35rem;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.save-date-note {
  max-width: 800px;
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.save-date-display {
  /* Equal side tracks keep the day circle centred no matter how wide the
     month and year labels render. */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  max-width: 30rem;
  margin: 0 auto 2rem;
  color: #482117;
  font-family: var(--serif);
  text-transform: uppercase;
}

.save-date-display span {
  font-size: clamp(1.15rem, 2.9vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  /* Offsets the trailing letter-space so the label optically centres. */
  text-indent: 0.18em;
}

.save-date-display strong {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(3.9rem, 9.5vw, 5.6rem);
  aspect-ratio: 1;
  color: #482117;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  transform: rotate(45deg);
  box-shadow:
    0 0 0 3px var(--cream),
    0 0 0 4px var(--gold);
}

.save-date-display strong .day-num {
  display: inline-block;
  /* Lifts the digits so their ink, rather than the line box, sits on the
     diamond's centre. */
  padding-bottom: 0.22em;
  font-size: clamp(2.6rem, 6.8vw, 4.1rem);
  font-weight: 500;
  letter-spacing: normal;
  text-indent: 0;
  line-height: 1;
  transform: rotate(-45deg);
}

@media (max-width: 480px) {
  .save-date-display {
    max-width: 20rem;
  }

  .save-date-display span {
    font-size: 0.95rem;
  }
}

.travel-section {
  max-width: 1120px;
}

.travel-intro {
  margin-bottom: 3rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.travel-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

.hotel-list {
  max-width: 820px;
  margin: 2.5rem auto 0;
  padding: 2rem 1.75rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  box-shadow: 2px 2px 0 var(--hairline);
}

.hotel-list h3 {
  margin-bottom: 1.15rem;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.hotel-list ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.hotel-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(181, 111, 118, 0.25);
}

.hotel-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.hotel-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.hotel-details {
  display: grid;
  gap: 0.2rem;
}

.hotel-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.hotel-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hotel-list .hotel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--ink);
  border-radius: 3px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.hotel-list .hotel-button:hover {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-1px);
}

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

.hotel-list .hotel-button-disabled {
  color: var(--ink-soft);
  border-color: var(--ink-soft);
  opacity: 0.6;
  cursor: default;
}

.hotel-list .hotel-button-disabled:hover {
  color: var(--ink-soft);
  background: none;
  transform: none;
}

@media (max-width: 540px) {
  .hotel-list li {
    grid-template-columns: 1fr;
  }

  .hotel-list .hotel-button {
    justify-self: start;
  }

  .hotel-buttons {
    justify-content: flex-start;
  }
}

.nearby-cities {
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
}

.nearby-cities h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nearby-cities > p {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.nearby-cities ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.nearby-cities li {
  display: grid;
  gap: 0.3rem;
  padding: 1.15rem 1rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  box-shadow: 2px 2px 0 var(--hairline);
}

.nearby-cities strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.nearby-cities span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .nearby-cities ul {
    grid-template-columns: 1fr;
  }
}

.travel-card {
  position: relative;
  min-height: 270px;
  padding: 3.25rem 2rem 2rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  box-shadow: 2px 2px 0 var(--hairline);
  overflow: hidden;
}

.travel-number {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  color: rgba(181, 111, 118, 0.16);
  font-family: var(--serif);
  font-size: 4.75rem;
  line-height: 1;
}

.travel-card h3 {
  position: relative;
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.travel-card p {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Questions and answers */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid var(--hairline);
}

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

.faq-list summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 0;
  color: #482117;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after,
.faq-list details.is-open summary::after {
  content: "\2212";
}

.faq-list summary:focus-visible {
  color: #482117;
  outline: 2px solid #482117;
  outline-offset: 4px;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.faq-answer-inner {
  min-height: 0;
}

.faq-list details p {
  max-width: 700px;
  padding: 0 3.5rem 1.5rem 0;
  color: #482117;
  font-family: var(--serif);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-list details.is-open p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-list details p {
    transition: none;
  }
}

@media (max-width: 760px) {
  .travel-grid,
  .travel-grid-two {
    grid-template-columns: 1fr;
  }

  .travel-card {
    min-height: 0;
  }
}

/* RSVP */
.rsvp-button {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  background-color: transparent;
  border: 1.5px solid var(--olive);
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.rsvp-button:hover {
  background-color: var(--olive);
  color: var(--cream);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background-color: var(--ink);
  color: var(--cream-alt);
  border-top: 1px solid var(--gold);
}

.footer-signature {
  font-family: var(--script);
  font-size: 1.85rem;
}

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

@media (max-width: 480px) {
  .section {
    padding: 4rem 1.25rem;
  }
}

