/* ===================================================================
   SHYREL & NOAM — LUXURY WEDDING INVITATION
   Shared Stylesheet — Sepia / Dior Typography / Haute Couture
   =================================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sepia-dark: #4A3728;
  --sepia-medium: #6B5344;
  --sepia-brown: #8B7355;
  --sepia-warm: #A08968;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --cream: #F5F0EB;
  --cream-dark: #EDE5DA;
  --beige: #E8DDD0;
  --white-warm: #FAF8F5;
  --shadow-sepia: rgba(74, 55, 40, 0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  color: var(--sepia-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.8;
  min-height: 100vh;
}

/* ===== FULL PAGE SECTION ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 40px;
  overflow: hidden;
}

/* ===== BACKGROUND LAYER ===== */
.page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('Public/fond.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: sepia(0.25) brightness(1.02) saturate(0.9);
  z-index: 0;
}

.page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 240, 235, 0.72) 0%,
    rgba(232, 221, 208, 0.58) 40%,
    rgba(245, 240, 235, 0.65) 100%
  );
  z-index: 1;
}

.page > * {
  position: relative;
  z-index: 2;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 1000;
  cursor: pointer;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--sepia-dark);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11.5px) rotate(-45deg);
}

/* ===== MENU OVERLAY (full-screen, centered) ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-overlay.active {
  pointer-events: all;
  opacity: 1;
}

.menu-overlay-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 240, 235, 0.96) 0%,
    rgba(237, 229, 218, 0.97) 40%,
    rgba(232, 221, 208, 0.96) 100%
  );
  backdrop-filter: blur(30px) saturate(1.1);
  -webkit-backdrop-filter: blur(30px) saturate(1.1);
}

.menu-nav {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.menu-nav a {
  display: block;
  font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sepia-dark);
  text-decoration: none;
  padding: 20px 0;
  transition: color 0.35s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(15px);
  position: relative;
}

/* Separator line between items */
.menu-nav a + a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.4s ease;
}

.menu-overlay.active .menu-nav a + a::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.menu-nav a + a:nth-child(2)::before { transition-delay: 0.15s; }
.menu-nav a + a:nth-child(3)::before { transition-delay: 0.22s; }
.menu-nav a + a:nth-child(4)::before { transition-delay: 0.29s; }
.menu-nav a + a:nth-child(5)::before { transition-delay: 0.36s; }
.menu-nav a + a:nth-child(6)::before { transition-delay: 0.43s; }

.menu-overlay.active .menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-nav a:nth-child(1) { transition-delay: 0.08s; }
.menu-nav a:nth-child(2) { transition-delay: 0.15s; }
.menu-nav a:nth-child(3) { transition-delay: 0.22s; }
.menu-nav a:nth-child(4) { transition-delay: 0.29s; }
.menu-nav a:nth-child(5) { transition-delay: 0.36s; }
.menu-nav a:nth-child(6) { transition-delay: 0.43s; }

.menu-nav a:hover {
  color: var(--gold);
}

.menu-nav a.current {
  color: var(--gold);
}

/* ===== HOME LINK (top right) ===== */
.home-link {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 100;
  font-family: 'Cormorant SC', serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sepia-warm);
  transition: color 0.4s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-link:hover {
  color: var(--gold);
}

.home-link-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

/* ===== COVER PAGE ===== */
.cover {
  text-align: center;
}

.cover-ornament-top {
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.cover-pretitle {
  font-family: 'Cormorant', serif;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sepia-warm);
  margin-bottom: 24px;
}

.cover-title {
  font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: var(--sepia-dark);
  text-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
  margin-bottom: 8px;
}

.cover-ampersand {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(196, 162, 101, 0.15);
}

.cover-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cover-name {
  font-family: 'Cormorant SC', 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.15;
  color: var(--sepia-dark);
  background: linear-gradient(
    135deg,
    var(--sepia-dark) 0%,
    var(--sepia-brown) 40%,
    var(--gold) 60%,
    var(--sepia-dark) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cover-line {
  width: 60px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

.cover-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sepia-brown);
}

.cover-enter {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1.5s ease 1.5s both;
}

.cover-enter span {
  font-family: 'Cormorant', serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sepia-warm);
}

.cover-enter-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.6; transform: translateY(0); }
}

