/**
 * CSS System: Undangan Pernikahan Eva & Ridwan
 * Mengimplementasikan 100% Token Desain & Tata Letak Gambar Acuan (Image 1 & 2)
 * Fonts: Imperial Script (Script) & Elms Sans (Heading/Body)
 */

:root {
  /* 1. PALETTE & COLOR ROLES */
  --color-bg: #ffffff;
  --color-bg-secondary: #111111;
  --color-text: #212529;
  --color-text-secondary: #60704f;
  --color-primary: #d90a11;
  --color-secondary: #0d6efd;
  --color-border: #111111;

  /* Extracted Palette Tokens */
  --palette-1: #ffffff;
  --palette-2: #111111;
  --palette-3: #f5f3ee;
  --palette-4: #7c4f27;
  --palette-5: #60704f;
  --palette-6: #1d1d1d;
  --palette-7: #3d9a62;
  --palette-8: #d90a11;
  --palette-9: #7e7e7e;
  --palette-10: #7b6945;
  --palette-11: #3d3002;
  --palette-12: #c54f53;
  --palette-13: #0d6efd;

  /* 2. TYPOGRAPHY TOKENS */
  --font-heading: "Cormorant Upright", Georgia, serif;
  --font-body: "Cormorant Upright", system-ui, -apple-system, Georgia, serif;
  --font-script: "Imperial Script", cursive;

  /* 3. SPACING UNIT */
  --space-1: 10px;
  --space-2: 20px;
  --space-3: 30px;
  --space-4: 40px;
  --space-5: 50px;
  --space-6: 60px;
  --space-card: 25px;

  /* 4. BORDER RADIUS */
  --radius-btn: 10px;
  --radius-btn-lg: 15px;
  --radius-subtle: 3px;
  --radius-box: 13px;
  --radius-card: 24px;
  --radius-pill: 63px;

  /* 5. ELEVATION & SHADOWS */
  --shadow-mid: rgba(228, 228, 228, 0.5) 3px 2px 10px 0px;
  --shadow-dark: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
  --shadow-warm: rgba(124, 79, 39, 0.15) 0px 10px 25px 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #24201c;
  color: var(--color-text);
  font-family: var(--font-body);
  overscroll-behavior-y: none;
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 300;
}

body.locked-scroll {
  overflow: hidden;
}

/* MOBILE FRAME WRAPPER (< 480px) */
.app-container {
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background-color: var(--palette-3);
  background-image: url("../assets/9_11zon.webp");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.35;
  color: var(--color-text);
  margin: 0;
}

p {
  line-height: 1.65;
  margin: 0;
}

/* =========================================
   1. OVERLAY MODAL & HERO FLORAL CORNERS
   ========================================= */
.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--palette-3);
  background-image: url("../assets/9_11zon.webp");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s;
  padding: var(--space-3) var(--space-2);
  overflow: hidden;
}

.overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.overlay-content {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

@keyframes floatFloralTL {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-4px, -4px) rotate(-1.5deg);
  }
}

@keyframes floatFloralBR {
  0%,
  100% {
    transform: rotate(180deg) translate(0, 0);
  }
  50% {
    transform: rotate(181.5deg) translate(-4px, -4px);
  }
}

.floral-corner-tl {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 255px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(var(--shadow-warm));
  animation: floatFloralTL 6s ease-in-out infinite;
}

.floral-corner-br {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 255px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(180deg);
  filter: drop-shadow(var(--shadow-warm));
  animation: floatFloralBR 6s ease-in-out infinite;
}

/* DOUBLE GOLDEN SQUARE FRAME (IMAGE 1 EXACT DESIGN) */
.luxury-frame-double {
  position: relative;
  width: 88%;
  max-width: 320px;
  margin: 30px auto 20px;
  padding: 45px 20px 35px;
  border: 1px solid var(--palette-4);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-mid);
  z-index: 4;
  text-align: center;
}

.luxury-frame-double::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--palette-4);
  pointer-events: none;
}

.frame-top-txt {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 3.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.monogram-large {
  font-family: var(--font-script);
  font-size: 5.6rem;
  font-weight: 400;
  color: var(--palette-4);
  line-height: 1.1;
  margin: 12px 0;
  letter-spacing: normal;
}

.frame-date-txt {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--color-text);
  margin-top: 16px;
  text-transform: uppercase;
}

.frame-dot {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--palette-4);
  margin-top: 10px;
}

/* HERO BOTTOM INFO */
.hero-section {
  padding: 50px 20px 60px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 400px;
}

.hero-bottom-info {
  position: relative;
  z-index: 4;
  margin-top: 25px;
}

.wedding-of {
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  color: var(--color-text);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-couple-script {
  font-family: var(--font-script);
  font-size: 4.4rem;
  font-weight: 400;
  color: var(--palette-4);
  line-height: 1.3;
  margin: 12px 0;
}

.script-amp {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--color-text);
}

