/* ==========================================================================
   Jasmine White Luxury Wedding Invitation Template Stylesheet
   Color Palette: Warm Cream (#FFFAF7), Deep Olive Green (#404A1D), White (#FFF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..700;1,400..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:wght@300;400;500;600;700&family=The+Nautigal:wght@400;700&display=swap');

:root {
  --primary-olive: #404A1D;
  --olive-dark: #2a3311;
  --olive-light: #5a6628;
  --olive-faint: rgba(64, 74, 29, 0.06);
  --olive-border: rgba(64, 74, 29, 0.15);
  --olive-border-medium: rgba(64, 74, 29, 0.25);
  --olive-text-muted: rgba(64, 74, 29, 0.75);
  --bg-cream: #FFFAF7;
  --bg-card: rgba(255, 250, 247, 0.98);
  --font-serif-garamond: "EB Garamond", Garamond, Georgia, serif;
  --font-serif-baskerville: "Baskerville", "Times New Roman", Times, serif;
  --font-serif-lora: "Lora", Georgia, serif;
  --font-cursive-calligraphy: "The Nautigal", cursive;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  background-color: var(--primary-olive);
}

html.envelope-opened {
  background-color: #faf7f2;
}

body {
  font-family: var(--font-serif-baskerville);
  background-color: var(--primary-olive);
  color: var(--primary-olive);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.8s ease;
}

body:not(.envelope-opened) {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

body.envelope-opened {
  background-color: #faf7f2;
}

/* ==========================================================================
   GATE / ENVELOPE OVERLAY SCREEN (INITIAL VIEW)
   ========================================================================== */

.gate {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 26px);
  overflow-y: auto;
  padding: max(16px, env(safe-area-inset-top, 16px)) 18px max(24px, env(safe-area-inset-bottom, 24px));
  background: radial-gradient(120% 90% at 50% 15%, #4a5622 0%, #353e18 50%, #1e240c 100%);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.8s;
  perspective: 1200px;
  overscroll-behavior: none;
}

.gate.is-opening {
  pointer-events: none;
}

.gate.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Ambient Falling Petals (GPU-Accelerated 3D for iOS & Mobile) */
.petals-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.falling-petal {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  width: 14px;
  height: 18px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 245, 247, 0.95), rgba(245, 215, 225, 0.75) 60%, rgba(220, 185, 195, 0.4) 100%);
  border-radius: 50% 0 50% 50%;
  box-shadow: 0 2px 6px rgba(180, 130, 145, 0.2);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

@keyframes petal-fall-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
    transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 115vh, 0) rotate(360deg);
    transform: translate3d(40px, 115vh, 0) rotate(360deg);
  }
}

@-webkit-keyframes petal-fall-1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(40px, 115vh, 0) rotate(360deg);
  }
}

@keyframes petal-fall-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
    transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 115vh, 0) rotate(-360deg);
    transform: translate3d(-40px, 115vh, 0) rotate(-360deg);
  }
}

@-webkit-keyframes petal-fall-2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 115vh, 0) rotate(-360deg);
  }
}

@keyframes petal-fall-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
    transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(20px, 115vh, 0) rotate(240deg);
    transform: translate3d(20px, 115vh, 0) rotate(240deg);
  }
}

@-webkit-keyframes petal-fall-3 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -40px, 0) rotate(0deg);
  }
  15% {
    opacity: 0.85;
  }
  85% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(20px, 115vh, 0) rotate(240deg);
  }
}

/* ==========================================================================
   GATE 3D REALISTIC PHYSICAL ENVELOPE
   ========================================================================== */

