@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

:root {
  --serif-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script-font: "Great Vibes", cursive;

  --ivory: #f7f2eb;
  --paper: #efe7dc;
  --brown: #573516;
  --brown-dark: #3d250e;
  --brown-soft: #7b6043;
  --gold: #a98755;
  --taupe: #8f8578;
  --taupe-dark: #71685d;
  --white: #ffffff;
}

/* =========================
   Global
========================= */

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

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--ivory);
}

body {
  font-family: var(--serif-font);
  color: var(--brown);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

section,
img,
video {
  margin: 0;
  padding: 0;
}

img,
video {
  display: block;
  border: 0;
}

.hidden {
  display: none !important;
}

body.lock-scroll {
  overflow: hidden;
  height: 100svh;
}

body.ready-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

/* =========================
   Full Screen Videos
========================= */

.screen {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.full-media,
.cover-media,
#firstVideo,
#mainVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

#mainVideoScreen {
  transform: translateY(100%);
  opacity: 0;
  overflow: hidden;
}

#mainVideoScreen.slide-up {
  animation: slideUpFade 0.75s ease-out forwards;
}

/* =========================
   Click + Scroll Text
========================= */

.click-text,
.scroll-text {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 30;

  color: var(--white);
  font-family: var(--serif-font);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.8;
  text-transform: uppercase;

  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
  animation: softPulse 2.2s ease-in-out infinite;
}

.click-text {
  bottom: calc(72px + env(safe-area-inset-bottom));
  font-size: clamp(13px, 3.5vw, 16px);
}

.scroll-text {
  bottom: calc(20px + env(safe-area-inset-bottom));
  font-size: clamp(11px, 3.2vw, 14px);
}

.click-text p,
.scroll-text p,
.scroll-text span {
  color: var(--white);
}

.scroll-text span {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  line-height: 1;
}

.click-text.fade-out {
  animation: textFadeOut 0.55s ease forwards;
}

#introScreen.fade-out-intro {
  animation: introFadeOut 1.4s ease forwards;
}

/* =========================
   Intro Video Countdown Overlay
========================= */

.intro-countdown-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.intro-countdown-item {
  position: absolute;
  width: 25%;
  text-align: center;
  color: var(--ivory);
}

