/* ============================================================
   Свадебный сайт — Анастасия & Арсений
   Кастомные стили: шрифты, палитра, компоненты
   ============================================================ */

/* ──────────────────────────────
   Переменные / токены дизайна
────────────────────────────── */
:root {
  --color-champagne:  #F5ECD7;
  --color-olive:      #7C8C5C;
  --color-olive-l:    #A3AE7A;
  --color-rose:       #C8A8A0;
  --color-rose-l:     #E8D5D0;
  --color-graphite:   #2D2D2D;
  --color-cream:      #FAF7F0;
  --color-gold:       #C4A065;
  --color-gold-l:     #D4B87A;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans:  "Montserrat", system-ui, sans-serif;
}

/* ──────────────────────────────
   Базовые стили
────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-graphite);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────
   Анимации
────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

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

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(8px); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.15);}
}

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

.animate-fade-in {
  animation: fadeInUp 1s ease-out both;
}

.animate-bounce-slow {
  animation: bounceSlow 2s ease-in-out infinite;
}

/* ──────────────────────────────
   Hero-секция
────────────────────────────── */
.hero-section {
  background-color: var(--color-cream);
}

.hero-bg {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(197, 168, 129, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 168, 160, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(124, 140, 92, 0.08)  0%, transparent 50%);
}

/* Разделительная линия между именами */
.divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

/* ──────────────────────────────
   Таймер обратного отсчёта
────────────────────────────── */
.countdown-wrapper {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 160, 101, 0.25);
  border-radius: 20px;
  padding: 1.25rem 2rem;
  box-shadow: 0 8px 32px rgba(196, 160, 101, 0.1);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-graphite);
  line-height: 1;
  min-width: 2.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  font-weight: 500;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.4;
  padding-top: 0.3rem;
  align-self: flex-start;
}

@media (max-width: 480px) {
  .countdown-num   { font-size: 1.8rem; }
  .countdown-sep   { font-size: 1.5rem; }
  .countdown-wrapper { padding: 1rem 1.25rem; gap: 1rem !important; }
}

/* ──────────────────────────────
   Секционные заголовки
────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--color-graphite);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), var(--color-rose));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ──────────────────────────────
   Таймлайн
────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-gold),
    var(--color-rose),
    var(--color-olive),
    transparent
  );
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.timeline-last {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -2.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--color-cream), 0 4px 12px rgba(0,0,0,0.12);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(196, 160, 101, 0.12);
  transition: box-shadow 0.3s;
}

.timeline-content:hover {
  box-shadow: 0 4px 24px rgba(196, 160, 101, 0.2);
}

.timeline-time {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.timeline-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-graphite);
  margin: 0.25rem 0 0.5rem;
}

.timeline-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.65);
  line-height: 1.6;
}

/* ──────────────────────────────
   Цветовые палитры (Дресс-код)
────────────────────────────── */
.color-swatch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.color-swatch {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 0 0 3px white, 0 0 0 4px rgba(196,160,101,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.color-swatch:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 0 0 3px white, 0 0 0 5px rgba(196,160,101,0.4);
}

.color-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-graphite);
}

.color-hex {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--color-graphite);
  opacity: 0.4;
  background: rgba(0,0,0,0.05);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ──────────────────────────────
   RSVP-Форма
────────────────────────────── */
.rsvp-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow:
    0 4px 32px rgba(0,0,0,0.08),
    0 0 0 1px rgba(196,160,101,0.12);
}

@media (max-width: 480px) {
  .rsvp-card { padding: 1.5rem; }
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-graphite);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(196, 160, 101, 0.25);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-graphite);
  background: var(--color-cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.form-input:focus {
  border-color: var(--color-gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(196, 160, 101, 0.15);
}

.form-input::placeholder {
  color: rgba(45,45,45,0.3);
}

.form-error {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-rose);
  margin-top: 0.35rem;
}

/* Радиокнопки */
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(196, 160, 101, 0.2);
  background: var(--color-cream);
  transition: all 0.25s;
}

.radio-option:hover {
  border-color: var(--color-gold);
  background: white;
}

.radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(196, 160, 101, 0.4);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s;
}

.radio-custom::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s;
}

.radio-input:checked + .radio-custom {
  border-color: var(--color-gold);
}
.radio-input:checked + .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

.radio-input:checked ~ .radio-text {
  font-weight: 600;
}

.radio-option:has(.radio-input:checked) {
  border-color: var(--color-gold);
  background: rgba(196, 160, 101, 0.07);
}

.radio-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-graphite);
}

/* Чекбоксы */
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.65rem 0.875rem;
  border-radius: 12px;
  border: 1.5px solid rgba(196, 160, 101, 0.2);
  background: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-graphite);
  transition: all 0.25s;
}

.checkbox-option:hover {
  border-color: var(--color-gold);
  background: white;
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(196, 160, 101, 0.4);
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s;
}

