/* =========================================================
   Jiří & Elizaveta — Wedding Site
   Palette: Hooker's green #406B5B / Cambridge blue #91AE9E
            Almond #E4D5C3 / Lion #B89D83 / Tea rose #DCB5B9
   ========================================================= */

/* Custom font for Russian invitation heading */
@font-face {
  font-family: 'Benvolio';
  src: url('../fonts/Benvolio.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root{
  --green-dark: #406B5B;
  --green-darker: #2f5346;
  --sage: #91AE9E;
  --green-pale: #E8F1ED;
  --almond: #E4D5C3;
  --almond-light: #F3EBDF;
  --lion: #B89D83;
  --rose: #DCB5B9;
  --rose-deep: #c79aa0;
  --rose-envelope: #d6b8bc;
  --gold: #d9ab3f;
  --gold-deep: #7c5518;
  --ink: #2c3730;
  --paper: #FBF7F1;

  --font-display: 'Playfair Display', serif;
  --font-script: 'Parisienne', cursive;
  --font-body: 'Cormorant Garamond', serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a{ color: inherit; }

/* ---------- Language Switcher ---------- */
.language-switcher{
  display: flex;
  gap: 8px;
  order: 3;
}

.lang-btn{
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-btn:hover{
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active{
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Shared section layout ---------- */
.section-inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 110px 32px;
}
.section-inner.center{ text-align:center; }
.center{ text-align:center; }

.eyebrow{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 13px;
  color: var(--green-dark);
  margin: 0 0 14px;
}

.section-title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 40px;
  color: var(--green-darker);
}

.script-heading{
  font-family: var(--font-script);
  font-size: clamp(38px, 5vw, 58px);
  color: var(--green-dark);
  margin: 0 0 24px;
  font-weight: 400;
}

.script-heading.invitation-italic{
  font-style: italic;
}

.body-text{
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 21px;
  color: #4a564d;
}

.btn-outline{
  display: inline-block;
  margin-top: 24px;
  padding: 12px 30px;
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-outline:hover{
  background: var(--green-dark);
  color: var(--paper);
}

/* =========================================================
   NAV
   ========================================================= */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(64,107,91,0);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled{
  background: rgba(64,107,91,0.95);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.nav-inner{
  max-width: 100%;
  margin: 0;
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.nav-monogram{
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.site-nav.scrolled .nav-monogram{ opacity: 1; }

.nav-links{
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  order: 2;
}
.site-nav.scrolled .nav-links{ opacity: 1; pointer-events: auto; }

.nav-links a{
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  order: 1;
  margin-right: auto;
}
.site-nav.scrolled .nav-toggle{ opacity: 1; pointer-events: auto; }

@media (max-width: 760px){
  .nav-links{
    position: absolute;
    top: 100%;
    right: 20px;
    background: var(--green-darker);
    flex-direction: column;
    padding: 18px 26px;
    border-radius: 10px;
    gap: 16px;
    display: none;
  }
  .nav-links.open{ display: flex; }
  .nav-toggle{ display: block; }
}

/* =========================================================
   ENVELOPE INTRO
   ========================================================= */
.envelope-wrap{
  position: relative;
}

.envelope-panel{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--rose-envelope);
  padding: 40px 24px;
  gap: clamp(20px, 3vh, 32px);
  overflow: hidden;
}

.envelope-flowers{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hide flowers when invitation is unlocked */
.envelope-panel:has(.password-gate.is-unlocked) .envelope-flowers{
  display: none;
}
.flower{
  position: absolute;
  width: clamp(200px, 40vw, 420px);
  height: auto;
  opacity: 0.85;
}
.flower-top-left{
  top: clamp(-60px, -8vh, -20px);
  left: clamp(-80px, -12vw, -30px);
}
.flower-bottom-right{
  bottom: clamp(-36px, calc(10vh - 56px), 24px);
  right: clamp(-123px, calc(5vw - 143px), -83px);
  transform: scaleX(-1) scaleY(-1);
}

.envelope-savedate{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Hide savedate when invitation is unlocked */
.envelope-panel:has(.password-gate.is-unlocked) .envelope-savedate{
  display: none;
}

/* Bottom right flower with DATE */
.bottom-flower-date{
  position: fixed;
  bottom: clamp(-180px, -2.5vh, -40px);
  right: clamp(-100px, 3vw, -20px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
}

.bottom-flower-img{
  width: clamp(200px, 40vw, 420px);
  height: auto;
  display: block;
}

.bottom-date-text{
  position: absolute;
  bottom: calc(45% + 4cm);
  right: clamp(20px, 5vw, 80px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 15vw, 150px);
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

/* Hide bottom-flower-date, keep envelope-flowers visible */
.bottom-flower-date{
  display: none;
}

.envelope-panel:has(.password-gate.is-unlocked) .bottom-flower-date{
  display: none;
}

.envelope-savedate-save,
.envelope-savedate-date{
  position: absolute;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 15vw, 150px);
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.envelope-savedate-save{
  top: calc(clamp(24px, 12vh, 120px) + 4cm);
  left: calc(clamp(-14px, -2.5vw, 6px) + 2cm);
}
.envelope-savedate-date{
  bottom: clamp(24px, 12vh, 120px);
  right: clamp(-14px, -2.5vw, 6px);
}
.envelope-savedate-the{
  position: absolute;
  top: calc(clamp(140px, 28vh, 300px) + 4cm);
  left: calc(clamp(14px, 8vw, 70px) + 2cm);
  font-family: var(--font-script);
  font-size: clamp(38px, 9vw, 88px);
  color: #fff;
}

.envelope-image{
  position: relative;
  z-index: 1;
  width: min(88vw, 900px);
  max-height: 82vh;
  height: auto;
  object-fit: contain;
  display: block;
}
.envelope-image-missing{
  display: none;
  width: min(88vw, 900px);
  max-height: 82vh;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 30px;
  color: #fff;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  background: rgba(0,0,0,0.12);
  border: 1px dashed rgba(255,255,255,0.6);
  border-radius: 4px;
}
.envelope-image-missing code{
  font-style: normal;
  background: rgba(0,0,0,0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.envelope-reveal{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-envelope);
  padding: 60px 24px;
}

.envelope-open-container{
  position: relative;
  width: min(80vw, 460px);
  height: min(78vh, 640px);
  overflow: hidden;
}

/* Layer 1 (z-index: 0): Back of envelope (stays in place) */
.envelope-layer-back{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.envelope-layer-back img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Layer 2 (z-index: 1): Letter that animates upward inside the envelope.
   Starts below the visible frame and rises up in two stages. */
.letter-content{
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90%;
  max-width: 420px;
  z-index: 1;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: opacity 1s ease, transform 1s cubic-bezier(.22,.61,.36,1);
}
.letter-content img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 0.65 / 1;
  object-fit: contain;
}

/* Layer 3 (z-index: 2): Front of envelope (stays in place, overlaps letter) */
.envelope-layer-front{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.envelope-layer-front img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Stage 1 ("rise"): letter rises from bottom and becomes visible inside envelope */
.envelope-open-container.stage-rise .letter-content{
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Stage 2 ("letter-up"): letter continues upward to show "SAVE THE DATE" */
.envelope-open-container.stage-letter-up .letter-content{
  opacity: 1;
  transform: translate(-50%, -28%);
}
.card-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 5vh, 48px) clamp(20px, 4vw, 36px);
  gap: clamp(10px, 1.6vh, 16px);
}
.card-kicker{
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.12em;
  margin: 0;
  font-size: clamp(10px, 1.6vw, 13px);
}
.card-names{
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(24px, 6vw, 38px);
  color: var(--rose-deep);
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.card-names .amp{ color: var(--gold-deep); font-style: italic; }
.card-photo-frame{
  width: clamp(90px, 34vw, 160px);
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #fff;
  outline: 1px solid rgba(184,157,131,0.4);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.card-photo-frame img{ width:100%; height:100%; object-fit: cover; }
.card-savedate{
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 30px);
  color: var(--rose-deep);
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.card-date{
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  font-size: clamp(14px, 2.6vw, 18px);
  color: var(--green-darker);
  margin: 0;
}
.card-place{
  color: #6b5b47;
  margin: 0;
  font-size: clamp(12px, 2vw, 15px);
}

.password-gate{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.password-label{
  color: #fff;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  opacity: 0.9;
}
.password-row{
  display: flex;
  gap: 8px;
}
.password-row input{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  width: 160px;
  outline: none;
}
.password-row input.shake{
  animation: shake 0.4s ease;
}
@keyframes shake{
  0%,100%{ transform: translateX(0); }
  25%{ transform: translateX(-6px); }
  75%{ transform: translateX(6px); }
}
.password-submit{
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.password-submit:hover{
  background: #fff;
  color: var(--rose-deep);
}
.password-error{
  color: #fff;
  background: rgba(124,30,30,0.55);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.password-error.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.password-gate.is-unlocked .password-row,
.password-gate.is-unlocked .password-label{
  opacity: 0.5;
  pointer-events: none;
}

/* =========================================================
   INVITATION statement
   ========================================================= */
.invitation{ background: var(--almond-light); }

/* =========================================================
   STORY
   ========================================================= */
.story{ background: var(--almond-light); }
.story-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.story-photo{ margin:0; overflow:hidden; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.story-photo img{ width:100%; height:100%; object-fit: cover; }
.story-photo.large{ grid-row: 1 / 3; }
.story-photo.small{ aspect-ratio: 4/3; }

@media (max-width: 700px){
  .story-grid{ grid-template-columns: 1fr; }
  .story-photo.large{ grid-row: auto; aspect-ratio: 4/3; }
}

/* =========================================================
   LOCATION
   ========================================================= */
.location{ background: var(--paper); }
.map-frame{
  width: 100%;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  margin-top: 10px;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline{ background: var(--almond-light); color: var(--green-darker); }
.timeline .eyebrow{ color: var(--green-darker); }
.timeline .section-title{ color: #24382f; }

/* Timeline flower at bottom right */
.timeline{
  position: relative;
}

.timeline-flower{
  position: absolute;
  bottom: clamp(10px, 3vh, 70px);
  right: clamp(-30px, -2vw, 100px);
  z-index: 0;
  pointer-events: none;
}

.timeline-flower img{
  width: clamp(195px, 28.6vw, 403px);
  height: auto;
  display: block;
  opacity: 0.8;
}

/* Map decoration in international friends section */
.coming-from-abroad{
  position: relative;
}

.map-decoration{
  position: absolute;
  top: clamp(40px, 4vh, 120px);
  left: clamp(-50px, -6vw, -10px);
  z-index: 0;
  pointer-events: none;
}

.map-decoration img{
  width: clamp(229px, 29.1vw, 437px);
  height: auto;
  display: block;
  opacity: 1;
}

@media (max-width: 768px){
  /* Keep flowers visible on mobile */
  .flower{
    width: clamp(100px, 25vw, 200px) !important;
  }

  /* Fix SAVE/THE/DATE text on mobile - keep visible */
  .envelope-savedate-save{
    top: 20px !important;
    left: 10px !important;
    font-size: clamp(40px, 10vw, 80px) !important;
  }

  .envelope-savedate-the{
    top: 80px !important;
    left: 15px !important;
    font-size: clamp(28px, 7vw, 50px) !important;
  }

  .bottom-date-text{
    bottom: 30% !important;
    right: 15px !important;
    font-size: clamp(40px, 10vw, 80px) !important;
  }

  /* Adjust Calendar6 - move up more */
  .map-decoration{
    top: 20px !important;
    left: -30px !important;
  }

  .map-decoration img{
    width: clamp(120px, 18vw, 200px) !important;
  }

  /* Reduce section padding on mobile */
  .section-inner{
    padding: 30px 16px !important;
  }

  /* Reduce space between sections */
  .our-story{
    padding: 20px 0 !important;
  }

  .maps-section{
    padding: 20px 0 !important;
  }

  .countdown{
    padding: 30px 16px !important;
  }

  /* Make countdown smaller */
  .countdown-value{
    font-size: 24px !important;
  }

  .countdown-label{
    font-size: 10px !important;
  }

  .countdown-unit{
    padding: 4px !important;
  }
}

.timeline-day{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(44,55,48,0.18);
}
.timeline-day:last-child{ border-bottom: 1px solid rgba(44,55,48,0.18); }

.timeline-day-label{ display:flex; flex-direction: column; }
.timeline-day-name{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-darker);
}
.timeline-day-date{
  font-family: var(--font-body);
  font-style: italic;
  color: #3a4b41;
}
.timeline-day-time{
  font-family: var(--font-body);
  font-style: italic;
  color: #8b9b92;
  display: block;
  margin-top: 2px;
  font-size: 0.95em;
  letter-spacing: 0.3px;
}
.timeline-day-content h3{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
  color: #24382f;
}
.timeline-day-content p{ margin: 0; max-width: 620px; }
.timeline-list{ margin: 0; padding-left: 20px; }
.timeline-list li{ margin-bottom: 6px; }

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

/* =========================================================
   LOGISTICS
   ========================================================= */
.logistics{ background: var(--almond); }
.logistics-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.logistics-card{
  background: rgba(255, 255, 255, 0.15);
  padding: 32px 26px;
  border-radius: 4px;
  border: none;
  box-shadow: none;
}
.logistics-card h3{
  font-family: var(--font-display);
  color: var(--green-dark);
  margin: 0 0 10px;
  font-size: 20px;
}
.logistics-card p{
  margin: 0;
  color: #2c3730;
}

.logistics-card p + p{
  margin-top: 10px;
}

.logistics-subtitle{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-darker);
  margin: 0 0 8px;
}

.hotel-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.hotel-card{
  border: 1px dashed var(--lion);
  border-radius: 6px;
  padding: 22px 18px;
  text-align: center;
}
.hotel-index{
  display: block;
  font-family: var(--font-display);
  color: var(--rose);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.hotel-card h4{
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--green-dark);
}
.hotel-card p{ margin:0; font-size: 15px; color:#7a6a55; }

@media (max-width: 760px){
  .logistics-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   RSVP
   ========================================================= */
.rsvp{ background: var(--green-darker); color: var(--paper); }
.rsvp .eyebrow{ color: var(--rose); font-size: clamp(11px, 1.2vw, 14px); }
.rsvp .section-title{ color: var(--paper); font-size: clamp(28px, 4vw, 42px); }
.rsvp .body-text{ color: rgba(251,247,241,0.85); font-size: clamp(16px, 1.8vw, 19px); }

.rsvp-form-frame{
  position: relative;
  background: var(--green-pale);
  border-radius: 12px;
  min-height: 300px;
  margin-top: 40px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(144, 174, 158, 0.2);
}
#rsvpIframe{ position: relative; z-index: 1; display:block; }
.rsvp-placeholder{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b5b47;
  text-align: center;
  padding: 40px;
  z-index: 2;
}
.rsvp-placeholder-small{ font-size: 14px; color: var(--lion); margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--green-darker);
  color: var(--paper);
  text-align: center;
  padding: 2px 20px;
  border-top: 1px solid rgba(228,213,195,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  line-height: 1;
}
.footer-image{
  max-width: 100%;
  height: auto;
  width: clamp(67px, 11.7vw, 133px);
  display: block;
}

/* =========================================================
   FOREIGN GUESTS (International section)
   ========================================================= */
.foreign-guests-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.foreign-guests-card{
  background: rgba(228,213,195,0.15);
  padding: 30px;
  border-radius: 8px;
}
.foreign-guests-card h4{
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-darker);
  margin: 0 0 12px;
}
.foreign-guests-card > p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
}
.foreign-guests-card ul{
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.foreign-guests-card li{
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.foreign-guests-card .hotel-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
.foreign-guests-card .hotel-card{
  background: rgba(251,247,241,0.6);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.foreign-guests-card .hotel-index{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.foreign-guests-card h5{
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-darker);
  margin: 0 0 4px;
}
.foreign-guests-card .hotel-card p{
  font-size: 13px;
  color: #6b5b47;
  margin: 0;
}

/* =========================================================
   COUNTDOWN
   ========================================================= */
.countdown{ background: var(--sage); color: var(--green-darker); }
.countdown .eyebrow{ color: var(--green-darker); }
.countdown .section-title{ color: #24382f; }

.countdown-timer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: clamp(16px, 3vw, 30px);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-unit{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(44,55,48,0.08);
  border-radius: 8px;
}

.countdown-value{
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 600;
  color: var(--green-darker);
  line-height: 1;
}

.countdown-label{
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3a4b41;
}

/* =========================================================
   GALLERY
   ========================================================= */
/* =========================================================
   GALLERY SECTION (after invitation)
   ========================================================= */
.our-story{
  background: var(--almond-light);
  padding: 80px 24px;
}

.our-story .section-title{
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 80px;
  color: var(--green-darker);
}

/* Our Story Timeline Section */
.our-story{
  background: var(--rose-envelope);
  padding: 60px 16px;
}

.story-timeline-top,
.story-timeline-bottom{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  margin: 0 0 60px;
  padding: 0 20px;
}

.story-timeline-line{
  width: 100%;
  margin: 0 0 60px;
  padding: 0 20px;
  height: 60px;
}

.story-timeline-line svg{
  width: 100%;
  height: 100%;
}

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

/* Photo Style */
.story-photo{
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 12px;
  margin-bottom: 16px;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.story-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-date{
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 12px 0 0;
}

.story-photo:hover{
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.story-title{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-darker);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-text{
  font-family: var(--font-body);
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1000px){
  .story-timeline-top{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .story-timeline-bottom{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .story-title{
    font-size: 15px;
  }

  .story-text{
    font-size: 12px;
  }
}

@media (max-width: 700px){
  .story-timeline-top,
  .story-timeline-bottom{
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .story-timeline-line{
    padding: 0 16px;
  }

  .story-title{
    font-size: 14px;
  }

  .story-text{
    font-size: 12px;
  }
}

.gallery-section{
  background: var(--rose-envelope);
  padding: 60px 16px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  auto-rows: 520px;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-item{
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative;
}

.gallery-item img,
.gallery-item video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.gallery-item img{
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.gallery-item img:hover{
  transform: scale(1.08);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
}

.gallery-video video{
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.gallery-video:hover video{
  transform: scale(1.08);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
}

@media (max-width: 768px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    auto-rows: 300px;
    gap: 16px;
  }
}

/* =========================================================
   INVITATION ALT (after password unlock) - ANIMATED LETTER
   ========================================================= */

/* Full pink background container */
.invitation-alt{
  display: none;
  background: var(--rose-envelope);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 32px;
  position: relative;
}

/* Left side: Animated letter coming from bottom */
.invitation-letter-animation{
  margin: 0 0 0 60px;
  flex: 0 0 50%;
  max-width: 550px;
  position: relative;
  bottom: 0;
  z-index: 1;
  animation: letterRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes letterRise {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.invitation-letter-animation img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.invitation-letter-animation img:hover{
  transform: translateY(-12px) scale(1.05);
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.25));
}

/* Right side: Text content */
.invitation-alt-text{
  flex: 1;
  padding-left: 60px;
  z-index: 1;
  animation: textFadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.invitation-alt-text .eyebrow{
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 16px;
  letter-spacing: 0.35em;
  font-weight: 600;
}

.invitation-alt-text .script-heading{
  margin: 0 0 32px 0;
  color: var(--green-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  text-align: left;
  display: block;
}

/* Russian version - Benvolio custom font with larger size */
html[lang="ru"] .invitation-alt-text .script-heading {
  font-family: 'Benvolio', cursive;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
}

.invitation-alt-text .body-text{
  color: var(--ink);
  max-width: 600px;
  margin-left: 0;
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1000px){
  .invitation-alt{
    flex-direction: column;
    min-height: auto;
    padding: 60px 32px;
  }

  .invitation-letter-animation{
    flex: none;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .invitation-alt-text{
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 600px){
  .invitation-alt{
    padding: 40px 20px;
  }

  .invitation-letter-animation{
    max-width: 300px;
    margin-bottom: 30px;
  }

  .invitation-alt-text .script-heading{
    font-size: clamp(32px, 5vw, 48px);
  }
}

/* Photos section - white background */
.invitation-photos-section{
  display: none;
  background: var(--paper);
  padding: 60px 24px 80px;
}

.invitation-photos-section .section-inner{
  padding: 0;
}

/* Hero photo - large */
.invitation-hero-photo{
  margin: 0 auto 40px;
  max-width: 900px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
  aspect-ratio: 1.2 / 1;
}

.invitation-hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Three smaller photos grid */
.invitation-photos-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
}

.invitation-photo-item{
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
  position: relative;
  aspect-ratio: 1;
}

.invitation-photo-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.invitation-photo-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.invitation-photo-item:hover img{
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px){
  .invitation-photos-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .invitation-hero-photo{
    aspect-ratio: 1;
  }
}

@media (max-width: 600px){
  .invitation-text{
    padding: 60px 20px;
  }

  .invitation-photos-section{
    padding: 40px 16px 60px;
  }

  .invitation-hero-photo{
    margin-bottom: 24px;
    aspect-ratio: 1;
  }

  .invitation-photos-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2vw, 16px);
  }

  .invitation-photo-item:nth-child(3){
    grid-column: 1 / 2;
  }
}

.gallery{
  background: var(--paper);
  padding: 80px 24px;
}

.gallery .section-inner{
  padding: 0 0 40px 0;
}

/* Simple 4-photo gallery grid */
.gallery-grid-simple{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item{
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
  position: relative;
  aspect-ratio: 1;
}

.gallery-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

/* Responsive adjustments */
@media (max-width: 900px){
  .gallery-grid-simple{
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 3vw, 20px);
  }
}

@media (max-width: 600px){
  .gallery{
    padding: 60px 16px;
  }

  .gallery-grid-simple{
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
    padding: 0;
  }
}

/* =========================================================
   MAPS SECTION
   ========================================================= */
.maps-section{
  background: var(--almond-light);
  padding: 60px 24px;
  border-top: 1px solid rgba(64, 107, 91, 0.12);
}

.maps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-card h3{
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-darker);
  margin: 0;
}

.map-location{
  font-size: 15px;
  color: #6b5b47;
  margin: 0;
}

.map-location-note{
  font-size: 13px;
  color: #8b7b6f;
  font-style: italic;
}

.map-link{
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #4a7c59;
  text-decoration: none;
  border-bottom: 1px solid #4a7c59;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.map-link:hover{
  color: #2d5035;
  border-color: #2d5035;
}

.map-frame-spacer{
  height: 20px;
}

.map-frame{
  width: 100%;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.map-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-frame.map-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(228,213,195,0.15);
}

.map-placeholder p{
  font-size: 16px;
  color: #6b5b47;
  text-align: center;
  margin: 0;
}

/* =========================================================
   COMING FROM ABROAD
   ========================================================= */
.coming-from-abroad{
  background: rgba(251,247,241,0.5);
  padding: 80px 24px;
}

.abroad-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.abroad-card{
  background: transparent;
  padding: 20px 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(64,107,91,0.15);
  border-bottom: 1px solid rgba(64,107,91,0.15);
}

.abroad-card h3{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-dark);
  margin: 0 0 16px;
}

.abroad-card > p{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.abroad-card ul{
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.abroad-card li{
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

.hotel-grid-simple{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.hotel-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(228,213,195,0.2);
  border-radius: 4px;
}

.abroad-card .hotel-index{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--rose-deep);
  flex-shrink: 0;
}

.hotel-item h5{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green-darker);
  margin: 0 0 2px;
}

.hotel-item p{
  font-size: 13px;
  color: #6b5b47;
  margin: 0;
}

/* =========================================================
   INTERNATIONAL FRIENDS - NEW LAYOUT
   ========================================================= */
.abroad-full-width{
  margin-bottom: 32px;
}

.abroad-card-full{
  background: transparent;
  padding: 24px 0 32px 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(64,107,91,0.15);
  border-bottom: 1px solid rgba(64,107,91,0.15);
}

.abroad-card-full h3{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-dark);
  margin: 0 0 20px;
}

.abroad-card-full > p{
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}

.places-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.place-item{
  padding: 20px;
  background: rgba(228,213,195,0.3);
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
}

.place-item:hover{
  background: rgba(228,213,195,0.5);
}

.place-item h4{
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 12px;
  font-weight: 500;
}

.place-item p{
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.place-item.special.bride-pick{
  border-left: 4px solid var(--rose);
  padding-left: 20px;
}

.place-item.special.bride-pick h4{
  color: var(--rose-deep);
}

.place-item.special.groom-pick{
  border-left: 4px solid var(--green-dark);
  padding-left: 20px;
}

.place-item.special.groom-pick h4{
  color: var(--green-dark);
}

/* Bride and Groom Pick styling with star */
.place-item.special.bride-pick,
.place-item.special.groom-pick{
  padding: 20px;
  padding-left: 60px;
  background: transparent;
  border-left: none;
  position: relative;
  transition: all 0.3s ease;
}

.place-item.special.bride-pick{
  background: rgba(220,181,185,0.15);
  border-radius: 6px;
}

.place-item.special.bride-pick:hover{
  background: rgba(220,181,185,0.25);
}

.place-item.special.groom-pick{
  background: rgba(64,107,91,0.1);
  border-radius: 6px;
}

.place-item.special.groom-pick:hover{
  background: rgba(64,107,91,0.18);
}

.place-item.special::before{
  content: "★";
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.place-item.special.bride-pick::before{
  color: var(--rose-deep);
  background: rgba(220,181,185,0.25);
}

.place-item.special.groom-pick::before{
  color: var(--green-dark);
  background: rgba(64,107,91,0.2);
}

.abroad-grid-2col{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.abroad-grid-2col > .abroad-card{
  display: flex;
  flex-direction: column;
}

/* Hotel Cards with Tags */
.hotel-cards-featured{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.hotel-card-featured{
  background: transparent;
  padding: 12px 0 12px 16px;
  border-radius: 0;
  border-left: 3px solid var(--green-dark);
}

.hotel-card-featured h4{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
}

.hotel-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-tag{
  display: inline-block;
  background: rgba(64,107,91,0.08);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.hotel-tags{
  gap: 8px;
}

/* Transport item styling */
.transport-item{
  padding: 14px 12px 14px 14px;
  background: rgba(64,107,91,0.06);
  border-left: 3px solid var(--green-dark);
  margin: 10px 0;
  border-radius: 4px;
  max-width: 100%;
}

.transport-item h5{
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-dark);
  margin: 0 0 6px;
  font-weight: 600;
}

.transport-item p{
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ========== COMPREHENSIVE MOBILE OPTIMIZATION (max-width: 480px) ========== */
@media (max-width: 480px) {
  /* ===== BODY & GENERAL ===== */
  body {
    font-size: 16px;
  }


  /* ===== ENVELOPE/PASSWORD PAGE ===== */
  .envelope-wrap {
    height: 100vh;
    overflow: hidden;
  }

  /* Allow scrolling after password unlock */
  .envelope-wrap.unlocked {
    height: auto !important;
    overflow: visible !important;
  }

  /* Hide envelope panel after password unlock */
  .envelope-wrap.unlocked .envelope-panel {
    display: none !important;
  }

  /* Show invitation section after password unlock */
  .envelope-wrap.unlocked .invitation-alt {
    display: flex !important;
  }

  .envelope-panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--rose-envelope);
    padding: 40px 24px;
    gap: clamp(20px, 3vh, 32px);
    overflow: hidden;
    background-image: url('../Mobile.png');
    background-size: 100% auto;
    background-position: calc(50% - 2mm) top;
    background-repeat: no-repeat;
    background-color: var(--rose-envelope);
  }

  /* Hide decorative elements - using Mobile.png as background */
  .envelope-image {
    display: none !important;
  }

  .envelope-flowers {
    display: none !important;
  }

  .envelope-savedate {
    display: none !important;
  }

  .bottom-flower-date {
    display: none !important;
  }

  /* Password gate */
  .password-gate {
    position: absolute !important;
    left: 0.5cm !important;
    top: 75% !important;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .password-label {
    display: none !important;
  }

  .password-row {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 8px;
  }

  .password-row input {
    font-family: var(--font-body);
    font-size: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.9);
    color: var(--ink);
    width: 160px;
    outline: none;
    touch-action: manipulation;
  }

  /* ===== INVITATION SECTION ===== */
  .invitation-alt {
    display: none;
    min-height: 100vh !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 40px 16px !important;
    flex-direction: column !important;
    gap: 20px !important;
    background: var(--rose-envelope) !important;
    background-image: url('../Mobile3.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 0 !important;
  }

  .invitation-letter-animation {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    margin: 0 auto 20px !important;
    width: 100%;
  }

  .invitation-letter-animation img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }

  .invitation-alt-text {
    flex: 1 !important;
    padding: 0 !important;
    text-align: center;
    width: 100%;
  }

  .invitation-alt-text .eyebrow {
    font-size: 13px !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 10px !important;
    color: var(--green-dark) !important;
  }

  .invitation-alt-text .script-heading {
    font-size: 36px !important;
    margin: 10px 0 !important;
    color: var(--green-dark) !important;
    text-align: center !important;
    display: inline-block !important;
  }

  /* Russian version - Benvolio custom font with larger font on mobile */
  html[lang="ru"] .invitation-alt-text .script-heading {
    font-family: 'Benvolio', cursive !important;
    font-size: 36px !important;
    font-weight: 400 !important;
  }

  .invitation-alt-text .body-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 15px 0 0 !important;
    color: var(--ink) !important;
  }

  /* ===== SECTIONS GENERAL ===== */
  .section-inner {
    padding: 25px 16px !important;
    max-width: 100%;
  }

  .section-inner.center {
    text-align: center;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: 28px !important;
    margin: 10px 0 20px;
  }

  .body-text {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ===== OUR STORY SECTION ===== */
  .our-story {
    padding: 20px 0 !important;
  }

  .ourstory-image {
    margin: 15px 0 !important;
    width: 100%;
  }

  .ourstory-image img {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ===== LOCATIONS/MAPS SECTION ===== */
  .maps-section {
    padding: 20px 0 !important;
  }

  .map-decoration {
    display: none !important;
  }

  /* ===== DETAILS SECTION ===== */
  .details {
    padding: 20px 0 !important;
  }

  .logistics-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .logistics-card {
    padding: 16px;
  }

  .logistics-card h3 {
    font-size: 16px;
  }

  .logistics-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== PRAGUE/INTERNATIONAL FRIENDS ===== */
  .coming-from-abroad {
    padding: 20px 0 !important;
  }

  .place-item {
    font-size: 15px;
  }

  .place-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .place-item p {
    font-size: 14px;
    line-height: 1.55;
  }

  .abroad-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .abroad-card {
    padding: 20px;
  }

  .abroad-card h3 {
    font-size: 18px;
  }

  .abroad-card-full h3 {
    font-size: 18px;
  }

  .hotel-card-featured {
    flex-direction: column;
  }

  .hotel-tags {
    flex-direction: column;
    gap: 6px;
  }

  .hotel-tag {
    font-size: 13px;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
  }

  /* ===== RSVP SECTION ===== */
  .rsvp {
    padding: 20px 0 !important;
  }

  .rsvp-form-frame {
    margin-top: 20px !important;
    padding: 12px !important;
    min-height: 500px;
  }

  #rsvpIframe {
    font-size: 13px !important;
    height: 500px !important;
    transform: scale(0.9);
    transform-origin: top center;
  }

  /* ===== COUNTDOWN ===== */
  .countdown {
    padding: 25px 16px !important;
  }

  .countdown-unit {
    padding: 6px !important;
    min-width: auto;
  }

  .countdown-value {
    font-size: 22px !important;
  }

  .countdown-label {
    font-size: 10px !important;
  }

  /* ===== GENERAL MARGINS ===== */
  section {
    margin: 0 !important;
  }

  h2.section-title {
    margin-top: 0;
  }

  /* ===== NO HORIZONTAL SCROLL ===== */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
}
