/* ==========================================================================
   LOVER ALBUM WEDDING INVITATION — PLAIN CSS
   Color Palette (inspired by Taylor Swift's "Lover" album art)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Dancing+Script:wght@500;600&family=Poppins:wght@400;500;600&display=swap');

:root {
  /* --- Core Palette --- */
  --color-cream:        #FFF8F3;  /* page background */
  --color-cream-2:      #FFF1E6;  /* alt section background */
  --color-white:        #FFFFFF;

  --color-pink-light:   #FFD6E8;  /* soft blush */
  --color-pink:         #FF9EC4;  /* primary pink */
  --color-pink-deep:    #F4538A;  /* accent / buttons */

  --color-blue-light:   #C9E4FF;  /* soft sky */
  --color-blue:         #8ECAE6;  /* primary blue */
  --color-blue-deep:    #4A6FA5;  /* accent */

  --color-lavender:     #D9C6F0;
  --color-gold:         #F6C453;

  --color-text:         #33334D;  /* twilight navy */
  --color-text-soft:    #6B6B85;
  --color-ink:          #2E1F27;  /* warm near-black for hero copy */

  /* --- Gradients (album-cover sky) --- */
  --gradient-hero: linear-gradient(160deg, #FFDCEA 0%, #FBC8DD 20%, #E4C6EA 45%, #C9D3F2 65%, #9FCBE8 100%);
  --gradient-soft: linear-gradient(135deg, #FFD6E8 0%, #D9C6F0 50%, #C9E4FF 100%);
  --gradient-gold: linear-gradient(90deg, #F6C453 0%, #FF9EC4 100%);
  --gradient-header: linear-gradient(90deg, #FCDCEA 0%, #FAD3E6 100%);

  /* --- Type --- */
  --font-display: 'Alex Brush', cursive;      /* big script headline */
  --font-script:  'Dancing Script', cursive;  /* smaller cursive accents */
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    'Poppins', 'Helvetica Neue', Arial, sans-serif;

  /* --- Spacing --- */
  --section-padding: 6rem 1.5rem;
  --header-height: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  padding-top: var(--header-height);
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; }

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   SITE HEADER / MENU
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--gradient-header);
  box-shadow: 0 2px 12px rgba(74, 111, 165, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(74, 111, 165, 0.16);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-pink-deep);
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-pink-deep);
  transition: width 0.3s;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.nav-menu a.active {
  color: var(--color-pink-deep);
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 310;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 77, 0.35);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 800px) {
  :root { --header-height: 50px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(280px, 75vw);
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(74, 111, 165, 0.15);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    color: var(--color-text) !important;
    text-shadow: none !important;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   NAV DOTS (section indicator)
   ========================================================================== */
.nav-dots {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nav-dots a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(51, 51, 77, 0.25);
  display: block;
  transition: background 0.3s, transform 0.3s;
}
.nav-dots a.active,
.nav-dots a:hover {
  background: var(--color-pink-deep);
  transform: scale(1.3);
}
@media (max-width: 700px) {
  .nav-dots { display: none; }
  .container { padding-left: 0.2rem; padding-right: 0.2rem; }
  .section { padding-left: 0.2rem; padding-right: 0.2rem; }
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 70px;
}
.section--cream   { background: var(--color-cream); }
.section--cream-2 { background: var(--color-cream-2); }
.section--soft    { background: var(--gradient-soft); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-pink-deep);
  margin-bottom: 0.75rem;
}
.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  margin: 1.25rem auto 2.5rem;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Image / media placeholder helper — swap these for real photos later */
.img-placeholder {
  background: var(--gradient-soft);
  border: 2px dashed rgba(51, 51, 77, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  min-height: 220px;
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.4), transparent 35%),
    radial-gradient(circle at 82% 8%, rgba(255,255,255,0.3), transparent 30%),
    var(--gradient-hero);
  overflow: hidden;
  padding: 4.5rem 2rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* scattered hearts & sparkles */
.hero-decor span {
  position: absolute;
  pointer-events: none;
  color: var(--color-pink-deep);
  z-index: 1;
}
.hero-decor .heart { font-size: 1.6rem; opacity: 0.85; }
.hero-decor .heart-outline { font-size: 1.3rem; color: var(--color-pink-deep); opacity: 0.7; }
.hero-decor .sparkle { font-size: 1.1rem; color: var(--color-gold); opacity: 0.85; }
.hero-decor .d1 { top: 12%;  left: 5%; }
.hero-decor .d2 { top: 42%;  left: 3%;  font-size: 1.1rem; opacity: 0.6; }
.hero-decor .d3 { top: 18%;  left: 29%; }
.hero-decor .d4 { top: 10%;  left: 51%; }
.hero-decor .d5 { top: 22%;  left: 55%; }
.hero-decor .d6 { top: 9%;   right: 8%; }
.hero-decor .d7 { top: 60%;  left: 44%; opacity: 0.5; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}
.hero-script-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--color-pink-deep);
  text-shadow: 0 2px 12px rgba(244, 83, 138, 0.15);
  margin: 0.25rem 0;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.hero-divider span.line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.hero-divider span.divider-heart {
  color: var(--color-gold);
  font-size: 0.8rem;
}
.hero-desc {
  color: var(--color-ink);
  font-size: 1rem;
  max-width: 380px;
}
.hero-date {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--color-pink-deep);
  margin: 0.25rem 0;
}
.hero-date .date-sep {
  font-size: 1.1rem;
  color: var(--color-gold);
}
.hero-daytime {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-blue-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.hero-daytime .dot-heart { color: var(--color-pink-deep); font-size: 0.9rem; font-family: var(--font-sans); }
.hero-location {
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- Countdown --- */
.hero-countdown--inline {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  width: fit-content;
}
.countdown-numbers {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.4rem;
}
.countdown-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-pink-deep);
}
.countdown-label {
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.countdown-sep {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-gold);
}
.countdown-today { display: none; font-family: var(--font-script); font-size: 1.3rem; color: var(--color-pink-deep); }
.is-today .countdown-numbers { display: none; }
.is-today .countdown-today { display: inline-block; }

