/* ------------------------------------------------------------------
   Morgane & Maxime — site mariage
   Système design tiré de l'invitation
   ------------------------------------------------------------------ */

:root {
  /* Couleurs */
  --navy: #2a3a5e;          /* bleu nuit principal */
  --navy-deep: #232f4d;
  --navy-soft: #3a4a70;
  --cream: #f4ede0;         /* crème principal */
  --cream-warm: #ebe2d0;
  --ivory: #faf6ee;
  --taupe: #b8aa8c;         /* beige titre invitation */
  --taupe-soft: #cabd9f;
  --line-light: rgba(244, 237, 224, 0.35);
  --line-dark: rgba(42, 58, 94, 0.25);

  /* Typographie */
  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-script: "Allura", "Pinyon Script", "Mrs Saint Delafield", cursive;
  --font-label: "Cormorant Garamond", Georgia, serif;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ------------------------------- NAV --------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s ease, border-color .4s ease, color .4s ease;
  border-bottom: 1px solid transparent;
  color: var(--cream);
}
.nav.is-scrolled {
  background: rgba(42, 58, 94, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-light);
}
.nav.on-cream {
  color: var(--navy);
}
.nav.on-cream.is-scrolled {
  background: rgba(244, 237, 224, 0.94);
  border-bottom-color: var(--line-dark);
}
.nav__brand {
  font-family: var(--font-script);
  font-size: 28px;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 0.92;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

/* Burger button */
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: inherit;
  margin-left: 16px;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .4s ease, top .4s ease;
  transform-origin: center;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* Force dark theme on nav while menu is open */
.nav.has-menu-open {
  color: var(--cream);
  background: rgba(42, 58, 94, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-light);
}

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.nav__mobile.is-open { opacity: 1; visibility: visible; }
.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
}
.nav__mobile-inner a {
  font-family: var(--font-serif);
  font-size: clamp(30px, 8vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  padding: 6px 18px;
  position: relative;
}
.nav__mobile.is-open .nav__mobile-inner a {
  opacity: 1;
  transform: translateY(0);
}
.nav__mobile-inner a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--taupe);
  transform: translateX(-50%);
  transition: width .35s ease;
}
.nav__mobile-inner a:hover::after,
.nav__mobile-inner a:focus-visible::after { width: 60%; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}
@media (min-width: 721px) {
  .nav__mobile { display: none; }
}
/* ------------------------------- HERO -------------------------------- */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(42, 58, 94, 0.78), rgba(35, 47, 77, 0.92)),
    url("assets/famille.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: var(--cream);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--gutter) 100px;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(35, 47, 77, 0.65) 100%);
  pointer-events: none;
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}
.hero__wreath {
  width: clamp(220px, 26vw, 320px);
  margin: 24px auto 24px;
  position: relative;
}
.hero__wreath svg { width: 100%; height: auto; display: block; }

.hero__names {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1;
  color: var(--taupe);
  letter-spacing: -0.01em;
  margin: 0;
  white-space: nowrap;
}
.hero__names .amp {
  font-style: italic;
  font-weight: 400;
  margin: 0 0.08em;
}
.hero__intro {
  margin: 28px auto 22px;
  font-family: var(--font-label);
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.92;
  max-width: 540px;
}
.hero__date {
  font-family: var(--font-script);
  font-size: clamp(36px, 4.6vw, 66px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: currentColor;
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 40vh;
    padding: 100px 20px 80px;
  }
  .hero__wreath { display: none; }
  .hero__scroll { bottom: 22px; }
}
@media (max-width: 600px) {
  .hero__names { font-size: clamp(38px, 11vw, 56px); white-space: normal; }
}

/* ----------------------------- SECTION ------------------------------- */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.section--cream { background: var(--cream); color: var(--navy); }
.section--ivory { background: var(--ivory); color: var(--navy); }
.section--navy  { background: var(--navy); color: var(--cream); }

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.section__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 400;
  opacity: 0.85;
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 86px);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 64px;
  line-height: 1;
}
.section--navy .section__title { color: var(--cream); }