/* Top Language Selection Chips */
.gate__langs {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  animation: gateFadeUp 0.8s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.chip {
  padding: 8px 18px;
  background: rgba(255, 250, 247, 0.15);
  border: 1px solid rgba(255, 250, 247, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFFAF7;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.chip:hover {
  background: rgba(255, 250, 247, 0.26);
  border-color: rgba(255, 250, 247, 0.5);
  transform: translateY(-1px);
  color: #ffffff;
}

.chip.is-on {
  background: #FFFAF7;
  border-color: #b39a72;
  color: #404A1D;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(179, 154, 114, 0.35);
}

/* 3D Physical Envelope */
.env {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1.46 / 1;
  overflow: hidden; /* while closed, card inside is hidden */
  animation: gateEnvIn 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  z-index: 10;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.5));
}

.gate.is-opening .env {
  overflow: visible;
}

@keyframes gateEnvIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Inner Invitation Card (slides upward out of pocket on opening) */
.env__card {
  position: absolute;
  left: 5.5%;
  right: 5.5%;
  top: 34%;
  height: 104%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 20px 18px;
  background: #FFFAF7;
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 6px;
  box-shadow: 0 -8px 25px -10px rgba(0, 0, 0, 0.35);
  visibility: hidden;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s, visibility 0s 0.5s;
  text-align: center;
  overflow: hidden;
}

.gate.is-opening .env__card {
  visibility: visible;
  transform: translateY(-82%);
}

/* Card Floral Corner Ornaments */
.env__card .corner-flower {
  position: absolute;
  pointer-events: none;
  width: 80px;
  height: auto;
  opacity: 0.55;
  user-select: none;
}

.env__card .corner-flower.top-left {
  top: -10px;
  left: -10px;
  transform: scale(-1);
}

.env__card .corner-flower.bottom-right {
  bottom: -10px;
  right: -10px;
}

.env__card-eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9d8355;
}

.env__card-names {
  margin: 0;
  text-align: center;
  font-family: var(--font-serif-garamond);
  font-weight: 500;
  font-size: clamp(20px, 5.2vw, 27px);
  line-height: 1.22;
  color: #404A1D;
}

.env__card-names i {
  font-style: normal;
  font-family: var(--font-serif-baskerville);
  color: #b39a72;
  margin-inline: 0.35em;
  font-size: 0.9em;
}

.env__card .ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2px 0;
}

.env__card .ornament-divider .line {
  height: 1px;
  width: 32px;
}

