/* ============================================================
   LA CORTE VERDE VENEZIA — style.css
   Créa'Zitto · Agence Web Suisse Romande
   ============================================================ */

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

:root {
  --bg:  #f5f2ec;
  --bg2: #edeae2;
  --bg3: #e3dfd5;
  --c1:  #1c1f18;
  --c2:  #4a6741;
  --c3:  #c8a96e;
  --c3l: #dfc08a;
  --c1m: rgba(28,31,24,.55);
  --c2m: rgba(74,103,65,.12);
  --white: #fff;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', sans-serif;
  --nav-h: 76px;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in:  cubic-bezier(.55,0,1,.45);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background-color: var(--bg);
  color: var(--c1);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: none; font-family: var(--f-body); }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ── SR-ONLY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── FOCUS VISIBLE ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c2);
  outline-offset: 3px;
}

/* ── GRAIN SVG ───────────────────────────────────────────── */
.grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.035;
  animation: grain-anim 8s steps(10) infinite;
}

@keyframes grain-anim {
  0%,100%{transform:translate(0,0)}
  10%{transform:translate(-2%,-2%)}
  20%{transform:translate(2%,2%)}
  30%{transform:translate(-1%,3%)}
  40%{transform:translate(3%,-1%)}
  50%{transform:translate(-3%,1%)}
  60%{transform:translate(1%,-3%)}
  70%{transform:translate(2%,3%)}
  80%{transform:translate(-2%,1%)}
  90%{transform:translate(1%,-1%)}
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cur, .cur-r {
  display: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s, border-color .3s;
}

@media (pointer: fine) {
  .cur {
    display: block;
    width: 8px; height: 8px;
    background: var(--c2);
    mix-blend-mode: multiply;
  }
  .cur-r {
    display: block;
    width: 36px; height: 36px;
    border: 1px solid rgba(74,103,65,.4);
    background: transparent;
    transition: width .5s var(--ease-out), height .5s var(--ease-out), border-color .3s;
  }
  body:has(a:hover) .cur,
  body:has(button:hover) .cur { width: 5px; height: 5px; background: var(--c3); }
  body:has(a:hover) .cur-r,
  body:has(button:hover) .cur-r { width: 54px; height: 54px; }
}

/* ── LABELS ──────────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: .75rem;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1px solid var(--c2);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .35s var(--ease-out), color .35s var(--ease-out);
}

.btn-outline:hover { background: var(--c2); }

/* ═══════════════════════════════════════════════════════════
   INTRO CINÉMATIQUE
═══════════════════════════════════════════════════════════ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c1);
  transition: opacity .8s var(--ease-out);
}

#intro.hidden { opacity: 0; pointer-events: none; }

.intro-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.intro-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,31,18,.7) 0%, rgba(28,31,18,.35) 50%, rgba(28,31,18,.8) 100%);
  z-index: 1;
}

.intro-content {
  position: relative; z-index: 3;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  animation: intro-in 1.2s var(--ease-out) .4s both;
}

@keyframes intro-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-line {
  width: 60px; height: 1px;
  background: var(--c3);
}

.intro-location {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c3);
}

.intro-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}

.intro-year {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.5);
}

.intro-skip {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 4;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .5rem 1.2rem;
  background: transparent;
  transition: color .3s, border-color .3s;
}

.intro-skip:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background .4s var(--ease-out), box-shadow .4s;
}

#nav.scrolled {
  background: rgba(245,242,236,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(28,31,18,.08);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  position: relative;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: auto;
  transition: opacity .4s;
}

.nav-logo .logo-color { position: absolute; top: 0; left: 0; opacity: 0; }

#nav.scrolled .logo-blanc { opacity: 0; }
#nav.scrolled .logo-color { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--c3);
  transform: scaleX(0);
  transition: transform .35s var(--ease-out);
  transform-origin: left;
}

.nav-link:hover::after { transform: scaleX(1); }

#nav.scrolled .nav-link { color: var(--c1); }
.nav-link:hover { color: var(--c3); }
#nav.scrolled .nav-link:hover { color: var(--c2); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  border: 1px solid var(--c2);
  color: var(--white);
  transition: background .3s, color .3s;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--c2); }
#nav.scrolled .nav-cta { color: var(--c2); }
#nav.scrolled .nav-cta:hover { color: var(--white); background: var(--c2); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform .35s var(--ease-out), opacity .3s;
}

#nav.scrolled .burger span { background: var(--c1); }

.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   MENU MOBILE
═══════════════════════════════════════════════════════════ */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
  overflow: hidden;
}

