/* ==============================================================
   Xiu & Eduardo Wedding - Styles
   Color Palette:
     olive:       #6B7F5E
     sage:        #8FA385
     cream:       #FDFBF7
     dark-text:   #3D3D3D
     warm-gold:   #C9A96E
     olive-dark:  #4A5A40
   ============================================================== */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #3D3D3D;
  background-color: #FDFBF7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----- UTILITY ----- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.script {
  font-family: 'Great Vibes', cursive;
}

/* ----- SECTIONS ----- */
.section {
  padding: 80px 0;
}

.section--cream {
  background-color: #FDFBF7;
}

.section--olive {
  background: linear-gradient(160deg, #6B7F5E 0%, #4A5A40 100%);
  color: #FDFBF7;
}

.section--olive-light {
  background: linear-gradient(160deg, #6B7F5E 0%, #8FA385 100%);
  color: #FDFBF7;
}

.section__title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #4A5A40;
  margin-bottom: 8px;
}

.section__title--light {
  color: #FDFBF7;
}

.section__ornament {
  width: 60px;
  height: 2px;
  background-color: #C9A96E;
  margin: 0 auto 40px;
  border-radius: 1px;
}

.section__ornament--light {
  background-color: #C9A96E;
  opacity: 0.8;
}

.section__subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #5a5a5a;
  max-width: 600px;
  margin: -16px auto 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.section__subtitle--light {
  color: rgba(253, 251, 247, 0.85);
}

.section__subtitle--light strong {
  color: #FDFBF7;
}

/* ==============================================================
   1. HERO
   ============================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    #4A5A40 0%,
    #6B7F5E 30%,
    #8FA385 60%,
    #C9A96E 100%
  );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(253, 251, 247, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 90, 64, 0.15);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__pretext {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #FDFBF7;
  opacity: 0.8;
  margin-bottom: 12px;
}

.hero__names {
  font-family: 'Great Vibes', cursive;
  font-size: 4.5rem;
  font-weight: 400;
  color: #FDFBF7;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero__ampersand {
  display: inline-block;
  margin: 0 8px;
  color: #C9A96E;
}

.hero__divider {
  width: 80px;
  height: 1px;
  background-color: #C9A96E;
  margin: 20px auto;
  opacity: 0.7;
}

.hero__date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #FDFBF7;
  text-transform: uppercase;
}

.hero__venue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(253, 251, 247, 0.75);
  margin-top: 8px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FDFBF7;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero__scroll-arrow {
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* ==============================================================
   2. OUR STORY
   ============================================================== */
.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}

.story__photo {
  flex-shrink: 0;
}

.story__text {
  max-width: 600px;
}

.story__text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-align: center;
}

.story__signature {
  font-size: 1.15rem;
  color: #6B7F5E;
  margin-top: 24px;
}

.story__signature em {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  font-style: normal;
}

/* Placeholder photos */
.placeholder-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.placeholder-photo--story {
  width: 260px;
  height: 320px;
  background: linear-gradient(145deg, #8FA385, #6B7F5E, #C9A96E);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.placeholder-photo__initials {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: rgba(253, 251, 247, 0.5);
}

/* Audio player */
.audio-player {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(143, 163, 133, 0.08), rgba(107, 127, 94, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(107, 127, 94, 0.12);
}

.audio-player__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B7F5E;
  margin-bottom: 12px;
}

.audio-player__element {
  width: 100%;
  max-width: 400px;
  height: 40px;
  border-radius: 20px;
}

.audio-player__note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #8FA385;
  margin-top: 8px;
  font-style: italic;
}

/* ==============================================================
   3. COUNTDOWN + CALENDAR
   ============================================================== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(253, 251, 247, 0.2);
  border-radius: 12px;
  padding: 20px 16px;
  min-width: 80px;
  backdrop-filter: blur(4px);
}

.countdown__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: #FDFBF7;
}

.countdown__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.7);
  margin-top: 6px;
}

/* Calendar */
.calendar {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(253, 251, 247, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(4px);
}

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

.calendar__month {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #FDFBF7;
  letter-spacing: 1px;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar__day-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(253, 251, 247, 0.5);
  padding: 8px 0;
  text-transform: uppercase;
}

.calendar__day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(253, 251, 247, 0.8);
  padding: 8px 4px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.calendar__day--empty {
  visibility: hidden;
}

.calendar__day--weekend {
  color: rgba(253, 251, 247, 0.5);
}

.calendar__day--highlight {
  position: relative;
}

.calendar__day--highlight span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #C9A96E;
  color: #FDFBF7;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.3); }
  50% { box-shadow: 0 0 30px rgba(201, 169, 110, 0.6); }
}

