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

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('fonts/jost-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/playfairdisplay-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/playfairdisplay-italic.woff2') format('woff2');
}

:root {
  --green:       #4A7A58;
  --green-dark:  #2D5038;
  --green-deep:  #1A3324;
  --green-light: #E6F0EA;
  --green-mid:   #8AB59A;
  --cream:       #F8F5EF;
  --cream-dark:  #EDE7DC;
  --ink:         #1A1F1C;
  --ink-soft:    #4A5249;
  --white:       #FDFCF9;
  --gold:        #C4983A;
  --gold-light:  #F5E9CB;
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4vw;
  background: rgba(248,245,239,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74,122,88,0.15);
  transition: box-shadow 0.3s;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  height: 44px; width: auto;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.08) rotate(-3deg); }
.logo-text {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.2;
  transition: color 0.25s;
}
.logo:hover .logo-text { color: var(--green); }
.logo-text small {
  display: block;
  font-family: var(--font-b);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  position: relative;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
}
nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--green);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.25s ease;
}
nav a:hover { color: var(--green); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-nav {
  background: var(--green); color: var(--white);
  padding: 0.55rem 1.35rem;
  font-family: var(--font-b); font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-primary {
  display: inline-block;
  background: var(--green); color: var(--white);
  padding: 0.85rem 2rem;
  font-family: var(--font-b); font-size: 0.8rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45,80,56,0.28);
}

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green);
  padding: 0.85rem 2rem;
  font-family: var(--font-b); font-size: 0.8rem;
  font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: var(--white); color: var(--green-dark);
  padding: 0.9rem 2.25rem;
  font-family: var(--font-b); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-white:hover {
  background: var(--green-deep); color: var(--white);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem 4rem 4vw;
  animation: fadeUp 0.85s ease both;
}
.eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 400;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--green-dark);
}
.eyebrow.tight { margin-bottom: 0.75rem; }
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 0.97rem; color: var(--ink-soft);
  max-width: 440px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-strip {
  display: flex; gap: 0; margin-top: 3.5rem;
  border-top: 1px solid rgba(74,122,88,0.18);
  padding-top: 2rem;
}
.strip-item {
  flex: 1; padding-right: 1.5rem; border-right: 1px solid rgba(74,122,88,0.15);
  margin-right: 1.5rem;
  transition: transform 0.25s ease;
}
.strip-item:hover { transform: translateY(-3px); }
.strip-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.strip-num {
  font-family: var(--font-d); font-size: 1.9rem;
  font-weight: 500; color: var(--green-dark); display: block; line-height: 1;
  transition: color 0.25s ease;
}
.strip-item:hover .strip-num { color: var(--green); }
.strip-label {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 0.25rem; display: block;
}

/* hero right : grille d'images */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  animation: fadeUp 1s 0.15s ease both;
}
.hero-right .hi {
  overflow: hidden; position: relative; background: var(--green-light);
}
.hero-right .hi:nth-child(1) { grid-row: 1 / 3; }
.hero-right .hi img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.hero-right .hi:hover img { transform: scale(1.04); }
.hi-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: rgba(248,245,239,0.92);
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); padding: 0.3rem 0.7rem; font-weight: 400;
  transition: background 0.25s, color 0.25s;
}
.hero-right .hi:hover .hi-label { background: var(--green); color: var(--white); }