#mobile-menu.open { opacity: 1; pointer-events: all; }

#mobile-menu nav {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

#mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }

.mob-link {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-style: italic;
  color: var(--white);
  opacity: .8;
  transition: opacity .3s, color .3s;
}

.mob-link:hover { opacity: 1; color: var(--c3); }

.mob-cta {
  display: inline-block;
  padding: .8rem 2.2rem;
  border: 1px solid var(--c2);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s;
}

.mob-cta:hover { background: var(--c2); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video, .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-fallback { z-index: 0; }
.hero-video { z-index: 1; }

.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(28,31,18,.75) 100%);
}

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}

.hero-title em { color: var(--c3); }

.hero-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c3));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: .7; }
  50% { transform: scaleY(.6); opacity: 1; }
}

.scroll-text {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════════════════════════ */
.trust-band {
  background: var(--c1);
  overflow: hidden;
  padding: 1.1rem 0;
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: trust-scroll 30s linear infinite;
  width: max-content;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.trust-sep {
  color: var(--c3);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HISTOIRE
═══════════════════════════════════════════════════════════ */
#histoire {
  padding: 7rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.histoire-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.histoire-img-wrap {
  position: relative;
}

.histoire-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.histoire-frame {
  position: absolute;
  top: -20px; right: -20px;
  bottom: 20px; left: 20px;
  border: 1px solid var(--c2);
  z-index: 0;
}

.histoire-badge {
  position: absolute;
  bottom: -16px; right: 2rem;
  z-index: 2;
  background: var(--c2);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  padding: .6rem 1.4rem;
}

.histoire-text h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.histoire-text h2 em { color: var(--c2); }

.histoire-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(28,31,18,.8);
  margin-bottom: 1.5rem;
}

.histoire-quote {
  border-left: 2px solid var(--c3);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
}

.histoire-quote p {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c3);
  margin-bottom: .5rem;
}

.histoire-quote cite {
  font-size: .9rem;
  color: rgba(28,31,18,.5);
  font-style: normal;
}

.histoire-bottom {
  background: var(--bg2);
  padding: 3rem;
  text-align: center;
}

.histoire-bottom p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(28,31,18,.75);
}

@media (max-width: 900px) {
  .histoire-grid { grid-template-columns: 1fr; gap: 3rem; }
  .histoire-frame { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION SAVOIR-FAIRE
═══════════════════════════════════════════════════════════ */
#savoir-faire {
  background: var(--bg2);
  padding: 7rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header h2 em { color: var(--c2); }

.section-sub {
  font-size: 1.05rem;
  color: rgba(28,31,18,.65);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid transparent;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--c2);
  box-shadow: 0 16px 48px var(--c2m);
}

.service-num {
  display: block;
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 400;
  color: var(--bg2);
  position: absolute;
  top: 1rem; right: 2rem;
  line-height: 1;
  transition: color .3s;
}

.service-card:hover .service-num { color: rgba(74,103,65,.08); }

.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
}

.service-card p {
  font-size: .98rem;
  line-height: 1.8;
  color: rgba(28,31,18,.72);
  margin-bottom: 2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.service-tags li {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border: 1px solid rgba(200,169,110,.4);
  color: var(--c3);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ═══════════════════════════════════════════════════════════
   AMBIANCE
═══════════════════════════════════════════════════════════ */
.ambiance {
  position: relative;
  height: 65vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ambiance-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ambiance-overlay {
  position: absolute; inset: 0;
  background: rgba(28,31,24,.75);
  z-index: 1;
}

.ambiance-content {
  position: relative; z-index: 3;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  padding: 2rem;
}

.ambiance-line {
  width: 80px; height: 1px;
  background: var(--c3);
}

.ambiance-quote p {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.ambiance-quote cite {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c3);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   CARTE
═══════════════════════════════════════════════════════════ */
#carte {
  padding: 7rem 2rem;
  background: var(--bg);
}

.carte-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.carte-cat-title {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--c2);
  margin-bottom: .4rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--bg3);
}

.carte-cat-note {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 1.5rem;
}

.carte-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.carte-item-head {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .4rem;
}

.carte-dish {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.carte-dots {
  flex: 1;
  min-width: 20px;
  border-bottom: 1px dotted rgba(28,31,18,.2);
  margin-bottom: 4px;
}

.carte-price {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c3);
  flex-shrink: 0;
  white-space: nowrap;
}

.carte-desc {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(28,31,18,.62);
  max-width: 680px;
}

.carte-badge {
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--c2);
  color: var(--white);
  padding: .2rem .6rem;
  vertical-align: middle;
}