.calendar__note {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(253, 251, 247, 0.6);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ==============================================================
   4. PHOTO CAROUSEL
   ============================================================== */
.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.placeholder-photo--carousel {
  width: 100%;
  height: 420px;
  border-radius: 0;
}

.placeholder-photo--1 {
  background: linear-gradient(135deg, #6B7F5E, #8FA385, #C9A96E);
}
.placeholder-photo--2 {
  background: linear-gradient(135deg, #C9A96E, #8FA385, #4A5A40);
}
.placeholder-photo--3 {
  background: linear-gradient(135deg, #4A5A40, #6B7F5E, #8FA385);
}
.placeholder-photo--4 {
  background: linear-gradient(135deg, #8FA385, #C9A96E, #6B7F5E);
}
.placeholder-photo--5 {
  background: linear-gradient(135deg, #6B7F5E, #4A5A40, #C9A96E);
}
.placeholder-photo--6 {
  background: linear-gradient(135deg, #C9A96E, #4A5A40, #8FA385);
}

.placeholder-photo__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(253, 251, 247, 0.2);
  font-weight: 300;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.85);
  color: #4A5A40;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.carousel__btn:hover {
  background: #FDFBF7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel__btn--prev {
  left: 12px;
}

.carousel__btn--next {
  right: 12px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 8px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0c8;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel__dot--active {
  background: #6B7F5E;
  width: 24px;
  border-radius: 4px;
}

/* ==============================================================
   5. VENUES
   ============================================================== */
.venues {
  display: flex;
  justify-content: center;
}

.venue-card {
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(253, 251, 247, 0.2);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  backdrop-filter: blur(4px);
}

.venue-card__icon {
  margin-bottom: 16px;
  color: #C9A96E;
}

.venue-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FDFBF7;
  margin-bottom: 4px;
}

.venue-card__type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.65);
  margin-bottom: 20px;
}

.venue-card__divider {
  width: 40px;
  height: 1px;
  background: #C9A96E;
  margin: 0 auto 20px;
  opacity: 0.6;
}

.venue-card__detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(253, 251, 247, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.venue-card__detail svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.venue-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 24px;
  border: 1px solid rgba(253, 251, 247, 0.3);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #FDFBF7;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.venue-card__map-link:hover {
  background: rgba(253, 251, 247, 0.15);
  border-color: rgba(253, 251, 247, 0.5);
}

/* ==============================================================
   6. TIMELINE
   ============================================================== */
.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #C9A96E 10%, #C9A96E 90%, transparent);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__time {
  width: 64px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6B7F5E;
  text-align: right;
  padding-top: 2px;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C9A96E;
  border: 3px solid #FDFBF7;
  flex-shrink: 0;
  margin: 4px 16px 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px #C9A96E;
}

.timeline__content {
  flex: 1;
  padding-top: 0;
}

.timeline__event {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #3D3D3D;
  margin-bottom: 2px;
}

.timeline__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #888;
}

/* ==============================================================
   7. TRANSPORT
   ============================================================== */
.transport {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.transport__icon {
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 20px;
}

.transport__text {
  font-size: 1.15rem;
  color: rgba(253, 251, 247, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
}

.transport__routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.transport__route {
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(253, 251, 247, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  backdrop-filter: blur(4px);
}

.transport__route-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FDFBF7;
  margin-bottom: 8px;
}

.transport__route-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #C9A96E;
  margin-bottom: 6px;
}

.transport__route-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(253, 251, 247, 0.6);
}

.transport__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
}

.transport__notice svg {
  flex-shrink: 0;
  color: #C9A96E;
  margin-top: 2px;
}

.transport__notice p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(253, 251, 247, 0.85);
  line-height: 1.6;
}

/* ==============================================================
   8. HOTELS
   ============================================================== */
.hotels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.hotel-card {
  background: #FFFFFF;
  border: 1px solid rgba(107, 127, 94, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.hotel-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.hotel-card__icon {
  color: #8FA385;
  margin-bottom: 16px;
}

.hotel-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #3D3D3D;
  margin-bottom: 8px;
}

.hotel-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.5;
}

.hotel-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B7F5E;
  margin-bottom: 16px;
}

.hotel-card__link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6B7F5E;
  border: 1px solid #6B7F5E;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s;
}

.hotel-card__link:hover {
  background: #6B7F5E;
  color: #FDFBF7;
}

/* ==============================================================
   9. RSVP
   ============================================================== */
.rsvp-btn {
  display: block;
  margin: 0 auto;
  padding: 18px 48px;
  background: #C9A96E;
  color: #FDFBF7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.rsvp-btn:hover {
  background: #b8963f;
  box-shadow: 0 6px 28px rgba(201, 169, 110, 0.45);
  transform: translateY(-2px);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 61, 61, 0.65);
  backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  z-index: 1;
  width: 94%;
  max-width: 560px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  background: #FDFBF7;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.35s;
}

.modal--open .modal__container {
  transform: translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(107, 127, 94, 0.1);
  position: sticky;
  top: 0;
  background: #FDFBF7;
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #4A5A40;
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all 0.2s;
}

.modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #3D3D3D;
}

/* RSVP Form */
.rsvp-form {
  padding: 24px 28px 28px;
}

