:root {
  color-scheme: light;
  --bg: #fdfbf7;
  --sage: #87A987;
  --forest: #2C4A3E;
  --gold: #D4AF37;
  --text: #22312b;
  --muted: #5f6f68;
  --line: rgba(44, 74, 62, 0.14);
  --shadow: 0 22px 60px rgba(33, 49, 43, 0.14);
  --title-font: "Playfair Display", Georgia, serif;
  --body-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text);
  background: linear-gradient(180deg, #fffefb 0%, #fdfbf7 46%, #f5f0e9 100%);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -24% -18%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(135, 169, 135, 0.34), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.24), transparent 18%),
    radial-gradient(circle at 22% 82%, rgba(135, 169, 135, 0.18), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(212, 175, 55, 0.12), transparent 18%),
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(253, 251, 247, 0.82), rgba(245, 240, 233, 0.92));
  background-size: 100% 100%;
  filter: blur(18px) saturate(1.08);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: pageDrift 22s ease-in-out infinite alternate, pageBloom 16s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(135, 169, 135, 0.22), transparent 14%),
    radial-gradient(circle at 74% 22%, rgba(212, 175, 55, 0.16), transparent 12%),
    radial-gradient(circle at 66% 72%, rgba(135, 169, 135, 0.12), transparent 16%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 46%, transparent 54%, transparent 100%);
  opacity: 0.78;
  mix-blend-mode: soft-light;
  filter: blur(20px) saturate(1.08);
  transform: translate3d(-12%, 0, 0);
  animation: pageSweep 14s ease-in-out infinite, pageFloat 18s ease-in-out infinite alternate;
}

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

button,
input {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: clip;
  z-index: 0;
}

#splash-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg);
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#splash-screen.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#entry-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(135, 169, 135, 0.16), transparent 24%),
    linear-gradient(180deg, #253d33 0%, #1f332b 56%, #17261f 100%);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.entry-screen__glow {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.08), transparent 38%);
  filter: blur(18px);
  animation: entryGlow 10s ease-in-out infinite alternate;
}

.entry-screen__content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: 28px 22px 32px;
  text-align: center;
  color: #f7f3ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.entry-screen__mark {
  position: relative;
  width: min(72vw, 380px);
  max-width: 380px;
  display: grid;
  place-items: center;
  margin: 0;
}

.entry-screen__mark::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12), transparent 56%);
  filter: blur(22px);
  opacity: 0.9;
  transform: scale(0.94);
  pointer-events: none;
}

.entry-screen__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.34))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.22));
  transform: translateZ(0);
}

.entry-screen--animated .entry-screen__mark::before {
  animation: entryAuraPulse 6s ease-in-out infinite;
}

.entry-screen--animated .entry-screen__logo {
  animation: entryLogoFloat 6.5s ease-in-out infinite;
}

.entry-screen--animated .entry-screen__button {
  animation: entryButtonPulse 2.8s ease-in-out infinite;
}

.entry-screen__button {
  display: block;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 15px 28px;
  margin: 24px auto 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, rgba(44, 74, 62, 0.98), rgba(29, 47, 40, 0.98));
  color: #f7f3ea;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  cursor: pointer;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.entry-screen__button-heart {
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.26);
  animation: entryHeartPulse 1.8s ease-in-out infinite;
}

.entry-screen__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.entry-screen__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 3px;
}

.splash-screen__media,
.splash-screen__overlay {
  position: absolute;
  inset: 0;
}

.splash-screen__media {
  z-index: 0;
}

.splash-screen__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.08);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.splash-screen__overlay {
  z-index: 1;
  background: linear-gradient(180deg, rgba(30, 53, 44, 0.28), rgba(30, 53, 44, 0.46));
}

.splash-screen__content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 26px 20px 34px;
  text-align: center;
  color: #fdfbf7;
  text-shadow: 0 6px 22px rgba(17, 26, 22, 0.28);
  background: linear-gradient(180deg, rgba(15, 28, 23, 0.34), rgba(15, 28, 23, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 52px rgba(12, 22, 18, 0.18);
}

.splash-screen__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.86);
}

