/* ================= BASE ================= */

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  color: #e8ddc8;
  background: url("images/wedding-background.png") center/cover no-repeat fixed;
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
  animation: pageFadeIn 0.5s ease forwards;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  flex: 1;
}

.page-cta { margin-top: 0; }

/* ================= SHARED PAGE CTA ================= */

.page-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 8px 0 16px;
  align-self: center;
}

.page-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(212,196,168,0.6);
  margin: 0;
}

body.light-page .page-cta p {
  color: rgba(45,37,25,0.6);
}

.page-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-cta-link {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8ddc8;
  background: transparent;
  border: 1px solid rgba(212,196,168,0.35);
  border-radius: 999px;
  padding: 12px 32px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.page-cta-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(240,215,160,0.15) 50%, transparent 65%, transparent 100%);
  background-size: 250% auto;
  background-position: -100% center;
  transition: background-position 0.5s ease;
}

.page-cta-link:hover {
  background: rgba(212,196,168,0.08);
  border-color: rgba(212,185,130,0.6);
}

.page-cta-link:hover::after {
  background-position: 200% center;
  transition: background-position 1.4s ease;
}

body.light-page .page-cta-link {
  color: #2d2b25;
  border-color: rgba(150,120,70,0.35);
}

body.light-page .page-cta-link:hover {
  background: rgba(150,120,70,0.08);
  border-color: rgba(150,120,70,0.6);
}

body.light-page .page-cta-link::after {
  background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(150,120,70,0.12) 50%, transparent 65%, transparent 100%);
  background-size: 250% auto;
  background-position: -100% center;
}


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

/* ================= PAGE ENTRANCE ANIMATIONS ================= */

