:root {
  --ivoire: #f6f3ef;
  --ivoire-2: #fbf8f5;
  --carte: rgba(255, 255, 255, 0.82);
  --vert: #356f5f;
  --vert-2: #5f7d74;
  --vert-soft: #a8bfa3;
  --terracotta: #cb7a4f;
  --terracotta-soft: #d89a7a;
  --champagne: #e8d8c3;
  --sable: #d6c2a1;
  --texte: #2f2b29;
  --texte-soft: #5f5a56;
  --ligne: rgba(47, 43, 41, 0.08);
  --ombre: 0 14px 36px rgba(47, 42, 40, 0.08);
  --ombre-soft: 0 10px 24px rgba(47, 42, 40, 0.06);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--texte);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(251, 248, 245, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ligne);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  font-family: "Allura", cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--vert);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--vert);
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.site-nav a:hover {
  opacity: 0.82;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.btn,
.rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.nav-cta {
  padding: 14px 24px;
  box-shadow: 0 12px 28px rgba(203, 122, 79, 0.22);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover,
.btn:hover,
.rsvp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(203, 122, 79, 0.28);
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(53, 111, 95, 0.08);
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2px;
  background: var(--vert);
  border-radius: 99px;
  transition: transform 0.28s ease, opacity 0.28s ease, top 0.28s ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 30px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   GLOBAL TITLES / SECTIONS
========================= */

main {
  overflow: hidden;
}

section {
  position: relative;
}

.section-kicker,
.section-intro,
.hero-kicker,
.rsvp-kicker {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.section-title,
.dress-code h2,
.rsvp-card h2,
.story-card h2,
.ambiance-text h2 {
  margin: 0;
  font-family: "Cardo", serif;
  font-weight: 400;
  color: var(--texte);
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1.04;
}

/* =========================
   FOOTER PREMIUM
========================= */

.site-footer {
  position: relative;
  padding: 48px 20px 42px;
  background: linear-gradient(180deg, #f7f3ef 0%, #f1ece7 100%);
  border-top: 1px solid var(--ligne);
  text-align: center;
  overflow: hidden;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-names {
  font-family: "Allura", cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--vert);
  margin: 0 0 8px;
}

.footer-date {
  margin: 0 0 18px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.footer-divider {
  width: 64px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--vert-soft), transparent);
}

.footer-text {
  margin: 0 0 20px;
  color: var(--texte-soft);
  font-size: 1rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--vert);
  opacity: 0.82;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

@media (max-width: 600px) {
  .site-footer {
    padding: 34px 16px 30px;
  }

  .footer-names {
    font-size: 1.95rem;
  }

  .footer-date {
    margin-bottom: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .footer-divider {
    margin-bottom: 14px;
  }

  .footer-text {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .footer-links {
    gap: 8px 18px;
  }

  .footer-links a {
    font-size: 0.92rem;
  }
}

/* =========================
   HERO
========================= */

#hero {
  margin-top: 78px;
  padding: 76px 0 80px;
  background:
    radial-gradient(circle at 84% 18%, rgba(168, 191, 163, 0.10), transparent 18%),
    radial-gradient(circle at 14% 84%, rgba(203, 122, 79, 0.06), transparent 14%),
    var(--ivoire);
}

.hero-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.photo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(47, 42, 40, 0.10);
}

.photo-card-main {
  width: min(100%, 470px);
  padding: 18px 18px 28px;
  transform: rotate(-3deg);
}

.photo-card-main img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  border-radius: 10px;
}

.photo-caption {
  margin-top: 18px;
  text-align: center;
  font-family: "Allura", cursive;
  font-size: 2.35rem;
  color: var(--vert);
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  margin: 0 0 18px;
  font-family: "Cardo", serif;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 400;
  color: var(--texte);
}

.date {
  margin: 0 0 22px;
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.subtitle {
  margin: 0;
  max-width: 450px;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--texte-soft);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  margin-bottom: 34px;
}

.btn {
  padding: 15px 28px;
  box-shadow: 0 12px 28px rgba(203, 122, 79, 0.20);
}

.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: rgba(203, 122, 79, 0.55);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.countdown {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.countdown-item,
.programme-card,
.story-card,
.faq-item,
.rsvp-card,
.dress-look {
  border-radius: 24px;
  box-shadow: var(--ombre);
}

.countdown-item {
  min-width: 124px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(10px);
}

.countdown-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--vert);
}

.countdown-item p {
  margin: 0;
  color: var(--texte-soft);
}

/* =========================
   INTRO / AMBIANCE
========================= */

#intro {
  padding-bottom: 110px;
}

.ambiance-section {
  padding: 34px 0 52px;
}

