/* ==========================================================
   Le Rucher de MANG — Design système moderne
   Palette miel & charbon, hexagones animés, type éditoriale
   ========================================================== */

:root {
  /* Couleurs */
  --bg: #fbf6ec;            /* ivoire crème */
  --bg-warm: #f5ecd8;       /* miel pâle */
  --bg-deep: #1a1410;       /* charbon brun très foncé */
  --ink: #2a1f17;           /* texte principal */
  --ink-soft: #5a4a3a;      /* texte secondaire */
  --ink-mute: #8b7560;      /* texte tertiaire */
  --line: #e6d9bf;          /* lignes & bordures */
  --honey: oklch(0.74 0.16 75);   /* miel doré principal */
  --honey-deep: oklch(0.58 0.17 60); /* miel ambré profond */
  --honey-light: oklch(0.88 0.10 85); /* miel clair */
  --accent: oklch(0.45 0.12 35); /* propolis brun-rouge */

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 60px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; /* sera remplacé par curseur abeille (sauf mobile) */
}

@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
  .bee-cursor, .bee-trail { display: none !important; }
}

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

a { color: inherit; text-decoration: none; }

::selection {
  background: var(--honey);
  color: var(--bg-deep);
}

/* ==========================================================
   Curseur abeille
   ========================================================== */
.bee-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
  will-change: transform;
}
.bee-cursor svg { width: 100%; height: 100%; }
.bee-cursor.hover { transform: translate(-50%, -50%) scale(1.4); }

.bee-trail {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--honey);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* ==========================================================
   Motif hexagonal de fond (signature visuelle)
   ========================================================== */
.hex-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><path d='M40 1L78 23v46L40 91 2 69V23z' fill='none' stroke='%23e6d9bf' stroke-width='1'/></svg>");
  background-size: 80px 92px;
}

/* ==========================================================
   Navigation
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  mix-blend-mode: difference;
  color: #fbf6ec;
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--ink);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--honey);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--bg-deep);
  font-size: 18px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: all 0.3s;
}
.nav.scrolled .nav-cta {
  background: var(--bg-deep);
  color: var(--bg);
  border-color: var(--bg-deep);
}
.nav-cta:hover {
  background: var(--honey);
  color: var(--bg-deep);
  border-color: var(--honey);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute;
  inset: -10% -5%;
  background-image: url("../Images/Abeilles1.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.1) saturate(1.15);
  will-change: transform;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(26,20,16,0.6) 80%),
    linear-gradient(to bottom, rgba(26,20,16,0.4) 0%, transparent 30%, transparent 70%, rgba(26,20,16,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  color: #fbf6ec;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--honey);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-title .word {
  display: block;
  overflow: hidden;
}
.hero-title .word span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .word:nth-child(1) span { animation-delay: 0.15s; }
.hero-title .word:nth-child(2) span { animation-delay: 0.3s; }
.hero-title .word:nth-child(3) span { animation-delay: 0.45s; font-style: italic; color: var(--honey); }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 300;
  max-width: 540px;
  color: rgba(251, 246, 236, 0.85);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-meta {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  right: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.7);
  z-index: 3;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-item:nth-child(2) { align-items: center; text-align: center; }
.hero-meta-item:nth-child(3) { align-items: flex-end; text-align: right; }
.hero-meta-item strong { color: var(--honey-light); font-weight: 500; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px; height: 50px;
  border: 1px solid rgba(251, 246, 236, 0.4);
  border-radius: 20px;
  display: grid;
  place-items: center;
}
.scroll-cue::after {
  content: "";
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--honey);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes rise {
  to { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0% { transform: translateY(-12px); opacity: 0; }
  40%, 60% { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 700px) {
  .hero-meta { font-size: 10px; gap: 16px; flex-wrap: wrap; }
  .hero-meta-item:nth-child(2) { display: none; }
}

/* ==========================================================
   Sections génériques
   ========================================================== */
section.block {
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  z-index: 1;
}

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

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--honey-deep);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--honey-deep);
}

.section-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ==========================================================
   Compteurs
   ========================================================== */