.env__card .ornament-divider .line.left {
  background: linear-gradient(to right, transparent, #b39a72);
}

.env__card .ornament-divider .line.right {
  background: linear-gradient(to left, transparent, #b39a72);
}

.env__card .ornament-divider .ornament-svg {
  color: #9d8355;
}

.env__card-date {
  margin: 0;
  font-family: var(--font-serif-lora);
  font-size: 13.5px;
  color: rgba(64, 74, 29, 0.85);
  font-weight: 500;
}

.env__card-guest {
  margin: 0;
  font-family: var(--font-serif-garamond);
  font-size: 13.5px;
  color: #404A1D;
  background: rgba(64, 74, 29, 0.08);
  padding: 3px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(64, 74, 29, 0.14);
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Front Pocket with V-neck cutout */
.env__pocket {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(168deg, #444f20 0%, #363f19 55%, #272f11 100%);
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 4px;
  clip-path: polygon(0 0, 50% 56%, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.55), inset 0 8px 25px -12px rgba(0, 0, 0, 0.5);
}

/* Top Flap — folds open upward in 3D */
.env__flap {
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  z-index: 5;
  transform-origin: top center;
  transform-style: preserve-3d;
  background: linear-gradient(180deg, #536028 0%, #404A1D 62%, #323a15 100%);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  border-radius: 4px 4px 0 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gate.is-opening .env__flap {
  transform: rotateX(-172deg);
  z-index: 1;
}

/* Wax Seal Button */
.seal {
  position: absolute;
  left: 50%;
  top: 59%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.gate.is-opening .seal {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  pointer-events: none;
}

.seal__disc {
  display: grid;
  place-items: center;
  width: clamp(64px, 17vw, 78px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #5d6b2b 0%, #363f17 65%, #22290d 100%);
  box-shadow: 0 8px 25px -4px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(179, 154, 114, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.35);
  color: #FFFAF7;
  animation: sealPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seal__disc svg {
  width: 55%;
  height: 55%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
}

@keyframes sealPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px -4px rgba(0, 0, 0, 0.65), 0 0 0 1.5px rgba(179, 154, 114, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.35);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.75), 0 0 0 2px rgba(179, 154, 114, 0.75), inset 0 2px 5px rgba(255, 255, 255, 0.45);
  }
}

.seal:hover .seal__disc {
  animation-play-state: paused;
  transform: scale(1.08);
}

.seal:active .seal__disc {
  transform: scale(0.96);
}

.seal__label {
  padding: 8px 22px;
  background: #FFFAF7;
  border: 1px solid rgba(179, 154, 114, 0.45);
  border-radius: 9999px;
  font-family: var(--font-serif-lora);
  font-size: 13.5px;
  font-weight: 600;
  color: #404A1D;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.seal:hover .seal__label {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

@keyframes gateFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-height: 640px) {
  .env {
    width: min(340px, 62vw);
  }
  .chip {
    padding: 6px 14px;
    font-size: 12.5px;
  }
  .seal__label {
    font-size: 12px;
    padding: 6px 16px;
  }
}

/* Floating In-Page Language Switcher Bar */
.floating-lang-bar {
  position: fixed;
  top: max(16px, env(safe-area-inset-top, 12px) + 6px);
  right: max(16px, env(safe-area-inset-right, 12px) + 4px);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(64, 74, 29, 0.22);
  box-shadow: 0 4px 18px rgba(64, 74, 29, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.floating-lang-bar:hover {
  background: rgba(255, 250, 247, 0.98);
  box-shadow: 0 6px 22px rgba(64, 74, 29, 0.2);
}

.lang-pill {
  border: none;
  background: transparent;
  color: rgba(64, 74, 29, 0.7);
  font-family: var(--font-sans-montserrat);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-pill:hover {
  color: var(--primary-olive);
}

.lang-pill.active {
  background: var(--primary-olive);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(64, 74, 29, 0.35);
}

.lang-divider {
  color: rgba(64, 74, 29, 0.25);
  font-size: 10px;
  user-select: none;
}

/* ==========================================================================
   2. FULL WEDDING INVITATION VIEW
   ========================================================================== */

#invitation-view {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  transition: opacity 0.8s ease;
}

body.envelope-opening #invitation-view .invitation-container {
  animation: invitationReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes invitationReveal {
  0% {
    opacity: 0.4;
    transform: scale(0.97) translateY(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.invitation-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background-color: #faf7f2;
  background-image: url('../bg.jpeg');
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  color: var(--primary-olive);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .invitation-container {
    max-width: 760px;
    margin: 40px auto;
    border: 1px solid rgba(179, 154, 114, 0.35);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(64, 74, 29, 0.12);
  }
}

/* ==========================================================================
   HEADER & USER FLORAL ARCH FRAME
   ========================================================================== */

.invitation-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: clamp(25px, 6vw, 45px);
  padding-bottom: clamp(10px, 3vw, 25px);
}

@media (min-width: 768px) {
  .invitation-header {
    padding-top: 45px;
    padding-bottom: 30px;
  }
}

/* User Floral Arch Container (810 x 1024) */
.floral-arch-container {
  position: relative;
  width: min(390px, 92vw);
  aspect-ratio: 810 / 1024;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .floral-arch-container {
    width: 440px;
  }
}

.arch-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.arch-text-content {
  position: absolute;
  top: 13%;
  bottom: 35%;
  left: 8%;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

.wedding-tagline {
  font-family: var(--font-serif-baskerville);
  font-size: clamp(13px, 3.4vw, 17px);
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1.45;
  color: var(--primary-olive);
  opacity: 0.9;
  text-transform: uppercase;
  white-space: pre-line;
  margin-bottom: clamp(10px, 2.5vw, 16px);
}

.names-calligraphy {
  font-family: var(--font-cursive-calligraphy);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive);
}

.names-calligraphy .name-item {
  font-size: clamp(40px, 10.5vw, 62px);
  line-height: 1.12;
  white-space: nowrap;
  letter-spacing: 0.01em;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.names-calligraphy .and-symbol {
  font-family: var(--font-cursive-calligraphy);
  font-size: clamp(24px, 6vw, 36px);
  line-height: 1.05;
  margin: 2px 0;
  opacity: 0.85;
  display: block;
}

/* ==========================================================================
   SECTIONS SHARED STYLING
   ========================================================================== */

.invitation-section {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .invitation-section {
    padding: 60px 48px;
    gap: 40px;
  }
}

.section-title {
  text-align: center;
  font-family: var(--font-serif-baskerville);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-olive);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.bilingual-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bilingual-text .primary {
  display: block;
}

.bilingual-text .secondary {
  display: block;
  font-size: 0.85em;
  opacity: 0.72;
}

/* ==========================================================================
   CEREMONY SECTION (ELEGANT SEPARATE CARDS & COMFORTABLE SPACING)
   ========================================================================== */

.ceremony-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 30px 16px;
}

@media (min-width: 768px) {
  .ceremony-section {
    gap: 32px;
    padding: 45px 32px;
  }
}

.announcement-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 18px;
  padding: clamp(18px, 4.5vw, 26px) clamp(16px, 4vw, 24px);
  box-shadow: 0 4px 18px rgba(64, 74, 29, 0.04);
  text-align: center;
}

.announcement-text {
  font-family: var(--font-serif-baskerville);
  font-size: clamp(14.5px, 3.8vw, 18px);
  line-height: 1.75;
  color: var(--primary-olive);
  margin: 0;
  letter-spacing: 0.01em;
}

.announcement-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto;
  width: 70%;
  max-width: 220px;
}

.announcement-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 154, 114, 0.75), transparent);
}

.announcement-divider-heart {
  color: #b39a72;
  flex-shrink: 0;
  opacity: 0.9;
}

.announcement-signature {
  font-family: var(--font-serif-lora);
  font-size: clamp(14px, 3.8vw, 17px);
  font-weight: 600;
  font-style: italic;
  color: var(--primary-olive);
  margin: 0;
  letter-spacing: 0.015em;
  opacity: 0.95;
  line-height: 1.55;
}

/* Couple Highlighted Names (Vertical Stack) */
.couple-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.8vw, 18px);
  width: 100%;
  margin: 8px 0;
}

.couple-highlight.vertical-stack {
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 20px;
}

.couple-name-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.couple-highlight.vertical-stack .full-name {
  font-family: var(--font-serif-garamond);
  font-size: clamp(32px, 8.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary-olive);
  margin: 0;
}

.couple-highlight.vertical-stack .role-tag {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.couple-highlight.vertical-stack .ampersand {
  font-size: clamp(26px, 6.5vw, 36px);
  font-family: var(--font-serif-baskerville);
  line-height: 1;
  color: var(--primary-olive);
  opacity: 0.8;
  margin: 2px 0;
}

/* Ceremony Timing Card */
.ceremony-timing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 18px;
  padding: 26px 20px;
  box-shadow: 0 4px 18px rgba(64, 74, 29, 0.04);
}

.venue-place {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.venue-title-text {
  font-family: var(--font-serif-garamond);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-olive);
}

.timing-detail-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Ceremony & Reception Date Time Cards */
.ceremony-timing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.venue-place {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.time-label {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.big-time {
  font-size: 26px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .big-time {
    font-size: 34px;
  }
}

.date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.date-row .weekday,
.date-row .month {
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .date-row .weekday,
  .date-row .month {
    font-size: 15px;
  }
}

.date-row .divider-bar {
  font-size: 22px;
  opacity: 0.45;
}

.date-row .day-number {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) {
  .date-row .day-number {
    font-size: 44px;
  }
}

.year-text {
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PHOTO GALLERY ("OUR STORY")
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    max-width: 580px;
    gap: 16px;
  }
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--olive-border);
  background-color: var(--olive-faint);
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-sans);
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */

.countdown-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.countdown-timer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 640px) {
  .countdown-timer-box {
    gap: 20px;
  }
}

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