/* Staggered entrance for page-header children */
.page-header > * {
  opacity: 0;
  transform: translateY(16px);
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.page-header > *:nth-child(1) { animation-delay: 0.1s; }
.page-header > *:nth-child(2) { animation-delay: 0.22s; }
.page-header > *:nth-child(3) { animation-delay: 0.34s; }
.page-header > *:nth-child(4) { animation-delay: 0.46s; }

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

/* First content block after header fades in */
/* All direct page children fade up after the header finishes */
.page > *:not(.page-header) {
  opacity: 0;
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.page > *:not(.page-header):nth-child(2) { animation-delay: 0.35s; }
.page > *:not(.page-header):nth-child(3) { animation-delay: 0.45s; }
.page > *:not(.page-header):nth-child(4) { animation-delay: 0.55s; }
.page > *:not(.page-header):nth-child(5) { animation-delay: 0.65s; }
.page > *:not(.page-header):nth-child(n+6) { animation-delay: 0.72s; }

/* ================= CARD HOVER STATES ================= */

/* Dark page cards */
.menu-card,
.registry-card {
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.menu-card:hover,
.registry-card:hover {
  border-color: rgba(212,196,168,0.3);
  box-shadow: 0 8px 40px rgba(212,185,130,0.12), 0 2px 12px rgba(212,185,130,0.08);
  background: rgba(255,255,255,0.08);
}

.resort-card, .amenities-card {
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.resort-card:hover, .amenities-card:hover {
  border-color: rgba(212,196,168,0.3);
  background: rgba(255,255,255,0.08);
}

/* Light page cards */
.travel-card,
.hotel-card,
.faq-group,
.party-card,
.contact-card {
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.travel-card:hover,
.hotel-card:hover {
  border-color: rgba(150,120,70,0.35);
  box-shadow: 0 12px 56px rgba(80,60,30,0.18), 0 2px 12px rgba(80,60,30,0.1);
  background: rgba(232,224,208,0.88);
}

.contact-card:hover {
  border-color: rgba(212,196,168,0.5);
  background: rgba(255,255,255,0.1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 0;
}

/* ================= DESKTOP NAV ================= */

.nav-viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  overflow: visible;
  z-index: 1000;
  pointer-events: none;
}

.nav-pill {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: clamp(700px, 98vw, 1160px);
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(212,196,168,0.45);
  background: rgba(30, 25, 20, 0.62);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-pill:hover {
  border-color: rgba(212,196,168,0.6);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,196,168,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.nav-logo img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-logo:hover {
  border-color: rgba(240, 215, 160, 0.9);
  box-shadow:
    0 0 12px rgba(240, 215, 160, 0.35),
    0 0 24px rgba(200, 170, 120, 0.25);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.11em;
  color: rgba(212,196,168,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s;
  background-clip: text;
  -webkit-background-clip: text;
  position: relative;
}

.nav-sep {
  font-size: 7px;
  color: rgba(212,196,168,0.45);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
  display: inline-block;
}

body.light-page .nav-sep {
  color: rgba(80,60,30,0.4);
}

/* active page indicator — bold gold text */
.nav-links a.nav-active {
  color: rgba(212,185,130,1);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(212,185,130,0.35);
}

@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.nav-links a:hover {
  color: transparent;
  background-image: linear-gradient(
    105deg,
    #a07840 0%,
    #c9a96e 20%,
    #f5e6c0 38%,
    #fff8e7 50%,
    #f5e6c0 62%,
    #c9a96e 80%,
    #a07840 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: goldShimmer 1.6s linear infinite;
}

/* ================= MOBILE HAMBURGER ================= */

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav-viewport {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    position: fixed;
    top: 16px;
    right: 16px;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    border: 1px solid rgba(212,196,168,0.45);
    background: rgba(30, 25, 20, 0.75);
    backdrop-filter: blur(10px);

    cursor: pointer;
    z-index: 10000;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hamburger:hover {
    border-color: rgba(212,196,168,0.75);
    box-shadow: 0 0 12px rgba(200,170,110,0.2);
  }

  .hamburger .bar {
    width: 18px;
    height: 1px;
    background: rgba(212,196,168,0.85);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    border-radius: 1px;
  }

  .hamburger .bar:nth-child(2) {
    width: 12px;
  }
}

/* ================= MOBILE SIDE OVERLAY ================= */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

.nav-overlay.open {
  background: rgba(0,0,0,0.5);
  pointer-events: auto;
}

.nav-overlay-panel {
  position: absolute;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: rgba(10, 8, 6, 0.96);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(212,196,168,0.1);
  transition: right 0.4s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-overlay.open .nav-overlay-panel {
  right: 0;
}

/* logo inside overlay */
.overlay-logo {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212,196,168,0.45);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.overlay-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  transition: filter 0.2s;
}

.overlay-logo:hover {
  border-color: rgba(240, 215, 160, 0.9);
  box-shadow:
    0 0 12px rgba(240, 215, 160, 0.3),
    0 0 24px rgba(200, 170, 120, 0.2);
}

.overlay-logo:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(1.2) hue-rotate(2deg) brightness(1);
}

.nav-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  width: 100%;
}

.nav-overlay-content a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(212,196,168,0.7);
  text-decoration: none;
  padding: 11px 0;
  width: 100%;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  opacity: 0;
  transform: translateX(12px);
  animation: navLinkIn 0.4s ease forwards;
}

@media (max-height: 700px) {
  .nav-overlay-content a { padding: 8px 0; font-size: 10px; }
  .overlay-logo { width: 50px; height: 50px; margin-bottom: 24px; }
}

/* stagger each link */
.nav-overlay-content a:nth-child(1) { animation-delay: 0.05s; }
.nav-overlay-content a:nth-child(2) { animation-delay: 0.1s; }
.nav-overlay-content a:nth-child(3) { animation-delay: 0.15s; }
.nav-overlay-content a:nth-child(4) { animation-delay: 0.2s; }
.nav-overlay-content a:nth-child(5) { animation-delay: 0.25s; }
.nav-overlay-content a:nth-child(6) { animation-delay: 0.3s; }
.nav-overlay-content a:nth-child(7) { animation-delay: 0.35s; }
.nav-overlay-content a:nth-child(8) { animation-delay: 0.4s; }
.nav-overlay-content a:nth-child(9) { animation-delay: 0.45s; }
.nav-overlay-content a:nth-child(10) { animation-delay: 0.5s; }
.nav-overlay-content a:nth-child(11) { animation-delay: 0.55s; }

@keyframes navLinkIn {
  to { opacity: 1; transform: translateX(0); }
}

.nav-overlay-content a:hover {
  color: rgba(240,215,160,0.95);
  letter-spacing: 0.32em;
}

.nav-overlay-content a.nav-active {
  color: rgba(232,221,200,1);
  font-weight: 600;
  letter-spacing: 0.32em;
}

/* ✦ dividers between overlay links */
.nav-overlay-content a:not(:last-child)::after {
  content: none;
  display: block;
  font-size: 6px;
  color: rgba(212,196,168,0.2);
  margin: 10px auto 0;
  letter-spacing: 0;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 0 20px;
}

.hero-badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(212,196,168,0.55);
  background: rgba(30,25,20,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-badge img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-names {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(4rem, 8vw, 6.5rem);
  margin: 0;
  line-height: 1.1;
  font-weight: 400;
  color: #e8ddc8;
}

/* ── Hero name words ── */
.hero-word {
  display: inline-block;
  color: #e8ddc8;
}

/* ── Countdown tick mark ── */
.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  gap: 0;
}

.time-box span {
  font-size: 2.4rem;
  line-height: 1;
}

.time-box::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,185,130,0.55), transparent);
  margin: 6px auto 0;
}

.time-box label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  opacity: 0.65;
  margin-top: 6px;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.38em;
  opacity: 0.75;
  margin-top: -12px;
  margin-bottom: 0;
}

.hero-divider {
  width: min(520px, 80vw);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(180,155,100,0.4) 15%,
    rgba(212,185,130,0.9) 35%,
    rgba(240,215,160,1) 50%,
    rgba(212,185,130,0.9) 65%,
    rgba(180,155,100,0.4) 85%,
    transparent 100%
  );
  margin: 0 auto;
}

/* ================= INFO GRID ================= */

.info-grid {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  line-height: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 820px;
  width: 100%;
  align-items: center;
}

.info-grid > div {
  padding: 16px 28px;
}

.info-grid .col-left  { text-align: right; }
.info-grid .col-right { text-align: left;  }

.info-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.info-detail {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  line-height: 2;
}

/* FIX: vertical divider between columns */
.col-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  opacity: 0.5;
}

