﻿/*
 * =========================================================================
 * MODERN EDITORIAL LUXURY WEDDING DESIGN SYSTEM (2026 TREND)
 * =========================================================================
 * Concept: Modern Editorial Luxury Wedding / Contemporary Haute Couture Stationery
 * Principles: Less decoration, more elegance. Less clutter, more whitespace.
 * Palette: Ivory, Cream, Charcoal, Espresso, Soft Taupe, Muted Brushed Gold.
 */

/* --- 1. GOOGLE FONTS IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- 2. CSS CUSTOM PROPERTIES / DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --ivory: #F8F6F1;
  --cream: #F1ECE3;
  --cream-soft: #F9F7F4;
  --charcoal: #222222;
  --charcoal-deep: #161514;
  --charcoal-light: #3A3835;
  --espresso: #2C2825;
  --taupe: #8A8178;
  --taupe-light: #B5ADA5;
  --gold: #B59A63;
  --gold-light: #D4AF37;
  --gold-hairline: rgba(181, 154, 99, 0.35);
  --gold-subtle: rgba(181, 154, 99, 0.08);
  --white: #FFFFFF;
  --border-color: rgba(34, 34, 34, 0.08);
  --border-card: rgba(34, 34, 34, 0.06);

  /* Typography */
  --font-serif-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans-alt: 'Inter', sans-serif;

  /* Spacing */
  --pad-section-y: clamp(52px, 8vw, 84px);
  --pad-section-x: clamp(20px, 5vw, 32px);
  --canvas-max-width: 480px;

  /* Radius & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-float: 0 12px 36px rgba(0, 0, 0, 0.08);
  --glass-dock: rgba(248, 246, 241, 0.88);
  --glass-blur: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
  background-color: #EFECE6;
}

body.editorial-body {
  font-family: var(--font-sans-body);
  color: var(--charcoal);
  background-color: #EFECE6;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Desktop Centered Canvas Framing */
.main-canvas {
  width: 100%;
  max-width: var(--canvas-max-width);
  margin: 0 auto;
  background-color: var(--ivory);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
  overflow-x: hidden;
}

@media (max-width: 520px) {
  .main-canvas {
    max-width: 100%;
    box-shadow: none;
  }
}

/* Texture Grain Overlay */
.film-grain-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Base Headings & Links */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif-heading);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Global Content Lock before Open */
.content-locked {
  display: block;
}

/* --- 4. SECTION WRAPPERS & UTILITIES --- */
.editorial-section {
  padding: var(--pad-section-y) var(--pad-section-x);
  position: relative;
}

.section-inner {
  width: 100%;
  position: relative;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 36px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--taupe);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-serif-heading);
  font-size: clamp(1.9rem, 6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 0.88rem;
  color: var(--taupe);
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.6;
}

.gold-hairline-divider {
  width: 44px;
  height: 1px;
  background: var(--gold-hairline);
  margin: 24px auto 0;
}

/* --- 5. COVER / OPENING SCREEN (FULLSCREEN EDITORIAL POSTER) --- */
.cover-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal-deep);
}

.cover-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 21, 20, 0.4) 0%,
    rgba(22, 21, 20, 0.65) 50%,
    rgba(22, 21, 20, 0.9) 100%
  );
}

.cover-content {
  position: relative;
  z-index: 10;
  max-width: 420px;
  width: 90%;
  padding: 40px 24px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cover-tagline {
  font-family: var(--font-sans-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cover-couple-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  margin: 8px 0;
}

.cover-name {
  font-family: var(--font-serif-heading);
  font-size: clamp(2.6rem, 10vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.cover-ampersand {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--gold);
  margin: 2px 0;
}

.cover-date-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 16px;
}

.cover-date-text {
  font-family: var(--font-serif-heading);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
}

.cover-guest-card {
  width: 100%;
  max-width: 320px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.cover-guest-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cover-guest-name {
  font-family: var(--font-serif-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.cover-guest-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.btn-open-invitation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(248, 246, 241, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-family: var(--font-sans-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-open-invitation:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- 6. FLOATING BOTTOM NAVIGATION (LUXURY DOCK) --- */
.floating-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9000;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-nav.nav-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dock {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--glass-dock);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(181, 154, 99, 0.25);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-float);
}

.nav-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  color: var(--taupe);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.nav-pill-item svg {
  transition: transform 0.2s ease;
}

.nav-pill-item.active {
  color: var(--charcoal);
  background: rgba(34, 34, 34, 0.05);
  font-weight: 600;
}

.nav-pill-item.active svg {
  color: var(--gold);
  transform: scale(1.1);
}

.nav-pill-item:hover {
  color: var(--charcoal);
}

/* --- 7. FLOATING MUSIC CONTROLLER --- */
.music-player-floating {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9000;
}

@media (min-width: 521px) {
  .music-player-floating {
    right: calc(50% - 240px + 20px);
  }
}

.music-disc-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--glass-dock);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(181, 154, 99, 0.35);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  position: relative;
}

.music-disc-btn:hover {
  transform: scale(1.06);
  border-color: var(--gold);
}

.music-disc-inner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  background: radial-gradient(circle, var(--gold) 2px, transparent 3px);
  transition: transform 0.2s ease;
}

/* --- 8. HERO SECTION --- */
.hero-section {
  padding-top: 50px;
  padding-bottom: 40px;
}

.hero-top-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}

.hero-couple-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  margin-bottom: 30px;
}

