:root {
  --green-dark:    #3A5A32;
  --green-mid:     #6B8F5E;
  --green-sage:    #8FAE82;
  --green-light:   #D4E6CC;
  --gold:          #C9A460;
  --gold-light:    #E8D4A8;
  --cream:         #FAF8F4;
  --white:         #FFFFFF;
  --text:          #2D3D27;
  --text-mid:      #5A7050;
  --text-light:    #8A9E82;
  --green-darkest: #2D3D27;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* Section wrapper — max width + center */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section padding */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(170deg, var(--green-dark) 0%, var(--green-mid) 100%);
}
.section--white { background: var(--white); }
.section--footer { background: var(--green-darkest); }

/* Section label (small caps above title) */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-align: center;
  margin-bottom: 10px;
}
.section-label--gold { color: var(--gold-light); }

/* Script title */
.script-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
.script-title--white { color: var(--white); }

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 500px;
}
.divider-line { flex: 1; height: 1px; background: var(--green-light); }
.divider-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  user-select: none;
}

/* Scroll-in animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ HERO ═══ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(58, 90, 50, 0.4), rgba(45, 61, 39, 0.6)),
              url('../img/save_the_date/V+JSavetheDate056.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}

.hero-monogram {
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
}
.hero-monogram img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 9vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .02em;
}
.hero-amp {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.8vw, 36px);
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.hero-date {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-variant-caps: small-caps;
  color: var(--gold-light);
}

.hero-countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 20px);
  margin-top: 6px;
}
.countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 2.2ch;
  text-align: center;
}
.countdown-lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  opacity: .7;
  animation: bounce 2s infinite;
  transition: opacity .2s;
}
.hero-scroll:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ═══ DIVIDER WRAPPER ═══ */
.divider-wrapper {
  padding: 28px 0;
}

/* ═══ CEREMONY & RECEPTION ═══ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.event-card:hover {
  box-shadow: 0 12px 40px rgba(58,90,50,.12);
  transform: translateY(-4px);
}

.event-card__img-wrap {
  overflow: hidden;
  height: 220px;
}
.event-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: sepia(0.1) saturate(1.1) contrast(1.1) brightness(1.02);
}
.event-card:hover .event-card__img-wrap img { transform: scale(1.04); }

.event-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card__label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.event-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.2;
}

.event-card__address {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  font-style: normal;
  line-height: 1.6;
}

.event-card__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--green-mid);
}

.event-card__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 9px 20px;
  border: 1px solid var(--green-light);
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
  align-self: flex-start;
  transition: background .2s, border-color .2s, color .2s;
}
.event-card__map-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.event-card__map-btn svg { flex-shrink: 0; }

@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; gap: 20px; }
  .event-card__img-wrap { height: 180px; }
}

/* ═══ GALLERY ═══ */
.gallery-grid {
  columns: 3;
  column-gap: 12px;
  margin-top: 8px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58,90,50,.0);
  transition: background .3s ease;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(58,90,50,.12); }

@media (max-width: 768px) {
  .gallery-grid { columns: 2; column-gap: 8px; }
  .gallery-item  { margin-bottom: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ═══ INTEGRATED EVENTS ═══ */
.event-integrated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 60px;
}
.event-item {
  text-align: center;
  width: 100%;
}
.event-item__img-wrap {
  width: 100%;
  height: clamp(400px, 50vh, 550px);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.event-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(1.1) contrast(1.1) brightness(1.02);
  transition: transform 1.5s ease;
}
.event-item:hover .event-item__img-wrap img {
  transform: scale(1.05);
}

.event-integrated .divider-mark {
  display: none;
}

@media (max-width: 768px) {
  .event-integrated { grid-template-columns: 1fr; gap: 60px; }
  .event-integrated .divider-mark { display: block; margin: 0 auto; opacity: 0.3; }
}

.event-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  margin: 15px 0 10px;
}

.event-item__address {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  font-style: normal;
  line-height: 1.8;
}

.event-item__time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green-mid);
  margin-top: 10px;
}
.event-item .event-card__map-btn {
  margin-top: 20px;
}
.event-integrated .divider-mark {
  font-size: 24px;
  opacity: 0.5;
}

/* ═══ DRESS CODE ═══ */
.dc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.dc-card {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .2s;
}
.dc-card:hover { box-shadow: 0 8px 28px rgba(58,90,50,.1); }