#splash-screen h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(2.75rem, 11vw, 6.2rem);
  line-height: 0.95;
  color: #eff3e7;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(135, 169, 135, 0.38),
    0 0 34px rgba(212, 175, 55, 0.14),
    0 8px 24px rgba(17, 26, 22, 0.18);
}

.splash-screen__message {
  width: min(100%, 540px);
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(253, 251, 247, 0.92);
}

.splash-screen__button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 15px 24px;
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(44, 74, 62, 0.98), rgba(32, 52, 44, 0.98));
  color: #f7f3ea;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 30px rgba(12, 22, 18, 0.2);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.splash-screen__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(12, 22, 18, 0.24);
}

.splash-screen__button:active {
  transform: translateY(0);
}

.splash-screen__button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 18px 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  isolation: isolate;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(135, 169, 135, 0.55), transparent 20%),
    radial-gradient(circle at 76% 14%, rgba(212, 175, 55, 0.24), transparent 14%),
    radial-gradient(circle at 12% 68%, rgba(135, 169, 135, 0.16), transparent 20%),
    radial-gradient(circle at 84% 72%, rgba(212, 175, 55, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(253, 251, 247, 0.92), rgba(255, 255, 255, 0.98));
}

.hero__wash::before,
.hero__wash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero__wash::before {
  inset: 7% auto auto 2%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(135, 169, 135, 0.42), transparent 62%);
}

.hero__wash::after {
  inset: auto 0 0 auto;
  width: 44vw;
  height: 44vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 60%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.66), transparent 64%);
  filter: blur(16px);
  z-index: -3;
}

.hero::before {
  top: -90px;
  left: -110px;
}

.hero::after {
  right: -120px;
  bottom: -100px;
}

.hero__content {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px 8px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(90vw, 740px);
  height: 320px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.48), transparent 58%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.32) 46%, rgba(255, 255, 255, 0.1) 52%, transparent 100%);
  filter: blur(28px);
  opacity: 0;
  transform: translateX(-28%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__title,
.section-heading h2 {
  margin: 0;
  font-family: var(--title-font);
  line-height: 0.95;
  letter-spacing: 0.015em;
}

.hero__title {
  color: var(--forest);
  font-size: clamp(2.7rem, 14vw, 6.4rem);
  text-wrap: balance;
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 22px rgba(212, 175, 55, 0.28),
    0 0 40px rgba(212, 175, 55, 0.14),
    0 6px 22px rgba(33, 49, 43, 0.06);
}

.hero__ornament {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 10px;
  color: var(--gold);
}

.heart {
  display: inline-block;
  line-height: 1;
  font-size: 1.22rem;
  text-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}

.heart--center {
  font-size: 1.85rem;
  margin-top: -3px;
}

.heart--left,
.heart--right {
  font-size: 1.28rem;
}

.hero__subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
}

.hero__support {
  width: min(100%, 520px);
  margin: 10px auto 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero__support::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  opacity: 0.7;
}

@keyframes pageDrift {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1.06);
  }
  50% {
    transform: translate3d(2.5%, 2.2%, 0) scale(1.12);
  }
  100% {
    transform: translate3d(5%, -1.2%, 0) scale(1.08);
  }
}

@keyframes pageSweep {
  0% {
    opacity: 0.3;
    transform: translate3d(-22%, 0, 0);
  }
  50% {
    opacity: 0.7;
    transform: translate3d(8%, 0, 0);
  }
  100% {
    opacity: 0.35;
    transform: translate3d(18%, 0, 0);
  }
}

@keyframes pageBloom {
  0% {
    filter: blur(18px) saturate(1.08) hue-rotate(0deg);
  }
  50% {
    filter: blur(20px) saturate(1.18) hue-rotate(6deg);
  }
  100% {
    filter: blur(18px) saturate(1.1) hue-rotate(-4deg);
  }
}

@keyframes pageFloat {
  0% {
    transform: translate3d(-12%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, 1.2%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(14%, -0.8%, 0) scale(1.01);
  }
}

@keyframes entryGlow {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes entryAuraPulse {
  0%, 100% {
    opacity: 0.68;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes entryLogoFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      drop-shadow(0 0 24px rgba(255, 255, 255, 0.38))
      drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.045);
    filter:
      drop-shadow(0 0 34px rgba(255, 255, 255, 0.48))
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
  }
}

@keyframes entryHeartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
}