.hero-date {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-text);
  font-weight: 500;
  text-transform: uppercase;
}

/* GUEST CARD LUXURY */
.guest-card-luxury {
  background: #ffffff;
  border: 1px solid var(--palette-4);
  border-radius: var(--radius-box);
  padding: 16px 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
  box-shadow: var(--shadow-mid);
  position: relative;
  z-index: 4;
}

.to-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}

.guest-card-luxury h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.4;
}

/* BUTTON SPECS FROM DESIGN GUIDE */
.btn-primary {
  width: 100%;
  background: var(--palette-4);
  color: #ffffff;
  border-radius: var(--radius-btn);
  padding: 14px 38px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgb(255, 255, 255);
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  transition:
    transform 0.2s,
    background 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  position: relative;
  z-index: 4;
}

.btn-primary:active {
  transform: scale(0.97);
}

.pulse {
  animation: btnPulseGlow 2s infinite;
}

@keyframes btnPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 79, 39, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(124, 79, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 79, 39, 0);
  }
}

/* FLOATING MUSIC DISC */
.music-disc {
  position: fixed;
  bottom: 24px;
  right: calc(50% - 220px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--palette-2);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  box-shadow: var(--shadow-dark);
}

@media (max-width: 480px) {
  .music-disc {
    right: 20px;
  }
}

.disc-center {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-bg);
  border-radius: 50%;
}

.spinning {
  animation: spinDisc 4s linear infinite;
}

@keyframes spinDisc {
  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

/* =========================================
   2. SECTIONS & ARCH CARDS (IMAGE 2 EXACT)
   ========================================= */
.section {
  padding: var(--space-5) var(--space-2);
  text-align: center;
  position: relative;
}

.section-title-luxury {
  margin-bottom: 30px;
  text-align: center;
}

.sub-heading {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  color: var(--palette-4);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.section-title-luxury h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.35;
  margin: 0;
}

/* ARCH CARDS REPLICA FROM IMAGE 2 */
.arch-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--palette-4);
  border-top-right-radius: 75px;
  border-radius: 16px 75px 16px 16px;
  padding: 88px 24px 65px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-mid);
  text-align: center;
  overflow: hidden;
}

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

/* DYNAMIC & VARIATIVE CARD FLORAL CORNERS (140px-145px) WITH ORGANIC SWAY */
@keyframes swayCardTL {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-3px, -2px) rotate(-1deg);
  }
}

@keyframes swayCardTR {
  0%,
  100% {
    transform: scaleX(-1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scaleX(-1) translate(-3px, -2px) rotate(1deg);
  }
}

@keyframes swayCardBR {
  0%,
  100% {
    transform: rotate(180deg) translate(0, 0);
  }
  50% {
    transform: rotate(181deg) translate(-3px, -2px);
  }
}

@keyframes swayCardBL {
  0%,
  100% {
    transform: scaleY(-1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scaleY(-1) translate(-3px, -2px) rotate(-1deg);
  }
}

.card-floral-tl {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 140px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
  animation: swayCardTL 7s ease-in-out infinite;
}

.card-floral-tr {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 142px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
  transform: scaleX(-1);
  animation: swayCardTR 7.5s ease-in-out infinite;
}

.card-floral-br {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 145px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
  transform: rotate(180deg);
  animation: swayCardBR 8s ease-in-out infinite;
}

.card-floral-bl {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 140px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
  transform: scaleY(-1);
  animation: swayCardBL 6.8s ease-in-out infinite;
}

.card-ornament-top {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  opacity: 0.85;
}

.card-ornament-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* WATERMARK TYPOGRAPHY (IMAGE 2 REPLICA) */
.watermark-heading {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--palette-4);
  letter-spacing: 2px;
  margin-bottom: 36px;
  z-index: 4;
}

.watermark-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-48%);
  font-size: 1.95rem;
  color: #f0eee9;
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
}

.watermark-script {
  position: relative;
  font-family: var(--font-script);
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  margin: 24px 0 16px;
  z-index: 4;
}

.watermark-script::after {
  content: attr(data-text);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-47%);
  font-size: 3.9rem;
  color: #f0eee9;
  z-index: -1;
  white-space: nowrap;
}

.event-date-txt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.event-time-txt {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin-bottom: 18px;
}

.event-pin-icon {
  margin: 10px 0 6px;
}

.icon-pin-brown {
  color: var(--palette-4);
}

.event-loc-txt {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 22px;
  color: var(--color-text);
}

.event-loc-txt strong {
  display: block;
  font-size: 0.96rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.event-btn-wrap {
  margin-bottom: 28px;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--palette-4);
  color: #ffffff;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-warm);
  transition:
    transform 0.2s,
    background 0.2s;
}

.btn-location:active {
  transform: scale(0.97);
}

.event-divider-line {
  width: 65%;
  height: 1px;
  background: #e8e6e0;
  margin: 32px auto;
}