/* ── ABOUT ── */
.about {
  background: var(--green-deep); color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 5rem;
  padding: 7rem 4vw;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-img-border {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  width: 60%; height: 60%;
  border: 2px solid var(--green-mid);
  pointer-events: none;
  transition: bottom 0.4s ease, right 0.4s ease;
}
.about-img-wrap:hover .about-img-border { bottom: -1rem; right: -1rem; }
.about-badge {
  position: absolute; top: 1.5rem; left: -1.5rem;
  background: var(--green); color: var(--white);
  padding: 1rem 1.25rem; text-align: center; z-index: 1;
}
.about-badge-num {
  font-family: var(--font-d); font-size: 2rem; font-weight: 500;
  display: block; line-height: 1;
}
.about-badge-label {
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; display: block; margin-top: 0.2rem;
}
.about-content .eyebrow { color: var(--green-mid); }
.about-content .eyebrow::before { background: var(--green-mid); }
.about-content h2 {
  font-family: var(--font-d); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-content h2 em { font-style: italic; color: var(--green-mid); }
.about-text { font-size: 0.94rem; line-height: 1.85; color: rgba(232,240,234,0.75); }
.about-text + .about-text { margin-top: 1rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem;
}
.val {
  border-left: 2px solid var(--green);
  padding-left: 0.9rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.val:hover {
  border-color: var(--green-mid);
  transform: translateX(4px);
}
.val-title {
  font-family: var(--font-d); font-style: italic;
  font-size: 1.05rem; color: var(--cream); display: block;
}
.val-desc { font-size: 0.75rem; color: rgba(232,240,234,0.65); letter-spacing: 0.06em; }

/* ── SHOWCASE BAND ── */
.showcase {
  position: relative;
  height: clamp(220px, 32vw, 420px);
  overflow: hidden;
}
.showcase-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.showcase:hover .showcase-img { transform: scale(1.04); }
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,51,36,0.55) 0%, rgba(26,51,36,0.05) 45%, rgba(26,51,36,0.25) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 2.5rem 4vw;
  pointer-events: none;
}
.showcase-quote {
  font-family: var(--font-d); font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--white); text-align: center;
  max-width: 720px; line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

/* ── SECTION HEADER ── */
.sec { padding: 6rem 4vw; }
.sec-header { margin-bottom: 3.5rem; }
.sec-header.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 2.5rem;
}
.sec h2 {
  font-family: var(--font-d); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.sec h2 em { font-style: italic; color: var(--green); }
.sec-intro { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.85; }

/* ── TECHNIQUES ── */
.techniques { background: var(--white); }
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.tech-card {
  background: var(--cream); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.tech-card:hover { background: var(--green-light); }
.tech-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  margin-bottom: 1.5rem; display: block;
  transition: transform 0.5s ease;
}
.tech-card:hover .tech-img { transform: scale(1.05); }
.tech-name {
  font-family: var(--font-d); font-size: 1.4rem;
  font-style: italic; font-weight: 400; color: var(--ink);
  display: block; margin-bottom: 0.6rem;
  transition: color 0.25s ease;
}
.tech-card:hover .tech-name { color: var(--green-dark); }
.tech-desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.72; margin-bottom: 1rem; }
.tech-list { list-style: none; }
.tech-list li {
  font-size: 0.78rem; color: var(--ink-soft);
  padding: 0.2rem 0 0.2rem 1rem; position: relative;
}
.tech-list li::before {
  content: '–'; position: absolute; left: 0; color: var(--green);
}
.tech-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.tech-card:hover .tech-bar { transform: scaleX(1); }

/* ── GALLERY ROW ── */
.gallery { background: var(--green-light); padding: 5rem 4vw; }
.gallery h2 { font-family: var(--font-d); font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.gallery h2 em { font-style: italic; color: var(--green); }
.gallery-sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.gal-item { overflow: hidden; background: var(--cream-dark); }
.gal-item:nth-child(1) { grid-row: 1 / 3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gal-item:hover img { transform: scale(1.05); }

/* ── FORMATS / TARIFS ── */
.formats { background: var(--cream); }
.tarif-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tarif-card {
  background: var(--white); padding: 2.5rem 2rem;
  border-top: 3px solid var(--green-light);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tarif-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,51,36,0.1);
}
.tarif-card.featured {
  background: var(--green-dark); border-top-color: var(--green-deep);
}
.tarif-card.featured:hover {
  box-shadow: 0 16px 40px rgba(26,51,36,0.28);
}
.tarif-tag {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.28rem 0.75rem;
  border: 1px solid var(--green); color: var(--green); margin-bottom: 1.25rem;
}
.tarif-card.featured .tarif-tag {
  border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.85);
}
.tarif-name {
  font-family: var(--font-d); font-size: 1.5rem;
  font-style: italic; font-weight: 400;
  color: var(--ink); display: block; margin-bottom: 0.5rem;
}
.tarif-card.featured .tarif-name { color: var(--white); }
.tarif-price {
  font-family: var(--font-d); font-size: 2.4rem;
  font-weight: 500; color: var(--green-dark); display: block;
  line-height: 1; margin-bottom: 1rem;
}
.tarif-card.featured .tarif-price { color: rgba(255,255,255,0.9); }
.tarif-price small {
  font-size: 1rem; font-family: var(--font-b); font-weight: 300; color: var(--ink-soft);
}
.tarif-card.featured .tarif-price small { color: rgba(255,255,255,0.65); }
.tarif-desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.72; }
.tarif-card.featured .tarif-desc { color: rgba(255,255,255,0.8); }
.tarif-detail {
  font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.5rem;
  font-style: italic;
}
.tarif-card.featured .tarif-detail { color: rgba(255,255,255,0.72); }
.tarif-footer {
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(74,122,88,0.15);
  font-size: 0.78rem; color: var(--ink-soft);
}
.tarif-card.featured .tarif-footer {
  border-top-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7);
}

