:root {
  --ivory: #f8f1e5;
  --cream: #fffaf0;
  --sage: #93b391;
  --sky: #8db8dc;
  --lilac: #c7a4ca;
  --blush: #f7b9b4;
  --sunshine: #ffca56;
  --soft-yellow: #fff1b8;
  --brown: #20251d;
  --muted: #59604f;
  --white-glass: rgba(255, 250, 240, 0.86);
  --shadow: 0 18px 50px rgba(70, 55, 35, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--brown);
  line-height: 1.7;
  background:
    linear-gradient(rgba(255, 250, 240, 0.28), rgba(255, 250, 240, 0.28)),
    url("images/floral-bg.png") center top / 520px auto repeat;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 5%;
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--brown);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--blush);
}

.nav-rsvp {
  background: var(--sunshine);
  padding: 11px 24px;
  border-radius: 999px;
}

.hero {
  min-height: 720px;
  padding: 70px 8% 80px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero-text {
  text-align: center;
  background: rgba(255, 250, 240, 0.3);
  padding: 25px;
  border-radius: 24px;
}

h1,
h2,
h3,
.countdown strong,
footer p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.hero h1,
.hero h2 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.92;
  color: #26301f;
}

.and-text,
.script {
  font-family: "Bonheur Royale", cursive;
  color: #df8292;
  line-height: 1;
}

.and-text {
  font-size: 4.4rem;
  margin: 4px 0;
}

.date {
  margin: 30px 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.countdown div {
  min-width: 95px;
  padding: 16px 12px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(80, 70, 50, 0.18);
  border-radius: 12px;
}

.countdown strong {
  display: block;
  font-size: 2.5rem;
  color: var(--sage);
  line-height: 1;
}

.countdown span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 800;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 12px;
  transition: 0.25s ease;
}

.primary-btn {
  background: var(--sunshine);
  color: var(--brown);
  padding: 15px 48px;
}

.secondary-btn {
  background: rgba(199, 164, 202, 0.55);
  color: var(--brown);
  padding: 13px 28px;
  margin-top: 16px;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  background: var(--lilac);
  color: white;
}

.hero-photo {
  background: #fff;
  padding: 18px 18px 70px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 34px;
  width: 90px;
  height: 34px;
  background: rgba(229, 198, 145, 0.55);
  transform: rotate(8deg);
}

.hero-photo::after {
  content: "♡";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--lilac);
  font-size: 2.6rem;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.welcome-card {
  width: min(92%, 1180px);
  margin: 0 auto 70px;
  background: var(--white-glass);
  border: 8px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  padding: 34px;
  text-align: center;
}

.script {
  font-size: 3.8rem;
  margin-bottom: 8px;
}

.welcome-card h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1;
  margin-bottom: 18px;
}

.welcome-card p:not(.script) {
  max-width: 720px;
  margin: 0 auto;
}

.card-floral {
  min-height: 190px;
  background: url("images/floral-bg.png") center / 360px auto;
  border-radius: 18px;
}

.card-floral.left {
  clip-path: polygon(0 0, 90% 0, 70% 100%, 0 100%);
}

.card-floral.right {
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 10% 100%);
}

.story-section {
  width: min(88%, 1060px);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 70px;
  align-items: center;
  background: rgba(255, 250, 240, 0.58);
  padding: 50px;
  border-radius: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sage);
  margin-bottom: 12px;
}

.story-text h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 22px;
}

.story-text p {
  margin-bottom: 18px;
}

.story-photo img {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.quick-links {
  width: min(90%, 1160px);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.quick-card {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(80, 70, 50, 0.16);
  border-radius: 14px;
  padding: 30px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--brown);
  box-shadow: 0 10px 30px rgba(70, 55, 35, 0.06);
  transition: 0.25s ease;
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.quick-card .icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.quick-card h3 {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 12px;
}

.quick-card p {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  font-weight: 800;
}

.arrow {
  display: block;
  font-size: 1.7rem;
  margin-top: 10px;
}

.quick-card.sage .icon,
.quick-card.sage .arrow {
  color: var(--sage);
}

.quick-card.sky .icon,
.quick-card.sky .arrow {
  color: var(--sky);
}

.quick-card.lilac .icon,
.quick-card.lilac .arrow {
  color: var(--lilac);
}

.quick-card.blush .icon,
.quick-card.blush .arrow {
  color: #dc7f8f;
}

.quick-card.sunshine .icon,
.quick-card.sunshine .arrow {
  color: #eca600;
}

footer {
  text-align: center;
  padding: 45px 8%;
  background: rgba(147, 179, 145, 0.82);
  color: var(--brown);
}

footer p {
  font-size: 3rem;
  line-height: 1;
}

footer span {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-heart {
  color: var(--blush);
  font-size: 1.8rem;
  margin-top: 16px;
}

@media (max-width: 1000px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    justify-content: center;
    gap: 18px;
  }

  .hero,
  .story-section,
  .welcome-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    padding: 50px 5% 70px;
  }

  .hero-photo {
    max-width: 520px;
    margin: 0 auto;
  }

  .card-floral {
    display: none;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero h1,
  .hero h2 {
    font-size: 3.4rem;
  }

  .and-text {
    font-size: 3.5rem;
  }

  .countdown div {
    min-width: 78px;
  }

  .story-section,
  .welcome-card {
    padding: 28px 20px;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* MATCH INNER PAGE TEXT TO HOMEPAGE */

.page-hero .script {
  font-family: "Bonheur Royale", cursive;
  font-size: 3.8rem;
  color: #df8292;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  color: #26301f;
}

.page-hero p:not(.script) {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brown);
}

.info-card h2,
.faq-item h2,
.party-card h2,
.registry-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #26301f;
}

.info-card p,
.faq-item p,
.party-card p,
.registry-box p,
.rsvp-card p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brown);
  line-height: 1.7;
}