.timer-unit .timer-num {
  font-family: var(--font-serif-garamond);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-olive);
}

@media (min-width: 640px) {
  .timer-unit .timer-num {
    font-size: 38px;
  }
}

.timer-unit .timer-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-top: 4px;
}

.timer-separator {
  font-size: 24px;
  opacity: 0.4;
  margin-top: -12px;
}

/* ==========================================================================
   CALENDAR WIDGET (OCTOBER 2026)
   ========================================================================== */

.calendar-widget-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 16px auto 0;
}

@media (min-width: 640px) {
  .calendar-widget-wrapper {
    max-width: 360px;
  }
}

.calendar-box {
  border: 1px solid var(--olive-border-medium);
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

.calendar-month-header {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--olive-border);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 2px solid var(--primary-olive);
  text-align: center;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 2px;
  padding: 8px 4px 12px;
}

.calendar-cell {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.calendar-cell.highlight-wedding-day {
  position: relative;
}

.heart-badge {
  position: relative;
  width: 28px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--primary-olive);
}

.heart-badge span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.calendar-add-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--primary-olive);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 14px;
  transition: opacity 0.2s ease;
}

.calendar-add-link:hover {
  opacity: 0.75;
}

/* Primary Action Buttons */
.action-btn-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-olive);
  color: #ffffff;
  font-family: var(--font-serif-baskerville);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 28px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(64, 74, 29, 0.25);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-primary-pill:hover {
  transform: scale(1.03);
  background-color: var(--olive-dark);
}