@keyframes entryButtonPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 18px 30px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  50% {
    transform: translateY(-1px) scale(1.05);
    box-shadow:
      0 24px 42px rgba(0, 0, 0, 0.26),
      0 0 0 8px rgba(255, 255, 255, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

.botanical {
  position: absolute;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 18px 26px rgba(44, 74, 62, 0.08)) saturate(0.95);
  z-index: 1;
  opacity: 0.98;
  mix-blend-mode: multiply;
  transform-origin: center center;
}

.botanical--tl {
  top: 0;
  left: 0;
  transform: rotate(90deg);
  transform-origin: top left;
}

.botanical--tr {
  top: 0;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: top right;
}

.botanical--bl,
.botanical--br {
  display: none;
}

.botanical img {
  display: block;
  width: 150%;
  max-width: none;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

body.ambient-animated .hero__title {
  animation: titlePulse 5.5s ease-in-out infinite;
}

body.ambient-animated .hero__content::before {
  animation: heroLightSweep 9s ease-in-out infinite;
}

body.ambient-animated .hero__wash::before {
  animation: washGlowLeft 14s ease-in-out infinite;
}

body.ambient-animated .hero__wash::after {
  animation: washGlowRight 13s ease-in-out infinite;
}

body.ambient-animated .heart {
  animation: heartBreath 4.4s ease-in-out infinite;
}

body.ambient-animated .hero__ornament .heart--center {
  animation-delay: 0.35s;
}

body.ambient-animated .hero__ornament .heart--right {
  animation-delay: 0.7s;
}

@keyframes washGlowLeft {
  0%, 58%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }
  66% {
    transform: translate3d(4vw, 1.5vh, 0) scale(1.08);
    opacity: 1;
  }
  74% {
    transform: translate3d(8vw, 1vh, 0) scale(1.12);
    opacity: 0.96;
  }
}

@keyframes washGlowRight {
  0%, 56%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }
  64% {
    transform: translate3d(-3vw, -1.2vh, 0) scale(1.08);
    opacity: 0.94;
  }
  72% {
    transform: translate3d(-7vw, -0.4vh, 0) scale(1.12);
    opacity: 0.9;
  }
}

@keyframes heartBreath {
  0%, 64%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  70% {
    transform: translateY(-1px) scale(1.26);
    opacity: 1;
  }
  78% {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }
}

body.ambient-animated .info-card {
  animation: cardBreathe 6.4s ease-in-out infinite;
  will-change: transform;
}

body.ambient-animated .info-card:nth-child(1) {
  animation-delay: 0s;
}

body.ambient-animated .info-card:nth-child(2) {
  animation-delay: 0.28s;
}

body.ambient-animated .info-card:nth-child(3) {
  animation-delay: 0.56s;
}

@keyframes cardBreathe {
  0%, 62%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow);
  }
  70% {
    transform: translateY(-2px) scale(1.018);
    box-shadow: 0 28px 68px rgba(33, 49, 43, 0.19);
  }
  80% {
    transform: translateY(0) scale(1.008);
    box-shadow: 0 25px 62px rgba(33, 49, 43, 0.16);
  }
}

@keyframes titlePulse {
  0%, 64%, 100% {
    transform: translateY(0) scale(1);
    text-shadow:
      0 0 22px rgba(212, 175, 55, 0.28),
      0 0 40px rgba(212, 175, 55, 0.14),
      0 6px 22px rgba(33, 49, 43, 0.06);
  }
  70% {
    transform: translateY(-1px) scale(1.02);
    text-shadow:
      0 0 30px rgba(212, 175, 55, 0.48),
      0 0 48px rgba(212, 175, 55, 0.25),
      0 8px 26px rgba(33, 49, 43, 0.08);
  }
  78% {
    transform: translateY(0) scale(1.01);
    text-shadow:
      0 0 26px rgba(212, 175, 55, 0.42),
      0 0 44px rgba(212, 175, 55, 0.2),
      0 6px 22px rgba(33, 49, 43, 0.06);
  }
}