/* ---------------------------- PROGRAMME ------------------------------ */
.programme {
  display: grid;
  gap: 56px;
  max-width: 720px;
  margin: 0 auto;
}
.event {
  text-align: center;
  position: relative;
  padding: 8px 0;
}
.event__time {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  font-weight: 500;
}
.event__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  margin: 0 0 4px;
  font-style: italic;
  font-weight: 400;
}
.event__location {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  margin: 0;
  opacity: 0.78;
  line-height: 1.5;
}
.event__map-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .25s ease;
}
.event__map-link:hover { opacity: 0.7; }
.event__pdf-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 16px);
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 0.75;
  transition: opacity .25s ease;
}
.event__pdf-link:hover { opacity: 1; }
.event__pdf-link span { font-style: normal; margin-right: 4px; opacity: 0.7; }
.event__sep {
  display: block;
  width: 1px;
  height: 26px;
  background: currentColor;
  opacity: 0.25;
  margin: 24px auto 0;
}
.event:last-child .event__sep { display: none; }

.programme__floral {
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: 180px;
  opacity: 0.5;
  pointer-events: none;
}

/* ------------------------------ LIEUX -------------------------------- */
.venues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .venues { grid-template-columns: 1fr; }
}
.venue {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid var(--line-light);
  padding: 0 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s, transform .3s;
}
.venue:hover {
  background: rgba(244, 237, 224, 0.08);
  transform: translateY(-2px);
}
.venue__map {
  margin: 0 -32px 24px;
  height: 240px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  filter: saturate(0.7) brightness(0.92);
}
.venue__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.venue__kicker {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0;
}
.venue__name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  margin: 0 0 4px;
  line-height: 1.1;
}
.venue__address {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}
.venue__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.venue__meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.venue__cta {
  margin-top: auto;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  opacity: 0.85;
  transition: opacity .2s, gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.venue__cta:hover { opacity: 1; gap: 16px; }
.venue__cta-arrow {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0;
}

/* Map */
.map {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid var(--line-light);
  padding: 28px;
  overflow: hidden;
}
.map__svg { width: 100%; height: auto; display: block; }
.map__legend {
  position: absolute;
  bottom: 20px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* ------------------------------ INFOS -------------------------------- */
.infos__subtitle {
  font-family: var(--font-script);
  font-size: clamp(36px, 4.2vw, 52px);
  text-align: center;
  margin: 0 0 36px;
  color: var(--taupe);
  font-weight: 400;
  line-height: 1.1;
}
.infos__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 72px auto;
  max-width: 280px;
  color: var(--navy);
  opacity: 0.45;
}
.infos__divider-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.infos__divider-dot {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

/* -------------------------- PLAN DE TABLE ---------------------------- */
.plan__search {
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
}
.plan__search-label {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.plan__search-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 12px 4px 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  text-align: center;
  outline: none;
  transition: border-color .3s ease;
}
.plan__search-input::placeholder {
  color: rgba(42, 58, 94, 0.4);
}
.plan__search-input:focus {
  border-bottom-color: var(--taupe);
}
.plan__search-results {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.plan__search-result {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.plan__search-name {
  font-style: italic;
  color: var(--taupe);
  font-size: 1.15em;
}
.plan__search-sep {
  opacity: 0.4;
}
.plan__search-table {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}
.plan__search-result--empty {
  font-style: italic;
  opacity: 0.6;
  display: block;
}

.plan {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
}
.plan__table {
  background: rgba(42, 58, 94, 0.03);
  border: 1px solid var(--line-dark);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background .3s ease, transform .3s ease, border-color .3s ease, opacity .3s ease;
}
.plan__table:hover {
  background: rgba(42, 58, 94, 0.06);
  transform: translateY(-2px);
}
.plan__table--honor {
  background: rgba(184, 170, 140, 0.12);
  border-color: rgba(184, 170, 140, 0.55);
}
.plan__table--honor:hover {
  background: rgba(184, 170, 140, 0.18);
}
.plan__table--match {
  border-color: var(--taupe);
  background: rgba(184, 170, 140, 0.14);
  transform: translateY(-2px);
}
.plan__table--dim {
  opacity: 0.35;
}
.plan__table-kicker {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0;
}
.plan__table-name {
  font-family: var(--font-script);
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 400;
  color: var(--taupe);
  margin: 0 0 14px;
  line-height: 1;
}
.plan__table--honor .plan__table-name {
  font-size: clamp(34px, 3.6vw, 46px);
}
.plan__guests {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.plan__guest {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.35;
  font-style: italic;
  opacity: 0.85;
  padding: 2px 0;
}
.plan__guest--match {
  font-style: normal;
  font-weight: 500;
  color: var(--taupe);
  opacity: 1;
  position: relative;
}
.plan__guest--match::before,
.plan__guest--match::after {
  content: "·";
  display: inline-block;
  margin: 0 8px;
  opacity: 0.5;
}

@media (max-width: 540px) {
  .plan {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------ CHAMBRES ----------------------------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
}
.rooms__venue {
  background: rgba(42, 58, 94, 0.03);
  border: 1px solid var(--line-dark);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rooms__venue-name {
  font-family: var(--font-script);
  font-size: clamp(32px, 3.4vw, 42px);
  font-weight: 400;
  color: var(--taupe);
  margin: 0 0 18px;
  line-height: 1;
  text-align: center;
}
.rooms__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.rooms__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 58, 94, 0.1);
}
.rooms__item:last-child {
  border-bottom: 0;
}
.rooms__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: right;
}
.rooms__guests {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 540px) {
  .rooms {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rooms__item {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }
}

/* ------------------------------ FAQ ---------------------------------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line-dark);
}
.faq__item:first-child { border-top: 1px solid var(--line-dark); }
.faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: 0.01em;
}
.faq__btn:hover { color: var(--navy-deep); }
.faq__icon {
  font-family: var(--font-serif);
  font-size: 22px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform .3s;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__item.is-open .faq__panel { max-height: 400px; }
.faq__answer {
  padding: 0 0 28px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
  opacity: 0.82;
  max-width: 620px;
}

/* ----------------------------- CONTACT ------------------------------- */
.contact {
  text-align: center;
  display: grid;
  gap: 56px;
}
.contact__people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .contact__people { grid-template-columns: 1fr; gap: 32px; }
}
.person__name {
  font-family: var(--font-script);
  font-size: clamp(38px, 4.4vw, 56px);
  margin: 0 0 8px;
  line-height: 1;
  color: var(--taupe);
}
.person__phone {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s;
}
.person__phone:hover { color: var(--taupe); }
.contact__address {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-style: italic;
  line-height: 1.6;
  opacity: 0.88;
  margin: 0;
}

/* ----------------------------- FOOTER -------------------------------- */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 64px var(--gutter) 40px;
  text-align: center;
  border-top: 1px solid var(--line-light);
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--taupe);
  font-feature-settings: "tnum";
}
.countdown__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.countdown__sep {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  opacity: 0.4;
  align-self: center;
  line-height: 1;
}
.footer__line {
  width: 1px;
  height: 28px;
  background: var(--line-light);
  margin: 0 auto 24px;
}
.footer__sig {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--taupe);
  margin: 0 0 6px;
  line-height: 1;
}
.footer__date {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0;
}

/* --------------------------- ANIMATIONS ------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal[data-delay="5"] { transition-delay: .60s; }

/* ----------------------------- PHOTOS -------------------------------- */
.photos {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 800px) {
  .photos { grid-template-columns: 1fr; gap: 24px; }
}
.photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-soft);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.photo:hover img { transform: scale(1.03); }
.photo--couple {
  aspect-ratio: 4 / 5;
}
.photo--family {
  aspect-ratio: 4 / 3;
  margin-top: clamp(20px, 6vw, 80px);
}
.photos__caption {
  font-family: var(--font-script);
  font-size: clamp(28px, 3vw, 40px);
  text-align: center;
  margin: 28px 0 0;
  opacity: 0.85;
  line-height: 1.1;
  color: var(--taupe);
}
.photos__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 19px);
  text-align: center;
  max-width: 520px;
  margin: 14px auto 0;
  opacity: 0.78;
  line-height: 1.7;
}

/* ----------------------------- DECOR --------------------------------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px auto;
  opacity: 0.55;
  max-width: 280px;
}
.divider__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.divider__dot {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
