/* ============================================================
   Template-17 — Première Coupe de Cheveux · Toy Story Theme
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS Variables ── */
:root {
  --red:    #e63946;
  --blue:   #457b9d;
  --yellow: #f4d03f;
  --cream:  #fdf8f0;
  --dark:   #1d3557;
  --gold:   #c9a96e;
  --green:  #2a9d8f;
  --white:  #ffffff;

  --font-fun:    'Fredoka One', cursive;
  --font-script: 'Great Vibes', cursive;
  --font-body:   'Jost', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 12px rgba(29,53,87,0.10);
  --shadow-md:  0 6px 24px rgba(29,53,87,0.14);
  --shadow-lg:  0 16px 48px rgba(29,53,87,0.18);

  --transition: 0.3s ease;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-fun); line-height: 1.15; }

/* ============================================================
   INTRO SCREEN
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#toy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 560px;
}

/* Icon circle */
.intro__icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--red);
  background: rgba(230,57,70,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: starPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(244,208,63,0.6);
}
.intro__star {
  font-size: 3.2rem;
  animation: starSpin 8s linear infinite;
  display: inline-block;
}
@keyframes starPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,208,63,0.5); }
  50%       { box-shadow: 0 0 0 18px rgba(244,208,63,0); }
}
@keyframes starSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.intro__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.intro__title {
  font-family: var(--font-fun);
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.intro__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.intro__subtitle strong { color: var(--yellow); }

.intro__overlay {
  position: absolute;
  inset: 0;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}
.intro__overlay.is-visible { opacity: 1; }

/* ── Launch button ── */
.btn--launch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-xl);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-fun);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}
.btn--launch:hover, .btn--launch:focus-visible {
  background: #c0303c;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(230,57,70,0.5);
}
.btn--launch:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ============================================================
   MAIN CONTENT — initially hidden
   ============================================================ */
.main-hidden { display: none; }
.main-visible { display: block; }

/* ── Audio button ── */
.audio-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition);
}
.audio-btn:hover { transform: scale(1.1); background: var(--blue); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 400;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.navbar__logo {
  font-family: var(--font-fun);
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}
.navbar__link:hover, .navbar__link:focus-visible { color: var(--yellow); }
.navbar__link--cta {
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-fun);
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.navbar__link--cta:hover, .navbar__link--cta:focus-visible {
  background: #c0303c;
  color: var(--white);
  transform: scale(1.05);
}
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-drawer {
  position: fixed;
  top: 64px;
  right: 0;
  width: min(320px, 90vw);
  height: calc(100dvh - 64px);
  background: var(--dark);
  z-index: 390;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(0);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-drawer[hidden] { transform: translateX(100%); display: flex !important; }
.mobile-drawer__close {
  align-self: flex-end;
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.25rem 0.5rem;
}
.mobile-drawer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-drawer__link {
  font-family: var(--font-fun);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.mobile-drawer__link:hover { color: var(--yellow); }
.mobile-drawer__link--cta {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.mobile-drawer__backdrop {
  position: fixed;
  inset: 64px 0 0;
  background: rgba(0,0,0,0.55);
  z-index: 380;
  backdrop-filter: blur(2px);
}
.mobile-drawer__backdrop[hidden] { display: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100dvh - 64px);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

/* Diagonal stripe overlay — Woody shirt feel */
.hero__stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(230,57,70,0.07) 0px,
    rgba(230,57,70,0.07) 2px,
    transparent 2px,
    transparent 22px
  );
  pointer-events: none;
}

/* Floating star decorations */
.hero__stars-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__star-float {
  position: absolute;
  top: 110%;
  left: var(--l, 50%);
  font-size: clamp(1rem, 2vw, 1.6rem);
  opacity: 0.55;
  animation: floatUp 7s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.55; }
  50%  { opacity: 0.8; }
  100% { transform: translateY(-120vh) rotate(360deg); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.hero__title {
  font-family: var(--font-fun);
  font-size: clamp(3rem, 9vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 72px;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.countdown__unit--red    { background: var(--red); }
.countdown__unit--blue   { background: var(--blue); }
.countdown__unit--yellow { background: var(--yellow); }
.countdown__unit--green  { background: var(--green); }

.countdown__num {
  font-family: var(--font-fun);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.countdown__unit--yellow .countdown__num { color: var(--dark); }
.countdown__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.countdown__unit--yellow .countdown__label { color: rgba(29,53,87,0.8); }

/* ── CTA button ── */
.btn--red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-xl);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-fun);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(230,57,70,0.5);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn--red:hover, .btn--red:focus-visible {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(244,208,63,0.5);
}
.btn--red:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

/* ============================================================
   SECTIONS — shared styles
   ============================================================ */
.section {
  padding: 5rem 1.5rem;
}
.section__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
  display: block;
}
.section__title {
  font-family: var(--font-fun);
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.section__title em {
  font-style: normal;
  color: var(--red);
}

/* ============================================================
   HISTOIRE SECTION
   ============================================================ */
.histoire { background: var(--cream); }
.histoire__text {
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a4a6a;
}

/* Milestone cards */
.milestones {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.milestone {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  flex: 1 1 240px;
  max-width: 300px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}
.milestone:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.milestone--red    { border-left-color: var(--red); }
.milestone--blue   { border-left-color: var(--blue); }
.milestone--yellow { border-left-color: var(--yellow); }

.milestone__emoji {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}
.milestone__title {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.milestone__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5a5a7a;
}

/* ============================================================
   PROGRAMME SECTION
   ============================================================ */
.programme { background: var(--dark); }
.programme .section__eyebrow { color: var(--yellow); }
.programme .section__title { color: var(--white); }
.programme .section__title em { color: var(--yellow); }

.programme__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.programme__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
  animation-delay: var(--delay, 0s);
}
.programme__card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.programme__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-fun);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programme__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.programme__time {
  font-family: var(--font-fun);
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}
.programme__label {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.programme__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   DETAILS SECTION
   ============================================================ */
.details { background: var(--cream); }
.details__grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay, 0s);
}
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.detail-card__icon {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-card__icon--red    { background: rgba(230,57,70,0.12); }
.detail-card__icon--blue   { background: rgba(69,123,157,0.12); }
.detail-card__icon--yellow { background: rgba(244,208,63,0.18); }

.detail-card__title {
  font-family: var(--font-fun);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.detail-card__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a5a7a;
}

/* ============================================================
   RSVP SECTION
   ============================================================ */
.rsvp { background: #f0f4f8; }
.rsvp__card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.rsvp__eyebrow { color: var(--yellow) !important; }
.rsvp__title {
  font-family: var(--font-fun);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.rsvp__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
}
.rsvp__subtitle strong { color: var(--yellow); }

/* Success message */
.rsvp__success {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-fun);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(42,157,143,0.4);
}

/* Form */
.rsvp__form { display: flex; flex-direction: column; gap: 1.2rem; text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}
.form-label--opt { color: rgba(255,255,255,0.45); font-weight: 400; }
.form-fieldset { border: none; }
.form-fieldset .form-label { display: block; margin-bottom: 0.75rem; }

.form-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244,208,63,0.25);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }

/* ── Presence radio ── */
.presence-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.presence-option { cursor: pointer; }
.presence-option input[type="radio"] { display: none; }
.presence-option__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.25);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  cursor: pointer;
}
.presence-option input:checked + .presence-option__label--yes {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(42,157,143,0.4);
}
.presence-option input:checked + .presence-option__label--no {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(69,123,157,0.4);
}
.presence-option__label:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── Guest counts ── */
.guest-counts { display: flex; flex-direction: column; gap: 1.2rem; }

