:root {
  --bg: #0b0b0f;
  --bg-soft: #151824;
  --text: #f5f5f5;
  --muted: #b8b8c5;
  --pink: #ff4ecd;
  --violet: #7b61ff;
  --gold: #ffd166;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(123, 97, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 78, 205, 0.15), transparent 25%),
    var(--bg);
  color: var(--text);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 4, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

.site-brand {
  color: #ff9be8;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 12px rgba(255, 120, 220, 0.35),
    0 0 28px rgba(123, 97, 255, 0.2);
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav-links a:hover {
  color: #ff9be8;
}

@media (max-width: 820px) {
  .site-nav-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .site-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.2rem;
  }

  .site-nav-links a {
    font-size: 0.82rem;
  }
}
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}

.hero-inner {
  max-width: 980px;
}

.hero-date {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-mark {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.countdown--hero {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 150px));
  gap: 1.15rem;
  justify-content: center;
  margin: 2.25rem 0 1.25rem;
}

.countdown-item {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.35rem 1rem 1.1rem;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.countdown-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(123, 97, 255, 0.25),
    0 0 50px rgba(255, 78, 205, 0.18);
}

.countdown-item--glow {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 18px rgba(123, 97, 255, 0.14),
    0 0 34px rgba(255, 78, 205, 0.08);
}

.countdown-item span {
  display: block;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 78, 205, 0.14),
    0 0 28px rgba(123, 97, 255, 0.12);
}

.countdown-item small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.countdown-caption {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow:
    0 0 18px rgba(123, 97, 255, 0.2),
    0 0 32px rgba(255, 78, 205, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 24px rgba(123, 97, 255, 0.28),
    0 0 40px rgba(255, 78, 205, 0.24);
}

.section-image {
  margin: 60px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.section-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.6);
}

main section {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.6;
}