.hero-name {
  font-family: var(--font-serif-heading);
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero-amp {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 2px 0;
}

.hero-portrait-frame {
  margin: 0 auto 24px;
  max-width: 360px;
}

.portrait-img-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  background-color: var(--cream);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-img-box:hover .portrait-img {
  transform: scale(1.03);
}

.hero-date-badge {
  display: inline-block;
  font-family: var(--font-serif-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--espresso);
  padding: 6px 18px;
  background: var(--cream);
  border-radius: var(--radius-full);
  border: 1px solid rgba(181, 154, 99, 0.2);
  margin-bottom: 16px;
}

.hero-intro-text {
  font-size: 0.88rem;
  color: var(--taupe);
  font-weight: 300;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- 9. QUOTE SECTION --- */
.quote-section {
  padding-top: 30px;
  padding-bottom: 40px;
}

.quote-card {
  background: var(--cream-soft);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
}

.quote-editorial-text {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 400;
  color: var(--charcoal-light);
  line-height: 1.5;
  max-width: 340px;
  margin: 0 auto;
}

/* --- 10. COUPLE SECTION (BRIDE & GROOM) --- */
.couple-vertical-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.couple-editorial-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.couple-editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

.couple-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cream);
  border: 1px solid var(--border-color);
}

.couple-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(34, 34, 34, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.couple-fullname {
  font-family: var(--font-serif-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.couple-parent-info {
  font-size: 0.82rem;
  color: var(--taupe);
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.5;
}

.couple-parent-info strong {
  color: var(--charcoal-light);
  font-weight: 600;
}

.couple-middle-ornament {
  text-align: center;
  margin: -10px 0;
}

.couple-middle-amp {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
}

/* --- 11. EVENTS SECTION & TIMELINE --- */
.events-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.event-editorial-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.event-card-header {
  margin-bottom: 20px;
}

.event-type-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.event-title {
  font-family: var(--font-serif-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
}

.event-date-callout {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  margin-bottom: 20px;
}

.event-date-large {
  display: flex;
  align-items: center;
  gap: 14px;
}

.day-num {
  font-family: var(--font-serif-heading);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  color: var(--charcoal);
}

.month-year {
  display: flex;
  flex-direction: column;
}

.month-name {
  font-family: var(--font-sans-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.year-num {
  font-size: 0.82rem;
  color: var(--taupe);
  font-weight: 400;
}

.event-details-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.event-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--charcoal-light);
}

.event-detail-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.venue-info strong {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.4;
}

.btn-editorial-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(34, 34, 34, 0.18);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-editorial-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

/* --- 12. COUNTDOWN SECTION --- */
.countdown-minimal-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.countdown-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
}

.count-num {
  font-family: var(--font-serif-heading);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 400;
  color: var(--charcoal);
}

.count-txt {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--taupe);
  margin-top: 4px;
}

.count-sep {
  font-family: var(--font-serif-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: -12px;
}

.countdown-footer-msg {
  font-size: 0.84rem;
  color: var(--taupe);
  font-style: italic;
}

/* --- 13. EDITORIAL GALLERY --- */
.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cream);
  border: 1px solid var(--border-color);
}

.gallery-cell.cell-tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.gallery-cell a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 21, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-cell:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-cell:hover .gallery-hover-overlay {
  opacity: 1;
}

/* --- 14. RSVP & GUESTBOOK WISHES --- */
.rsvp-editorial-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
}

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

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--ivory);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.custom-select-wrap {
  position: relative;
}

.custom-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--taupe);
}

.btn-editorial-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-editorial-submit:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

/* Comments / Feed */
.guestbook-feed-container {
  background: var(--cream-soft);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.feed-title {
  font-family: var(--font-serif-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
}

.feed-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(181, 154, 99, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}

.comment-item-editorial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold-hairline);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif-heading);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comment-content {
  flex-grow: 1;
}

.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.comment-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.comment-status-tag {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.comment-status-tag.tag-hadir {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
}

.comment-status-tag.tag-berhalangan {
  background: rgba(239, 83, 80, 0.1);
  color: #c62828;
}

.comment-status-tag.tag-ragu {
  background: rgba(255, 152, 0, 0.1);
  color: #ef6c00;
}

.comment-body {
  font-size: 0.84rem;
  color: var(--taupe);
  line-height: 1.5;
  font-style: italic;
}

/* --- 15. FOOTER SECTION --- */
.editorial-footer {
  padding: 60px 24px 100px;
  border-top: 1px solid var(--border-color);
  background: var(--ivory);
}

.closing-message-box {
  margin-bottom: 24px;
}

.closing-text {
  font-family: var(--font-serif-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--taupe);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

.footer-couple-signature {
  font-family: var(--font-serif-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--taupe-light);
  text-transform: uppercase;
}