.col-divider::before,
.col-divider::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(212,196,168,0.5);
}

.col-divider span {
  font-size: 18px;
  color: rgba(212,196,168,0.8);
  line-height: 1;
}

@media (max-width: 600px) {
  .info-grid {
    grid-template-columns: 1fr auto 1fr;
    font-size: 0.6rem;
  }
  .info-label {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 1px;
  }
  .info-detail {
    font-size: 0.6rem;
    letter-spacing: 0.03em;
    line-height: 1.7;
  }
  .info-grid > div {
    padding: 8px 4px;
  }
  .col-divider {
    padding: 0 6px;
    gap: 4px;
  }
  .col-divider::before,
  .col-divider::after { height: 22px; }
  .col-divider span { font-size: 12px; }
}

/* ================= COUNTDOWN ================= */

.countdown {
  text-align: center;
  font-family: 'Cinzel', serif;
  width: 100%;
}

.time-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap; /* prevent wrapping that breaks layout */
}

.countdown-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  opacity: 0.6;
  margin-top: 18px;
}

@media (max-width: 480px) {
  .time-row {
    gap: 14px;
  }
  .time-box {
    min-width: 48px;
  }
  .time-box span {
    font-size: 1.7rem;
  }
  .time-box label {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }
  .countdown-label {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }
}
/* ================= ABOUT PAGE OVERRIDE ================= */

body.dark-page {
  background: #2a2720;
}

body.dark-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/wedding-background.png") center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* Subtle candlelit radial glow — centre warmth fading to dark edges */
body.dark-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 42%,
    rgba(180,140,70,0.055) 0%,
    rgba(140,105,50,0.025) 45%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
  display: block !important;
}

/* ================= NAV CONTRAST ON DARK PAGES (FIXED LIGHTER) ================= */

body.dark-page .nav-pill {
  background: rgba(60, 54, 44, 0.88);
  border: 1px solid rgba(212, 196, 168, 0.6);
  backdrop-filter: blur(14px);
}

body.dark-page .nav-logo {
  border: 1px solid rgba(212, 196, 168, 0.75);
}

body.dark-page .nav-logo:hover {
  box-shadow:
    0 0 14px rgba(240, 215, 160, 0.45),
    0 0 28px rgba(200, 170, 120, 0.3);
}

