:root {
  --gold: #c5a059;
  --gold-light: #e6c875;
  --gold-dark: #8c6d31;
  --bg-color: #fdfcf8;
  --text-main: #2a2a2a;
  --text-muted: #5a5a5a;
  --bg-dark: #121212;
  --text-light: #f4f4f4;
  
  --font-display: 'Cinzel Decorative', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

/* BASE STYLES & RESETS (MOBILE FIRST) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
}

.gold-text { color: var(--gold); }
.gold { color: var(--gold); }
.light { color: var(--text-light); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(253, 252, 248, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}
.navbar:not(.scrolled) .nav-brand,
.navbar:not(.scrolled) .nav-link {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }

/* Mobile Menu Base */
.nav-toggle {
  display: block; z-index: 101;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--text-main); margin: 6px 0; transition: 0.3s; }
.nav-links {
  list-style: none;
  position: fixed; top: 0; right: 0;
  transform: translateX(105%);
  width: 85%; height: 100vh;
  background: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  transition: transform 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  gap: 2rem;
}
.nav-links.nav-active { transform: translateX(0); }
.nav-link {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main) !important;
  transition: color 0.3s;
}
.nav-toggle.toggle-active span:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); background: var(--text-main); }
.nav-toggle.toggle-active span:nth-child(2) { opacity: 0; }
.nav-toggle.toggle-active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); background: var(--text-main); }


/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg, .hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowZoom 20s ease-out forwards, classicPulse 8s infinite ease-in-out;
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
@keyframes classicPulse {
  0% { filter: brightness(0.7) contrast(1.1); }
  50% { filter: brightness(1) contrast(1.2); }
  100% { filter: brightness(0.7) contrast(1.1); }
}
.hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.95)); z-index: -1; }
.hero-cross {
  position: absolute; top: 15%; font-size: 3rem; color: var(--gold); opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-content {
  max-width: 900px; padding: 0 1.5rem; z-index: 1; width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; letter-spacing: 2px;
  margin-bottom: 1rem; color: var(--gold-light);
}
.hero-title {
  font-size: 2.8rem; line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.title-line { display: block; }
.title-line.small { font-size: 1.5rem; font-family: var(--font-serif); font-style: italic; margin-top: 0.5rem; }
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.5rem 0;
}
.divider-line { height: 1px; width: 40px; background: var(--gold); }
.divider-cross { color: var(--gold); font-size: 1.2rem; }
.hero-church, .hero-date {
  font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem;
}
.hero-message {
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-light); margin: 2rem 0; font-style: italic; letter-spacing: 1px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; background: var(--gold);
  color: #fff; text-decoration: none; font-family: var(--font-sans); text-transform: uppercase;
  letter-spacing: 1px; font-size: 0.85rem; font-weight: 600; border-radius: 30px; transition: all 0.3s ease;
}

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px;
  display: flex; justify-content: center;
}
.scroll-dot {
  width: 4px; height: 4px; background: #fff; border-radius: 50%; margin-top: 6px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* PARTICLES */
.particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 99; overflow: hidden;
}
.particle {
  position: absolute; background: var(--gold); border-radius: 50%; opacity: 0.5;
  animation: floatUp linear infinite; box-shadow: 0 0 10px var(--gold-light);
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* SECTION GLOBAL (MOBILE BASE) */
.section-container { max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem; width: 100%; }
.section-eyebrow { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--gold); text-align: center; margin-bottom: 0.5rem; }
.section-heading { font-size: 2.2rem; text-align: center; margin-bottom: 1.5rem; line-height: 1.2; hyphens: auto; }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; }
.section-divider span:not(.div-icon) { width: 40px; height: 1px; background: var(--gold); }
.div-icon { color: var(--gold); font-size: 1rem; }
.section-sub { text-align: center; font-family: var(--font-serif); font-size: 1.2rem; color: var(--text-muted); margin-top: -1rem; margin-bottom: 3rem;}

/* FEAST SECTION */
.feast-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.feast-img-wrap { position: relative; display: flex; justify-content: center; }
.feast-img-frame { border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; width: 100%; max-width: 400px; }
.feast-img { width: 100%; height: auto; display: block; transition: transform 0.7s; }
.feast-img-badge {
  position: absolute; bottom: -15px; right: -10px; background: var(--gold); color: #fff;
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}
.badge-cross { font-size: 1.4rem; margin-bottom: 2px; }
.badge-text { font-family: var(--font-serif); font-size: 1rem; text-transform: uppercase; text-align: center; line-height: 1.1; }
.badge-year { font-weight: 700; font-size: 1.1rem; margin-top: 3px; }
.feast-text .section-heading, .feast-text .section-eyebrow, .feast-text .section-divider { text-align: center; justify-content: center; }
.feast-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; text-align: center; }
.feast-quote { border-left: 3px solid var(--gold); padding-left: 1rem; margin: 2rem 0; font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--gold-dark); text-align: left; }
.feast-quote footer { font-size: 0.9rem; margin-top: 0.5rem; font-family: var(--font-sans); color: var(--text-muted); font-style: normal; }
.feast-info-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
.info-card { display: flex; align-items: center; gap: 1rem; background: #fff; padding: 1rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.info-icon { font-size: 1.5rem; }
.info-card strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); }
.info-card span { font-size: 0.95rem; color: var(--text-main); font-weight: 500; }