.rsvp-form__group {
  margin-bottom: 20px;
}

.rsvp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rsvp-form__label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #4A5A40;
  margin-bottom: 6px;
}

.rsvp-form__input,
.rsvp-form__select,
.rsvp-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #3D3D3D;
  background: #FFFFFF;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.rsvp-form__input:focus,
.rsvp-form__select:focus,
.rsvp-form__textarea:focus {
  border-color: #8FA385;
  box-shadow: 0 0 0 3px rgba(143, 163, 133, 0.15);
}

.rsvp-form__input::placeholder,
.rsvp-form__textarea::placeholder {
  color: #bbb;
}

.rsvp-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.rsvp-form__textarea {
  resize: vertical;
  min-height: 80px;
}

/* Dynamic attendee fields */
.rsvp-form__attendees {
  margin-bottom: 20px;
}

.attendee-field {
  background: rgba(143, 163, 133, 0.06);
  border: 1px solid rgba(143, 163, 133, 0.15);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.attendee-field__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6B7F5E;
  margin-bottom: 10px;
}

.attendee-field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.attendee-field__row .rsvp-form__input {
  font-size: 0.8rem;
  padding: 10px 12px;
}

/* Radio buttons */
.rsvp-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rsvp-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #3D3D3D;
}

.rsvp-form__radio input[type="radio"] {
  display: none;
}

.rsvp-form__radio-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.rsvp-form__radio input[type="radio"]:checked + .rsvp-form__radio-mark {
  border-color: #6B7F5E;
}

.rsvp-form__radio input[type="radio"]:checked + .rsvp-form__radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6B7F5E;
}

/* Submit button */
.rsvp-form__submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6B7F5E, #4A5A40);
  color: #FDFBF7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 12px;
  transition: all 0.3s;
  margin-top: 8px;
}

.rsvp-form__submit:hover {
  box-shadow: 0 4px 16px rgba(107, 127, 94, 0.3);
  transform: translateY(-1px);
}

.rsvp-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Success / Error states */
.rsvp-success,
.rsvp-error {
  padding: 48px 28px;
  text-align: center;
}

.rsvp-success__icon,
.rsvp-error__icon {
  margin-bottom: 20px;
}

.rsvp-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #4A5A40;
  margin-bottom: 12px;
}

.rsvp-success__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
}

.rsvp-success__close {
  padding: 12px 32px;
  background: #6B7F5E;
  color: #FDFBF7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s;
}

.rsvp-success__close:hover {
  background: #4A5A40;
}

.rsvp-error__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #c0392b;
  margin-bottom: 12px;
}

.rsvp-error__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
}

.rsvp-error__retry {
  padding: 12px 32px;
  background: #c0392b;
  color: #FDFBF7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s;
}

.rsvp-error__retry:hover {
  background: #a93226;
}

/* ==============================================================
   10. FOOTER
   ============================================================== */
.footer {
  background: #3D3D3D;
  padding: 48px 24px;
  text-align: center;
}

.footer__monogram {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #C9A96E;
  line-height: 1;
}

.footer__divider {
  width: 40px;
  height: 1px;
  background: rgba(253, 251, 247, 0.2);
  margin: 16px auto;
}

.footer__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.5);
  margin-bottom: 4px;
}

.footer__message {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(253, 251, 247, 0.35);
}

/* ==============================================================
   SCROLL ANIMATIONS
   ============================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==============================================================
   RESPONSIVE
   ============================================================== */

/* Small phones */
@media (max-width: 480px) {
  .hero__names {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2.4rem;
  }

  .countdown {
    gap: 12px;
  }

  .countdown__item {
    min-width: 65px;
    padding: 14px 10px;
  }

  .countdown__number {
    font-size: 2rem;
  }

  .calendar {
    padding: 20px 16px;
  }

  .calendar__day--highlight span {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .placeholder-photo--carousel {
    height: 280px;
  }

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

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

  .rsvp-form__row {
    grid-template-columns: 1fr;
  }

  .attendee-field__row {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 60px;
  }

  .timeline__time {
    width: 46px;
    font-size: 0.75rem;
  }

  .timeline__dot {
    margin: 4px 10px 0;
  }

  .timeline__event {
    font-size: 1.1rem;
  }

}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .hero__names {
    font-size: 3.5rem;
  }

  .placeholder-photo--carousel {
    height: 350px;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .section {
    padding: 100px 0;
  }

  .hero__names {
    font-size: 5.5rem;
  }

  .hero__pretext {
    font-size: 0.9rem;
  }

  .story {
    flex-direction: row;
    text-align: left;
  }

  .story__text p {
    text-align: left;
  }

  .section__title {
    font-size: 3.5rem;
  }

  .placeholder-photo--carousel {
    height: 460px;
  }

  .countdown__number {
    font-size: 3rem;
  }

  .countdown__item {
    min-width: 100px;
    padding: 24px 20px;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}