.carte-item--signature .carte-dish { color: var(--c1); }

.carte-note {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(28,31,18,.4);
  letter-spacing: .04em;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════════════════════ */
#galerie {
  background: var(--bg2);
  padding: 7rem 2rem;
}

.galerie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gal-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}

.gal-item:hover img { transform: scale(1.04); }

.gal-main { grid-row: span 2; }

.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(74,103,65,.7);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .4s;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
}

@media (max-width: 700px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .gal-main { grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════════ */
#temoignages {
  background: var(--c1);
  padding: 7rem 2rem;
}

#temoignages .section-header h2 { color: var(--white); }
#temoignages .section-header h2 em { color: var(--c3); }
#temoignages .label { color: var(--c3); }

.carousel-wrap {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform .55s var(--ease-out);
}

.testi-card {
  flex: 0 0 100%;
  padding: 3.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 1.5rem;
}

@media (min-width: 768px) {
  .testi-card { flex: 0 0 50%; }
}

@media (min-width: 1100px) {
  .testi-card { flex: 0 0 33.333%; }
}

.testi-stars { color: var(--c3); font-size: 1.1rem; letter-spacing: .15em; }

.testi-card blockquote p {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}

.testi-card cite {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  font-style: normal;
}

.testi-card cite span {
  color: var(--c3);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.carousel-prev, .carousel-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s;
}

.carousel-prev:hover, .carousel-next:hover {
  border-color: var(--c3);
  background: rgba(200,169,110,.1);
}

.carousel-dots {
  display: flex;
  gap: .6rem;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s, transform .3s;
  cursor: pointer;
  border: none;
}

.carousel-dot.active {
  background: var(--c3);
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact {
  padding: 7rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-infos h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-infos h2 em { color: var(--c2); }

address { font-style: normal; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(28,31,18,.75);
  font-size: .98rem;
  line-height: 1.6;
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--c2); }
.contact-item a { transition: color .3s; }
.contact-item a:hover { color: var(--c2); }

.horaires {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  padding: 1.5rem;
  background: var(--bg2);
  margin-bottom: 2rem;
}

.horaires dt {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(28,31,18,.6);
}

.horaires dd {
  font-size: .88rem;
  color: var(--c1);
}

.contact-map {
  overflow: hidden;
  border: 1px solid var(--bg3);
}

.contact-map iframe { display: block; }

/* Formulaire */
.contact-form-wrap h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.contact-form-wrap h3 em { color: var(--c2); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--c1);
}

.form-opt { color: rgba(28,31,18,.4); font-weight: 400; }

.form-group input, .form-group textarea {
  font-family: var(--f-body);
  font-size: .98rem;
  background: var(--bg2);
  border: 1px solid var(--bg3);
  padding: .85rem 1rem;
  color: var(--c1);
  transition: border-color .3s;
  outline: none;
  resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--c2);
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--c2);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s, opacity .3s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover { background: #3d5636; }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }

.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: block; }

.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(74,103,65,.1);
  border: 1px solid var(--c2);
  color: var(--c2);
  font-size: .95rem;
  text-align: center;
}

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

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--c1);
  padding: 6rem 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand img { margin-bottom: 1.5rem; }

.footer-brand p {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  max-width: 320px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--c3) !important;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 1.5rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .85rem; }

.footer-nav a {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}

.footer-nav a:hover { color: var(--white); }

.footer-contact address {
  flex-direction: column; gap: .75rem; margin-bottom: 1.5rem;
}

.footer-contact address p,
.footer-contact address a {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}

.footer-contact address a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
  transition: color .3s, border-color .3s;
}

.footer-social a:hover { color: var(--white); border-color: var(--c3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

.footer-bottom a {
  color: var(--c3);
  transition: color .3s;
}

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

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

/* ═══════════════════════════════════════════════════════════
   WHATSAPP & BACK TO TOP
═══════════════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(74,103,65,.35);
}

.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal-item, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal-item { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed {
  opacity: 1;
  transform: translate(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}