/* Encart stage intensif, en pied de la grille de tarifs */
.stage-band {
  margin-top: 1.5rem; background: var(--green-light); padding: 2.5rem;
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.stage-body { flex: 1; min-width: 260px; }
.stage-title {
  font-family: var(--font-d); font-size: 1.6rem;
  font-weight: 400; font-style: italic;
  color: var(--green-dark); margin-bottom: 0.5rem;
}
.stage-text { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; }
.stage-text strong { color: var(--ink); font-weight: 500; }

/* ── ATELIERS EXTERIEURS ── */
.exterior { background: var(--white); }
.ext-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem;
}
.ext-card {
  position: relative; overflow: hidden; background: var(--green-light);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ext-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(26,51,36,0.28);
}
.ext-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; transition: transform 0.45s;
}
.ext-card:hover img { transform: scale(1.1); }
.ext-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,51,36,0.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
  pointer-events: none;
}
.ext-card:hover .ext-overlay {
  background: linear-gradient(to top, rgba(26,51,36,0.92) 0%, rgba(26,51,36,0.15) 65%);
}
.ext-title {
  font-family: var(--font-d); font-size: 1.3rem;
  font-style: italic; color: var(--white); margin-bottom: 0.35rem;
}
.ext-desc { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.55; }

.ext-info {
  background: var(--green-light); padding: 4rem 4vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.ext-info h3 {
  font-family: var(--font-d); font-size: 1.8rem;
  font-style: italic; color: var(--green-dark); margin-bottom: 1rem;
}
.ext-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 2rem; }
.ext-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.ext-bullets li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.85rem; color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
.ext-bullets li:hover {
  color: var(--ink);
  transform: translateX(3px);
}
.ext-bullets li::before {
  content: '◆'; color: var(--green); font-size: 0.45rem; margin-top: 0.5rem; flex-shrink: 0;
}
.ext-info .btn-primary { margin-top: 2rem; }
.ext-info-visual { display: flex; flex-direction: column; gap: 3px; }
.ext-info-img { width: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; overflow: hidden; }
.ext-info-img:nth-child(1) { aspect-ratio: 16/7; }
.ext-info-img:nth-child(2) { aspect-ratio: 16/5; }
.ext-info-visual:hover .ext-info-img { transform: scale(1.03); }

/* ── CONTACT ── */
.contact-sec {
  background: var(--green-deep); color: var(--cream);
  padding: 7rem 4vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-sec .eyebrow { color: var(--green-mid); }
.contact-sec .eyebrow::before { background: var(--green-mid); }
.contact-sec .btn-outline { color: var(--green-mid); border-color: var(--green-mid); }
.contact-address { font-style: normal; }
.contact-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-sec h2 {
  font-family: var(--font-d); font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--cream); margin-bottom: 1.5rem;
}
.contact-sec h2 em { font-style: italic; color: var(--green-mid); }
.contact-text { font-size: 0.94rem; color: rgba(230,240,234,0.72); line-height: 1.85; margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.c-item { display: flex; align-items: flex-start; gap: 1rem; }
.c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(74,122,88,0.25);
  border: 1px solid rgba(74,122,88,0.45);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.c-item:hover .c-icon {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1) rotate(-6deg);
}
.c-label {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green-mid); display: block; margin-bottom: 0.2rem;
}
.c-val { font-size: 0.88rem; color: var(--cream); }
.c-val a { color: inherit; text-decoration: none; }
.c-val a:hover { color: var(--green-mid); }
.contact-map {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  border: 1px solid rgba(74,122,88,0.35);
  filter: grayscale(0.25) contrast(1.05);
  transition: filter 0.35s ease;
}
.contact-map:hover { filter: grayscale(0) contrast(1); }
.contact-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.map-link {
  position: absolute; right: 1rem; bottom: 1rem; z-index: 1;
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: rgba(26,51,36,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(230,240,234,0.3);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; transition: all 0.2s;
}
.map-link:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.map-consent {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; text-align: center; padding: 2rem;
  background: var(--green-light);
}
.map-consent p {
  max-width: 320px; font-size: 0.85rem; line-height: 1.6; color: var(--ink-soft);
}
/* Bouton sur la boite claire du consentement : vert fonce pour le contraste
   (annule l'heritage vert-mid de .contact-sec .btn-outline, pense au fond sombre) */
.map-consent .btn-outline { color: var(--green-dark); border-color: var(--green-dark); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-dark); padding: 5rem 4vw; text-align: center;
}
.cta-band .eyebrow { justify-content: center; color: rgba(255,255,255,0.7); }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.2); }
.cta-band h2 {
  font-family: var(--font-d); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--white); margin: 1rem 0;
}
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.6); }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 0.97rem; max-width: 440px; margin: 0 auto 2.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--green-deep); color: rgba(232,240,234,0.6);
  padding: 4rem 4vw 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(74,122,88,0.2);
}
.footer-brand {
  font-family: var(--font-d); font-size: 1.45rem;
  font-style: italic; font-weight: 400; color: var(--cream);
  text-decoration: none; display: block; margin-bottom: 0.85rem;
  transition: color 0.25s ease;
}
.footer-brand:hover { color: var(--green-mid); }
.footer-tagline { font-size: 0.82rem; line-height: 1.75; max-width: 280px; }
.footer-col h3 {
  font-family: var(--font-b); font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cream); font-weight: 500; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(232,240,234,0.65); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green-mid); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem;
}
.footer-bottom a { color: rgba(232,240,234,0.65); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-mid); }