.dc-card__who {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.dc-card__what {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 22px;
}

.dc-swatches {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.08);
  display: block;
}
.swatch--sage  { background: #8c9c91; }
.swatch--white { background: #ffffff; border-color: #ccc; }
.swatch--terra { background: #d34836; }
.swatch--gray       { background: #464742; }
.swatch--gray-light { background: #c0c2be; }

.dc-card__note {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 520px) {
  .dc-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══ LLUVIA DE SOBRES ═══ */
.bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.bank-card {
  border: 1px solid var(--green-light);
  border-radius: 10px;
  overflow: hidden;
}

.bank-card__header {
  background: var(--green-dark);
  padding: 14px 22px;
}

.bank-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
}

.bank-card__body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bank-field {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 60px;
}

.bank-value {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text);
  flex: 1;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 1px solid var(--green-light);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.copy-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.copy-btn.copied {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .bank-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══ RSVP DIVIDER TOP ═══ */
.rsvp-divider-top {
  background: linear-gradient(170deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding-top: 20px;
  padding-bottom: 0;
}
.divider-line--gold { background: rgba(201,164,96,.25); }

/* ═══ RSVP ═══ */
#rsvp.section { padding: 40px 0; }
.rsvp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.rsvp-inner .script-title { margin-bottom: 28px; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  transition: background .25s, border-color .25s, transform .2s;
  cursor: pointer;
}
.wa-btn:hover {
  background: rgba(201,164,96,.14);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.wa-btn__icon { color: var(--gold); flex-shrink: 0; }

.wa-btn__text {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rsvp-phone {
  margin-top: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(232,212,168,.5);
  letter-spacing: .1em;
}

/* ═══ FOOTER ═══ */
.section--footer { padding: 30px 0; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.footer-monogram {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,164,96,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  margin-bottom: 12px;
}
.footer-monogram img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .04em;
}

.footer-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,32,18,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: lb-in .2s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.18); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,164,96,.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  transition: background .2s;
}
.lightbox__nav:hover { background: rgba(201,164,96,.2); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(232,212,168,.5);
}

@media (max-width: 600px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__nav { width: 40px; height: 40px; }
}

/* ═══ INSPIRATIONAL SECTION ═══ */
.inspo-section {
  padding: 100px 0;
  background: var(--cream);
}
.inspo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.inspo-text {
  text-align: left;
}
.inspo-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.8vw, 32px);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
}
.inspo-quote span {
  display: block;
  margin-top: 15px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* ═══ PHOTO CAROUSEL ═══ */
.photo-carousel {
  padding: 40px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
  flex: 0 0 350px;
  height: 500px;
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-item { flex: 0 0 280px; height: 400px; }
}
.inspo-section .section-label { text-align: left; margin-bottom: 12px; }
.inspo-section .script-title { text-align: left; margin-bottom: 32px; }

.inspo-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.inspo-img-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: var(--cream);
  height: 400px;
}
.inspo-img-card:nth-child(2) {
  margin-top: 40px;
}
.inspo-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .inspo-grid { grid-template-columns: 1fr; gap: 40px; }
  .inspo-text { text-align: center; }
  .inspo-section .section-label, .inspo-section .script-title { text-align: center; }
  .inspo-images { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .inspo-img-card { height: 300px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 16px; }
  .hero-bg { background-position: 25% 30%; }
  .hero-monogram  { width: 120px; height: 120px; padding: 18px; }
  .hero-date      { font-size: 9px; letter-spacing: .2em; }
  .countdown-num  { font-size: 32px; }
  .event-item__img-wrap { height: 500px; }
  .dc-card { padding: 24px 20px; }
  .bank-card__body { padding: 14px 16px; }
  .wa-btn { padding: 12px 24px; }
  .wa-btn__text { font-size: 11px; letter-spacing: .14em; }

  /* ═══ MOBILE GRID (Replaces carousel) ═══ */
  .photo-carousel { padding: 20px 16px 60px; }
  .carousel-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    overflow-x: visible;
  }
  .carousel-item {
    flex: none;
    width: 100%;
    height: 250px;
    scroll-snap-align: none;
  }
  .carousel-item:nth-child(1),
  .carousel-item:nth-child(4) {
    grid-column: span 2;
    height: 380px;
  }
}

@media (min-width: 1400px) {
  .hero-name { font-size: 72px; }
}

/* ═══ GUEST SPLASH ═══ */
.g-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f5f0e8;
  border-top: 4px solid var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.2s;
}

.g-splash--exit {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.g-splash__card {
  text-align: center;
  padding: 48px 40px;
  max-width: 580px;
  width: 100%;
}

.g-splash__mono {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.g-splash__divider {
  width: 48px;
  height: 1px;
  background: #c8b89a;
  margin: 20px auto;
}

.g-splash__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--green-darkest);
  line-height: 1.05;
}

.g-splash__cupos-label {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7a6a;
  margin-top: 14px;
}

.g-splash__cupos-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-style: italic;
  color: var(--green-dark);
  margin-top: 4px;
}

.g-splash__btn {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
  background: transparent;
  padding: 10px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.g-splash__btn:hover {
  background: var(--green-dark);
  color: #f5f0e8;
}

.g-splash__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  color: #6a5e52;
  letter-spacing: 3px;
}

.g-splash__msg {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a09080;
  line-height: 1.9;
  margin-top: 14px;
}

/* ═══ GUEST BADGE (corner pill after splash) ═══ */
.g-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 8000;
  background: #f5f0e8;
  border: 1px solid #c8b89a;
  border-radius: 6px;
  padding: 10px 14px;
  max-width: 160px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.g-badge.visible {
  opacity: 1;
  transform: translateY(0);
}
.g-badge__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--green-darkest);
  line-height: 1.3;
  display: block;
}
.g-badge__cupos {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a8a7a;
  display: block;
  margin-top: 4px;
}
