/* Juliette Font */
@font-face {
  font-family: 'Juliette';
  src: url('public/fonts/Juliette-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Juliette';
  src: url('public/fonts/Juliette-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Juliette';
  src: url('public/fonts/Juliette-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Password Overlay */
.password-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3A2028 0%, #2a161c 100%);
}

.password-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 0.3s;
}

.envelope-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Envelope */
.envelope {
  position: relative;
  width: min(400px, 85vw);
}

/* Real envelope image */
.envelope-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: opacity 0.5s ease 0.3s;
}

.envelope.open .envelope-img {
  opacity: 0;
}

/* Wax Seal - real image */
.wax-seal {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 25vw, 110px);
  height: auto;
  cursor: pointer;
  z-index: 10;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, opacity 0.4s ease;
}

.wax-seal:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.envelope.open .wax-seal {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.5);
}

/* Letter card - slides up when opened */
.letter-card {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  background: linear-gradient(180deg, #fffefa 0%, #f8f5ee 100%);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  z-index: 5;
}

.envelope.open .letter-card {
  opacity: 1;
  transform: translateY(-75%);
}

.letter-script {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.95rem, 2.3vw, 1.1rem);
  color: #3A2028;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.letter-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,32,40,0.3), transparent);
  margin: 0 auto 0.8rem;
}

.letter-subtitle {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  color: rgba(58, 32, 40, 0.6);
  margin-bottom: 1rem;
}