@media (max-width: 900px) {
  .hero-countdown--inline { display: none; }
}

/* --- Mobile fixed countdown bar --- */
.mobile-countdown-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 350;
  background: rgba(255, 248, 243, 0.97);
  border-top: 2px solid var(--color-pink-light);
  box-shadow: 0 -4px 16px rgba(74, 47, 74, 0.1);
  padding: 0.5rem 1rem 0.6rem;
  text-align: center;
}
.mobile-countdown-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
}
.hero-countdown--bar .countdown-numbers { justify-content: center; gap: 0.9rem; }
.hero-countdown--bar .countdown-item { width: 2.6rem; }
.hero-countdown--bar .countdown-num { font-size: 1.15rem; }
.hero-countdown--bar .countdown-sep { font-size: 1.15rem; }
.hero-countdown--bar .countdown-label { font-size: 0.55rem; color: var(--color-text-soft); }
.hero-countdown--bar .countdown-today { font-size: 1rem; }

@media (max-width: 900px) {
  .mobile-countdown-bar { display: block; }
  .music-btn { bottom: 5.75rem; }
}

/* --- Polaroid photo --- */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.polaroid {
  position: relative;
  background: var(--color-white);
  padding: 14px 14px 8px;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(74, 47, 74, 0.22);
  transform: rotate(4deg);
  width: min(380px, 90%);
}
.polaroid-tape {
  position: absolute;
  top: -16px;
  right: 20%;
  width: 90px;
  height: 32px;
  background: linear-gradient(90deg, rgba(244,83,138,0.35), rgba(244,83,138,0.5));
  transform: rotate(-8deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.polaroid-photo {
  border-radius: 2px;
  min-height: 0;
  width: 100%;
  height: auto;
  display: block;
}
.polaroid-caption {
  font-family: var(--font-display);
  text-align: center;
  color: var(--color-pink-deep);
  font-size: 1.8rem;
  margin-top: 0.75rem;
}
.hero-florals {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 240px;
  height: 180px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 3;
  opacity: 0.6;
  pointer-events: none;
}

/* --- Quote --- */
.hero-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 3.5rem auto 0;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 1.1rem 1.75rem;
  box-shadow: 0 8px 24px rgba(74, 47, 74, 0.1);
}
.hero-quote p {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--color-pink-deep);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}
.hero-quote .quote-heart { font-size: 1rem; }
.hero-quote .quote-cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-blue-deep);
}