/* Bigger intro countdown numbers */
.intro-countdown-item span {
  display: block;
  font-family: var(--serif-font);
  color: var(--ivory);
  font-size: clamp(42px, 12vw, 68px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 3.5px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
}

/* Bigger labels */
.intro-countdown-item small {
  display: block;
  margin-top: 9px;
  font-family: var(--serif-font);
  color: rgba(247, 242, 235, 0.9);
  font-size: clamp(13px, 3.8vw, 18px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 5px;
  text-transform: lowercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.58);
}

/* Days and hours above the logo */
.intro-countdown-days {
  left: 7%;
  top: 29%;
}

.intro-countdown-hours {
  right: 7%;
  top: 29%;
}

/* Minutes and seconds closer under the logo */
.intro-countdown-minutes {
  left: 7%;
  top: 58%;
}

.intro-countdown-seconds {
  right: 7%;
  top: 58%;
}

/* =========================
   Section Animations
========================= */

.section-animate {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

.section-animate .countdown-box,
.section-animate .luxury-rsvp-card,
.section-animate .location-map-button {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.section-visible .countdown-box,
.section-visible .luxury-rsvp-card,
.section-visible .location-map-button {
  opacity: 1;
  transform: translateY(0);
}

.section-visible .countdown-box:nth-child(1) {
  transition-delay: 0.08s;
}

.section-visible .countdown-box:nth-child(2) {
  transition-delay: 0.16s;
}

.section-visible .countdown-box:nth-child(3) {
  transition-delay: 0.24s;
}

.section-visible .countdown-box:nth-child(4) {
  transition-delay: 0.32s;
}

/* =========================
   Card Image
========================= */

.image-full-section {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  background: var(--ivory);
}

.image-full-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: var(--ivory);
}

/* =========================
   Countdown Section
========================= */

.countdown-section {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

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

.countdown-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.countdown-heading {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.countdown-heading h2 {
  margin: 0;
  font-family: var(--script-font);
  color: #5d5047;
  font-size: clamp(52px, 15vw, 82px);
  font-weight: 400;
  line-height: 1;
}

.countdown-heading p {
  margin: 14px 0 0;
  font-family: var(--serif-font);
  color: rgba(93, 80, 71, 0.72);
  font-size: clamp(15px, 4vw, 22px);
  font-weight: 300;
  letter-spacing: 7px;
  line-height: 1;
}

.countdown-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  max-width: 190px;
  min-width: 125px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.countdown-logo-center img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.countdown-box {
  position: absolute;
  width: 26%;
  text-align: center;
  color: var(--brown);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.countdown-box span {
  display: block;
  font-family: var(--serif-font);
  color: var(--brown);
  font-size: clamp(38px, 10vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 3px;
}

.countdown-box small {
  display: block;
  margin-top: 12px;
  font-family: var(--serif-font);
  color: var(--brown);
  font-size: clamp(12px, 3.2vw, 17px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: lowercase;
}

.countdown-days {
  left: 8%;
  top: 35%;
}

.countdown-hours {
  right: 8%;
  top: 35%;
}

.countdown-minutes {
  left: 8%;
  top: 64%;
}

.countdown-seconds {
  right: 8%;
  top: 64%;
}

/* =========================
   Location Section
========================= */

.location-section {
  width: 100%;
  height: auto;
  min-height: 0;
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  background: var(--ivory);
}

.location-bg-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: var(--ivory);
}

/* Maps icon only - compatible with beige/brown page */
.location-map-button.map-icon-only,
.section-animate .location-map-button.map-icon-only,
.section-visible .location-map-button.map-icon-only {
  position: absolute;
  left: 50%;
  bottom: calc(42px + env(safe-area-inset-bottom));
  transform: translateX(-50%);

  z-index: 20;

  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(169, 135, 85, 0.42);

  background: rgba(247, 242, 235, 0.76);
  color: var(--brown);

  text-decoration: none;

  box-shadow:
    0 14px 34px rgba(87, 53, 22, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(5px);

  opacity: 1;
  pointer-events: auto;
}

.location-map-button.map-icon-only svg {
  width: 24px;
  height: 24px;
  display: block;
}

.location-map-button.map-icon-only path,
.location-map-button.map-icon-only circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-map-button.map-icon-only:hover {
  background: rgba(169, 135, 85, 0.24);
  color: var(--brown-dark);
  transform: translateX(-50%) translateY(-2px);
}

/* =========================
   RSVP Section
========================= */

.rsvp-section {
  width: 100%;
  min-height: 100svh;
  background:
    radial-gradient(circle at top, rgba(255, 252, 244, 0.96), rgba(247, 243, 234, 0.98)),
    linear-gradient(180deg, #fbfaf5 0%, #f3eadf 100%);
  padding: calc(68px + env(safe-area-inset-top)) 22px calc(64px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsvp-content {
  width: 100%;
  max-width: 460px;
  text-align: center;
}

.luxury-rsvp-card {
  position: relative;
  width: 100%;
  padding: 48px 26px 44px;
  text-align: center;

  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(87, 53, 22, 0.28);
  border-radius: 30px;

  box-shadow:
    0 24px 65px rgba(87, 53, 22, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);

  backdrop-filter: blur(8px);
}

.luxury-rsvp-card::before,
.luxury-rsvp-card::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border-color: rgba(87, 53, 22, 0.45);
  border-style: solid;
  pointer-events: none;
}

.luxury-rsvp-card::before {
  top: 18px;
  right: 18px;
  border-width: 1px 1px 0 0;
  border-radius: 0 18px 0 0;
}

.luxury-rsvp-card::after {
  bottom: 18px;
  left: 18px;
  border-width: 0 0 1px 1px;
  border-radius: 0 0 0 18px;
}

.luxury-rsvp-card h2 {
  margin: 0 0 32px;
  color: var(--brown);
  font-family: var(--serif-font);
  font-size: clamp(42px, 11vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.rsvp-choice {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: center;
}

.rsvp-choice-btn {
  width: 100%;
  min-height: 50px;
  padding: 13px 22px;

  border: 1px solid var(--brown);
  border-radius: 999px;

  background: transparent;
  color: var(--brown);

  font-family: var(--serif-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.rsvp-choice-btn.active,
.rsvp-choice-btn:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: translateY(-2px);
}

.rsvp-choice-btn.secondary {
  background: rgba(255, 255, 255, 0.52);
  color: var(--brown);
}

.rsvp-choice-btn.secondary.active,
.rsvp-choice-btn.secondary:hover {
  background: var(--brown);
  color: var(--white);
}

.luxury-rsvp-form {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.45s ease,
    max-height 0.55s ease,
    transform 0.45s ease;
}

.luxury-rsvp-form.hidden {
  display: none;
}

.luxury-rsvp-form.show-form {
  display: block;
  opacity: 1;
  max-height: 680px;
  transform: translateY(0);
}

.form-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 22px;
}

.form-divider span {
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(87, 53, 22, 0.65),
    transparent
  );
}

.rsvp-form-title {
  margin: 0 0 18px;
  color: var(--brown-soft);
  font-family: var(--serif-font);
  font-size: 15px;
  line-height: 1.7;
}

.form-group {
  width: 100%;
  margin-bottom: 14px;
}

.luxury-rsvp-form input,
.luxury-rsvp-form textarea {
  width: 100%;
  padding: 14px 17px;

  border: 1px solid rgba(87, 53, 22, 0.42);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.74);
  color: var(--brown);

  font-family: var(--serif-font);
  font-size: 15px;
  text-align: left;
  direction: ltr;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.luxury-rsvp-form input::placeholder,
.luxury-rsvp-form textarea::placeholder {
  color: rgba(87, 53, 22, 0.48);
}

.luxury-rsvp-form input:focus,
.luxury-rsvp-form textarea:focus {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(87, 53, 22, 0.08);
}

.luxury-rsvp-form textarea {
  min-height: 110px;
  resize: vertical;
}

.submit-rsvp {
  width: 100%;
  margin-top: 6px;
  padding: 15px 24px;

  border: 1px solid var(--brown);
  border-radius: 999px;

  background: var(--brown);
  color: var(--white);

  font-family: var(--serif-font);
  font-size: 16px;
  letter-spacing: 1.4px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.submit-rsvp:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
}

.submit-rsvp:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.rsvp-status {
  margin-top: 16px;
  color: var(--brown);
  font-family: var(--serif-font);
  font-size: 14px;
  line-height: 1.7;
}

.rsvp-status.error {
  color: #9b4d4d;
}

.rsvp-status.success {
  color: var(--brown);
}

.rsvp-submitted-message {
  margin-top: 22px;
  padding: 18px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--brown);
  font-family: var(--serif-font);
  line-height: 1.7;
}

.submitted-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 1px solid rgba(87, 53, 22, 0.42);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

/* =========================
   Mobile Adjustments
========================= */

@media (max-width: 430px) {
  .intro-countdown-days {
    left: 6%;
    top: 29%;
  }

  .intro-countdown-hours {
    right: 6%;
    top: 29%;
  }

  .intro-countdown-minutes {
    left: 6%;
    top: 58%;
  }

  .intro-countdown-seconds {
    right: 6%;
    top: 58%;
  }

  .intro-countdown-item span {
    font-size: clamp(40px, 12vw, 62px);
  }

  .intro-countdown-item small {
    font-size: 13px;
    letter-spacing: 4.5px;
  }

  .countdown-logo-center {
    width: 31%;
    min-width: 120px;
  }

  .countdown-days {
    left: 7%;
    top: 35%;
  }

  .countdown-hours {
    right: 7%;
    top: 35%;
  }

  .countdown-minutes {
    left: 7%;
    top: 64%;
  }

  .countdown-seconds {
    right: 7%;
    top: 64%;
  }

  .countdown-box span {
    font-size: clamp(34px, 11vw, 52px);
  }

  .countdown-box small {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .location-map-button.map-icon-only,
  .section-animate .location-map-button.map-icon-only,
  .section-visible .location-map-button.map-icon-only {
    width: 50px;
    min-width: 50px;
    height: 50px;
    bottom: calc(36px + env(safe-area-inset-bottom));
  }

  .location-map-button.map-icon-only svg {
    width: 23px;
    height: 23px;
  }

  .luxury-rsvp-card {
    padding: 42px 20px 38px;
    border-radius: 26px;
  }
}

/* =========================
   Mobile Only Website
========================= */

@media (min-width: 1024px) {
  body > * {
    display: none !important;
  }

  body::before {
    content: "Please open this invitation on a mobile phone.";
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: var(--brown);
    background: var(--ivory);
  }
}

/* =========================
   Reduce Motion
========================= */

@media (prefers-reduced-motion: reduce) {
  .section-animate,
  .section-animate .countdown-box,
  .section-animate .luxury-rsvp-card,
  .section-animate .location-map-button {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =========================
   Animations
========================= */

@keyframes slideUpFade {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

@keyframes textFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes introFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes softPulse {
  0% {
    opacity: 0.48;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 0.48;
    transform: translateY(0);
  }
}

/* =========================
   Move Intro Days + Hours Higher
========================= */

.intro-countdown-days {
  top: 23% !important;
}

.intro-countdown-hours {
  top: 23% !important;
}

@media (max-width: 430px) {
  .intro-countdown-days {
    top: 18% !important;
  }

  .intro-countdown-hours {
    top: 18% !important;
  }
}


/* =========================
   FINAL RSVP THEME — Burak & Mahd
   Matches card / location / logo colors
========================= */

:root {
  --bm-bg: #e7ded5;
  --bm-card-bg: rgba(250, 247, 241, 0.78);
  --bm-brown: #5b3a1d;
  --bm-brown-dark: #3f2712;
  --bm-taupe: #8f7b65;
  --bm-soft-taupe: rgba(143, 123, 101, 0.28);
  --bm-border: rgba(91, 58, 29, 0.32);
  --bm-border-strong: rgba(91, 58, 29, 0.58);
  --bm-white: #ffffff;
}

/* RSVP page background */
.rsvp-section,
.luxury-rsvp-section {
  background:
    radial-gradient(circle at top, rgba(255, 252, 246, 0.9), rgba(231, 222, 213, 0.96)),
    linear-gradient(180deg, #eee7df 0%, #e2d6cb 100%) !important;

  padding: calc(68px + env(safe-area-inset-top)) 22px calc(64px + env(safe-area-inset-bottom)) !important;
}

/* RSVP card */
.luxury-rsvp-card {
  background: var(--bm-card-bg) !important;
  border: 1px solid var(--bm-border) !important;
  border-radius: 30px !important;

  box-shadow:
    0 26px 70px rgba(91, 58, 29, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52) !important;

  backdrop-filter: blur(8px) !important;
}

/* Corner decoration */
.luxury-rsvp-card::before,
.luxury-rsvp-card::after {
  border-color: var(--bm-border-strong) !important;
}

/* RSVP title */
.luxury-rsvp-card h2 {
  color: var(--bm-brown) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(42px, 11vw, 62px) !important;
  font-weight: 400 !important;
  letter-spacing: 10px !important;
  text-transform: uppercase !important;
}

/* RSVP subtitle / form title */
.rsvp-subtitle,
.rsvp-form-title {
  color: var(--bm-taupe) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

/* Choice buttons */
.rsvp-choice-btn {
  background: transparent !important;
  color: var(--bm-brown) !important;
  border: 1px solid var(--bm-border-strong) !important;

  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 1.6px !important;

  box-shadow: none !important;
}

/* Active / hover button */
.rsvp-choice-btn.active,
.rsvp-choice-btn:hover {
  background: var(--bm-brown) !important;
  color: var(--bm-white) !important;
  border-color: var(--bm-brown) !important;
}

/* Secondary button */
.rsvp-choice-btn.secondary {
  background: rgba(255, 255, 255, 0.42) !important;
  color: var(--bm-brown) !important;
  border-color: var(--bm-border-strong) !important;
}

.rsvp-choice-btn.secondary.active,
.rsvp-choice-btn.secondary:hover {
  background: var(--bm-brown) !important;
  color: var(--bm-white) !important;
}

/* Divider */
.form-divider span {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(91, 58, 29, 0.62),
    transparent
  ) !important;
}

/* Inputs and textarea */
.luxury-rsvp-form input,
.luxury-rsvp-form textarea {
  background: rgba(255, 255, 255, 0.66) !important;
  color: var(--bm-brown) !important;
  border: 1px solid var(--bm-border) !important;

  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
}

.luxury-rsvp-form input::placeholder,
.luxury-rsvp-form textarea::placeholder {
  color: rgba(91, 58, 29, 0.42) !important;
}

.luxury-rsvp-form input:focus,
.luxury-rsvp-form textarea:focus {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: var(--bm-brown) !important;
  box-shadow: 0 0 0 4px rgba(91, 58, 29, 0.08) !important;
}

/* Submit button */
.submit-rsvp {
  background: var(--bm-brown) !important;
  color: var(--bm-white) !important;
  border: 1px solid var(--bm-brown) !important;

  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  letter-spacing: 1.5px !important;
}

.submit-rsvp:hover {
  background: var(--bm-brown-dark) !important;
  border-color: var(--bm-brown-dark) !important;
  color: var(--bm-white) !important;
}

/* Status messages */
.rsvp-status {
  color: var(--bm-brown) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

.rsvp-status.success {
  color: var(--bm-brown) !important;
  background: rgba(91, 58, 29, 0.06) !important;
  border: 1px solid rgba(91, 58, 29, 0.18) !important;
  border-radius: 14px !important;
  padding: 12px 14px !important;
}

.rsvp-status.error {
  color: #8f3a2f !important;
}

/* Submitted message */
.rsvp-submitted-message {
  background: rgba(255, 255, 255, 0.46) !important;
  color: var(--bm-brown) !important;
  border: 1px solid rgba(91, 58, 29, 0.16) !important;
}

.submitted-icon {
  color: var(--bm-brown) !important;
  border-color: var(--bm-border) !important;
}

/* =========================
   Adults Only Note in RSVP
========================= */

.adults-only-note {
  max-width: 340px !important;
  margin: -12px auto 28px !important;

  color: #5b3a1d !important;

  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(15px, 4vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.4px !important;

  text-align: center !important;
}

/* =========================
   Final Maps Button Fixed Position - No Animation
========================= */

.location-map-button.map-icon-only,
.section-animate .location-map-button.map-icon-only,
.section-visible .location-map-button.map-icon-only {
  position: absolute !important;
  left: 50% !important;
  bottom: calc(8px + env(safe-area-inset-bottom)) !important;
  transform: translateX(-50%) !important;

  opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}