@keyframes heroLightSweep {
  0%, 56%, 100% {
    opacity: 0;
    transform: translateX(-32%);
  }
  64% {
    opacity: 0.82;
    transform: translateX(-6%);
  }
  72% {
    opacity: 1;
    transform: translateX(14%);
  }
  82% {
    opacity: 0.22;
    transform: translateX(34%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  body.ambient-animated .hero__title,
  body.ambient-animated .hero__content::before,
  body.ambient-animated .heart,
  body.ambient-animated .info-card {
    animation: none !important;
  }
}

.info-strip {
  width: min(100%, 1120px);
  margin: auto auto 0;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.8), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(212, 175, 55, 0.1), transparent 22%);
  pointer-events: none;
}

.info-card--accent,
.info-card--secondary {
  background: linear-gradient(180deg, rgba(44, 74, 62, 0.98), rgba(35, 57, 49, 0.98));
  color: #fff;
}

.info-card--map {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  color: var(--forest);
  border: 1px solid rgba(44, 74, 62, 0.22);
  box-shadow: 0 14px 34px rgba(44, 74, 62, 0.08);
}

.info-card--map .info-card__label,
.info-card--map .info-card__value,
.info-card--map .info-card__subvalue {
  color: var(--forest);
}

.info-card__label {
  position: relative;
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: 1.28rem;
  text-align: center;
  color: inherit;
}

.info-card__value {
  position: relative;
  font-family: var(--title-font);
  font-size: 1.5rem;
  text-align: center;
  color: inherit;
}

.info-card__subvalue {
  position: relative;
  margin-top: 6px;
  text-align: center;
  font-size: 0.92rem;
  color: inherit;
  opacity: 0.92;
}

.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.countdown__item {
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.countdown__item strong {
  display: block;
  font-size: clamp(1.12rem, 4vw, 1.7rem);
  color: inherit;
}

.countdown__item span {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.84;
}

.map-box {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 20px;
  border: 1px solid rgba(44, 74, 62, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(135, 169, 135, 0.14)),
    linear-gradient(90deg, rgba(44, 74, 62, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(44, 74, 62, 0.06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.map-box__grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 26%, rgba(212, 175, 55, 0.14), transparent 10%),
    radial-gradient(circle at 58% 60%, rgba(44, 74, 62, 0.1), transparent 16%),
    radial-gradient(circle at 82% 22%, rgba(135, 169, 135, 0.12), transparent 12%);
}

.map-box__pin {
  position: absolute;
  top: 48%;
  left: 52%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.24);
}

.map-box__pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.map-box__label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid rgba(44, 74, 62, 0.12);
}

.map-box__label strong {
  color: var(--forest);
}

.map-box__label span {
  color: var(--muted);
  font-size: 0.85rem;
}

.map-iframe {
  display: block;
  width: 100%;
  height: 170px;
  margin-top: 14px;
  border: 0;
  border-radius: 18px;
  background: #e8e1d3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.button:hover,
.button:focus-visible,
.gift-link:hover,
.gift-link:focus-visible,
.rsvp-shell__close:hover,
.rsvp-shell__close:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--forest), #22392f);
  color: #fff;
  box-shadow: 0 12px 26px rgba(44, 74, 62, 0.2);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button--small {
  width: auto;
  min-width: 140px;
  margin: 10px auto 0;
}

.content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 10px 16px 46px;
}

.panel {
  margin-top: 22px;
}

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

.section-heading h2 {
  font-size: clamp(1.95rem, 7vw, 3.4rem);
  color: var(--forest);
}

.section-heading--inverted .eyebrow,
.section-heading--inverted h2 {
  color: #f5efe4;
}

.rsvp-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(44, 74, 62, 0.98), rgba(28, 47, 40, 0.98));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.rsvp-shell__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #f4efe4;
  font-family: var(--title-font);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rsvp-shell__close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.rsvp-card {
  margin: 0 16px 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(44, 74, 62, 0.12);
}