body.dark-page .hamburger {
  background: rgba(60, 54, 44, 0.82);
  border: 1px solid rgba(212, 196, 168, 0.55);
}

body.dark-page .nav-overlay-panel {
  background: rgba(24, 20, 16, 0.96);
  border-left: 1px solid rgba(212, 196, 168, 0.2);
}

/* ================= HERO ENTRANCE ================= */

.hero-badge {
  opacity: 0;
  animation: entranceFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}

.hero-names {
  opacity: 0;
  animation: entranceFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

.hero-sub {
  opacity: 0;
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}

.hero-divider {
  opacity: 0;
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}

.info-grid {
  opacity: 0;
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}

.countdown {
  opacity: 0;
  animation: entranceFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.95s forwards;
}

/* ================= PAGE HEADER ================= */

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin-top: 25px
}

.page-header-divider {
  width: min(680px, 88vw);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(180,155,100,0.4) 15%,
    rgba(212,185,130,0.9) 35%,
    rgba(240,215,160,1) 50%,
    rgba(212,185,130,0.9) 65%,
    rgba(180,155,100,0.4) 85%,
    transparent 100%
  );
  display: block;
}

/* Remove the paired-rule pseudo-elements */
.page-header-divider::before,
.page-header-divider::after {
  display: none;
}

.page-header h1 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 50px;
  margin: 0;
}

.page-header-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: rgba(212,185,130,0.82);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
    letter-spacing: 0.2em;
  }
  .page-header-subtitle {
    font-size: 0.9rem;
  }
}

/* ================= DARK PAGE TITLE SPACING ================= */

body.dark-page 
.page {
  position: relative;
  z-index: 1;
  padding: 110px 48px 0;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  body.dark-page .page {
    padding-top: 60px;
    gap: 24px;
  }
}
/* ================= LIGHT PAGE (RSVP) ================= */