/* --- Bottom torn-paper edge --- */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 1;
  filter: drop-shadow(0 -10px 16px rgba(74, 47, 74, 0.2));
}
.hero-wave::before,
.hero-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    0% 10.4%, 3.8% 10.4%, 7.8% 9.3%, 10.5% 17.7%, 13.5% 21.7%,
    18.3% 13.6%, 22% 49.6%, 25.2% 32.4%, 29.9% 48.1%, 34.1% 24.4%,
    37.8% 38.8%, 42.6% 30.8%, 46.3% 51.3%, 49.4% 55%, 54.2% 41.3%,
    59% 32.4%, 65.3% 12%, 70.4% 44.8%, 74.5% 51.9%, 77.4% 16.8%,
    80.9% 9.5%, 85.6% 41.5%, 89.2% 27.5%, 95.6% 19.5%, 99% 29.5%,
    100% 27.6%, 100% 100%, 0% 100%
  );
}
.hero-wave::before {
  /* torn fiber highlight — a sliver of lighter paper peeking above the tear line */
  transform: translateY(-3px);
  background: #FFFBF3;
}
.hero-wave::after {
  background: linear-gradient(180deg, #FBF3E7 0%, #F4E8D8 14%, #EFDFC7 100%);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow, .hero-desc, .hero-location { margin-left: auto; margin-right: auto; }
  .hero-divider, .hero-daytime, .hero-location { justify-content: center; }
  .hero-date { justify-content: center; }
  .hero-photo-wrap { order: -1; margin-top: 0; margin-bottom: 2rem; }
  .hero-florals { display: none; }
}

/* ==========================================================================
   WEDDING TIMELINE
   ========================================================================== */
.timeline-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-stop {
  flex: 1 1 160px;
  max-width: 190px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(74, 111, 165, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.timeline-icon-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.timeline-time {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-pink-deep);
  font-size: 1.1rem;
}
.timeline-label { color: var(--color-text-soft); font-size: 0.85rem; }

@media (max-width: 700px) {
  .timeline-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .timeline-stop { max-width: none; }
  .timeline-stop:last-child { grid-column: 1 / -1; max-width: 190px; justify-self: center; }
}

/* ==========================================================================
   SECTION 2 — PRENUP FILM
   ========================================================================== */
.film-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74, 111, 165, 0.2);
}
.film-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-blue-deep), var(--color-pink-deep));
}
.film-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   SECTION 3 — OUR STORY (photo timeline)
   ========================================================================== */
.story-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-bottom: 8rem;
}

.story-florals {
  position: absolute;
  width: 300px;
  height: 225px;
  object-fit: contain;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
.story-florals--left  { bottom: 40px; left: -30px; }
.story-florals--right { top: 30%; right: -30px; }

.story-header { position: relative; z-index: 2; text-align: center; margin-bottom: 3rem; }
.story-intro {
  color: var(--color-ink);
  font-size: 1rem;
  margin-top: 1rem;
}

.story-timeline {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}
.story-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--color-gold) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
  z-index: 0;
}

.story-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.story-item.reverse { flex-direction: row-reverse; }
.story-photo-wrap,
.story-text { flex: 1; min-width: 0; position: relative; }
.story-connector {
  flex: 0 0 44px;
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.story-photo {
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(74, 47, 74, 0.22);
  transform: rotate(var(--rot, -3deg));
  min-height: 0;
  background: var(--color-white);
  padding: 8px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  display: block;
}
.story-tape {
  position: absolute;
  top: -14px;
  width: 64px;
  height: 24px;
  transform: rotate(-8deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 2;
}
.story-heart-badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
}

.story-title-row { display: flex; align-items: baseline; gap: 0.6rem; }
.story-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-pink-deep);
  line-height: 1;
}
.story-text h3 { font-size: 1.35rem; color: var(--color-text); }
.story-date {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  margin: 0.3rem 0 0.5rem;
}
.story-text p { color: var(--color-ink); font-size: 0.95rem; }
.story-item.reverse .story-text { text-align: right; }
.story-item.reverse .story-title-row { justify-content: flex-end; }

.story-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 2rem;
}
.story-footer-caps {
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-pink-deep);
  font-weight: 600;
}
.story-footer-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-pink-deep);
  margin-top: 0.35rem;
}

@media (max-width: 800px) {
  .story-florals { display: none; }
  .story-item,
  .story-item.reverse {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .story-item.reverse .story-text,
  .story-item.reverse .story-title-row {
    text-align: left;
    justify-content: flex-start;
  }
  .story-connector { display: none; }
  .story-timeline::before { display: none; }
}

/* ==========================================================================
   SECTION 4 — GUEST GUIDE
   ========================================================================== */
.guide-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
}