/* ===== COVER RSVP BUTTON ===== */
.cover-rsvp-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 40px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sepia-dark);
  border: 0.5px solid var(--gold-light);
  border-radius: 1px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cover-rsvp-btn:hover {
  background: var(--sepia-dark);
  color: var(--cream);
  border-color: var(--sepia-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(74, 55, 40, 0.12);
}

/* ===== CONTENT SECTIONS ===== */
.section-content {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.section-label {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(0.65rem, 1.8vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::before {
  right: calc(100% + 18px);
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::after {
  left: calc(100% + 18px);
  background: linear-gradient(270deg, transparent, var(--gold));
}

.section-heading {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--sepia-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-subheading {
  font-family: 'Cormorant', serif;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--sepia-brown);
  margin-bottom: 40px;
}

.section-divider {
  width: 40px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

.section-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 400;
  line-height: 2;
  color: var(--sepia-medium);
  letter-spacing: 0.04em;
}

.section-text .highlight {
  font-weight: 500;
  color: var(--sepia-dark);
  letter-spacing: 0.08em;
}

.section-text .venue {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  margin: 12px 0;
}

.section-text .time {
  display: inline-block;
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 8px 0;
}

.section-text .address {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.3vw, 1.05rem);
  color: var(--sepia-warm);
  letter-spacing: 0.06em;
}

.section-text .spacer {
  display: block;
  height: 18px;
}

/* ===== ORNAMENT DIAMOND ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}

.ornament-line {
  width: 30px;
  height: 0.5px;
  background: var(--gold-light);
  opacity: 0.5;
}

.ornament-diamond {
  width: 5px;
  height: 5px;
  border: 0.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ===== PREV / NEXT NAVIGATION ===== */
.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-nav a {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(0.7rem, 1.8vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sepia-warm);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 4px;
}

.page-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.page-nav a:hover {
  color: var(--gold);
}

.page-nav a:hover::after {
  transform: scaleX(1);
}

.page-nav-arrow {
  font-size: 0.6em;
  opacity: 0.6;
}

.page-nav-separator {
  width: 4px;
  height: 4px;
  border: 0.5px solid var(--gold-light);
  transform: rotate(45deg);
  opacity: 0.4;
}

/* ===== MIKVÉ SPECIAL LAYOUT ===== */
.mikve-block {
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}

.mikve-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              visibility 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.page-transition.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-transition-monogram {
  font-family: 'Cormorant SC', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--sepia-dark);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== CLOSING TEXT ===== */
.closing-text {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.15em;
  color: var(--sepia-warm);
  text-align: center;
  margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .page {
    padding: 50px 28px;
  }

  .menu-toggle {
    top: 20px;
    left: 20px;
    width: 26px;
    height: 20px;
  }

  .menu-nav {
    padding: 30px 20px;
  }

  .menu-nav a {
    font-size: 1rem;
    padding: 16px 0;
    letter-spacing: 0.28em;
  }

  .home-link {
    top: 22px;
    right: 20px;
    font-size: 0.65rem;
  }

  .section-label::before,
  .section-label::after {
    width: 25px;
  }

  .page-nav {
    gap: 24px;
  }

  .page-nav a {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }
}

@media (min-width: 1024px) {
  .page {
    padding: 80px 60px;
  }
}

/* ===================================================================
   RSVP FORM — Luxury Editorial Style
   =================================================================== */

.rsvp-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
  height: auto;
}

.rsvp-content {
  max-width: 520px;
}

/* Form */
.rsvp-form {
  margin-top: 10px;
  text-align: left;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sepia-warm);
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--sepia-dark);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--beige);
  outline: none;
  transition: border-color 0.4s ease;
  letter-spacing: 0.03em;
  line-height: 1.6;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: rgba(160, 137, 104, 0.45);
  font-style: italic;
  font-weight: 300;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23A08968' stroke-width='0.8' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

/* ===== EVENT CHECKBOXES ===== */
.form-group-events {
  margin-top: 36px;
  margin-bottom: 36px;
}

.event-checks {
  margin-top: 8px;
}

.event-check {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.event-check:hover {
  transform: translateX(4px);
}

.event-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 0.8px solid var(--beige);
  border-radius: 1px;
  position: relative;
  margin-top: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
}

.check-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 0.5px;
  transform: translate(-50%, -50%);
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-check input:checked + .check-box {
  border-color: var(--gold);
}

.event-check input:checked + .check-box::after {
  width: 10px;
  height: 10px;
}

.check-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.check-title {
  font-family: 'Cormorant SC', serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--sepia-dark);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.event-check input:checked ~ .check-content .check-title {
  color: var(--gold);
}

.check-detail {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--sepia-warm);
  opacity: 0.7;
}

/* Separator between events */
.event-separator {
  width: 100%;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), rgba(212, 184, 122, 0.1));
  opacity: 0.45;
}

/* ===== SUBMIT BUTTON ===== */
.form-submit {
  display: block;
  width: 100%;
  margin-top: 40px;
  padding: 18px 0;
  font-family: 'Cormorant SC', serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--sepia-dark) 0%, var(--sepia-brown) 100%);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sepia-brown) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-submit:hover::before {
  opacity: 1;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(74, 55, 40, 0.15);
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.form-submit:disabled {
  cursor: default;
  opacity: 0.7;
}

.form-submit.sent {
  background: var(--gold);
}

/* ===== CONFIRMATION ===== */
.confirmation-title {
  font-family: 'Cormorant SC', serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--sepia-dark);
  margin: 20px 0 16px;
  text-align: center;
}

.confirmation-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 2;
  color: var(--sepia-medium);
  text-align: center;
  margin-bottom: 24px;
}

.confirmation-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sepia-warm);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 0.5px solid var(--gold-light);
  transition: color 0.3s ease;
}

.confirmation-link:hover {
  color: var(--gold);
}

/* ===== RSVP RESPONSIVE ===== */
@media (max-width: 480px) {
  .rsvp-page {
    padding-top: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .event-check {
    gap: 12px;
    padding: 13px 0;
  }

  .check-box {
    width: 18px;
    height: 18px;
  }

  .check-title {
    font-size: 0.8rem;
  }

  .check-detail {
    font-size: 0.75rem;
  }

  .form-submit {
    padding: 16px 0;
    font-size: 0.75rem;
  }
}