body.light-page { background: #e2d9c8; color: #2d2b25; }
body.light-page::before { display: none; }
body.light-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/wedding-background.png") center/cover no-repeat;
  opacity: 0.15;
  filter: invert(1) sepia(0.7) saturate(0.9) hue-rotate(340deg);
  pointer-events: none;
  z-index: 0;
}
body.light-page .page { position: relative; z-index: 1; padding: 100px 24px 0; max-width: none; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
body.light-page .rsvp-ornament { font-size: 0.7rem; color: rgba(150,120,70,0.6); letter-spacing: 0.3em; margin: 4px 0; }
body.light-page .nav-pill { background: rgba(226,217,200,0.72); border: 1px solid rgba(120,100,70,0.3); backdrop-filter: blur(14px); }
body.light-page .nav-links a { color: #2d2b25; }
body.light-page .nav-links a.nav-active { color: rgba(100,70,25,1); font-weight: 600; text-shadow: 0 0 10px rgba(150,120,70,0.2); }
body.light-page .nav-logo img { filter: brightness(0); }
body.light-page .hamburger { background: rgba(226,217,200,0.92); border: 1px solid rgba(120,100,70,0.35); }
body.light-page .hamburger .bar { background: rgba(60,50,35,0.85); }
body.light-page .nav-logo {
  background: rgba(60,50,35,0.12);
  border-color: rgba(100,80,50,0.5);
}
body.light-page .nav-logo:hover {
  background: rgba(60,50,35,0.2);
  border-color: rgba(120,95,55,0.8);
  box-shadow:
    0 0 12px rgba(120,90,50,0.25),
    0 0 24px rgba(100,75,40,0.15);
}
body.light-page .nav-overlay.open { background: rgba(0,0,0,0.3); }
body.light-page .nav-overlay-panel { background: rgba(226,217,200,0.98); border-left: 1px solid rgba(120,100,70,0.2); }
body.light-page .nav-overlay-content a { color: rgba(45,43,37,0.7); }
body.light-page .nav-overlay-content a:hover { color: rgba(45,43,37,1); }
body.light-page .nav-overlay-content a::after { color: rgba(100,80,45,0.3); background: none; }
body.light-page .nav-overlay-content a.nav-active { color: rgba(45,43,37,1); font-weight: 600; }
body.light-page .overlay-logo { border-color: rgba(100,80,50,0.5); }
body.light-page .overlay-logo img { filter: brightness(0); }
body.light-page .page-header h1 { color: #2d2b25; }
body.light-page .page-header-subtitle { color: rgba(80,65,40,0.85); }
body.light-page .page-header-divider { background: linear-gradient(to right, transparent 0%, rgba(120,95,55,0.3) 15%, rgba(150,120,70,0.7) 35%, rgba(170,135,80,1) 50%, rgba(150,120,70,0.7) 65%, rgba(120,95,55,0.3) 85%, transparent 100%); }

/* ================= RSVP LANDING ================= */

body.light-page .rsvp-intro-body { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.9; color: #2d2b25; margin: 0; text-align: center; max-width: 100%; }
body.light-page .rsvp-landing-cards { display: flex; gap: 32px; align-items: flex-start; justify-content: center; flex-wrap: nowrap; width: 100%; }
body.light-page .rsvp-landing-card { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
body.light-page .rsvp-form-tag-sub { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(45,43,37,0.8); margin: -10px 0 0; min-height: 1.5rem; }
body.light-page .rsvp-form-tag { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.22em; color: #2d2b25; text-transform: uppercase; margin: 0; }
body.light-page .rsvp-form-btn { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 58px; box-sizing: border-box; font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; color: #e8ddc8; background: rgba(60,50,35,0.88); border: 1px solid rgba(120,95,55,0.4); border-radius: 999px; padding: 0 28px; cursor: pointer; transition: background 0.3s, border-color 0.3s; text-align: center; text-decoration: none; position: relative; overflow: hidden; }
body.light-page .rsvp-form-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(240,215,160,0.15) 50%, transparent 65%, transparent 100%); background-size: 250% auto; background-position: -100% center; transition: background-position 0.5s ease; }
body.light-page .rsvp-form-btn:hover { background: rgba(40,33,22,0.98); border-color: rgba(170,135,80,0.7); }
body.light-page .rsvp-form-btn:hover::after { background-position: 200% center; transition: background-position 1.4s ease; }
body.light-page .rsvp-form-btn-disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
body.light-page .rsvp-form-btn-disabled:hover { background: rgba(60,50,35,0.88); border-color: rgba(120,95,55,0.4); }
body.light-page .rsvp-form-meta { display: flex; width: 100%; font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: #2d2b25; line-height: 1.6; }
body.light-page .rsvp-form-desc { flex: 1; padding-right: 16px; border-right: 1px solid rgba(120,95,55,0.25); text-align: right; }
body.light-page .rsvp-form-deadline { flex: 1; padding-left: 16px; text-align: left; }
body.light-page .rsvp-form-deadline strong { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.1em; color: #2d2b25; display: block; margin-bottom: 4px; }
body.light-page .rsvp-warning { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(45,43,37,0.65); text-align: center; width: 100%; line-height: 1.7; margin: 0; }

/* ================= RSVP FORM ================= */
/*
  All .form-* classes below are SHARED between the preliminary
  response (rsvp.html) and the official RSVP (official-rsvp.html).
  Both pages use body.light-page and the same class names, so
  styling is automatic — no duplication needed in the new file.
  Just link this same styles.css and use the same HTML structure.
*/

body.light-page .rsvp-form-wrap {
  width: 100%;
  max-width: 780px;
  background: rgba(226,217,200,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,245,225,0.6);
  border-radius: 24px;
  padding: 48px 60px;
  box-sizing: border-box;
  box-shadow: 0 8px 48px rgba(80,60,30,0.12), 0 1px 8px rgba(80,60,30,0.06);
}
body.light-page .form-section { display: none; flex-direction: column; gap: 28px; animation: fadeIn 0.45s cubic-bezier(0.22,1,0.36,1); }
body.light-page .form-section.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
body.light-page .form-section-label {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  color: #2d2b25;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
body.light-page .form-section-intro { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.9; color: #2d2b25; margin: 0 auto; text-align: center; max-width: 600px; }
body.light-page .form-group { display: flex; flex-direction: column; gap: 10px }
body.light-page .form-label { font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.14em; color: #2d2b25; }
body.light-page .form-hint { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(45,43,37,0.7); margin: -6px 0 0; }
body.light-page .req { color: rgba(140,80,40,0.9); }
body.light-page .form-radio { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #2d2b25; line-height: 1.5; }
body.light-page .form-radio input[type="radio"] { margin-top: 3px; flex-shrink: 0; }
body.light-page .form-input { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #2d2b25; background: rgba(240,234,220,0.35); border: 1px solid rgba(120,95,55,0.35); border-radius: 2px; padding: 10px 14px; width: 100%; box-sizing: border-box; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
body.light-page .form-input:focus { border-color: rgba(100,80,45,0.8); box-shadow: 0 0 0 3px rgba(150,120,70,0.08); }
body.light-page .form-textarea { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #2d2b25; background: rgba(240,234,220,0.8); border: 1px solid rgba(120,95,55,0.35); border-radius: 2px; padding: 10px 14px; width: 100%; box-sizing: border-box; resize: vertical; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
body.light-page .form-textarea:focus { border-color: rgba(100,80,45,0.8); box-shadow: 0 0 0 3px rgba(150,120,70,0.08); }
body.light-page .form-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 8px; }
body.light-page .form-next-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: #e8ddc8;
  background: rgba(60,50,35,0.88);
  border: 1px solid rgba(120,95,55,0.4);
  border-radius: 999px;
  padding: 14px 36px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
body.light-page .form-next-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 35%, rgba(240,215,160,0.15) 50%, transparent 65%, transparent 100%);
  background-size: 250% auto;
  background-position: -100% center;
  transition: background-position 0.5s ease;
}
body.light-page .form-next-btn:hover { background: rgba(40,33,22,0.98); border-color: rgba(170,135,80,0.7); }
body.light-page .form-next-btn:hover::after { background-position: 200% center; transition: background-position 1.4s ease; }
body.light-page .form-back-btn { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(45,43,37,0.6); background: none; border: none; cursor: pointer; padding: 0; transition: color 0.2s; }
body.light-page .form-back-btn:hover { color: #2d2b25; }
body.light-page .form-closing-sig { font-family: 'Pinyon Script', cursive; font-size: 2rem; color: rgba(80,65,40,0.85); text-align: center; margin: 0; }

@media (max-width: 768px) {
  body.light-page .page { padding-top: 60px; gap: 32px; }
  body.light-page .rsvp-landing-cards { flex-wrap: wrap; gap: 32px; }
  body.light-page .rsvp-landing-card { width: 100%; min-width: 200px; }
  body.light-page .rsvp-form-wrap { padding: 32px 24px; }
}

@media (max-width: 600px) {
  body.light-page .rsvp-form-wrap { padding: 24px 16px; }
  body.light-page .form-section { gap: 20px; }
  body.light-page .form-section-intro { font-size: 1.05rem; }
  body.light-page .rsvp-intro-body { font-size: 1.05rem; line-height: 1.7; }
  body.light-page .form-radio { font-size: 1rem; }
  body.light-page .form-hint { font-size: 0.9rem; }
  body.light-page .form-check { font-size: 1rem; padding: 8px 12px; }
  body.light-page .form-next-btn { padding: 12px 28px; font-size: 0.72rem; }
  body.light-page .rsvp-form-meta {
    flex-direction: column; gap: 0;
    border: 1px solid rgba(120,95,55,0.2);
    border-radius: 6px; overflow: hidden; width: 100%;
  }
  body.light-page .rsvp-form-desc {
    border-right: none; padding: 8px 14px;
    text-align: center; font-style: italic;
    border-bottom: 1px solid rgba(120,95,55,0.12);
    background: rgba(120,95,55,0.03);
  }
  body.light-page .rsvp-form-deadline {
    padding: 8px 14px; text-align: center;
  }
  body.light-page .rsvp-form-deadline strong {
    display: inline;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(100,70,25,0.75);
  }
  body.light-page .rsvp-pipe {
    color: rgba(212,185,130,0.8);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 2px;
  }
  body.light-page .preliminary-reminder { letter-spacing: 0.1em; text-wrap: balance; }
  body.light-page .rsvp-landing-cards { gap: 24px; }
}
/* ================= PROGRESS BAR ================= */

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right,
    rgba(150,120,70,0.6),
    rgba(212,185,130,1),
    rgba(240,215,160,1),
    rgba(212,185,130,1),
    rgba(150,120,70,0.6)
  );
  z-index: 99999;
  transition: width 0.1s ease;
  pointer-events: none;
}

/* ================= CUSTOM CURSOR ================= */

body.has-custom-cursor,
body.has-custom-cursor *,
body.has-custom-cursor *::before,
body.has-custom-cursor *::after {
  cursor: none !important;
}

#custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,185,130,0.85);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.2s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
  mix-blend-mode: normal;
  opacity: 0;
  left: -100px;
  top: -100px;
  will-change: left, top;
  isolation: isolate;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#custom-cursor.hover {
  width: 20px;
  height: 20px;
  background: rgba(212,185,130,0.25);
  border: 1px solid rgba(212,185,130,0.7);
}

#custom-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.7);
}

body.light-page #custom-cursor {
  background: rgba(100,80,45,0.7);
}

body.light-page #custom-cursor.hover {
  background: rgba(100,80,45,0.15);
  border-color: rgba(100,80,45,0.6);
}

@media (hover: none) {
  #custom-cursor { display: none !important; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ================= IMAGE FADE IN ================= */

img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img.img-loaded {
  opacity: 1;
}

/* ================= SMOOTH SCROLL ================= */

html {
  scroll-behavior: smooth;
}

/* ================= FOOTER ================= */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 48px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(212,196,168,0.65);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
  margin-top: 32px;
  align-self: stretch;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0 28px;
  isolation: isolate;
}

/* Left col — CTA, right-aligned to centre */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
}

/* Centre col — monogram + divider lines */
.footer-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-centre-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(212,185,130,0.3) 80%,
    rgba(212,185,130,0.3)
  );
}

.footer-centre-line.bottom {
  background: linear-gradient(to bottom,
    rgba(212,185,130,0.3),
    rgba(212,185,130,0.3) 20%,
    transparent
  );
}

/* Right col — sig, left-aligned from centre */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.footer-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(212,196,168,0.5);
  margin: 0;
  letter-spacing: 0.04em;
}

.footer-cta-link {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,196,168,0.85);
  background: transparent;
  border: 1px solid rgba(212,196,168,0.3);
  border-radius: 999px;
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.footer-cta-link:hover {
  background: rgba(212,196,168,0.08);
  border-color: rgba(212,185,130,0.6);
}

body.light-page .footer-centre-line,
body.light-page .footer-centre-line.bottom {
  background: linear-gradient(to bottom, transparent, rgba(120,95,55,0.25) 80%, rgba(120,95,55,0.25));
}

body.light-page .footer-centre-line.bottom {
  background: linear-gradient(to bottom, rgba(120,95,55,0.25), rgba(120,95,55,0.25) 20%, transparent);
}

body.light-page .footer-cta-text {
  color: rgba(80,55,20,0.45);
}

body.light-page .footer-cta-link {
  color: rgba(80,55,20,0.8);
  border-color: rgba(120,95,55,0.3);
}

body.light-page .footer-cta-link:hover {
  background: rgba(120,95,55,0.08);
  border-color: rgba(120,95,55,0.6);
}

@media (max-width: 700px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 24px 24px 28px;
    text-align: center;
    gap: 16px 0;
  }

  /* Order: CTA top, monogram middle, sig bottom */
  .footer-left  { align-items: center; text-align: center; order: 1; }
  .footer-centre { order: 2; flex-direction: row; gap: 0; align-items: center; width: 100%; }
  .footer-right { align-items: center; text-align: center; order: 3; }

  /* Horizontal hairlines flanking the monogram */
  .footer-centre-line {
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(to right, transparent, rgba(212,185,130,0.5)) !important;
  }
  .footer-centre-line.bottom {
    background: linear-gradient(to left, transparent, rgba(212,185,130,0.5)) !important;
  }

  .site-footer-monogram { margin: 0 14px; }

  /* Scale down everything on mobile */
  .footer-cta-text { font-size: 0.82rem; }
  .footer-cta-link { padding: 11px 22px; font-size: 0.65rem; letter-spacing: 0.2em; }
  .footer-name { font-size: 1.1rem; }
  .footer-sig-sep, .footer-year { font-size: 0.55rem; letter-spacing: 0.15em; }
  .footer-dates { font-size: 0.62rem; margin: 2px 0 0; }
  .footer-dates-pipe { margin: 0 4px; }
  .site-footer-monogram { width: 18px; height: 18px; }

body.light-page .footer-centre-line {
  background: linear-gradient(to right, transparent, rgba(120,95,55,0.45)) !important;
}
body.light-page .footer-centre-line.bottom {
  background: linear-gradient(to left, transparent, rgba(120,95,55,0.45)) !important;
}
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: -1;
  background: rgba(20,16,12,0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* feathered top edge — glass fades in from transparent */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18px);
}