.stats {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(60px, 10vh, 100px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><path d='M40 1L78 23v46L40 91 2 69V23z' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.08'/></svg>");
  background-size: 80px 92px;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 24px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  font-weight: 400;
  color: var(--honey);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suffix {
  font-size: 0.4em;
  color: rgba(251,246,236,0.6);
  font-style: italic;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.7);
  margin-top: 14px;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ==========================================================
   À propos
   ========================================================== */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-wrap::after {
  content: "MANG";
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--bg);
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.about-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-body p:first-of-type {
  font-size: 22px;
  color: var(--ink);
}
.about-body strong {
  color: var(--ink);
  font-weight: 500;
}
.mang-letters {
  display: flex;
  gap: 12px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.mang-letter {
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 4px;
  font-family: var(--serif);
  background: var(--bg-warm);
  transition: all 0.4s ease;
}
.mang-letter:hover {
  background: var(--honey);
  border-color: var(--honey);
  transform: translateY(-3px);
}
.mang-letter b {
  display: block;
  font-size: 32px;
  font-weight: 500;
  color: var(--honey-deep);
  font-style: italic;
}
.mang-letter:hover b { color: var(--bg-deep); }
.mang-letter span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   Catalogue / produits
   ========================================================== */
.catalogue {
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product {
  position: relative;
  background: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.2,.7,.2,1);
  border: 1px solid var(--line);
  display: block;
  cursor: none;
}
@media (hover: none), (max-width: 900px) { .product { cursor: pointer; } }
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(122, 78, 30, 0.25);
  border-color: var(--honey);
}
.product-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 30px;
  transition: transform 0.6s ease;
}
.product:hover .product-img img {
  transform: scale(1.08) rotate(-2deg);
}
.product-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--bg-deep);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product-tag.new { background: var(--accent); }

.product-body {
  padding: 28px 28px 32px;
  border-top: 1px solid var(--line);
}
.product-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}
.product-title em {
  font-style: italic;
  color: var(--honey-deep);
  font-weight: 400;
}
.product-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  min-height: 66px;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.product-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0;
}
.product-arrow {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.product:hover .product-arrow {
  background: var(--bg-deep);
  border-color: var(--bg-deep);
  color: var(--bg);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .products { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}

/* Bandeau livraison */
.delivery-bar {
  margin-top: 60px;
  padding: 28px 36px;
  background: var(--bg-deep);
  color: var(--bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.delivery-bar-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--honey);
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.delivery-bar-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  flex: 1;
  min-width: 280px;
}
.delivery-bar-text strong { color: var(--honey-light); font-weight: 500; }

/* ==========================================================
   Récupération d'essaims
   ========================================================== */
.swarm {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #f5e9cc 100%);
  position: relative;
  overflow: hidden;
}
.swarm-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--honey-deep);
  opacity: 0.18;
}
.swarm-hex {
  position: absolute;
  width: 280px;
  height: 320px;
  top: -80px;
  right: -60px;
  transform: rotate(8deg);
}
.swarm-hex-2 {
  width: 180px;
  height: 210px;
  top: auto;
  bottom: -40px;
  left: 8%;
  right: auto;
  transform: rotate(-12deg);
  opacity: 0.7;
}
.swarm-hex-3 {
  width: 110px;
  height: 130px;
  top: 35%;
  right: 28%;
  transform: rotate(20deg);
  opacity: 0.5;
}
.swarm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.swarm-text p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin-top: 22px;
  max-width: 56ch;
}
.swarm-text p strong { color: var(--honey-deep); font-weight: 600; }

.swarm-card {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(40, 24, 8, 0.5);
}
.swarm-card-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 18px;
}
.swarm-card-zone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--honey-light);
  margin-bottom: 22px;
}
.swarm-card-zone svg { flex-shrink: 0; color: var(--honey); }
.swarm-phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.swarm-phone:hover { color: var(--honey); }
.swarm-card-help {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(251, 246, 236, 0.7);
  margin-bottom: 28px;
  line-height: 1.5;
}
.swarm-tips {
  list-style: none;
  border-top: 1px solid rgba(232, 185, 74, 0.25);
  padding-top: 22px;
  display: grid;
  gap: 12px;
}
.swarm-tips li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(251, 246, 236, 0.85);
}
.swarm-tips span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--honey);
  color: var(--bg-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .swarm-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   Honey-flow visuel (entre sections)
   ========================================================== */
.honey-flow {
  position: relative;
  height: 280px;
  background: var(--bg-warm);
  overflow: hidden;
}
.honey-flow svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ==========================================================
   Timeline
   ========================================================== */
.history {
  background: var(--bg);
  position: relative;
}
.timeline {
  position: relative;
  margin-top: 80px;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--honey-deep) 0%, var(--honey) 50%, var(--line) 100%);
}
.t-event {
  position: relative;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.t-event.visible { opacity: 1; transform: translateY(0); }
.t-event::before {
  content: "";
  position: absolute;
  left: -40px; top: 12px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--honey-deep);
  box-shadow: 0 0 0 4px var(--bg);
}
.t-event.major::before {
  background: var(--honey);
  border-color: var(--honey-deep);
  width: 18px; height: 18px;
  left: -41px;
}
.t-year {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--honey-deep);
  line-height: 1;
}
.t-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}
.t-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
}