/* corner floral placeholders — reuses .story-florals base sizing */
.story-florals--tl { top: -20px; left: -30px; }
.story-florals--tr { top: -20px; right: -30px; }
.story-florals--bl { bottom: -20px; left: -30px; }
.story-florals--br { bottom: -20px; right: -30px; }
@media (max-width: 800px) {
  .story-florals--tl, .story-florals--tr,
  .story-florals--bl, .story-florals--br { display: none; }
}

.guide-list {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.guide-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 14px 34px rgba(74, 111, 165, 0.1);
}

.guide-icon-wrap { position: relative; flex: 0 0 130px; }
.guide-icon-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  min-height: 0;
  font-size: 0.68rem;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(74, 47, 74, 0.18);
}
.guide-icon-circle--phone {
  width: 110px;
  height: 150px;
  border-radius: 20px;
}
.guide-icon-heart {
  position: absolute;
  bottom: -6px;
  left: -6px;
  font-size: 1.4rem;
  color: var(--color-pink-deep);
  opacity: 0.75;
}

.guide-content { flex: 1; min-width: 0; }
.guide-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  font-size: 1.05rem;
}
.guide-content .hero-divider { margin: 0.6rem 0 0.85rem; }
.guide-content p { color: var(--color-ink); font-size: 0.92rem; }
.guide-content strong { color: var(--color-text); }
.guide-content strong.accent-gold { color: #C9922E; }
.guide-content strong.accent-pink { color: var(--color-pink-deep); text-decoration: underline; }

.guide-decor {
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.dot-stack { display: flex; flex-direction: column; gap: 0.5rem; }
.dot { width: 13px; height: 13px; border-radius: 50%; }
.guide-sparkle { color: var(--color-gold); font-size: 1.1rem; }
.guide-emoji-decor { font-size: 1.8rem; }
.guide-heart-doodle { font-size: 2.2rem; color: var(--color-gold); opacity: 0.8; }

@media (max-width: 700px) {
  .guide-card { flex-direction: column; text-align: center; }
  .guide-content .hero-divider { justify-content: center; }
  .guide-decor { flex: 0 0 auto; flex-direction: row; justify-content: center; gap: 0.85rem; }
  .dot-stack { flex-direction: row; gap: 0.6rem; }
  .dot { width: 15px; height: 15px; }
  .guide-sparkle { font-size: 1.35rem; }
  .guide-emoji-decor { font-size: 2.1rem; }
  .guide-heart-doodle { font-size: 2.5rem; }
}

.venue-card {
  max-width: 820px;
  margin: 3rem auto 2rem;
  text-align: center;
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.venue-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue-deep);
  margin-bottom: 0.5rem;
}
.venue-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-text); }
.venue-address { color: var(--color-text-soft); font-size: 0.9rem; margin-top: 0.15rem; }
.venue-time { color: var(--color-pink-deep); font-size: 0.85rem; margin-top: 0.4rem; }
.venue-map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--color-blue-deep);
  border: 1.5px solid var(--color-blue-deep);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  transition: background 0.3s, color 0.3s;
}
.venue-map-link:hover { background: var(--color-blue-deep); color: var(--color-white); }
.venue-divider { color: var(--color-gold); font-size: 1.3rem; }

@media (max-width: 700px) {
  .venue-grid { grid-template-columns: 1fr; gap: 2rem; }
  .venue-divider { transform: rotate(90deg); }
}

/* ==========================================================================
   SECTION 5 — WEDDING GIFTS
   ========================================================================== */
.gifts-quote {
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--color-pink-deep);
  margin-bottom: 2.5rem;
}

.gifts-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 22px;
  padding: 2.25rem;
  box-shadow: 0 16px 40px rgba(74, 111, 165, 0.1);
}
.gifts-col-title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.gifts-qr-col { text-align: center; }
.gifts-note {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-pink-deep);
  margin-bottom: 0.35rem;
}
.gifts-subnote {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-bottom: 0.35rem;
}
.gifts-hint {
  font-size: 0.75rem;
  color: var(--color-text-soft);
  margin-bottom: 1.25rem;
}