.locked {
  border: 1px dashed var(--border);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 700px) {
  .hero-date {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero-mark {
    font-size: 0.95rem;
    letter-spacing: 0.24em;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-subtitle,
  .countdown-caption {
    font-size: 1rem;
  }

  .countdown--hero {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0.9rem;
  }

  .countdown-item {
    padding: 1.1rem 0.8rem 0.95rem;
  }

  .countdown-item span {
    font-size: 2.4rem;
  }
}

.countdown-item--seconds {
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03) inset,
      0 0 18px rgba(123, 97, 255, 0.14),
      0 0 34px rgba(255, 78, 205, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 24px rgba(123, 97, 255, 0.22),
      0 0 42px rgba(255, 78, 205, 0.16);
  }
}

/********************
    SECTION RSVP
*********************/


.rsvp-section {
  padding: 5rem 0 ;
   padding-bottom: 2.5rem;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-intro {
  margin: 0;
  color: var(--muted);
}

.forms-stack {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow:
    0 0 20px rgba(123, 97, 255, 0.08),
    0 0 30px rgba(255, 78, 205, 0.04);
}

.form-header {
  max-width: 760px;
}

.form-header h3 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  color: var(--text);
}

.form-header p {
  margin: 0;
  color: var(--muted);
}

.rsvp-form {
  max-width: 1100px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 18px rgba(123, 97, 255, 0.1),
    0 0 28px rgba(255, 78, 205, 0.05);
}

.form-card h4 {
  margin: 0 0 1.2rem;
  font-size: 1.15rem;
  color: var(--text);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field:last-child {
  margin-bottom: 0;
}

.field span,
.field legend {
  color: var(--text);
  font-weight: 600;
  font-size: 0.96rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 14, 0.78);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 78, 205, 0.6);
  box-shadow:
    0 0 0 3px rgba(255, 78, 205, 0.08),
    0 0 20px rgba(123, 97, 255, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

fieldset.field {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.check-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.field-hint a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.field-hint a:hover {
  text-decoration: underline;
}

.button-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  text-align: center;
}

.form-status:empty {
  display: none;
}

@media (max-width: 800px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 1.2rem;
  }
}

.form-card--full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.capsule-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.capsule-card {
  padding: 1.8rem; /* au lieu de 2rem */
}

.form-wrapper h3 {
  background: linear-gradient(135deg, #ff4ecd, #7b61ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-wrapper:last-of-type {
  margin-bottom: 0;
}

.forms-stack {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.presence-help {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.presence-help--negative {
  color: rgba(255, 255, 255, 0.88);
}

.hero--immersive {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 78, 255, 0.22), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(255, 78, 205, 0.18), transparent 28%),
    radial-gradient(circle at 50% 60%, rgba(99, 52, 182, 0.18), transparent 35%),
    linear-gradient(180deg, #05040a 0%, #090814 45%, #05040a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 120, 220, 0.15), transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(120, 100, 255, 0.15), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-logo-mark {
  margin: 0;
  font-size: clamp(4.5rem, 12vw, 8.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffb6ef;
  text-shadow:
    0 0 20px rgba(255, 120, 220, 0.8),
    0 0 40px rgba(255, 78, 205, 0.6),
    0 0 80px rgba(123, 97, 255, 0.4),
    0 0 120px rgba(255, 78, 205, 0.2);
}

.hero-title {
  margin: 0.7rem auto 1rem;
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  opacity: 0.9;
  line-height: 1.05;
  font-weight: 700;
}

.hero-subtitle {
  margin: 0 auto 2rem;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.countdown--hero {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.countdown-card {
  border-radius: 24px;
  padding: 1.35rem 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 18px rgba(123, 97, 255, 0.14),
    0 0 30px rgba(255, 78, 205, 0.08);
}

.countdown-value {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 78, 205, 0.18);
}

.countdown-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-countdown-caption {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.65;
}

.hero-orb--left {
  width: 320px;
  height: 320px;
  left: -60px;
  top: 80px;
  background: rgba(142, 71, 255, 0.28);
}

.hero-orb--right {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 40px;
  background: rgba(255, 78, 205, 0.22);
}

.hero-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 231, 181, 0.95);
  box-shadow:
    0 0 10px rgba(255, 231, 181, 0.85),
    0 0 24px rgba(255, 180, 90, 0.45);
  animation: heroTwinkle 3.5s ease-in-out infinite;
}

.hero-spark--1 {
  top: 17%;
  left: 18%;
}

.hero-spark--2 {
  top: 24%;
  right: 21%;
  animation-delay: 1s;
}

.hero-spark--3 {
  top: 61%;
  right: 14%;
  animation-delay: 2s;
}
.hero-spark--4 {
  top: 35%;
  left: 40%;
  animation-delay: 0.5s;
}

.hero-spark--5 {
  top: 55%;
  left: 70%;
  animation-delay: 1.5s;
}

.hero-spark--6 {
  top: 75%;
  left: 25%;
  animation-delay: 2.5s;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
}

.hero-deco--disco {
  width: clamp(120px, 16vw, 220px);
  left: 4%;
  top: 10%;
  filter: drop-shadow(0 0 20px rgba(186, 100, 255, 0.28));
  animation: discoFloat 8s ease-in-out infinite;
}

.hero-deco--micro {
  width: clamp(110px, 14vw, 180px);
  right: 7%;
  top: 18%;
  opacity: 0.82;
  filter: drop-shadow(0 0 24px rgba(255, 78, 205, 0.18));
  transform: rotate(-12deg);
}

.hero-deco--note {
 
  width: 60px;
  opacity: 0.9;
  filter:
  drop-shadow(0 0 20px rgba(255, 78, 205, 0.8))
  drop-shadow(0 0 40px rgba(255, 120, 220, 0.6))
  drop-shadow(0 0 80px rgba(123, 97, 255, 0.3));;
  animation: noteFloat 6s ease-in-out infinite;
}

.hero-deco--note-1 {
  left: 20%;
  top: 30%;
}

.hero-deco--note-2 {
  right: 18%;
  bottom: 25%;
  animation-delay: 1.4s;
}
.hero-deco--note-3 {
  left: 45%;
  top: 15%;
  width: 40px;
  opacity: 0.7;
  animation-delay: 2s;
}

@keyframes heroTwinkle {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes discoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(3deg);
  }
}

@keyframes noteFloat {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

@media (max-width: 900px) {
  .hero--immersive {
    min-height: auto;
    padding: 4.5rem 0 3.5rem;
  }

  .countdown--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .hero-deco--micro {
    width: 120px;
    right: -10px;
    top: 16%;
    opacity: 0.35;
  }

  .hero-deco--disco {
    width: 120px;
    left: -10px;
    top: 8%;
    opacity: 0.45;
  }
}

@media (max-width: 640px) {
  .hero-title {
    max-width: 22rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .countdown-card {
    padding: 1.1rem 0.85rem 0.9rem;
  }

  .hero-deco--note {
    display: none;
  }
}

.hero-deco--disco {
  filter:
    drop-shadow(0 0 30px rgba(186, 100, 255, 0.5))
    drop-shadow(0 0 60px rgba(255, 78, 205, 0.3));
}
.hero-deco--micro {
  filter:
    drop-shadow(0 0 30px rgba(255, 78, 205, 0.4));
}

.story-grid-section {
  padding: 4rem 0 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.story-card {
  position: relative;
  padding: 1.7rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 22px rgba(123, 97, 255, 0.08),
    0 0 35px rgba(255, 78, 205, 0.04);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 78, 205, 0.12), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.9;
}

.story-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--text);
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 16px rgba(255, 78, 205, 0.1),
    0 0 28px rgba(123, 97, 255, 0.08);
}

.story-card--highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 78, 205, 0.12), transparent 35%),
    radial-gradient(circle at left bottom, rgba(123, 97, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.story-card--locked {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 78, 205, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.story-card:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:
    0 0 26px rgba(123, 97, 255, 0.12),
    0 0 44px rgba(255, 78, 205, 0.08);
}

@media (max-width: 820px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 1.4rem;
  }
}

.story-showcase {
  position: relative;
  padding: 3rem 0 2.5rem;
}

.story-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 115, 220, 0.08), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(126, 93, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255, 193, 94, 0.05), transparent 30%);
  pointer-events: none;
}