.ambiance-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 48px;
}

.ambiance-deco {
  display: flex;
  justify-content: flex-start;
}

.ambiance-deco img {
  width: 240px;
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.ambiance-text {
  text-align: center;
}

.ambiance-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.18;
  margin-bottom: 18px;
}

.ambiance-text p:last-child {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--texte-soft);
}

/* =========================
   STORY
========================= */

.story-section {
  position: relative;
  padding: 18px 0 0;
}

.story-grid {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(47, 42, 40, 0.10);
}

.story-card {
  padding: 48px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(10px);
}

.story-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 22px;
}

.story-card p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--texte-soft);
}

.story-line {
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, var(--vert-soft), transparent);
  margin: 26px 0 24px;
}

.rsvp-reminder {
  margin: 0 !important;
  color: var(--texte) !important;
  font-weight: 500;
}

.section-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
  filter: saturate(0.9);
  animation: decoSoftFloat 10s ease-in-out infinite;
}

.deco-story-top {
  width: 150px;
  top: 26px;
  right: 28px;
  opacity: 0.22;
  transform: rotate(8deg);
}

@keyframes decoSoftFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

/* =========================
   PROGRAMME
========================= */

#programme {
  padding: 110px 0;
}

.programme-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.programme-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(10px);
}

.programme-card img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}

.programme-card h3 {
  margin: 0 0 8px;
  font-family: "Cardo", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.programme-time {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--vert-2);
  font-weight: 500;
}

.programme-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.programme-card p:last-child {
  margin: 0;
  line-height: 1.75;
  color: var(--texte-soft);
}

/* =========================
   DRESS CODE
========================= */

.dress-code {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(168, 191, 163, 0.10), transparent 16%),
    linear-gradient(180deg, #fbf8f5 0%, #f7f3ef 100%);
  overflow: hidden;
}

.dresscode-shell {
  position: relative;
  z-index: 1;
}

.dress-code h2 {
  text-align: center;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.dress-code-text {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--texte-soft);
}

.palette {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.color {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(47, 42, 40, 0.10);
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.dress-code-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.dress-look {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(10px);
}

.dress-look img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.dress-look:hover img {
  transform: scale(1.03);
}

.dress-look span {
  display: block;
  padding: 14px 16px 16px;
  text-align: center;
  font-weight: 500;
  color: var(--texte-soft);
}

.deco-dress-top-right {
    width: 250PX;
    top: 18px;
    right: 18px;
    opacity: 0.8;
}

/* =========================
   FAQ / INFOS
========================= */
.deco-info {
  position: absolute;
  top: -60px;
  left: 50%;
  margin-left: -100px; /* moitié de la width */
  width: 200px;
  opacity: 0.7;
}

.faq-section {
  padding: 110px 0;
  background: var(--ivoire);
}

.faq-shell {
  max-width: 1080px;
}

.faq-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.faq-intro {
  margin-top: 14px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--texte-soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(8px);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: "Cardo", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--texte);
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--vert-soft);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 18px;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.3);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 30px;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 28px;
}

.faq-answer-inner::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--vert-soft), rgba(168, 191, 163, 0));
  margin: 0 0 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--texte-soft);
}

.faq-answer p + p {
  margin-top: 14px;
}

/* =========================
   RSVP
========================= */

.rsvp-section {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(circle at bottom left, rgba(203, 122, 79, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(168, 191, 163, 0.10), transparent 20%),
    #f7f3ef;
  overflow: hidden;
}

.rsvp-card {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--ligne);
  backdrop-filter: blur(12px);
}

.rsvp-kicker {
  text-align: center;
}

.rsvp-card h2 {
  text-align: center;
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.rsvp-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--texte-soft);
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rsvp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  color: var(--texte);
  font-size: 0.96rem;
}

.rsvp-form input,
.rsvp-form textarea,
.rsvp-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(47, 43, 41, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--texte);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.rsvp-form input:focus,
.rsvp-form textarea:focus,
.rsvp-form select:focus {
  border-color: var(--vert-soft);
  box-shadow: 0 0 0 4px rgba(168, 191, 163, 0.18);
  transform: translateY(-1px);
}

.rsvp-form textarea {
  resize: vertical;
  min-height: 130px;
}

.rsvp-btn {
  align-self: center;
  min-width: 280px;
  margin-top: 8px;
  padding: 16px 26px;
  box-shadow: 0 12px 28px rgba(203, 122, 79, 0.22);
}

.rsvp-success,
.rsvp-error {
  margin: 6px 0 0;
  text-align: center;
}

.rsvp-success {
  color: #58725c;
}

