@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  --bg: #f8f3ee;
  --paper: #ffffff;
  --text: #2d241d;
  --accent: #b88b6a;
  --border: #e8ddd3;
  --page-gradient: linear-gradient(100deg, #2f2f2d 0%, #6f6d67 55%, #a7a39b 100%);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Segoe UI","Helvetica Neue",Arial,sans-serif; font-size: 22px; color: var(--text); background: var(--page-gradient); background-attachment: fixed; overflow-x: hidden; }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  padding: 56px 0;
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: #f8f5f0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-background.png");
  background-size: cover;
  background-position: center right;
  opacity: 1;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 42%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-left: 8vw;
  padding: 24px 0;
}
.hero-header-content,
.hero-photo-overlay,
.hero-actions {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #f0d5a8;
  font-size: 1rem;
  font-family: "Georgia","Times New Roman",serif;
}
.hero-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 4px;
}
.hero-divider span {
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,213,168,0), rgba(240,213,168,.9), rgba(240,213,168,0));
}
.hero-divider .hero-divider-heart {
  width: auto;
  height: auto;
  background: transparent;
  color: #f0d5a8;
  font-size: 1.08rem;
  line-height: 1;
}
.hero h1,
.hero .lead,
.hero .chips > span {
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0,0,0,.48);
}
.hero h1 {
  color: #fffaf0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .01em;
  padding: 5px 24px 0 0;
  margin: 0 0 6px;
  white-space: nowrap;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(255, 245, 220, 0.35);
}
.hero-title {
  display: block;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.hero .lead {
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  font-family: "Lora","Cormorant Garamond","Playfair Display","Georgia","Times New Roman",serif;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 6px;
  text-shadow: 0 3px 14px rgba(0,0,0,.62);
}
.hero .chips > span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(214,176,140,.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1rem 2rem;
}
.hero .chips .accent {
  background: rgba(214,176,140,.22);
  border: 1px solid rgba(214,176,140,.3);
  color: #f8f5f0;
  font-size: 1rem;
  padding: .6rem 1.4rem;
  margin-top: 0;
}
.hero .chips .accent .chip-icon {
  color: #ffffff;
}
.hero .btn {
  border-radius: 14px;
  transition: all .2s ease;
  font-size: 1.1rem;
  font-family: "Lora","Georgia","Times New Roman",serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero .btn.primary {
  background: linear-gradient(135deg, #d6b08c, #b8895f);
  border: none;
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0,0,0,.25);
  border-radius: 18px;
  padding: 1rem 2.5rem;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.hero .btn:not(.primary) {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(214,176,140,.7);
  color: #ffffff;
  text-shadow: 0 1px 7px rgba(0,0,0,.4);
  border-radius: 14px;
  padding: .9rem 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.36);
}
.hero .chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 12px 0 16px;
}
.hero .actions {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 14px;
}
.hero .actions .btn {
  min-width: 220px;
}
.hero .actions .btn.primary {
  min-width: 340px;
}
.hero + .section { background: transparent; }
.hero + .section h2 { color: #ffffff; }
.hero + .section::before {
  content: "";
  display: block;
  height: 38px;
  margin-top: -48px;
  background: linear-gradient(180deg, rgba(248,245,240,0), #f8f5f0 74%);
}

/* Header design variants (choose via data-hero-variant="2|3") */

.hero[data-hero-variant="2"] {
  padding: 84px 0 72px;
  background: linear-gradient(180deg,#f8f3ee,#efe5dc);
}
.hero[data-hero-variant="2"] .container {
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 32px;
  padding: 44px 20px;
}
.hero[data-hero-variant="2"] h1 { margin-bottom: 10px; }
.hero[data-hero-variant="2"] .chips { margin-top: 12px; margin-bottom: 12px; }
.hero[data-hero-variant="2"] .actions { margin-top: 18px; }

.hero[data-hero-variant="3"] .container {
  max-width: 720px;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  margin-left: 8vw;
  padding-left: 0;
}
.hero[data-hero-variant="3"] h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  padding: 5px 24px 0 0;
}
.hero[data-hero-variant="3"] .chips > span {
  margin: 0;
}
.hero[data-hero-variant="3"] .actions {
  margin-top: 14px;
  justify-content: flex-start;
}
.hero[data-hero-variant="3"] .actions .btn.primary {
  min-width: 340px;
}
.hero[data-hero-variant="3"] .actions .btn:not(.primary) {
  min-width: 228px;
}

@media (min-width: 481px) {
  .hero {
    align-items: flex-start;
    padding-top: 0;
  }
  .hero .container,
  .hero[data-hero-variant="3"] .container {
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-header-content {
    margin-top: 48px;
  }
  .hero-title,
  .hero[data-hero-variant="3"] h1 {
    margin-top: 48px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 14px;
    width: min(560px, 100%);
    justify-items: stretch;
  }
  .hero .actions .btn.primary,
  .hero[data-hero-variant="3"] .actions .btn.primary {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
    min-width: 340px;
  }
  .hero .actions .btn:not(.primary),
  .hero[data-hero-variant="3"] .actions .btn:not(.primary) {
    width: 100%;
    min-width: 0;
  }
}
.section { padding: 48px 0; }
.section.alt { background: transparent; }
h1,h2,h3 { margin: 0 0 16px; }
.lead { font-size: 1.18em; max-width: 700px; }
.badge, .chips span, .notice, .success { display: inline-block; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); margin: 4px 6px 4px 0; }
.chips { margin: 20px 0; }
.chips .accent { background: #fff7f0; color: #8f6343; border-color: #d8b89c; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.btn { display: inline-block; border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 12px 18px; border-radius: 16px; background: #fff; cursor: pointer; }
.btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.small { padding: 8px 12px; border-radius: 10px; font-size: .9rem; }
.link { color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.card, .form-card { background: var(--paper); border: 1px solid var(--border); padding: 24px; border-radius: 24px; }
.form-card.small-card { max-width: 500px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: #fff; }
textarea { min-height: 100px; resize: vertical; }
.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats .card span { display: block; margin-top: 8px; font-size: 1.8rem; font-weight: bold; }
.errors { background: #fff1f0; border: 1px solid #f2c2bd; padding: 16px; border-radius: 16px; margin-bottom: 16px; }
.success { color: #276749; background: #f0fff4; border-color: #b7e4c7; margin-bottom: 16px; }
.notice { background: #fffbeb; border-color: #f3d79b; }
.story-slideshow { position: relative; }
.story-slides { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--border); background: #000; min-height: 280px; }
.story-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.story-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.story-slide img { width: 100%; height: min(60vw, 520px); object-fit: cover; display: block; opacity: 0.88; }
.story-image-desktop { display: block; }
.story-image-mobile { display: none; }
.story-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.story-collage img {
  width: 100%;
  height: min(60vw, 520px);
  object-fit: cover;
  display: block;
  opacity: 0.88;
}
.story-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65)); }
.story-caption h3 { margin: 0 0 8px; }
.story-caption p { margin: 0; max-width: 760px; line-height: 1.5; }
.story-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.story-nav:hover {
  background: rgba(0,0,0,.5);
}
.story-nav-prev { left: 12px; }
.story-nav-next { right: 12px; }
.story-dots { margin-top: 10px; display: flex; justify-content: center; gap: 8px; }
.story-dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: #d1c0b3; cursor: pointer; padding: 0; }
.story-dot.active { background: var(--accent); transform: scale(1.2); }
.chips > span { display: inline-flex; align-items: center; }
.chip-icon { display: inline-flex; vertical-align: middle; margin-right: 8px; color: var(--accent); }
.chips .accent .chip-icon { color: #8f6343; }
.chip-icon svg, .btn-icon svg { width: 18px; height: 18px; fill: currentColor; }
.btn-icon { display: inline-flex; vertical-align: middle; margin-right: 8px; }

@media (min-width: 801px) {
  .story-section-container {
    width: min(1380px, calc(100% - 96px));
    max-width: 1380px;
  }
  .story-section-title {
    max-width: 1380px;
    margin: 0 auto 20px;
    padding: 0;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.1;
  }
  .story-carousel,
  .story-carousel .story-slides,
  .story-carousel .story-slide {
    height: clamp(320px, 30vw, 460px);
  }
  .story-carousel {
    width: 100%;
    margin: 20px auto 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }
  .story-carousel .story-slides {
    min-height: 0;
    border-radius: 28px;
    border: 0;
  }
  .story-carousel .story-slide {
    position: absolute;
    inset: 0;
  }
  .story-carousel .story-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.12) 42%,
      rgba(0, 0, 0, 0.58) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  .story-carousel .story-slide img,
  .story-carousel .story-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
  }
  .story-carousel .story-collage {
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-carousel .slide-meeting img { object-position: center 42%; }
  .story-carousel .slide-family img { object-position: center 38%; }
  .story-carousel .slide-wide-group img { object-position: center 40%; }
  .story-carousel .slide-parents img { object-position: center 36%; }
  .story-carousel .story-caption,
  .story-carousel .carousel-content {
    position: absolute;
    left: clamp(28px, 4vw, 52px);
    right: clamp(28px, 4vw, 52px);
    bottom: clamp(28px, 4vw, 48px);
    z-index: 2;
    max-width: 680px;
    padding: 0;
    background: none;
  }
  .story-carousel .story-caption h3,
  .story-carousel .carousel-content h3 {
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0,0,0,.55);
  }
  .story-carousel .story-caption p,
  .story-carousel .carousel-content p {
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.45;
    color: #fff;
    max-width: 720px;
    text-shadow: 0 2px 6px rgba(0,0,0,.5);
  }
  .story-carousel .story-nav,
  .story-carousel .carousel-arrow {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3;
  }
  .story-carousel .story-nav:hover,
  .story-carousel .carousel-arrow:hover {
    background: rgba(215,172,130,.85);
    border-color: rgba(255,255,255,.8);
  }
  .story-carousel .story-nav-prev,
  .story-carousel .carousel-arrow.prev { left: 24px; }
  .story-carousel .story-nav-next,
  .story-carousel .carousel-arrow.next { right: 24px; }
  .story-carousel .story-dots,
  .story-carousel .carousel-dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .story-carousel .story-dot,
  .story-carousel .carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
  }
  .story-carousel .story-dot.active,
  .story-carousel .carousel-dot.active {
    background: #d7ac82;
    transform: scale(1.15);
  }
}
@media (max-width: 800px) {
  .story-image-desktop { display: none !important; }
  .story-image-mobile { display: block !important; }
  .story-carousel .story-slides,
  .story-carousel .story-slide {
    height: clamp(420px, 78vw, 620px);
  }
  .story-carousel .story-slide img.story-image-mobile {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    background: rgba(0,0,0,.18);
    opacity: 1;
  }
  .story-carousel .story-slide img.story-image-desktop {
    display: none !important;
  }
  .grid, .form-grid, .stats { grid-template-columns: 1fr; }
  .story-slide img { height: 280px; }
  .story-collage { grid-template-columns: 1fr; }
  .story-collage img { height: 280px; }
  .story-slide-parents .story-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-slide-parents .story-collage img {
    height: 260px;
    object-fit: contain;
    background: #111;
  }
  .story-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .story-nav-prev { left: 8px; }
  .story-nav-next { right: 8px; }
  .hero {
    padding: 36px 0 46px;
    min-height: 100svh;
  }
  .hero::after {
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.78) 100%);
  }
  .hero[data-hero-variant="3"] .container {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding: 0 18px;
    align-items: flex-start;
    text-align: left;
  }
  .hero-divider span {
    width: 72px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 1.1;
  }
  .hero .lead {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 100%;
  }
  .hero .actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
  }
  .hero .actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .hero .actions .btn.primary {
    min-width: 0;
  }
  .hero .chips > span {
    font-size: 1.05rem;
    padding: .82rem 1.1rem;
  }
  .hero .chips .accent {
    font-size: .92rem;
  }
  .hero .chips {
    gap: .95rem;
  }
  .hero::before {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
  }
}

@media (max-width: 1080px) {
  .hero::before {
    background-position: center center;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.76) 0%,
      rgba(0,0,0,0.56) 42%,
      rgba(0,0,0,0.3) 100%
    );
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 24px;
  }
  .container {
    width: calc(100% - 24px);
    max-width: 430px;
    margin: 0 auto;
  }
  .invitation-card,
  .hero {
    --mobile-photo-height: 560px;
    width: 100%;
    max-width: 430px;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(100deg, #2f2f2d 0%, #6f6d67 55%, #a7a39b 100%);
    display: block;
    text-align: left;
  }
  .hero::before,
  .hero::after {
    content: none;
  }
  .photo-section {
    position: relative;
    min-height: var(--mobile-photo-height);
    height: auto;
    overflow: hidden;
    background-image: url("/images/hero-background-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .photo-section::before {
    content: none;
  }
  .photo-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 38%,
      rgba(0, 0, 0, 0.12) 70%,
      rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
  }
  .hero[data-hero-variant="3"] {
    padding: 0;
  }
  .hero[data-hero-variant="3"] .container {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    margin-left: 0;
    padding: 0;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-header-content {
    padding: 16px 24px 0;
    position: relative;
    z-index: 3;
    overflow: visible;
  }
  .hero-eyebrow {
    font-size: .88rem;
    letter-spacing: .16em;
  }
  .hero-divider {
    margin-bottom: 8px;
  }
  .hero-divider span {
    width: 68px;
  }
  .hero-title,
  .hero[data-hero-variant="3"] h1 {
    font-family: "Great Vibes", cursive;
    font-size: clamp(42px, 11vw, 52px);
    line-height: .95;
    color: #fffaf0;
    text-align: left;
    white-space: nowrap;
    padding: 24px 24px 0;
    margin: 0;
    position: relative;
    z-index: 3;
    max-width: 100%;
    text-shadow:
      0 3px 8px rgba(0, 0, 0, 0.65),
      0 0 16px rgba(255, 245, 220, 0.35);
  }
  .hero-photo-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 210px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 3;
  }
  .hero .lead,
  .hero .invite-text {
    max-width: 100%;
    margin: 0 0 24px;
    padding: 0 28px;
    font-size: 20px;
    line-height: 1.32;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,.45);
  }
  .hero .chips,
  .hero .event-badges {
    align-items: center;
    gap: 14px;
    margin: auto 0 0 !important;
    align-self: stretch;
  }
  .hero .chips > span,
  .hero .date-pill,
  .hero .countdown-pill {
    width: fit-content;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    padding: 16px 24px;
    border-radius: 999px;
    font-size: clamp(19px, 5.2vw, 21px);
    background: rgba(50,42,32,.72);
    border: 1px solid rgba(220,180,135,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero .date-pill {
    font-size: 19px;
    padding: 15px 26px;
  }
  .hero .chips .accent,
  .hero .countdown-pill {
    margin-top: 22px;
    padding: 11px 20px;
    font-size: 15.5px;
  }
  .hero .countdown-pill {
    padding: 12px 22px;
    white-space: normal;
    text-align: center;
  }
  .hero-actions {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 24px 0 44px;
    width: 100%;
    align-items: center;
    gap: 12px;
    background: transparent;
  }
  .hero .actions .btn,
  .hero[data-hero-variant="3"] .actions .btn,
  .hero[data-hero-variant="3"] .actions .btn.primary,
  .hero[data-hero-variant="3"] .actions .btn:not(.primary) {
    width: calc(100% - 56px);
    min-width: 0;
    margin: 0 auto;
  }
  .hero .actions .btn.primary {
    height: 62px;
    border-radius: 18px;
    font-size: 22px;
    padding: 0 20px;
    gap: 12px;
    background: #d7ac82;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    margin: 0 auto 12px;
  }
  .hero .actions .btn:not(.primary) {
    height: 56px;
    border-radius: 17px;
    font-size: 19px;
    margin: 12px auto 0;
    gap: 12px;
    background: rgba(70,68,63,.5);
    border: 1px solid rgba(215,172,130,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero .actions .btn:last-child {
    margin-bottom: 8px;
  }
  .hero .btn-icon {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .hero .btn-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
}

@media (max-width: 380px) {
  .hero,
  .invitation-card {
    --mobile-photo-height: 530px;
  }
  .hero-title,
  .hero[data-hero-variant="3"] h1 {
    font-size: clamp(38px, 10.5vw, 46px);
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-photo-overlay {
    top: 198px;
    bottom: 20px;
  }
}

.text-danger { color: #b91c1c; }