.seal-hint {
  font-family: 'Ibarra Real Nova', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.envelope.open ~ .seal-hint {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Password Form */
.password-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.password-input {
  font-family: 'Ibarra Real Nova', serif;
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(58, 32, 40, 0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.7);
  color: #3A2028;
  text-align: center;
  letter-spacing: 0.12em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.password-input:focus {
  border-color: #7B2D5F;
  background: #fff;
}

.password-input.error {
  border-color: #a83250;
  animation: shake 0.4s ease;
}

.password-error {
  font-family: 'Ibarra Real Nova', serif;
  font-size: 0.7rem;
  color: #a83250;
  height: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.password-error.visible {
  opacity: 1;
}

.password-submit {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  background: #3A2028;
  color: #F2EDE8;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.password-submit:hover {
  background: #4d2a35;
}

.password-submit:active {
  transform: scale(0.98);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  background: #000;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
}

/* Video Background */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.6) brightness(0.9);
  transition: opacity 2.5s ease-in-out;
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  text-align: center;
  color: #fff;
  padding: 6vh 2rem 6vh;
}

/* Names — pinned to top */
.names {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: revealUp 1.4s ease-out 0.3s forwards;
}

.names-and {
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0.15em;
  font-size: 1.05em;
}

/* Center group */
.center-group {
  display: contents;
}

/* Save the Date — Main Title */
.save-the-date {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  word-spacing: 0.08em;
  margin-top: 5rem;
  font-style: normal;
  opacity: 0;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
  animation: revealTitle 1.8s ease-out 0.9s forwards;
}

/* Details */
.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.date {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: revealUp 1.4s ease-out 1.8s forwards;
}

.venue {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.6;
  opacity: 0;
  animation: revealUp 1.4s ease-out 2.1s forwards;
}

/* Hero Countdown — bottom area */
.hero-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  opacity: 0;
  animation: revealUp 1.4s ease-out 2.5s forwards;
}

.hero-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-cd-num {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: clamp(3rem, 4.5vw, 3.8rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}

.hero-cd-label {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-cd-dot {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.3);
  padding-bottom: 1em;
}

/* ─── RSVP Section ─── */
.rsvp-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem;
  background: #3A2028;
}

.rsvp-title {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #F2EDE8;
  margin-bottom: 3rem;
  text-align: center;
}

.rsvp-card {
  width: 100%;
  max-width: 560px;
  padding: 3.5rem 3rem;
  background: #fff;
  border: 1px solid rgba(58, 32, 40, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.rsvp-card--compact {
  padding: 2rem 3rem;
}

.rsvp-card--compact .rsvp-success {
  padding: 0;
}

.rsvp-card--compact .rsvp-success-title {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.rsvp-card--compact .rsvp-success-msg {
  margin-bottom: 0;
}

.rsvp-card-intro {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: #3A2028;
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3A2028;
}

.form-input {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(58, 32, 40, 0.15);
  border-radius: 6px;
  background: transparent;
  color: #3A2028;
  outline: none;
  transition: border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.form-input::placeholder {
  color: rgba(58, 32, 40, 0.3);
  font-style: italic;
}

.form-input:focus {
  border-color: #7B2D5F;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%233A2028' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-required {
  color: #7B2D5F;
  font-style: normal;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.3rem;
}

.radio-group--vertical {
  flex-direction: column;
  gap: 0.9rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(58, 32, 40, 0.25);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #7B2D5F;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7B2D5F;
}

.radio-text {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #3A2028;
}

.form-submit {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  margin-top: 0.8rem;
  background: #3A2028;
  color: #F2EDE8;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: #580A3C;
}

.form-submit:active {
  transform: scale(0.98);
}

.rsvp-contact {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(58, 32, 40, 0.5);
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}

.rsvp-contact-detail {
  color: #7B2D5F;
  font-style: normal;
  font-weight: 500;
}

.rsvp-contact-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(123, 45, 95, 0.4);
  transition: text-decoration-color 0.2s ease;
}

.rsvp-contact-link:hover {
  text-decoration-color: #7B2D5F;
}

/* ─── RSVP Success State ─── */
.rsvp-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.rsvp-success-title {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  word-spacing: 0.1em;
  color: #3A2028;
  margin-bottom: 2.5rem;
}

.rsvp-success-msg {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(58, 32, 40, 0.7);
  margin-bottom: 2rem;
}

.cal-hint {
  font-family: 'Ibarra Real Nova', serif;
  font-size: 0.8rem;
  color: rgba(58, 32, 40, 0.4);
  margin-top: 1.5rem;
}

.cal-hint-link {
  color: rgba(58, 32, 40, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(58, 32, 40, 0.25);
  transition: color 0.2s ease;
}

.cal-hint-link:hover {
  color: #3A2028;
}

/* ─── Footer ─── */
.rsvp-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 2.5rem 1rem 1.2rem;
  background: #3E3D1E;
  border-top: 1px solid rgba(242, 237, 232, 0.08);
  color: #F2EDE8;
  text-align: center;
}

.footer-script {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  word-spacing: 0.08em;
}

.footer-date {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(242, 237, 232, 0.4);
}

.footer-rights {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 232, 0.25);
}

/* ─── Section Shells ─── */
.section {
  position: relative;
  z-index: 2;
  padding: 7rem 2rem;
}

.section--cream {
  background: #F5EFE6;
  color: #3A2028;
}

.section--plum {
  background: #3A2028;
  color: #F2EDE8;
}

.section-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  word-spacing: 0.12em;
  margin-bottom: 3.5rem;
}

/* ─── About Us ─── */
.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.about-photo {
  width: clamp(180px, 22vw, 240px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px rgba(58, 32, 40, 0.12);
}

.about-body {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.85;
  color: rgba(58, 32, 40, 0.78);
  max-width: 540px;
}

/* ─── Venue ─── */
.venue-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
}

.venue-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex: 1 1 240px;
  min-width: 240px;
}

.venue-label {
  font-family: 'Ibarra Real Nova', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.6);
}

.venue-name {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  word-spacing: 0.12em;
  color: #F2EDE8;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.venue-location {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 232, 0.7);
  margin-top: 0.4rem;
}

.venue-divider {
  width: 1px;
  align-self: center;
  height: 140px;
  background: linear-gradient(180deg, rgba(242, 237, 232, 0) 0%, rgba(242, 237, 232, 0.55) 35%, rgba(242, 237, 232, 0.55) 65%, rgba(242, 237, 232, 0) 100%);
  flex-shrink: 0;
}

/* ─── Photo Break ─── */
.photo-break {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 80vh;
  max-height: 720px;
  overflow: hidden;
  background: #000;
}

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

/* Portrait photo variant — letterboxed centered on dark bg so faces aren't cropped */
.photo-break--portrait {
  height: auto;
  max-height: none;
  background: #3A2028;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
}

.photo-break--portrait img {
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
}

/* ─── Order of the Day ─── */
.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  align-items: baseline;
  position: relative;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(58, 32, 40, 0.12);
}

.timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-time {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.18em;
  color: #7B2D5F;
  text-align: right;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.timeline-name {
  font-family: 'Juliette', cursive;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  word-spacing: 0.12em;
  color: #3A2028;
}

.timeline-venue {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 32, 40, 0.55);
  margin-top: 0.2rem;
}