/* ── Number inputs ── */
.number-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.number-input__btn {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.number-input__btn:hover { background: var(--yellow); color: var(--dark); }
.number-input__field {
  width: 52px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-fun);
  font-size: 1.15rem;
  -moz-appearance: textfield;
}
.number-input__field::-webkit-inner-spin-button,
.number-input__field::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── Captcha ── */
.captcha-group .form-label { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.captcha-question { color: var(--yellow); font-weight: 700; }
.captcha-input { max-width: 120px; }

/* ── Submit button ── */
.btn--submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  color: var(--white);
  font-family: var(--font-fun);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  width: 100%;
  box-shadow: 0 4px 20px rgba(69,123,157,0.45);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn--submit:hover, .btn--submit:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(69,123,157,0.6);
  filter: brightness(1.1);
}
.btn--submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn--submit:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ── Form error ── */
.form-error {
  background: rgba(230,57,70,0.18);
  border: 1.5px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #ffb3b8;
  text-align: center;
}

/* ── Honeypot ── */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tabindex: -1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
}
.footer__name {
  font-family: var(--font-fun);
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.footer__event {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer__credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--yellow); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .navbar__links { display: none; }
  .navbar__burger { display: flex; }

  /* Hero */
  .hero { min-height: calc(100dvh - 64px); padding: 3rem 1.25rem; }
  .countdown { gap: 0.75rem; }
  .countdown__unit { min-width: 60px; padding: 0.75rem 0.5rem; }
  .countdown__num { font-size: 1.8rem; }

  /* Milestones */
  .milestones { flex-direction: column; align-items: center; }
  .milestone { max-width: 100%; flex: 1 1 auto; }

  /* Programme grid */
  .programme__grid { grid-template-columns: 1fr; }

  /* Details */
  .details__grid { flex-direction: column; align-items: center; }
  .detail-card { max-width: 100%; }

  /* RSVP */
  .rsvp__card { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Intro */
  .intro__title { font-size: 2.4rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1rem; }
  .hero__title { font-size: 2.6rem; }
  .countdown { gap: 0.5rem; }
  .countdown__unit { min-width: 52px; padding: 0.6rem 0.4rem; }
  .countdown__num { font-size: 1.5rem; }
}
