:root {
  --cream: #fcfaf6;
  --warm-gold: #d5a530;
  --warm-gold-dark: #b98612;
  --rose-brown: #a26e74;
  --rose-brown-dark: #7f5559;
  --script-rose: #caa089;
  --text-main: #6d635d;
  --text-strong: #8c5d61;
  --shadow-soft: 0 28px 70px rgba(115, 92, 81, 0.12);
  --radius-xl: 2rem;
  --section-title-font: "Gwendolyn", cursive;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family: "PT Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 165, 48, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(162, 110, 116, 0.08), transparent 20%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
}

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
}

.section-block {
  position: relative;
  padding: 4.5rem 0;
}

.container {
  position: relative;
  z-index: 2;
}

.flower {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  opacity: 0.92;
}

.flower-left {
  left: 0;
}

.flower-right {
  right: 0;
}

.flower-hero-left {
  top: 0.5rem;
  width: min(15vw, 220px);
}

.flower-hero-right {
  top: 0.25rem;
  width: min(15vw, 210px);
}

.flower-story-left {
  top: -1rem;
  width: min(12vw, 170px);
}

.flower-story-right {
  top: 0;
  width: min(12vw, 160px);
}

.flower-venue-left {
  top: 2rem;
  width: min(13vw, 180px);
}

.flower-venue-right {
  top: 2rem;
  width: min(12vw, 160px);
}

.flower-gift-left {
  top: -1rem;
  width: min(14vw, 190px);
}

.flower-gift-right {
  bottom: -2rem;
  width: min(13vw, 170px);
}

.hero-container {
  padding-top: 1rem;
}

.hero-card {
  padding: 1rem 1.5rem 0;
}

.hero-seal {
  max-width: 360px;
  filter: drop-shadow(0 22px 42px rgba(112, 93, 79, 0.08));
}

.hero-title {
  color: var(--script-rose);
  font-family: "Corinthia", cursive;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.88;
}

.countdown-wrapper {
  margin-bottom: 1.5rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 1rem;
  max-width: 540px;
  margin-inline: auto;
}

.countdown-item {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
}

