/* Wedding palette — 4 цвета из палитры (pallete1–4) */
:root {
  --cream: #F1F0EA;
  --olive-light: #C4C5A0;
  --olive: #75763E;
  --burgundy: #580410;
  --burgundy-dark: #390000;
  --white: #fff;
  --text: #390000;
  --text-muted: #580410;
  /* 4 цвета палитры: оливковый, бордовый, тёмный красно-коричневый, светлый беж */
  --palette-olive: #4d5309;
  --palette-burgundy: #3a0108;
  --palette-dark: #381f1a;
  --palette-cream: #fdf5e2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  background-image: url('img/decor-wreath.png');
  background-repeat: repeat;
  background-position: 0 0;
  background-size: cover;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  background-image: url('img/decor-wreath.png');
  background-size: cover;
  background-repeat: repeat;
  background-position: 0 0;
}

@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(241, 240, 234, 0.88);
  pointer-events: none;
  z-index: 0;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

/* Экран «Нажмите для входа» */
body.site-entry-locked {
  overflow: hidden;
}

.site-entry {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(56, 31, 26, 0.92) 0%,
    rgba(58, 1, 8, 0.88) 45%,
    rgba(77, 83, 9, 0.35) 100%
  );
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-entry--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-entry__inner {
  text-align: center;
  max-width: 22rem;
}

.site-entry__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--palette-cream);
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
  animation: site-entry-pulse 2.2s ease-in-out infinite;
}

.site-entry__names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(253, 245, 226, 0.75);
  margin: 0;
  font-style: italic;
}

@keyframes site-entry-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

/* Фоновая музыка */
.music-toggle {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(253, 245, 226, 0.85);
  background: rgba(58, 1, 8, 0.88);
  color: var(--palette-cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(56, 31, 26, 0.35);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.music-toggle:hover {
  transform: scale(1.06);
  background: var(--palette-burgundy);
}

.music-toggle__icon {
  font-size: 1.35rem;
  line-height: 1;
}

.music-toggle__icon--on {
  display: none;
}

.music-toggle--playing .music-toggle__icon--off {
  display: none;
}

.music-toggle--playing .music-toggle__icon--on {
  display: block;
}

.music-toggle--playing {
  background: rgba(77, 83, 9, 0.92);
  border-color: rgba(253, 245, 226, 0.6);
}

/* Header — sticky, mobile-first */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(241, 240, 234, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(117, 118, 62, 0.2);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 0.75rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.nav a {
  color: var(--burgundy-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 0.5rem;
}

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

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  border-radius: 999px;
  padding: 0.4rem 1rem !important;
}

.nav-cta:hover {
  background: var(--burgundy-dark);
  color: var(--cream) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(57, 0, 0, 0.2) 0%,
    rgba(57, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 520px;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  opacity: 0.95;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero-date {
  font-size: 1.15rem;
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  min-width: 4rem;
}

.countdown-item span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}

.countdown-item small {
  font-size: 0.7rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 3.5rem 1rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--burgundy-dark);
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

/* Story */
.section-story {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.section-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 30% / 90% auto no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.section-story .container {
  position: relative;
  z-index: 1;
}

.story-content {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.story-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(57, 0, 0, 0.12), 0 0 0 1px rgba(117, 118, 62, 0.1);
}

.story-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.story-text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.story-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .story-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Палитра цветов */
.section-palette {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.section-palette::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 50% / 70% auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-palette .container {
  position: relative;
  z-index: 1;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  justify-items: center;
}

.palette-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.palette-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 24px rgba(57, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(117, 118, 62, 0.2);
}

.palette-circle--olive { background-color: var(--palette-olive); }
.palette-circle--burgundy { background-color: var(--palette-burgundy); }
.palette-circle--dark { background-color: var(--palette-dark); }
.palette-circle--cream { background-color: var(--palette-cream); }


.palette-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--burgundy-dark);
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 540px) {
  .palette-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  .palette-circle {
    width: 120px;
    height: 120px;
  }
}

/* Program / Timeline */
.section-program {
  position: relative;
  background: linear-gradient(180deg, rgba(241,240,234,0.97) 0%, rgba(196,197,160,0.25) 100%);
  overflow: hidden;
}

.section-program::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 70% / 85% auto no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.section-program .container {
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(117, 118, 62, 0.2);
  align-items: start;
  border-radius: 10px;
  transition: background 0.2s;
}

.timeline-item:hover {
  background: rgba(196, 197, 160, 0.15);
}

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

.timeline-time {
  font-weight: 600;
  color: var(--olive);
  font-size: 1rem;
}

.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: var(--burgundy-dark);
}

.timeline-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Dress code */
.section-dresscode {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.section-dresscode::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png');
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}

.section-dresscode .container {
  position: relative;
  z-index: 1;
}

.dresscode-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.dresscode-palette {
  margin-bottom: 2.5rem;
}

.dresscode-palette .palette-grid-inline {
  max-width: 480px;
  margin: 0 auto;
  gap: 1.5rem 1.25rem;
}

.dresscode-palette .palette-circle {
  width: 80px;
  height: 80px;
}

.dresscode-palette .palette-label {
  font-size: 0.85rem;
}

@media (min-width: 540px) {
  .dresscode-palette .palette-circle {
    width: 100px;
    height: 100px;
  }
}

.gallery-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--burgundy-dark);
  margin: 0 0 0.75rem;
}

.gallery-block {
  margin-bottom: 2rem;
}

.gallery-block:last-child {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(57, 0, 0, 0.08);
}

@media (min-width: 500px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* Place */
.section-place {
  position: relative;
  background: var(--olive-light);
  color: var(--burgundy-dark);
  overflow: hidden;
  padding: 4rem 1rem 5rem;
}

.section-place::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 50% / 75% auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-place .container {
  position: relative;
  z-index: 1;
}

.container--place {
  max-width: 1100px;
}

.section-place .section-title {
  color: var(--burgundy-dark);
  margin-bottom: 2.5rem;
}

.place-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.place-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.place-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.place-venue {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  opacity: 0.95;
}

.place-info p {
  margin: 0 0 0.35rem;
}

.place-note {
  margin-top: 0.75rem !important;
  font-size: 0.9rem;
  opacity: 0.9;
}

.place-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(56, 31, 26, 0.18), 0 0 0 1px rgba(77, 83, 9, 0.15);
}

.place-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 240px;
  max-height: 420px;
}

