/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #eae4cc;
  --cream-mid: #e0d9be;
  --cream-dark: #d4cba8;
  --gold: #8d7040;
  --gold-light: #b89a5e;
  --gold-dark: #5c3d1e;
  --gold-xdark: #3d2810;
  --text: #3a2e1a;
  --text-soft: rgba(58, 46, 26, 0.65);
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "DM Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* Blend-mode fix for black-bg PNGs */
.blend {
  mix-blend-mode: multiply;
}

/* Filter tint for black illustration PNGs */
.tint {
  filter: invert(1) sepia(1) saturate(0.6) hue-rotate(5deg) brightness(0.55);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 140% 60% at 50% 110%,
      rgba(141, 112, 64, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 70% 50% at 15% 5%,
      rgba(141, 112, 64, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 85% 8%,
      rgba(184, 154, 94, 0.08) 0%,
      transparent 60%
    );
}

/* Subtle grid texture */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(141, 112, 64, 0.025) 60px,
      rgba(141, 112, 64, 0.025) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(141, 112, 64, 0.025) 60px,
      rgba(141, 112, 64, 0.025) 61px
    );
  pointer-events: none;
}

/* Decorative illustrations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;
  animation: decoFadeIn 1.2s ease forwards;
}

.hero-deco--palm-l {
  left: -2%;
  bottom: -2%;
  width: clamp(160px, 22vw, 320px);
  transform: scaleX(-1);
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-deco--palm-r {
  right: -2%;
  bottom: -2%;
  width: clamp(140px, 18vw, 280px);
  animation-delay: 0.7s;
  opacity: 0;
}

.hero-deco--avion {
  top: 8%;
  right: 6%;
  width: clamp(80px, 12vw, 180px);
  transform: rotate(-8deg);
  animation-delay: 1s;
  opacity: 0;
}

.hero-deco--soleil {
  top: 5%;
  left: 8%;
  width: clamp(70px, 10vw, 140px);
  animation-delay: 0.9s;
  opacity: 0;
}

.hero-deco--poissons {
  bottom: 25%;
  left: 3%;
  width: clamp(90px, 14vw, 200px);
  animation-delay: 1.1s;
  opacity: 0;
}

@keyframes decoFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-deco--palm-l {
  animation-name: decoFadeInFlip;
}
@keyframes decoFadeInFlip {
  from {
    opacity: 0;
    transform: scaleX(-1) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scaleX(-1) translateY(0);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.hero-eyebrow {
  display: none;
}

.hero-names-wrap {
  animation: fadeUp 0.9s 0.2s ease both;
  line-height: 1;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 300;
  color: var(--gold-dark);
  letter-spacing: -4px;
  line-height: 0.88;
}

.hero-amp {
  display: block;
  font-style: italic;
  font-size: 0.5em;
  color: var(--gold-light);
  letter-spacing: 0;
  line-height: 1.3;
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
  animation: fadeUp 0.9s 0.35s ease both;
}

/* Elegant date line */
.hero-date-line {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-date-line::before,
.hero-date-line::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(141, 112, 64, 0.4);
}

.hero-date-text {
  font-family: var(--ff-sans);
  font-size: clamp(0.6rem, 1.1vw, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s 1.5s ease both;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ══════════════════════════════════════════
   HERO PHOTO
══════════════════════════════════════════ */
.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: clamp(260px, 45vw, 560px);
  object-fit: cover;
  object-position: center 50%;
}

.hero-photo .tint {
  position: absolute;
  inset: 0;
  filter: none;
  background-color: var(--gold-dark);
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.cards-section {
  padding: 5rem 2rem;
  background: var(--gold-dark);
  position: relative;
  overflow: hidden;
}

.cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.015) 50px,
    rgba(255, 255, 255, 0.015) 51px
  );
  pointer-events: none;
}

/* Flag watermark */
.cards-flag {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 35vw, 480px);
  opacity: 0.04;
  pointer-events: none;
}

.cards-grid {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  background: rgba(234, 228, 204, 0.06);
  border: 1px solid rgba(234, 228, 204, 0.18);
  padding: 2.5rem 2rem 2rem;
  text-decoration: none;
  color: var(--cream);
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  background: rgba(234, 228, 204, 0.12);
  border-color: rgba(234, 228, 204, 0.35);
  transform: translateY(-3px);
}

.card-illus {
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(2) saturate(0.5);
  opacity: 0.85;
}

.card-illus--key {
  filter: brightness(3) saturate(0.3);
}

.card-title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(234, 228, 204, 0.65);
  flex: 1;
}