@media (max-width: 700px) {
  .t-event { grid-template-columns: 1fr; gap: 8px; padding-bottom: 50px; }
  .t-year { font-size: 38px; }
}

/* ==========================================================
   Galerie
   ========================================================== */
.gallery {
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(80px, 12vh, 160px) var(--gutter);
}
.gallery .section-title { color: var(--bg); }
.gallery .section-lead { color: rgba(251,246,236,0.7); }
.gallery .section-label { color: var(--honey); }
.gallery .section-label::before { background: var(--honey); }

.gallery-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
}
.g-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: none;
}
@media (hover: none), (max-width: 900px) { .g-item { cursor: pointer; } }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.5s;
  filter: saturate(0.9) brightness(0.95);
}
.g-item:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1); }

.g-item::after {
  content: "↗";
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(251,246,236,0.9);
  color: var(--bg-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover::after { opacity: 1; transform: translate(0,0); }

/* mosaïque variée */
.g-item.s1 { grid-column: span 4; grid-row: span 4; }
.g-item.s2 { grid-column: span 4; grid-row: span 3; }
.g-item.s3 { grid-column: span 4; grid-row: span 3; }
.g-item.s4 { grid-column: span 4; grid-row: span 3; }
.g-item.s5 { grid-column: span 4; grid-row: span 4; }
.g-item.s6 { grid-column: span 4; grid-row: span 3; }
.g-item.s7 { grid-column: span 6; grid-row: span 3; }
.g-item.s8 { grid-column: span 6; grid-row: span 3; }
.g-item.s9 { grid-column: span 4; grid-row: span 3; }
.g-item.s10 { grid-column: span 4; grid-row: span 3; }
.g-item.s11 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-item.s1, .g-item.s2, .g-item.s3, .g-item.s4, .g-item.s5,
  .g-item.s6, .g-item.s7, .g-item.s8, .g-item.s9, .g-item.s10, .g-item.s11 {
    grid-column: span 1; grid-row: span 2;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,7,5,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(20px);
}
.lightbox.open { display: flex; animation: lbIn 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 4px; box-shadow: 0 30px 100px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-close:hover { background: var(--honey); border-color: var(--honey); color: var(--bg-deep); }
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================
   Contact
   ========================================================== */
.contact {
  background: var(--bg);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 80px;
}
.contact-info p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-of-type { border-bottom: 1px solid var(--line); }
.contact-detail-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  width: 90px;
  flex-shrink: 0;
  padding-top: 4px;
}
.contact-detail-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

/* Form */
.form {
  background: var(--bg-warm);
  padding: 48px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.field {
  position: relative;
  margin-bottom: 24px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 24px 0 10px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.field textarea { min-height: 140px; }
.field label {
  position: absolute;
  left: 0; top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
  pointer-events: none;
  transition: all 0.3s ease;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--honey-deep); }
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-deep);
}
.btn-submit {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--bg-deep);
  color: var(--bg);
  border: none;
  padding: 18px 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-submit:hover {
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(122, 78, 30, 0.4);
}
.btn-submit svg { transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 32px 24px; }
}

/* ==========================================================
   Footer
   ========================================================== */
footer.foot {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 80px var(--gutter) 36px;
}
.foot-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  color: var(--honey);
  margin-bottom: 20px;
}
.foot-tag {
  font-family: var(--serif);
  font-size: 19px;
  color: rgba(251,246,236,0.7);
  max-width: 380px;
  line-height: 1.5;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 6px 0; font-family: var(--serif); font-size: 17px; }
.foot-col a:hover { color: var(--honey); }
.foot-bot {
  max-width: var(--maxw);
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 800px) {
  .foot-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .foot-brand { font-size: 42px; }
}

/* ==========================================================
   Reveal au scroll
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* abeille décorative animée */
.flying-bee {
  position: absolute;
  width: 50px; height: 50px;
  z-index: 5;
  animation: fly 22s linear infinite;
  pointer-events: none;
  opacity: 0.8;
}
@keyframes fly {
  0%   { transform: translate(-100px, 200px) rotate(20deg); }
  20%  { transform: translate(30vw, 100px) rotate(-5deg); }
  40%  { transform: translate(60vw, 250px) rotate(15deg); }
  60%  { transform: translate(40vw, 400px) rotate(-10deg); }
  80%  { transform: translate(75vw, 200px) rotate(20deg); }
  100% { transform: translate(110vw, 300px) rotate(-5deg); }
}
