/* =========================
   VARIABLES / COULEURS
========================== */
:root {
  --bg: #f6f1e9;
  --paper: #ffffff;
  --ink: #3f3026;
  --muted: #7a6657;
  --accent: #8a6b4f;
  --line: rgba(63,48,38,.12);
  --shadow: 0 24px 60px rgba(0,0,0,.08);
  --shadow-soft: 0 14px 40px rgba(0,0,0,.10);
  --radius: 10px;
}

/* =========================
   BASE / RESET
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

/* =========================
   NAVBAR
========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246,241,233,.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .35s ease, color .35s ease;
}

.nav-links a:hover {
  background: rgba(138,107,79,.10);
  color: var(--ink);
}

/* =========================
   DROPDOWN NAVBAR
========================== */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .35s ease, color .35s ease;
  cursor: pointer;
}

.dropdown:hover .dropdown-toggle {
  background: rgba(138,107,79,.10);
  color: var(--ink);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(246,241,233,.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  min-width: 180px;
  box-shadow: var(--shadow-soft);
  z-index: 100;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-menu a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background .25s ease, color .25s ease;
}

.dropdown-menu a:hover {
  background: rgba(138,107,79,.10);
  color: var(--ink);
}

.dropdown-group-label {
  display: block;
  padding: 10px 20px 4px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
  pointer-events: none;
}

.dropdown-sub {
  padding-left: 28px !important;
}

/* =========================
   HERO / HEADER PRINCIPAL
========================== */
.hero.hero-logo {
  background: #fffaf7
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border-bottom: 1px solid var(--line);
}

.hero-logo-content {
  text-align: center;
  padding: 72px 20px;
}

.hero-logo-img {
  width: clamp(260px, 40vw, 480px); 
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.hero-logo-content p {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  font-size: 16px;
}

/* =========================
   CONTENEUR GLOBAL
========================== */
.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* =========================
   SECTIONS GÉNÉRALES
========================== */
.section {
  padding: 92px 0;
  scroll-margin-top: 90px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.split {
  display: flex;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

/* =========================
   TEXTE DES SECTIONS
========================== */
.copy {
  flex: 1;
  min-width: 280px;
}

.copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.2vw, 46px);
  margin: 0 0 14px;
  letter-spacing: .02em;
}

.copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

.meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.meta span {
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}

/* =========================
   IMAGE PRINCIPALE DES SECTIONS
========================== */
.media {
  flex: 1.25;
  min-width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(63,48,38,.10);
  position: relative;
}

.media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}

.media:hover img {
  transform: scale(1.06);
}

.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 45%);
  pointer-events: none;
}

/* =========================
   BOUTONS
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 1px solid rgba(63,48,38,.18);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, border-color .35s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(138,107,79,.10);
  border-color: rgba(138,107,79,.35);
}

.arrow {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

/* =========================
   CARROUSEL - STRUCTURE
========================== */
.carousel-section {
  margin-top: 52px;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 20px;
}

.carousel-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 500;
  margin: 0;
  letter-spacing: .02em;
}

.carousel-buttons {
  display: flex;
  gap: 10px;
}

/* =========================
   BOUTONS FLÈCHES DU CARROUSEL
========================== */
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(63,48,38,.18);
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all .3s ease;
}

.carousel-btn:hover {
  background: rgba(138,107,79,.12);
  transform: translateY(-2px);
}

/* =========================
   PISTE DU CARROUSEL
========================== */
.photo-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.photo-carousel::-webkit-scrollbar {
  display: none;
}

/* =========================
   ÉLÉMENT INDIVIDUEL DU CARROUSEL
========================== */
.carousel-item {
  flex: 0 0 340px;
  text-decoration: none;
  color: var(--ink);
}

.carousel-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

.carousel-item:hover img {
  transform: scale(1.03);
}

.carousel-item span {
  display: block;
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: .02em;
}

/* =========================
   ANIMATIONS AU SCROLL
========================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1), filter .9s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
   ABOUT SECTION
========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  margin-top: 34px;
  align-items: stretch;
}

.about-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(63,48,38,.10);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .02em;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}

.about-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.about-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 500;
}

.about-item span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.about-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  min-width: 28px;
  transform: translateY(2px);
}

.about-quote-center {
  max-width: 900px;
  margin: 54px auto 18px;
  padding: 26px 30px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--ink);
  position: relative;
}

.about-quote-center::before,
.about-quote-center::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: rgba(138,107,79,.28);
  margin: 0 auto 22px;
}

.about-quote-center::after {
  margin: 22px auto 0;
}

/* =========================
   FOOTER
========================== */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  padding: 64px 0 32px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  transition: color .25s ease;
}

.footer-col ul li a:hover {
  color: var(--ink);
}

.footer-group-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 14px;
  list-style: none;
  pointer-events: none;
}

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-col address a {
  text-decoration: none;
  color: var(--muted);
  transition: color .25s ease;
}

.footer-col address a:hover {
  color: var(--ink);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  transition: all .3s ease;
  background: rgba(255,255,255,.6);
}

.footer-social a:hover {
  background: rgba(138,107,79,.10);
  border-color: rgba(138,107,79,.35);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom a {
  text-decoration: none;
  color: var(--muted);
  transition: color .25s ease;
}

.footer-bottom a:hover {
  color: var(--ink);
}

/* =========================
   RESPONSIVE / MOBILE
========================== */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

.media img {
    height: auto;
  }

  .carousel-item {
    flex: 0 0 280px;
  }

  .carousel-item img {
    height: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-quote {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* =========================
   BURGER MENU MOBILE
========================== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .35s ease;
}

/* Croix quand menu ouvert */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246,241,233,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 14px;
  }

  /* Dropdown mobile */
  .dropdown {
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: none;
    padding: 4px 0 4px 16px;
    min-width: unset;
  }

  .dropdown-menu.mobile-open {
    display: flex;
  }

  .dropdown-menu a {
    padding: 8px 10px;
  }

   .dropdown-group-label {
    padding: 10px 10px 4px;
    font-size: 10px;
  }

  .dropdown-sub {
    padding-left: 20px !important;
  }

  .footer-group-label {
    margin-top: 10px;
  }
}