.rsvp-error {
  color: #b45d5d;
}

.rsvp-deco {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.34;
}

.rsvp-deco-left {
  width: 240px;
  height: 240px;
  left: -70px;
  top: 80px;
  background: rgba(168, 191, 163, 0.30);
}

.rsvp-deco-right {
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: 60px;
  background: rgba(216, 154, 122, 0.22);
}

.deco-rsvp-left {
  width: 180px;
  left: 18px;
  bottom: 18px;
  opacity: 0.16;
  transform: rotate(-8deg);
}

/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.programme-card:nth-child(2),
.faq-item:nth-child(2),
.dress-look:nth-child(2) {
  transition-delay: 0.08s;
}

.programme-card:nth-child(3),
.faq-item:nth-child(3),
.dress-look:nth-child(3) {
  transition-delay: 0.16s;
}

.programme-card:nth-child(4),
.faq-item:nth-child(4),
.dress-look:nth-child(4) {
  transition-delay: 0.24s;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(24, 21, 19, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.lightbox-caption,
.lightbox-counter {
  color: rgba(255, 255, 255, 0.88);
}

.lightbox-caption {
  margin-top: 14px;
  font-size: 1rem;
}

.lightbox-counter {
  margin-top: 6px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* =========================
   PHOTOS PAGE (MINIMAL)
========================= */

.photos-page {
  background: var(--ivoire);
}

.photos-hero,
.photos-info {
  padding: 110px 0;
}

.photos-hero-container,
.photos-info-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.photos-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.photos-hero-text h1,
.photos-info h2 {
  font-family: "Cardo", serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--texte);
}

.photos-hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.photos-subtitle,
.photos-note p,
.photos-info p,
.photos-steps li {
  color: var(--texte-soft);
  line-height: 1.8;
}

.photos-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 26px;
}

.photos-note {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ligne);
  border-radius: 24px;
  box-shadow: var(--ombre-soft);
  padding: 22px 24px;
}

.photos-note p {
  margin: 0;
}

.photos-note p + p {
  margin-top: 8px;
}

.photos-info-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--ligne);
  border-radius: 28px;
  box-shadow: var(--ombre);
  padding: 40px;
}

.photos-steps {
  padding-left: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero-container,
  .story-grid,
  .photos-hero-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-image,
  .hero-text {
    justify-self: center;
    text-align: center;
  }

  .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .countdown {
    justify-content: center;
  }

  .ambiance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ambiance-deco {
    justify-content: center;
  }

  .story-card,
  .rsvp-card {
    padding: 38px;
  }

  .programme-grid {
    grid-template-columns: 1fr;
  }

  .dress-code-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
    margin-top: 8px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    width: min(86vw, 360px);
    height: calc(100vh - 78px);
    background: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(14px);
    border-left: 1px solid var(--ligne);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.08);
    padding: 28px 22px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    z-index: 1150;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .deco-story-top,
  .deco-dress-top-right,
  .deco-rsvp-left {
    width: 110px;
    opacity: 0.12;
    animation: none;
  }

  .rsvp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  #hero,
  #programme,
  .dress-code,
  .faq-section,
  .rsvp-section,
  .photos-hero,
  .photos-info {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .hero-container,
  .story-grid,
  .photos-hero-container {
    width: calc(100% - 28px);
  }

  .hero-actions {
    margin-top: 26px;
    margin-bottom: 22px;
  }

  .countdown-item {
    min-width: calc(50% - 9px);
  }

  .story-card,
  .rsvp-card,
  .photos-info-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .faq-question {
    padding: 22px 20px;
    font-size: 1.35rem;
  }

  .faq-answer-inner {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: 22px;
  }

  .dress-code-gallery {
    gap: 18px;
  }

  .section-deco {
    opacity: 0.18;
    animation: none;
  }

  .rsvp-deco {
    opacity: 0.18;
  }
}

@media (max-width: 600px) {
  .site-brand {
    font-size: 1.7rem;
  }

  .site-nav {
    top: 72px;
    height: calc(100vh - 72px);
  }

  #hero {
    margin-top: 72px;
  }

  .nav-cta {
    padding: 13px 20px;
  }

  .btn,
  .hero-actions .btn,
  .rsvp-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .countdown {
    gap: 14px;
  }

  .countdown-item {
    min-width: 100%;
  }

  .photo-card-main {
    padding: 14px 14px 22px;
  }

  .photo-caption {
    font-size: 2rem;
  }

  .dress-code-gallery {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 560px) {
  .section-title,
  .dress-code h2,
  .rsvp-card h2,
  .story-card h2,
  .ambiance-text h2 {
    font-size: 2.3rem;
  }
}