/* =========================================
   3. COUNTDOWN & OTHER SECTIONS
   ========================================= */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
  max-width: 360px;
  margin: 0 auto;
}

.cd-box {
  background: #ffffff;
  border: 1px solid var(--palette-4);
  border-radius: var(--radius-box);
  padding: 14px 6px;
  text-align: center;
  box-shadow: var(--shadow-mid);
}

.cd-box span {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  line-height: 1.25;
  margin-bottom: 4px;
}

.cd-box p {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0;
}

.quran-wrapper {
  background: #ffffff;
  border: 1px solid #e8e6e0;
  border-radius: var(--radius-btn-lg);
  padding: 24px 20px;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-mid);
}

.quran-ayat {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 12px;
}

.surah-badge {
  font-size: 0.82rem;
  color: var(--palette-4);
  font-weight: 600;
  display: inline-block;
  line-height: 1.4;
}

.salam-text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.mempelai-name {
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 400;
  color: var(--palette-4);
  margin-bottom: 8px;
  line-height: 1.25;
}

.mempelai-order {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--palette-4);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  display: block;
}

.mempelai-parents {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.65;
}

.mempelai-address {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px dashed #e0ded8;
}

.floral-divider-sm {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--palette-4);
  margin: 16px 0;
  line-height: 1;
}

.invited-section {
  background: #ffffff;
  border: 1px solid #e8e6e0;
  border-radius: var(--radius-btn-lg);
  padding: 24px 20px;
  margin-top: 36px;
  text-align: left;
}

.invited-title {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.invited-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.invited-item {
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

/* =========================================
   4. CASHLESS & GIFT
   ========================================= */
.gift-desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.atm-card-luxury {
  background: #ffffff;
  border: 1px solid #e8e6e0;
  border-radius: var(--radius-btn-lg);
  padding: 24px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: var(--shadow-mid);
}

.atm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bank-logo-img {
  height: 24px;
  object-fit: contain;
}

.atm-chip-img {
  width: 36px;
  object-fit: contain;
}

.atm-number,
.atm-number a,
a[href^="tel"] {
  font-family: "Courier New", monospace;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text) !important;
  letter-spacing: 2px;
  margin-bottom: 6px;
  line-height: 1.3;
  text-decoration: none !important;
}

.atm-holder {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  display: block;
}

.btn-filled {
  margin-top: 18px;
  width: 100%;
  background: var(--palette-9);
  color: #ffffff;
  border-radius: var(--radius-btn-lg);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.btn-filled:hover {
  opacity: 0.9;
}

.gift-box-title {
  color: var(--color-text);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.physical-rec,
.physical-addr {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* =========================================
   5. RSVP FORM & COMMENTS
   ========================================= */
.guestbook-form {
  text-align: left;
}

.input-wrap {
  margin-bottom: 18px;
}

.input-wrap label {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.input-wrap input[type="text"],
.input-wrap textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-btn);
  background: #f5f3ee;
  border: 1px solid transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--palette-4);
}

.radio-group {
  display: flex;
  gap: var(--space-1);
}

.radio-label {
  flex: 1;
  cursor: pointer;
}

.radio-label input {
  display: none;
}

.radio-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  background: #f5f3ee;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s;
  line-height: 1.4;
}

.radio-label input:checked + .radio-btn {
  background: var(--palette-7);
  color: #ffffff;
}

.radio-label:last-child input:checked + .radio-btn {
  background: var(--palette-8);
  color: #ffffff;
}

.comments-wrapper {
  text-align: left;
}

.comments-header-bar {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8e6e0;
  line-height: 1.4;
}

.comments-scroll-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 480px;
  overflow-y: auto;
}

.comment-bubble {
  background: #ffffff;
  border: 1px solid #e8e6e0;
  border-radius: var(--radius-btn-lg);
  padding: 16px;
  box-shadow: var(--shadow-mid);
}

.absent-bubble {
  opacity: 0.8;
  background: #f5f3ee;
}

.bubble-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-right: 6px;
  line-height: 1.4;
  display: inline-block;
}

.badge-att {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

.badge-present {
  background: #e8f5e9;
  color: var(--palette-7);
}

.badge-absent {
  background: #ffebee;
  color: var(--palette-8);
}

.time-stamp {
  font-size: 0.72rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.bubble-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* =========================================
   6. FOOTER & ICONS
   ========================================= */
.app-footer-luxury {
  padding: 50px 20px 40px;
  text-align: center;
}

.footer-thanks {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.footer-couple-script {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--palette-4);
  margin: 20px 0 28px;
  font-weight: 400;
  line-height: 1.35;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer-copyright span {
  color: var(--color-text);
  font-weight: 600;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-inline {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
  color: currentColor;
}

.icon-btn {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  color: currentColor;
}

.icon-title {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
  color: var(--palette-4);
}

.icon-leaf {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--palette-5);
}

.icon-disc {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