/* glass lift shadow on the top edge */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 0;
  box-shadow: 0 -8px 28px rgba(0,0,0,0.38), 0 -2px 10px rgba(0,0,0,0.22);
  z-index: 1;
}

.footer-sig-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.footer-name {
  font-family: 'Corinthia', cursive;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.footer-sig-sep {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  align-self: center;
}

.footer-year {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  align-self: center;
}

/* Dates line */
.footer-dates {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(212,196,168,0.5);
  margin: 6px 0 0;
}

.footer-dates-pipe {
  font-style: normal;
  margin: 0 8px;
  opacity: 0.4;
}

body.light-page .footer-dates {
  color: rgba(80,55,20,0.45);
}

/* Monogram */
.site-footer-monogram {
  display: block;
  width: 28px;
  height: 28px;
  margin: 8px 0;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1) sepia(1) saturate(0.8) hue-rotate(2deg) brightness(0.88);
}

body.light-page .site-footer {
  color: rgba(80,55,20,0.65);
}

body.light-page .site-footer::before {
  background: rgba(210,198,175,0.40);
}

body.light-page .site-footer::after {
  box-shadow: 0 -8px 28px rgba(80,60,30,0.22), 0 -2px 10px rgba(80,60,30,0.14);
}

body.light-page .site-footer-monogram {
  opacity: 0.4;
  filter: brightness(0) sepia(1) saturate(0.8) hue-rotate(5deg) brightness(0.55);
}