/* COMMUNION INTRO */
.communion-intro { position: relative; padding: 6rem 0; color: #fff; text-align: center; }
.communion-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.communion-bg-img { width: 100%; height: 100%; object-fit: cover; }
.communion-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 18, 18, 0.85); backdrop-filter: blur(5px); }
.communion-content { width: 100%; margin: 0 auto; padding: 0 1.5rem; }
.communion-desc { font-size: 1.1rem; font-family: var(--font-serif); margin-bottom: 1.5rem; line-height: 1.7; color: rgba(255,255,255,0.9); }
.eucharist-symbol { margin-top: 3rem; display: flex; justify-content: center; }
.host-circle { width: 90px; height: 90px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(255,255,255,0.4); position: relative; }
.host-circle::after { content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%; animation: pulseRing 2s infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.2); opacity: 0; } }
.host-ihs { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }

/* GIRLS SECTION */
.girls-section { background: #fff; }
.girls-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; margin-top: 3rem; }
.girl-card { background: var(--bg-color); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); text-align: center; padding-bottom: 2.5rem; position: relative; transition: transform 0.4s; }
.girl-img-wrap { position: relative; padding: 2.5rem 1.5rem 1.5rem; }
.girl-img { width: 160px; height: 160px; object-fit: cover; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); position: relative; z-index: 2; }
.girl-halo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%); opacity: 0.3; z-index: 1; }
.girl-number { position: absolute; top: 1rem; right: 1rem; font-family: var(--font-display); font-size: 2.5rem; color: rgba(197, 160, 89, 0.15); line-height: 1; }
.girl-info { padding: 0 1.2rem; }
.girl-cross { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.5rem; }
.girl-name { font-size: 1.8rem; margin-bottom: 0.8rem; line-height: 1.2; }
.girl-verse { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--text-muted); line-height: 1.6; }
.girl-verse-ref { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); margin-top: 0.5rem; }
.girl-flowers { margin: 1.5rem 0; color: var(--gold-light); letter-spacing: 6px; font-size: 1rem; }
.girl-message { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }
.girl-badge { display: inline-block; padding: 0.5rem 1.5rem; border: 1px solid var(--gold); border-radius: 30px; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); }
.girls-center-divider { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 2rem; }
.divider-ampersand { font-family: var(--font-display); font-size: 3rem; color: var(--gold-light); opacity: 0.5; }
.divider-candle { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.candle-body { width: 20px; height: 80px; background: linear-gradient(to right, #e0e0e0, #fff, #e0e0e0); border-radius: 10px 10px 3px 3px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-top: -5px; }
.candle-flame { width: 14px; height: 24px; background: radial-gradient(ellipse at bottom, #ffeb3b 0%, #ff9800 60%, transparent 100%); border-radius: 50% 50% 20% 20%; margin: 0; transform: none; animation: flicker 0.5s infinite alternate; filter: drop-shadow(0 0 10px #ffeb3b); position: relative; z-index: 2; }

/* JOSEPH SECTION */
.joseph-section { background: #fff; overflow: hidden; }
.joseph-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.joseph-text .section-heading, .joseph-text .section-eyebrow, .joseph-text .section-divider { text-align: center; justify-content: center; }
.joseph-desc { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; text-align: center; }
.joseph-prayer { background: var(--bg-color); padding: 1.5rem; border-radius: 16px; border-left: 4px solid var(--gold); margin-top: 2rem; }
.joseph-prayer h4 { font-size: 1.1rem; margin-bottom: 0.8rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }
.joseph-prayer p { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; margin-bottom: 0.8rem; line-height: 1.6; }
.joseph-img-wrap { position: relative; text-align: center; display: flex; justify-content: center;}
.joseph-img-frame { position: relative; display: inline-block; width: 100%; max-width: 350px;}
.joseph-img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); position: relative; z-index: 2; }
.joseph-rays { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 60%); z-index: 1; animation: pulseRay 4s infinite alternate; }

/* GALLERY SECTION */
.gallery-section { background: var(--bg-color); }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.gallery-item.large { grid-column: span 1; grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem 1rem 1rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; font-family: var(--font-serif); font-size: 1.1rem; transform: translateY(0); opacity: 1; text-align: center; } /* Always visible on mobile */

/* GRATITUDE SECTION */
.gratitude-section { position: relative; padding: 6rem 0; color: #fff; }
.invitation-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.inv-bg-img { width: 100%; height: 100%; object-fit: cover; }
.inv-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 18, 18, 0.92); }
.invitation-card { width: 100%; margin: 0 auto; background: rgba(255,255,255,0.05); backdrop-filter: blur(15px); border: 1px solid rgba(197, 160, 89, 0.3); padding: 3rem 1.5rem; border-radius: 20px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.inv-cross { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.inv-heading { font-size: 2.2rem; margin-bottom: 1rem; line-height: 1.2; }
.inv-text { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; font-family: var(--font-serif); }

.thanks-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.thanks-card { background: rgba(0,0,0,0.4); border: 1px solid rgba(197, 160, 89, 0.2); padding: 2rem 1.5rem; border-radius: 16px; text-align: center; transition: transform 0.3s; }
.thanks-img-wrap { width: 100px; height: 100px; margin: 0 auto 1.2rem; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.thanks-img { width: 100%; height: 100%; object-fit: cover; }
.thanks-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 0.8rem; }
.thanks-desc { font-size: 0.95rem; color: #fff; line-height: 1.6; }

.inv-blessing { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--gold-light); margin-bottom: 2rem; line-height: 1.5; }
.inv-blessing small { font-family: var(--font-sans); font-size: 0.8rem; font-style: normal; color: rgba(255,255,255,0.5); display: block; margin-top: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.inv-footer-cross { display: flex; align-items: center; justify-content: center; gap: 0.8rem; color: var(--gold); }
.inv-footer-line { width: 40px; height: 1px; background: rgba(197, 160, 89, 0.5); }

/* FOOTER */
.site-footer { background: #0a0a0a; color: #fff; padding: 4rem 1.5rem 2rem; text-align: center; }
.footer-cross { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.footer-church { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.footer-date { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.footer-divider { width: 80px; height: 1px; background: rgba(255,255,255,0.1); margin: 2rem auto; }
.footer-names { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--gold-light); margin-bottom: 0.8rem; }
.footer-blessing { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 3rem; letter-spacing: 1px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }

/* ANIMATIONS & REVEALS (MOBILE BASE) */
.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

.scroll-reveal { opacity: 0; transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.scroll-reveal.active { opacity: 1; transform: translate(0, 0); }
.fade-up { transform: translateY(40px); }
.slide-left { transform: translateY(40px); }
.slide-right { transform: translateY(40px); }

/* ========================================= */
/* DESKTOP & TABLET ENHANCEMENTS (MIN-WIDTH) */
/* ========================================= */

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .feast-info-cards { grid-template-columns: repeat(3, 1fr); }
  .thanks-cards { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  /* Restoring Desktop typography & spacing */
  .section-container { padding: 6rem 2rem; }
  .section-heading { font-size: 3rem; }
  .hero-title { font-size: 3.5rem; }
  .title-line.small { font-size: 1.8rem; }
  
  /* Restoring horizontal animations */
  .fade-up { transform: translateY(60px); }
  .slide-left { transform: translateX(-60px); }
  .slide-right { transform: translateX(60px); }

  /* Navbar */
  .nav-toggle { display: none; }
  .nav-links {
    position: static; transform: none; width: auto; height: auto;
    background: transparent; flex-direction: row; box-shadow: none;
    gap: 2rem;
  }
  .nav-link { font-size: 0.9rem; color: inherit !important; }
  .navbar:not(.scrolled) .nav-link { color: #fff !important; }
  
  .girls-center-divider { flex-direction: column; }
  .candle-body { width: 24px; height: 120px; border-radius: 12px 12px 3px 3px; margin-top: -8px; }

  .gallery-caption { transform: translateY(20px); opacity: 0; }
  .gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
}

@media (min-width: 1024px) {
  .section-container { padding: 8rem 2rem; }
  .hero-title { font-size: 4.5rem; }
  .title-line.small { font-size: 2.2rem; }
  .section-heading { font-size: 3.5rem; }

  .feast-grid { grid-template-columns: 1fr 1fr; gap: 5rem; text-align: left; }
  .feast-text .section-heading, .feast-text .section-eyebrow, .feast-text .section-divider { text-align: left; justify-content: flex-start; }
  .feast-desc { text-align: left; }
  
  .joseph-grid { grid-template-columns: 1fr 1fr; gap: 5rem; text-align: left; }
  .joseph-text .section-heading, .joseph-text .section-eyebrow, .joseph-text .section-divider { text-align: left; justify-content: flex-start; }
  .joseph-desc { text-align: left; }
  
  .girls-grid { grid-template-columns: 1fr auto 1fr; gap: 4rem; }
  .girl-img { width: 220px; height: 220px; border: 6px solid #fff; }
  .girl-halo { width: 250px; height: 250px; }
  .girl-number { font-size: 4rem; right: 2rem; top: 2rem; }
  .girl-info { padding: 0 2.5rem; }
  .girl-name { font-size: 2.2rem; }
  .girl-card { padding-bottom: 3rem; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  
  .invitation-card { padding: 5rem 4rem; max-width: 800px; }
  .inv-heading { font-size: 3rem; }
  .thanks-img-wrap { width: 120px; height: 120px; }
  .thanks-title { font-size: 1.3rem; }
}