.checkbox-custom::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.checkbox-input:checked + .checkbox-custom::after {
  opacity: 1;
}
.checkbox-option:has(.checkbox-input:checked) {
  border-color: var(--color-gold);
  background: rgba(196, 160, 101, 0.08);
}

/* Кнопка отправки */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-graphite) 0%, #4a4a4a 100%);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(45, 45, 45, 0.3);
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 45, 45, 0.35);
  background: linear-gradient(135deg, #3d3d3d 0%, #555 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Успешная отправка */
.success-icon i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* ──────────────────────────────
   Панель администратора
────────────────────────────── */
.admin-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.admin-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.admin-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-champagne);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.admin-stat-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.admin-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.admin-section-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Таблица */
.admin-table {
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.admin-table th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  vertical-align: top;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid;
  white-space: nowrap;
}

.delete-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(200, 168, 160, 0.2);
  background: transparent;
  color: rgba(200, 168, 160, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.25s;
}

.delete-btn:hover {
  background: rgba(200, 168, 160, 0.15);
  color: var(--color-rose);
  border-color: var(--color-rose);
  transform: scale(1.1);
}

/* ──────────────────────────────
   Место проведения (Venue)
────────────────────────────── */
.venue-card {
  background: var(--color-cream);
  border: 1px solid rgba(196, 160, 101, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.venue-card:hover {
  box-shadow: 0 8px 40px rgba(196, 160, 101, 0.18);
}

.venue-city-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(196, 160, 101, 0.25);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(196, 160, 101, 0.12);
}

.venue-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: white;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(196, 160, 101, 0.12);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.venue-info-item:hover {
  border-color: rgba(196, 160, 101, 0.35);
  box-shadow: 0 2px 12px rgba(196, 160, 101, 0.1);
}

.venue-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(196, 160, 101, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.venue-info-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-graphite);
  margin-bottom: 0.2rem;
}

.venue-info-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(45, 45, 45, 0.55);
  line-height: 1.5;
}

.venue-map-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #2D3A1A 0%, #405125 100%);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(45, 58, 26, 0.3);
}

.venue-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 58, 26, 0.4);
  background: linear-gradient(135deg, #1C2410 0%, #2D3A1A 100%);
}

/* Кнопка на карты (вторичная — для Дворца) */
.venue-map-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--color-rose);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid var(--color-rose);
  box-shadow: 0 2px 8px rgba(200, 168, 160, 0.18);
}

.venue-map-btn-secondary:hover {
  background: var(--color-rose);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 160, 0.4);
}

/* Телефонная ссылка */
.venue-phone {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.venue-phone:hover {
  color: var(--color-olive);
}

/* Стрелка между карточками места */
.venue-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 1.5rem 0;
  opacity: 0.5;
}

.venue-arrow-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}

/* ──────────────────────────────
   Hero — Фото пары
────────────────────────────── */
.hero-photo-frame {
  position: relative;
  display: inline-block;
}

.hero-photo-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 160, 101, 0.15), rgba(200, 168, 160, 0.2));
  border: 3px solid rgba(196, 160, 101, 0.35);
  box-shadow:
    0 0 0 6px rgba(196, 160, 101, 0.08),
    0 8px 32px rgba(196, 160, 101, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.4s;
}

.hero-photo-inner:hover {
  box-shadow:
    0 0 0 8px rgba(196, 160, 101, 0.12),
    0 12px 40px rgba(196, 160, 101, 0.3);
}

.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
}

.photo-hearts {
  display: flex;
  gap: 0.35rem;
  font-size: 1.2rem;
}

.photo-placeholder-text {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-gold);
  line-height: 1.4;
  font-style: italic;
  opacity: 0.8;
}

/* ──────────────────────────────
   История — Дата знакомства
────────────────────────────── */
.story-date-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(196, 160, 101, 0.12), rgba(200, 168, 160, 0.1));
  border: 1px solid rgba(196, 160, 101, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

/* ──────────────────────────────
   Детали (DETAILS)
────────────────────────────── */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

.details-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(196, 160, 101, 0.15);
  box-shadow: 0 3px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.details-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(196, 160, 101, 0.18);
}

.details-card-wide {
  grid-column: 1 / -1;
}

.details-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.details-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-graphite);
  margin-bottom: 0.75rem;
}

.details-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(45, 45, 45, 0.65);
  line-height: 1.7;
}

/* ──────────────────────────────
   Полноэкранный раздел с фото
────────────────────────────── */
.couple-photo-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.couple-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.88;
  transition: transform 0.6s ease;
}

.couple-photo-section:hover .couple-photo-img {
  transform: scale(1.02);
}

.couple-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.02) 40%,
    rgba(0,0,0,0.02) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.couple-photo-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  align-self: flex-end;
  padding-bottom: 3.5rem;
  width: 100%;
}

.couple-photo-date {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}

.couple-photo-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(245, 236, 215, 0.8);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