/* ================= SIMPLE FOOTER (FAQ & CONTACT) ================= */

.footer-simple {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.footer-simple .site-footer-monogram {
  margin: 0 auto 8px;
}

/* ================= SCROLL ANIMATIONS ================= */

.scroll-hidden {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}

.scroll-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FORM VALIDATION ================= */

/* Dark pages — contact, guestbook, music etc */
.contact-input:user-invalid,
.contact-textarea:user-invalid,
.music-input:user-invalid {
  border-color: rgba(200,80,80,0.6) !important;
  box-shadow: 0 0 0 3px rgba(200,80,80,0.08) !important;
}

/* Also catch the .invalid class added by JS */
.contact-input.invalid,
.contact-textarea.invalid,
.music-input.invalid,
.form-input.invalid,
.form-textarea.invalid {
  border-color: rgba(200,80,80,0.6) !important;
  box-shadow: 0 0 0 3px rgba(200,80,80,0.08) !important;
}

/* Light pages — RSVP */
body.light-page .form-input:user-invalid,
body.light-page .form-textarea:user-invalid {
  border-color: rgba(180,60,60,0.55) !important;
  box-shadow: 0 0 0 3px rgba(180,60,60,0.07) !important;
}

body.light-page .form-input.invalid,
body.light-page .form-textarea.invalid {
  border-color: rgba(180,60,60,0.55) !important;
  box-shadow: 0 0 0 3px rgba(180,60,60,0.07) !important;
}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    cursor: auto !important;
  }

  html { scroll-behavior: auto; }

  .hero-badge,
  .hero-sub,
  .hero-divider,
  .info-grid,
  .countdown,
  .page-header > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-hidden {
    opacity: 1 !important;
    transform: none !important;
  }

  #firefly-canvas {
    display: none !important;
  }

  #custom-cursor {
    display: none !important;
  }
}


/* ================= SHARED SECTION DIVIDER ================= */

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(780px, 88vw);
  align-self: center;
  margin: 16px 0;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(212,196,168,0.15);
}

.section-divider-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(212,196,168,0.45);
  white-space: nowrap;
}

body.light-page .section-divider-line {
  background: rgba(150,120,70,0.2);
}

body.light-page .section-divider-text {
  color: rgba(45,37,25,0.45);
}