.story-grid--enhanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-card {
  position: relative;
  min-height: 320px;
  padding: 2rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 16, 28, 0.92), rgba(10, 9, 18, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 24px rgba(123, 97, 255, 0.08),
    0 0 40px rgba(255, 78, 205, 0.05);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.story-card-topline {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.story-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: #fff;
}

.story-card p,
.story-card li {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1.02rem;
}

.story-card p + p {
  margin-top: 0.8rem;
}

.story-card--birthday::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 78, 205, 0.18), transparent 22%),
    radial-gradient(circle at 75% 18%, rgba(123, 97, 255, 0.16), transparent 28%);
}

.story-card--birthday h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #ff9be8;
  text-shadow:
    0 0 16px rgba(255, 120, 220, 0.45),
    0 0 38px rgba(123, 97, 255, 0.18);
}

.story-card--program::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 78, 205, 0.14), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(176, 115, 255, 0.14), transparent 20%);
}

.story-list {
  position: relative;
  z-index: 1;
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
}

.story-list li + li {
  margin-top: 0.45rem;
}

.story-note {
  margin-top: 1.2rem;
  color: #ffcf9f;
}


.story-card--weekend::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 16, 0.2) 0%,
      rgba(8, 8, 16, 0.7) 60%,
      rgba(8, 8, 16, 0.95) 100%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(255, 140, 60, 0.25),
      transparent 25%
    );

  z-index: 0;
}

.story-card--weekend {
  position: relative;
  background:
    url("../assets/images/card-weekend-bg.jpg") center/cover no-repeat;
}

.story-card--weekend::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 16, 0.2) 0%,
      rgba(8, 8, 16, 0.7) 60%,
      rgba(8, 8, 16, 0.95) 100%
    ),
    radial-gradient(
      circle at 85% 85%,
      rgba(255, 140, 60, 0.25),
      transparent 25%
    );

  z-index: 0;
}

.story-card--moment::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 78, 205, 0.14), transparent 20%),
    radial-gradient(circle at 15% 85%, rgba(123, 97, 255, 0.12), transparent 22%);
}

.story-card--moment h2 {
  max-width: 12ch;
}

.story-script {
  font-size: 1.5rem;
  color: #d88eff;
  font-style: italic;
  margin: 0.4rem 0 1rem;
  text-shadow: 0 0 20px rgba(216, 142, 255, 0.15);
}

.locked-banner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.8rem;
  padding: 1.5rem 1.75rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20, 16, 30, 0.96), rgba(12, 10, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(255, 78, 205, 0.08),
    0 0 34px rgba(123, 97, 255, 0.06);
}

.locked-banner-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 18px rgba(255, 78, 205, 0.12),
    0 0 36px rgba(123, 97, 255, 0.08);
}

.locked-banner-topline {
  margin: 0 0 0.35rem;
  color: #ff89db;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
}

.locked-banner h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.locked-banner p {
  margin: 0;
  color: var(--muted);
}

.reply-reminder {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.reply-reminder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.reply-reminder strong {
  color: #ff89db;
}

@media (max-width: 900px) {
  .story-grid--enhanced {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .locked-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .locked-banner-icon {
    margin: 0 auto;
  }
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.footer-logo {
  font-size: 1.4rem;
  color: #ff89db;
  margin-bottom: 0.5rem;
}

/* bouton secondaire */
.button-secondary {
  margin-left: 0.8rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.button-secondary:hover {
  border-color: #ff89db;
  color: #ff89db;
  box-shadow: 0 0 15px rgba(255, 137, 219, 0.25);
}

/* teaser */
.hero-teaser {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  opacity: 0.9;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .button-secondary {
    margin-left: 0;
  }
}