/* ==========================================================================
   VENUE MAP & DIRECTIONS
   ========================================================================== */

.venue-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.venue-address-block {
  max-width: 480px;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 16px;
  text-align: center;
  margin: 0 auto 16px;
}

.venue-name-highlight {
  font-family: var(--font-serif-garamond);
  font-size: 24px;
  color: var(--primary-olive);
  font-weight: 600;
  margin-bottom: 6px;
}

.venue-street-text {
  font-family: var(--font-serif-lora);
  font-size: 15px;
  color: var(--olive-text-muted);
}

@media (min-width: 768px) {
  .venue-name-highlight {
    font-size: 28px;
  }
  .venue-street-text {
    font-size: 16px;
  }
}

.map-wrapper {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--olive-border);
  box-shadow: 0 6px 24px rgba(64, 74, 29, 0.08);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .map-wrapper {
    max-width: 600px;
  }
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .map-wrapper iframe {
    height: 360px;
  }
}

/* Dual Map Navigation Buttons */
.dual-map-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  width: 100%;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 9999px;
  font-family: var(--font-sans-montserrat);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.btn-directions .map-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Yandex Red Accent Button */
.btn-directions.btn-yandex {
  background: #fc3f1d;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(252, 63, 29, 0.3);
}

.btn-directions.btn-yandex:hover {
  background: #e22f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 63, 29, 0.45);
}

/* Google Maps Olive Button */
.btn-directions.btn-google {
  background: var(--primary-olive);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(64, 74, 29, 0.35);
}

.btn-directions.btn-google:hover {
  background: #323a17;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 74, 29, 0.5);
}

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

/* ==========================================================================
   WEDDING DAY TIMELINE SCHEDULE
   ========================================================================== */

.timeline-wrapper {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.timeline-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  align-items: center;
  row-gap: 32px;
  column-gap: 20px;
  list-style: none;
}

@media (min-width: 768px) {
  .timeline-list {
    row-gap: 40px;
    column-gap: 28px;
  }
}

.timeline-time {
  text-align: right;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .timeline-time {
    font-size: 18px;
  }
}

.timeline-node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.timeline-node .dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-olive);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(64, 74, 29, 0.2);
  z-index: 2;
}

.timeline-node .line-segment {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: rgba(64, 74, 29, 0.35);
  z-index: 1;
}

.timeline-node .line-segment.top {
  top: -36px;
  bottom: 50%;
}

.timeline-node .line-segment.bottom {
  top: 50%;
  bottom: -36px;
}

@media (min-width: 768px) {
  .timeline-node .line-segment.top {
    top: -44px;
  }
  .timeline-node .line-segment.bottom {
    top: 50%;
    bottom: -44px;
  }
}

.timeline-label {
  text-align: left;
  font-size: 17px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .timeline-label {
    font-size: 19px;
  }
}

/* ==========================================================================
   GUESTBOOK / GUEST WISHES
   ========================================================================== */

.guestbook-section {
  position: relative;
  z-index: 10;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .guestbook-section {
    padding: 50px 32px;
    gap: 30px;
  }
}