.timeline-desc {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.92rem, 1.15vw, 1.02rem);
  line-height: 1.65;
  color: rgba(58, 32, 40, 0.72);
  margin-top: 0.4rem;
}

/* ─── Details ─── */
.details-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.detail-heading {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F2EDE8;
}

.detail-body {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.8;
  color: rgba(242, 237, 232, 0.75);
}

.detail-link {
  color: #F2EDE8;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(242, 237, 232, 0.35);
  font-style: normal;
  transition: text-decoration-color 0.2s ease;
}

.detail-link:hover {
  text-decoration-color: #F2EDE8;
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(58, 32, 40, 0.15);
}

.faq-item[open] {
  background: rgba(58, 32, 40, 0.02);
}

.faq-q {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  letter-spacing: 0.04em;
  color: #3A2028;
  padding: 1.4rem 2.4rem 1.4rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: #7B2D5F;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-q::after {
  content: '−';
  transform: translateY(-50%);
}

.faq-q:hover {
  color: #7B2D5F;
}

.faq-a {
  font-family: 'Ibarra Real Nova', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.95rem, 1.15vw, 1.02rem);
  line-height: 1.75;
  color: rgba(58, 32, 40, 0.72);
  padding: 0 2.4rem 1.6rem 0;
}

/* Animations */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes revealTitle {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 0.95;
    transform: translateY(0);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .envelope {
    width: 92vw;
  }

  .wax-seal {
    width: clamp(70px, 22vw, 90px);
  }

  .letter-card {
    padding: 1.2rem 1rem;
    left: 8%;
    right: 8%;
    top: 18%;
  }

  .envelope.open .letter-card {
    transform: translateY(-70%);
  }

  .letter-script {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .letter-divider {
    margin-bottom: 0.5rem;
  }

  .letter-subtitle {
    margin-bottom: 0.7rem;
    font-size: 0.75rem;
  }

  .seal-hint {
    font-size: 0.8rem;
  }

  .password-form {
    gap: 0.4rem;
  }

  .password-input {
    padding: 0.5rem 0.5rem;
    font-size: 0.85rem;
  }

  .password-submit {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
  }

  .content {
    padding: 4vh 1.2rem 3vh;
  }

  .names {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .save-the-date {
    font-size: 9vw;
    white-space: nowrap;
    margin-bottom: 0.8rem;
  }

  .date {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .venue {
    font-size: 1rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }

  .hero-countdown {
    gap: 0.8rem;
  }

  .hero-cd-num {
    font-size: 2.2rem;
  }

  .hero-cd-label {
    font-size: 0.55rem;
  }

  .hero-cd-dot {
    font-size: 1rem;
  }

  .rsvp-section {
    padding: 6rem 1rem;
  }

  .rsvp-card {
    padding: 2.5rem 1.8rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  .form-submit {
    width: 100%;
  }

  /* New sections — mobile */
  .section {
    padding: 4.5rem 1.4rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
    margin-bottom: 2.5rem;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
  }

  .about-photo {
    width: 60vw;
    max-width: 220px;
    margin-bottom: 2rem;
  }

  .about-body {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .venue-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .venue-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 237, 232, 0.3), transparent);
  }

  .venue-name {
    font-size: 1.4rem;
    white-space: normal;
  }

  .venue-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(242, 237, 232, 0) 0%, rgba(242, 237, 232, 0.55) 35%, rgba(242, 237, 232, 0.55) 65%, rgba(242, 237, 232, 0) 100%);
  }

  .venue-location {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }

  .photo-break {
    height: 60vh;
    max-height: 460px;
  }

  .photo-break--portrait {
    height: auto;
    max-height: none;
    padding: 2.5rem 1.2rem;
  }

  .photo-break--portrait img {
    max-height: 75vh;
  }

  .timeline {
    gap: 2rem;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1.2rem;
    padding-bottom: 2rem;
  }

  .timeline-time {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }

  .timeline-name {
    font-size: 1.2rem;
  }

  .timeline-venue {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .timeline-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .details-list {
    gap: 2rem;
  }

  .detail-heading {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .detail-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .faq-q {
    font-size: 0.95rem;
    padding: 1.15rem 2rem 1.15rem 0;
  }

  .faq-a {
    font-size: 0.9rem;
    padding: 0 2rem 1.3rem 0;
  }
}