.rsvp-card .field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.rsvp-card .field > span,
.rsvp-card legend {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--forest);
}

.rsvp-card input[type="text"],
.rsvp-card input[type="number"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(44, 74, 62, 0.16);
  background: #fff;
  color: var(--text);
  transition: all 0.3s ease;
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.rsvp-card input::placeholder {
  color: rgba(95, 111, 104, 0.55);
}

.rsvp-card input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.field--radio {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}

.field--radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(44, 74, 62, 0.1);
  background: rgba(135, 169, 135, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.field--radio label:hover {
  background: rgba(135, 169, 135, 0.12);
}

.field--radio input {
  accent-color: var(--forest);
}

.form-hint {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status.is-success {
  color: #1f6b44;
}

.form-status.is-error {
  color: #9f3a35;
}

.dress-layout,
.gift-donation {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.82);
}

.dress-looks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  width: 100%;
}

.look {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.48), 0 10px 24px rgba(33, 49, 43, 0.08);
  background: linear-gradient(180deg, rgba(253, 251, 247, 0.96), rgba(236, 229, 217, 0.92));
}

.look img {
  position: relative;
  width: 84%;
  height: 84%;
  object-fit: contain;
  object-position: center center;
  flex: 0 0 auto;
}

.dress-copy {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

.gift-donation {
  display: grid;
  gap: 16px;
}

.gift-donation__intro {
  padding: 2px 2px 0;
}

.gift-donation__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(135, 169, 135, 0.12);
  border: 1px solid rgba(44, 74, 62, 0.14);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gift-donation__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.gift-donation__pix {
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(44, 74, 62, 0.98), rgba(31, 50, 43, 0.98));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gift-donation__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.8);
}

.gift-donation__pix strong {
  font-family: var(--title-font);
  font-size: clamp(1.4rem, 6vw, 2.1rem);
  color: #fff;
}

.gift-donation__holder {
  font-size: 0.95rem;
  color: rgba(245, 239, 228, 0.88);
}

.button--copy {
  width: 100%;
  margin-top: 4px;
}

@media (min-width: 720px) {
  .hero {
    padding: 22px 24px 30px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .info-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    margin-top: auto;
  }

  .info-card {
    min-height: 240px;
    padding: 20px;
  }

  .info-card--accent,
  .info-card--secondary {
    background: linear-gradient(180deg, rgba(44, 74, 62, 0.96), rgba(29, 47, 40, 0.98));
  }

  .info-card--map {
    min-height: 240px;
  }

  .map-box {
    min-height: 168px;
  }

  .map-iframe {
    height: 180px;
  }

  .button--small {
    margin-top: 16px;
  }

  .rsvp-card {
    padding: 22px;
  }

  .dress-layout {
    display: flex;
    justify-content: center;
    padding: 24px;
  }

  .dress-looks {
    width: min(100%, 520px);
    gap: 16px;
  }

  .look {
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.5), 0 14px 30px rgba(33, 49, 43, 0.1);
  }

  .gift-donation {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: stretch;
    padding: 24px;
  }

  .gift-donation__pix {
    padding: 22px;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 12px;
  }

  .hero__content {
    padding-top: 10px;
  }

  .hero__title {
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 0.95;
  }

  .hero__support {
    width: min(100%, 320px);
  }

  .botanical {
    width: min(40vw, 180px);
    height: min(40vw, 180px);
    opacity: 0.95;
  }

  .botanical--tl {
    top: 0;
    left: 0;
    transform: rotate(90deg);
  }

  .botanical--tr {
    top: 0;
    right: 0;
    transform: rotate(-90deg);
  }

  .botanical--bl {
    display: none;
  }

  .botanical--br {
    display: none;
  }
}

.gift-donation__pix::before {
  content: "";
  position: absolute;
  inset: auto auto -30px -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 65%);
  pointer-events: none;
}

.gift-donation__pix::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 34px;
  }

  .hero__title {
    font-size: clamp(4rem, 7vw, 6.8rem);
  }

  .hero__support {
    font-size: 1.05rem;
  }

  .content {
    padding-inline: 24px;
  }

  .info-card {
    min-height: 260px;
  }
}