.place-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(56, 31, 26, 0.18), 0 0 0 1px rgba(77, 83, 9, 0.15);
  background: var(--palette-cream);
  min-height: 280px;
}

.place-map {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  border: none;
}

@media (min-width: 640px) {
  .section-place {
    padding: 5rem 1.5rem 6rem;
  }

  .place-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .place-left {
    gap: 1.5rem;
  }

  .place-info h3 {
    font-size: 2rem;
  }

  .place-image {
    min-height: 300px;
    max-height: 460px;
  }

  .place-map-wrap {
    min-height: 380px;
    position: sticky;
    top: 5rem;
  }

  .place-map {
    min-height: 380px;
  }
}

@media (min-width: 900px) {
  .place-image {
    min-height: 340px;
    max-height: 500px;
  }

  .place-map-wrap,
  .place-map {
    min-height: 420px;
  }
}

.section-divider {
  padding: 2.5rem 1rem;
  text-align: center;
  background: transparent;
  position: relative;
  min-height: 100px;
}

.section-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 50% / 180px auto no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.divider-img {
  max-width: 140px;
  height: auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(57, 0, 0, 0.08));
}

/* RSVP */
.section-rsvp {
  position: relative;
  background: linear-gradient(180deg, rgba(196,197,160,0.2) 0%, rgba(241,240,234,0.98) 100%);
  overflow: hidden;
}

.section-rsvp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 20% / 80% auto no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.section-rsvp .container {
  position: relative;
  z-index: 1;
}

.rsvp-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.rsvp-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--burgundy-dark);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--olive-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(77, 83, 9, 0.2);
}

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

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--burgundy-dark);
}

.form-file {
  width: 100%;
  padding: 0.5rem 0;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}

.form-file::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin-right: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--cream);
  background: var(--burgundy);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.form-file-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Теги «Что будете пить» */
.form-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(77, 83, 9, 0.4);
  background: var(--cream);
  color: var(--burgundy-dark);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  user-select: none;
}

.form-tag:hover {
  border-color: var(--olive);
  background: rgba(77, 83, 9, 0.08);
}

.form-tag input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-tag:has(input:checked) {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.form-tag:has(input:checked):hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--cream);
}

.form-tag__text {
  pointer-events: none;
}

.form-row--tags .form-tags,
.form-row--radios .form-tags {
  margin-top: 0.5rem;
}

.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.form-checkbox,
.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
}

.form-checkbox input,
.form-radio input {
  width: auto;
  margin: 0;
  accent-color: var(--burgundy);
}

.form-row--checkboxes .form-checkbox-group {
  margin-top: 0.25rem;
}

.form-row--radios .form-radio-group {
  margin-top: 0.25rem;
}

.rsvp-form .btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  box-shadow: 0 4px 14px rgba(58, 1, 8, 0.25);
}

.rsvp-form {
  background: rgba(253, 245, 226, 0.85);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(77, 83, 9, 0.35);
  backdrop-filter: blur(8px);
}

/* Гости */
.section-guests {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.section-guests::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 50% / 70% auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-guests .container {
  position: relative;
  z-index: 1;
}

.guests-intro {
  text-align: center;
  margin: -0.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.guests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  min-height: 60px;
}

.guests-loading,
.guests-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

.guest-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(56, 31, 26, 0.1), 0 0 0 1px rgba(77, 83, 9, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

.guest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(56, 31, 26, 0.12), 0 0 0 1px rgba(77, 83, 9, 0.15);
}

.guest-card__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(77, 83, 9, 0.12);
}

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

.guest-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-card__initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--burgundy-dark);
  opacity: 0.7;
}

.guest-card__info {
  padding: 0.75rem 1rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.guest-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--burgundy-dark);
  line-height: 1.3;
}

.guest-card__relation {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (min-width: 540px) {
  .guests-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 800px) {
  .guests-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
  }

  .guest-card__initials {
    font-size: 3rem;
  }
}

/* FAQ */
.section-faq {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/decor-wreath.png') 50% 80% / 70% auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-faq .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 560px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(117, 118, 62, 0.2);
  padding: 1rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item summary {
  font-weight: 500;
  color: var(--burgundy-dark);
  cursor: pointer;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--olive);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--burgundy-dark);
  color: var(--cream);
  text-align: center;
  padding: 2rem 1rem;
}

.footer p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-hearts {
  opacity: 0.9;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