.qr-options {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.qr-option { width: 130px; }
.qr-logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  margin-bottom: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.qr-logo-btn img { max-height: 22px; width: auto; object-fit: contain; }
.qr-thumb-btn {
  display: block;
  width: 100%;
  padding: 0.4rem;
  margin-bottom: 0.5rem;
  background: var(--color-cream);
  border: 1px solid var(--color-pink-light);
  border-radius: 8px;
  cursor: pointer;
}
.qr-thumb-btn img { width: 100%; display: block; border-radius: 4px; }
.qr-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white);
}
.qr-download--bpi { background: #C8102E; }
.qr-download--gcash { background: #007AFF; }

.gifts-givers-col {
  border-left: 1px solid var(--color-pink-light);
  padding-left: 2rem;
}
.gifts-givers-note {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--color-text-soft);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.gift-givers-list { list-style: none; max-height: 260px; overflow-y: auto; }
.gift-givers-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-cream-2);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}
.giver-heart { color: var(--color-gold); }
.giver-flag { font-size: 1.1rem; margin-left: 0.3rem; vertical-align: middle; }
.gift-givers-list li.gift-givers-empty {
  display: block;
  text-align: center;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-soft);
  border-bottom: none;
  padding: 0.75rem 0;
}

@media (max-width: 700px) {
  .gifts-panel { grid-template-columns: 1fr; padding: 1.75rem; }
  .gifts-givers-col {
    border-left: none;
    border-top: 1px solid var(--color-pink-light);
    padding-left: 0;
    padding-top: 1.75rem;
  }
  .gift-givers-list { max-height: none; overflow-y: visible; }
}

/* --- QR modal --- */
.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 31, 39, 0.7);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.qr-modal.open { display: flex; }
.qr-modal-card {
  position: relative;
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.qr-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-text-soft);
  cursor: pointer;
}
.qr-modal-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  margin-bottom: 1rem;
}
.qr-modal-img {
  width: 100%;
  border-radius: 10px;
}
.qr-modal-placeholder {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 10px;
}

/* ==========================================================================
   SECTION 6 — GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(74, 111, 165, 0.12);
  cursor: pointer;
  transition: transform .2s;
}
.gallery-photo:hover {
  transform: scale(1.03);
}
.gallery-grid .gallery-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-photo:nth-child(4) { grid-column: span 2; }
.gallery-grid .gallery-photo:nth-child(7) { grid-row: span 2; }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-photo:nth-child(1) { grid-column: span 2; }
}

/* --- Gallery lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 31, 39, 0.9);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-white);
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: .8rem;
  letter-spacing: .05em;
}

@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

/* ==========================================================================
   SECTION 7 — ENTOURAGE
   ========================================================================== */
.entourage-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding-top: 5rem;
}

/* --- Header: polaroid + script title --- */
.entourage-header {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  z-index: 2;
}
.entourage-photo-wrap { display: flex; justify-content: flex-start; }
.polaroid--small {
  width: 200px;
  padding: 10px 10px 44px;
  transform: rotate(-6deg);
}
.polaroid--small .polaroid-caption { font-size: 1.3rem; margin-top: 0.4rem; }
.polaroid--small .polaroid-tape { width: 60px; height: 24px; right: 15%; }

.entourage-title-wrap { text-align: center; }
.entourage-script-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--color-pink-deep);
  text-shadow: 0 2px 10px rgba(244, 83, 138, 0.15);
  line-height: 1;
}
.entourage-couple {
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-blue-deep);
  margin-top: 0.5rem;
  font-size: 1rem;
}
.entourage-florals {
  width: 240px;
  height: 180px;
  object-fit: contain;
  object-position: top right;
  justify-self: end;
  opacity: 0.6;
  pointer-events: none;
}

/* --- Shared card look --- */
.entourage-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: 0 12px 34px rgba(74, 111, 165, 0.1);
  position: relative;
  z-index: 2;
}
.entourage-card-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--color-pink-deep);
  margin-bottom: 1.25rem;
}

/* --- Parents --- */
.entourage-parents {
  max-width: 640px;
  margin: 0 auto 3rem;
}
.parents-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.parents-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-blue-deep);
  margin-bottom: 0.5rem;
}
.parents-col p { color: var(--color-text-soft); }
.parents-divider { color: var(--color-gold); font-size: 1.3rem; }