.countdown-value {
  color: #44403e;
  font-family: "Amatic SC", cursive;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  color: var(--text-main);
  font-family: "Amatic SC", cursive;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-date-stack {
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  margin: 0 0 2rem;
}

.hero-date-line {
  color: var(--text-strong);
  line-height: 1;
  text-transform: uppercase;
}

.hero-date-day {
  font-family: "Amatic SC", cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-date-month,
.hero-date-year {
  font-family: "Handlee", cursive;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.section-kicker {
  color: #ac7d20;
  font-family: "Handlee", cursive;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.25rem;
  color: var(--script-rose);
  font-family: var(--section-title-font);
  font-size: clamp(2.75rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.95;
}

.body-copy {
  font-size: 1.18rem;
  line-height: 1.75;
}

.accent-copy {
  color: var(--warm-gold);
  font-family: "Indie Flower", cursive;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 1rem 0 1.25rem;
  text-transform: uppercase;
}

.btn-brand {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(126, 98, 76, 0.16);
  color: #fff;
  font-family: "Amatic SC", cursive;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.6rem 1.5rem;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus-visible {
  color: #fff;
  box-shadow: 0 18px 34px rgba(126, 98, 76, 0.22);
  transform: translateY(-2px);
}

.btn-brand-gold {
  background: linear-gradient(180deg, #efc446 0%, var(--warm-gold) 100%);
}

.btn-brand-gold:hover,
.btn-brand-gold:focus-visible {
  background: linear-gradient(180deg, #f2c84e 0%, var(--warm-gold-dark) 100%);
}

.btn-brand-plum {
  background: linear-gradient(180deg, #ad787c 0%, var(--rose-brown) 100%);
}

.btn-brand-plum:hover,
.btn-brand-plum:focus-visible {
  background: linear-gradient(180deg, #9a686b 0%, var(--rose-brown-dark) 100%);
}

.photo-card {
  text-align: center;
}

.photo-card img {
  filter: drop-shadow(0 24px 36px rgba(117, 94, 83, 0.12));
}

.info-card,
.soft-panel,
.closing-card,
.map-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.info-card {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 196, 183, 0.45);
  padding: 2rem;
}

.soft-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 240, 233, 0.88) 100%);
  border: 1px solid rgba(215, 194, 178, 0.4);
  padding: 2.25rem;
}

.info-label,
.gift-title,
.closing-kicker {
  color: var(--text-strong);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
}

.bus-point,
.hotel-badge,
.account-box {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 204, 194, 0.55);
  border-radius: 1.5rem;
  box-shadow: 0 18px 30px rgba(127, 95, 92, 0.08);
}

.bus-point {
  display: grid;
  gap: 0.2rem;
  height: 100%;
  padding: 1rem 1.1rem;
  text-align: center;
}

.bus-point-title,
.hotel-badge-title,
.account-label {
  color: var(--script-rose);
  font-family: "Handlee", cursive;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.bus-point-text,
.hotel-badge-name {
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 700;
}

.hotel-badge {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  padding: 1.5rem;
  text-align: center;
}

.hotel-badge-address {
  font-size: 0.98rem;
}

.map-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 204, 194, 0.55);
}

.map-frame {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.timeline-illustration {
  margin: 0 auto;
  max-width: 760px;
}

.account-box {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
  padding: 1.5rem;
}

.account-number {
  color: #c96b74;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: 0.04em;
}

.account-owners {
  font-size: 1.04rem;
  line-height: 1.6;
}

.closing-card {
  background:
    linear-gradient(180deg, rgba(237, 225, 213, 0.88) 0%, rgba(232, 218, 206, 0.88) 100%);
  padding: 3rem 2rem;
}

.confirm-copy {
  max-width: 42rem;
  margin-inline: auto;
}

.form-embed-wrap {
  position: relative;
  min-height: 720px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 204, 194, 0.65);
  border-radius: 1.5rem;
  overflow: hidden;
}

.form-embed-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-embed-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 720px;
  padding: 2rem;
  color: var(--text-main);
  font-size: 1.08rem;
  line-height: 1.7;
  text-align: center;
}

.text-link {
  color: var(--rose-brown);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--rose-brown-dark);
  text-decoration: underline;
}

.site-footer {
  padding: 2rem 0 0;
}

.footer-script {
  color: var(--script-rose);
  font-family: "Corinthia", cursive;
  font-size: clamp(3.5rem, 7vw, 5rem);
  line-height: 0.9;
}

.footer-date {
  color: var(--text-strong);
  font-family: "Amatic SC", cursive;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-border {
  display: block;
  margin-top: 1.5rem;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .flower {
    opacity: 0.55;
  }
}

@media (max-width: 991.98px) {
  .section-block {
    padding: 3.75rem 0;
  }

  .hero-card {
    padding-inline: 0;
  }

  .section-kicker,
  .section-title,
  .gift-title,
  .body-copy,
  .info-card,
  .soft-panel {
    text-align: center;
  }

  .info-card,
  .soft-panel {
    padding: 1.75rem;
  }

  .hotel-badge {
    min-height: 100%;
  }
}

@media (max-width: 767.98px) {
  .section-block {
    padding: 3rem 0;
  }

  .flower {
    display: none;
  }

  .countdown-grid {
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 0.5rem 0.25rem;
  }

  .countdown-value {
    font-size: 2.35rem;
  }

  .countdown-label {
    font-size: 1rem;
  }

  .hero-date-month,
  .hero-date-year {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .body-copy {
    font-size: 1.05rem;
  }

  .accent-copy {
    font-size: 1.6rem;
  }

  .btn-brand {
    width: 100%;
  }

  .map-frame {
    height: 320px;
  }

  .form-embed-wrap,
  .form-embed-placeholder {
    min-height: 620px;
  }

  .closing-card {
    padding: 2rem 1.25rem;
  }
}