.info-card .eyebrow,
.eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--sage);
}

label {
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea,
button,
.primary-btn,
.secondary-btn {
  font-family: "Manrope", sans-serif;
}

/* MAKE INNER PAGES MATCH HOMEPAGE TEXT STYLE */

.page-main {
  text-align: center;
}

.page-hero {
  text-align: center;
}

.page-hero .script {
  display: block;
  font-family: "Bonheur Royale", cursive;
  font-size: 4rem;
  color: #df8292;
  line-height: 1;
  margin-bottom: 6px;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  color: #26301f;
  margin-bottom: 18px;
}

.page-hero p:not(.script) {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.info-card,
.party-card,
.registry-box,
.rsvp-card {
  text-align: center;
}

.faq-item {
  text-align: center;
}

.info-card h2,
.faq-item h2,
.party-card h2,
.registry-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  color: #26301f;
  margin-bottom: 16px;
}

.info-card p,
.faq-item p,
.party-card p,
.registry-box p,
.rsvp-card p {
  max-width: 620px;
  margin: 0 auto 10px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.info-card .eyebrow,
.eyebrow {
  text-align: center;
  display: block;
}

/* SOFT TRANSLUCENT TEXT BACKGROUNDS */

.page-hero,
.info-card,
.faq-item,
.party-card,
.rsvp-card,
.registry-box,
.welcome-card,
.story-section,
.hero-text {
  background: rgba(255, 250, 240, 0.48);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.story-text {
  background: rgba(255, 250, 240, 0.42);
  padding: 32px;
  border-radius: 18px;
}

/* INNER PAGES: KEEP BACKGROUND ONLY AROUND TEXT AREAS */

.page-main {
  background: transparent;
}

.page-hero,
.info-card,
.faq-item,
.party-card,
.rsvp-card,
.registry-box {
  background: rgba(255, 250, 240, 0.42);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
}

.section {
  background: transparent;
}

/* INNER PAGE REDESIGN */

.page-main {
  background: transparent;
  padding: 55px 5% 80px;
}

.page-hero {
  width: min(92%, 900px);
  margin: 0 auto 42px;
  padding: 48px 34px;
  text-align: center;
  background: rgba(255, 250, 240, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.page-hero .script {
  font-family: "Bonheur Royale", cursive;
  font-size: 4.4rem;
  color: #df8292;
  line-height: 1;
  margin-bottom: 6px;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  color: #26301f;
  margin-bottom: 18px;
}

.page-hero p:not(.script) {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.card-grid {
  width: min(95%, 1050px);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card,
.faq-item,
.rsvp-card,
.party-card {
  background: rgba(255, 250, 240, 0.58);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  padding: 38px 32px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(70, 55, 35, 0.08);
}

.info-card h2,
.faq-item h2,
.party-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: #26301f;
  margin-bottom: 18px;
}

.info-card p,
.faq-item p,
.party-card p,
.rsvp-card p {
  max-width: 620px;
  margin: 0 auto 10px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.info-card .eyebrow,
.eyebrow {
  display: block;
  text-align: center;
  color: var(--sage);
}

/* registry page */
.registry-box {
  width: min(92%, 760px);
  margin: 0 auto 70px;
  padding: 0;
  background: transparent;
}

.registry-box .info-card {
  background: rgba(255, 250, 240, 0.58);
}

/* wedding party page */
.party-grid {
  width: min(95%, 1080px);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.party-card {
  padding: 18px 18px 30px;
}

.party-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}

/* photos page */
.gallery-grid {
  width: min(95%, 1080px);
  margin: 0 auto 70px;
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-grid img {
  margin-bottom: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* faq page */
.faq-list {
  width: min(92%, 850px);
  margin: 0 auto 70px;
  display: grid;
  gap: 18px;
}

/* rsvp page */
.rsvp-section {
  width: min(92%, 760px);
  margin: 0 auto 70px;
  padding: 0;
  background: transparent;
}

.rsvp-card {
  padding: 42px;
}

label {
  text-align: left;
}

/* mobile */
@media (max-width: 900px) {
  .card-grid,
  .party-grid {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding: 36px 5% 65px;
  }

  .page-hero {
    padding: 38px 22px;
  }

  .page-hero .script {
    font-size: 3.5rem;
  }
}

/* REGISTRY BUTTON SPACING */

.registry-box .button-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.registry-box .primary-btn {
  min-width: 190px;
  text-align: center;
}

@media (max-width: 700px) {
  .registry-box .button-row {
    flex-direction: column;
    align-items: center;
  }

  .registry-box .primary-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* PRETTIER RSVP FORM */

.rsvp-section {
  width: min(92%, 820px);
  margin: 0 auto 80px;
}

.rsvp-card {
  padding: 52px;
  border-radius: 32px;
  background: rgba(255, 250, 240, 0.62);
  backdrop-filter: blur(5px);
}

.rsvp-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.rsvp-card label {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #26301f;
}

.rsvp-card label:nth-child(3),
.rsvp-card label:nth-child(6),
.rsvp-card label:nth-child(7),
.rsvp-card button {
  grid-column: 1 / -1;
}

.rsvp-card input,
.rsvp-card select,
.rsvp-card textarea {
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(38, 48, 31, 0.16);
  background: rgba(255, 253, 247, 0.86);
  padding: 17px 18px;
  font-size: 0.95rem;
}

.rsvp-card textarea {
  min-height: 140px;
}

.rsvp-card button {
  justify-self: center;
  margin-top: 12px;
  min-width: 220px;
  border-radius: 999px;
  background: var(--sunshine);
}

.rsvp-card button:hover {
  background: var(--lilac);
}

@media (max-width: 700px) {
  .rsvp-card {
    padding: 34px 22px;
  }

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

  .rsvp-card label,
  .rsvp-card button {
    grid-column: 1 / -1;
  }
}

/* PASSWORD GATE */

#pw-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 250, 240, 0.86), rgba(255, 250, 240, 0.86)),
    url("images/floral-bg.png") center top / 520px auto repeat;
}

.pw-box {
  text-align: center;
  width: min(92%, 400px);
  padding: 60px 44px;
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.pw-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--brown);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pw-script {
  font-family: "Bonheur Royale", cursive;
  font-size: 1.6rem;
  color: #df8292;
  line-height: 1;
  margin-bottom: 32px;
}

.pw-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.pw-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pw-form input[type="password"] {
  width: 100%;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(38, 48, 31, 0.16);
  background: rgba(255, 253, 247, 0.9);
  padding: 16px 20px;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.22em;
  outline: none;
  transition: border-color 0.2s ease;
}

.pw-form input[type="password"]:focus {
  border-color: rgba(199, 164, 202, 0.7);
}

.pw-form input[type="password"]::placeholder {
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #b0a89a;
}

.pw-error {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c0556a;
  min-height: 1em;
  letter-spacing: 0.05em;
}

.pw-form button {
  background: var(--sunshine);
  color: var(--brown);
  border: none;
  border-radius: 999px;
  padding: 15px 44px;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.pw-form button:hover {
  background: var(--lilac);
  color: white;
  transform: translateY(-2px);
}

/* HAMBURGER MENU */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .hamburger {
    display: flex;
  }

  .site-header {
    flex-direction: row;
    gap: 0;
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0 22px;
    background: rgba(255, 250, 240, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(80, 70, 50, 0.1);
    box-shadow: 0 20px 40px rgba(70, 55, 35, 0.1);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
    font-size: 0.82rem;
  }
}

/* COUNTDOWN FLIP ANIMATION */

@keyframes countFlip {
  0%   { transform: translateY(0);    opacity: 1; }
  40%  { transform: translateY(-8px); opacity: 0; }
  60%  { transform: translateY(8px);  opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

.countdown strong.flip {
  animation: countFlip 0.45s ease;
}

/* PHOTO PLACEHOLDERS (shown when images are missing) */

.hero-photo,
.story-photo {
  position: relative;
}

.hero-photo img[data-placeholder],
.story-photo img[data-placeholder],
.party-card img[data-placeholder],
.gallery-grid img[data-placeholder] {
  background: linear-gradient(135deg, rgba(147, 179, 145, 0.35) 0%, rgba(199, 164, 202, 0.35) 100%);
}

/* Gallery images need a minimum height so placeholders don't collapse */
.gallery-grid img {
  min-height: 180px;
  width: 100%;
}

/* RSVP DEADLINE BANNER */

.rsvp-deadline {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}