/* --- Principal role cards --- */
.role-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.role-card {
  background: var(--color-white);
  border-radius: 100px 100px 14px 14px;
  padding: 2rem 0.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 26px rgba(74, 111, 165, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.role-icon { font-size: 1.6rem; }
.role-title {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-pink-deep);
  font-weight: 600;
  line-height: 1.3;
}
.role-name { font-size: 0.85rem; color: var(--color-text-soft); }
.role-heart { font-size: 0.75rem; }

/* --- Two-column rows --- */
.entourage-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

/* Flower girls */
.flower-girls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.flower-girl {
  background: var(--color-cream);
  border-radius: 10px;
  padding: 0.9rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}
.flower-girl span { display: block; font-size: 1.3rem; margin-bottom: 0.35rem; }

/* Secondary sponsors */
.sponsors-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
}
.sponsor-icon { font-size: 1.5rem; display: block; margin-bottom: 0.35rem; }
.sponsor-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-blue-deep);
  margin-bottom: 0.35rem;
}
.sponsor-col p { font-size: 0.85rem; color: var(--color-text-soft); }

/* Team bride / groom */
.team-card { position: relative; text-align: center; }
.team-icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.team-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  text-align: left;
}
.team-names ul { list-style: none; color: var(--color-text-soft); font-size: 0.9rem; }
.team-names li { padding: 0.3rem 0; }

/* Principal sponsors */
.principal-sponsors { max-width: 1100px; margin: 0 auto; }
.principal-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
}
.principal-label {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--color-pink-deep);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.principal-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
}
.principal-names ul { list-style: none; color: var(--color-text-soft); font-size: 0.88rem; }
.principal-names li { padding: 0.25rem 0; }
.principal-divider { color: var(--color-gold); font-size: 1.4rem; align-self: center; }

@media (max-width: 900px) {
  .entourage-header { grid-template-columns: 1fr; text-align: center; }
  .entourage-photo-wrap, .entourage-florals { justify-content: center; justify-self: center; }
  .entourage-florals { display: none; }
  .parents-grid { grid-template-columns: 1fr; }
  .parents-divider { transform: rotate(90deg); }
  .entourage-two-col { grid-template-columns: 1fr; }
  .principal-grid { grid-template-columns: 1fr; }
  .principal-divider { transform: rotate(90deg); }
}

@media (max-width: 700px) {
  .flower-girls-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION 8 — RSVP
   ========================================================================== */
.rsvp-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(74, 111, 165, 0.15);
}

@media (max-width: 700px) {
  .rsvp-form { padding: 1rem; }
}
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--color-pink-light);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-pink-deep);
}
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.rsvp-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  background: var(--color-white);
  border: 1.5px solid var(--color-pink-light);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(74, 111, 165, 0.18);
  max-height: 220px;
  overflow-y: auto;
}
.rsvp-suggestions li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--color-cream);
}
.rsvp-suggestions li:last-child { border-bottom: none; }
.rsvp-suggestions li:hover { background: var(--color-cream); }
.rsvp-suggestions li .sugg-group {
  font-size: 0.72rem;
  color: var(--color-pink-deep);
  white-space: nowrap;
}
.rsvp-suggestions li.sugg-taken .sugg-group { color: var(--color-text-soft); }

.attend-toggle { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.attend-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 30px;
  border: 1.5px solid var(--color-pink-deep);
  background: var(--color-white);
  color: var(--color-pink-deep);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.attend-btn--active {
  background: var(--color-pink-deep);
  color: var(--color-white);
}

.rsvp-form-msg {
  text-align: center;
  font-size: 0.85rem;
  min-height: 1.2em;
  margin-bottom: 0.75rem;
}
.rsvp-form-msg.ok  { color: #2e7d32; }
.rsvp-form-msg.err { color: #b00020; }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 30px;
  background: var(--gradient-gold);
  color: var(--color-white);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:disabled { opacity: 0.6; cursor: default; }
.rsvp-deadline {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.recaptcha-note {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--color-text-soft);
}
.recaptcha-note a {
  color: var(--color-text-soft);
}

.grecaptcha-badge {
  visibility: hidden;
}

footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  background: var(--color-cream-2);
}

@media (max-width: 900px) {
  footer { padding-bottom: 7.5rem; }
}

/* ==========================================================================
   MUSIC TOGGLE BUTTON
   ========================================================================== */
.music-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-pink-deep);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-pink-deep);
  box-shadow: 0 4px 14px rgba(74, 47, 74, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.music-btn:hover { transform: scale(1.08); }