/* Framed Card for Guestbook Section (Matching Other Section Frames) */
.guestbook-frame-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(179, 154, 114, 0.45);
  border-radius: 20px;
  padding: clamp(20px, 5vw, 28px) clamp(16px, 4vw, 24px);
  box-shadow: 0 6px 24px rgba(64, 74, 29, 0.05);
}

.guestbook-form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(179, 154, 114, 0.45);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--primary-olive);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 2px rgba(64, 74, 29, 0.15);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.btn-magic-ai {
  background-color: rgba(64, 74, 29, 0.08);
  color: var(--primary-olive);
  border: 1px solid rgba(179, 154, 114, 0.35);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-magic-ai:hover {
  transform: scale(1.05);
  background-color: rgba(64, 74, 29, 0.15);
}

.btn-submit-wish {
  background-color: var(--primary-olive);
  color: #ffffff;
  border: none;
  padding: 9px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(64, 74, 29, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-submit-wish:hover {
  transform: scale(1.03);
  background-color: var(--olive-dark);
}

.wishes-feed {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(179, 154, 114, 0.25);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.wish-item-card,
.wish-card {
  background-color: #ffffff;
  border: 1px solid rgba(179, 154, 114, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  box-shadow: 0 2px 8px rgba(64, 74, 29, 0.05);
}

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

.wish-meta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wish-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-olive);
}

.wish-date,
.wish-time {
  font-size: 11px;
  color: rgba(64, 74, 29, 0.65);
}

.wish-message,
.wish-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #2a3311;
  word-break: break-word;
}

.empty-wishes-notice {
  text-align: center;
  font-size: 13px;
  color: rgba(64, 74, 29, 0.7);
  padding: 24px 10px;
  font-style: italic;
}

.no-wishes-notice {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  padding: 16px 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.invitation-footer {
  position: relative;
  z-index: 10;
  padding: 30px 20px max(60px, env(safe-area-inset-bottom, 20px) + 36px);
  text-align: center;
  background-color: transparent;
}

.footer-quote {
  font-family: var(--font-serif-baskerville);
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-quote {
    font-size: 18px;
  }
}

.footer-credit {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FLOATING AUDIO PLAYER BUTTON
   ========================================================================== */

.floating-audio-player {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 16px) + 12px);
  left: 20px;
  z-index: 900;
}

.btn-music-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--olive-border-medium);
  box-shadow: 0 4px 18px rgba(64, 74, 29, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-olive);
  transition: transform 0.25s ease, background-color 0.25s ease;
  outline: none;
}

.btn-music-toggle:hover {
  transform: scale(1.08);
}

.btn-music-toggle.playing svg {
  animation: spin-vinyl 4s linear infinite;
}

@keyframes spin-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   LIGHTBOX MODAL DIALOG
   ========================================================================== */

.modal-dialog {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-dialog.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 24px;
}

.lightbox-header {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  z-index: 10;
}

.lightbox-counter {
  background-color: rgba(0, 0, 0, 0.45);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-family: var(--font-sans);
}

.lightbox-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.lightbox-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-main-stage {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav-btn.prev {
  left: 8px;
}

.lightbox-nav-btn.next {
  right: 8px;
}

.lightbox-active-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
}

/* Lightbox Thumbnail Carousel */
.lightbox-thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 90vw;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  scrollbar-width: none;
}

.lightbox-thumb-strip::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-thumb-btn.active {
  border-color: #ffffff;
  opacity: 1;
  transform: scale(1.08);
}

.lightbox-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Toast Notifications */
.toast-notice {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  background-color: rgba(255, 255, 255, 0.95);
  color: #1d1d1f;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(64, 74, 29, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   INLINE SVG ICONS & FOOTER CREDIT
   ========================================================================== */

.ornament-svg,
.footer-heart-svg,
.magic-wand-svg {
  display: inline-block;
  vertical-align: middle;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-heart-svg {
  color: var(--primary-olive);
  opacity: 0.85;
}

.ornament-svg {
  color: var(--primary-olive);
  opacity: 0.75;
}