.card-cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--cream-dark);
  margin-top: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.card:hover .card-cta {
  opacity: 1;
}

.card--logement {
  grid-column: 1 / -1;
  cursor: default;
}
.card--logement:hover {
  transform: none;
}

.logements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0.5rem;
}

.logement-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.logement-item-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.logement-item-description {
  font-size: 0.8rem;
  color: rgba(234, 228, 204, 0.65);
  margin-bottom: 10px;
}

.logement-item-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logement-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.logement-link {
  font-size: 0.82rem;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(234, 228, 204, 0.18);
  transition:
    background 0.2s,
    border-color 0.2s,
    padding-left 0.2s;
  letter-spacing: 0.05em;
}

.logement-link:hover {
  background: rgba(234, 228, 204, 0.1);
  border-color: rgba(234, 228, 204, 0.4);
  padding-left: 1.1rem;
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -1px;
}

/* ══════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════ */
.programme-section {
  padding: 7rem 2rem;
  background: var(--cream);
  position: relative;
}

.timeline {
  max-width: 780px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.timeline-item.animate-ready {
  opacity: 0;
  transform: translateY(20px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item--last {
  padding-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.2rem;
  position: relative;
}

.timeline-day {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
}

.timeline-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
}

.timeline-body {
  padding-top: 0.1rem;
}

.timeline-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}

.timeline-subtitle {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.7rem;
  opacity: 0.8;
}

.timeline-item--highlight .timeline-subtitle {
  font-size: 1.1rem;
  opacity: 1;
}

.timeline-text {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.timeline-item--highlight .timeline-body {
  background: linear-gradient(
    135deg,
    rgba(141, 112, 64, 0.07) 0%,
    rgba(141, 112, 64, 0.02) 100%
  );
  border-left: 2px solid rgba(141, 112, 64, 0.3);
  padding: 1.5rem;
  margin-left: -0.75rem;
}

/* Timeline illustration images */
.timeline-illus {
  margin-top: 1rem;
}

.timeline-illus--map {
  width: 80px;
}
.timeline-illus--car {
  width: 110px;
}
.timeline-illus--table {
  width: 110px;
}
.timeline-illus--lit {
  width: 130px;
}
.timeline-illus--palm {
  width: 70px;
}
.timeline-illus--valises {
  width: 110px;
}

.timeline-illus-row {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-top: 1rem;
}

.timeline-illus--shell {
  width: 70px;
}
.timeline-illus--star {
  width: 65px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
  position: relative;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(141, 112, 64, 0.18);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid rgba(141, 112, 64, 0.18);
}

.faq-question {
  list-style: none;
  padding: 1.5rem 0;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-family: var(--ff-sans);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--gold-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

details[open] > .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--text-soft);
  padding: 0 0 1.5rem;
  max-width: 88%;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--gold-xdark);
  color: var(--cream);
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.footer-decos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-deco {
  position: absolute;
  mix-blend-mode: screen;
  opacity: 0.05;
}

.footer-deco--palm-l {
  left: -5%;
  bottom: -10%;
  width: clamp(120px, 20vw, 260px);
  transform: scaleX(-1);
}
.footer-deco--palm-r {
  right: -5%;
  bottom: -10%;
  width: clamp(120px, 20vw, 260px);
}
.footer-deco--map {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 40vw, 450px);
  opacity: 0.03;
}

.footer-names {
  position: relative;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--cream);
}

.footer-tagline {
  position: relative;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: rgba(234, 228, 204, 0.55);
}

.footer-email {
  position: relative;
  color: rgba(234, 228, 204, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(234, 228, 204, 0.25);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.footer-email:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.footer-copy {
  position: relative;
  font-size: 0.7rem;
  color: rgba(234, 228, 204, 0.25);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.15);
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-dates {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  .hero-date-divider {
    display: none;
  }
  .hero-deco--avion {
    display: none;
  }
  .programme-section::before {
    left: 38px;
  }
  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
  }
  .timeline-item--highlight .timeline-body {
    margin-left: -0.5rem;
    padding: 1rem;
  }
  .timeline-num {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .cards-section {
    padding: 3rem 1.25rem;
  }
  .programme-section {
    padding: 4.5rem 1.25rem;
  }
  .faq-section {
    padding: 4.5rem 1.25rem;
  }
  .hero-deco--palm-l,
  .hero-deco--palm-r {
    width: 120px;
  }
  .hero-deco--soleil,
  .hero-deco--poissons {
    display: none;
  }
}