/* ── MOBILE MENU ── */
.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  z-index: 210;
}
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
.menu-btn.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-active span:nth-child(2) { opacity: 0; }
.menu-btn.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 190;
  background: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.mobile-nav.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 1.85rem; }
.mobile-nav nav a {
  font-family: var(--font-d); font-style: italic; font-weight: 400;
  font-size: 1.9rem; color: var(--cream); text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav nav a:hover, .mobile-nav nav a:focus-visible { color: var(--green-mid); }
.mobile-nav-cta { margin-top: 0.5rem; }

/* ── LIGHTBOX ── */
.lightbox-trigger { cursor: zoom-in; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,20,17,0.92);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  padding: 4vh 4vw;
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.lightbox[hidden] { display: none; }

.lightbox-figure {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.lightbox.is-open .lightbox-figure { transform: scale(1); opacity: 1; }

.lightbox-img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  background: var(--ink);
}
.lightbox-caption {
  color: rgba(253,252,249,0.85);
  font-size: 0.85rem; letter-spacing: 0.02em;
  margin-top: 1rem; text-align: center; max-width: 640px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(253,252,249,0.08);
  border: 1px solid rgba(253,252,249,0.25);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--green); border-color: var(--green); }

.lightbox-close {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1.6rem; line-height: 1;
  border-radius: 50%;
}
.lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 1.1rem;
  border-radius: 50%;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-nav[hidden] { display: none; }

@media (max-width: 640px) {
  .lightbox-close { top: 0.75rem; right: 0.75rem; width: 38px; height: 38px; font-size: 1.35rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-img { max-height: 68vh; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  header { padding: 0.9rem 1.5rem; }
  nav { display: none; }
  .menu-btn { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 5rem; }
  .hero-left { padding: 2.5rem 1.5rem; }
  .hero-right { height: 50vw; grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
  .hero-right .hi:nth-child(1) { grid-row: auto; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .sec { padding: 4rem 1.5rem; }
  .sec-header.split { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; gap: 1px; }
  .tarif-grid { grid-template-columns: 1fr; }
  .ext-grid { grid-template-columns: 1fr; }
  .ext-info { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .contact-sec { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gal-item:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
  .about-badge { display: none; }
}

@media (max-width: 480px) {
  header { padding: 0.75rem 1rem; }
  .logo-img { height: 36px; }
  .logo-text { font-size: 1rem; }
  .logo-text small { font-size: 0.56rem; }
  .btn-nav { display: none; }
  .hero-left { padding: 2rem 1.25rem; }
  .hero-sub { max-width: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; }
  .hero-strip { flex-wrap: wrap; gap: 1.25rem; }
  .strip-item {
    flex: 1 1 40%; border-right: none; margin-right: 0; padding-right: 0;
  }
  .strip-num { font-size: 1.5rem; }
  .hero-right { height: auto; grid-template-columns: 1fr; grid-template-rows: repeat(3, 45vw); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gal-item:nth-child(1) { grid-column: 1; }
  .tarif-price { font-size: 2rem; }
  .contact-items { gap: 1rem; }
  .mobile-nav nav a { font-size: 1.5rem; }
  .mobile-nav { gap: 2.25rem; }
}
