/*
Theme Name: MrBarber
Theme URI: https://mrbarber-boulogne.fr
Author: Claude
Description: Thème premium MrBarber — Boulogne-sur-Mer. Vert Lacoste, marbre blanc, bois & botanique.
Version: 2.9.2
License: GNU General Public License v2 or later
Text Domain: mrbarber
Tags: barbershop, booking, green, marble, luxury, botanical
*/

@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Condensed+One&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables DA MrBarber ─────────────────── */
:root {
  --green:        #1A6B38;
  --green-dark:   #124D29;
  --green-mist:   rgba(26,107,56,0.08);
  --green-border: rgba(26,107,56,0.2);
  --black:        #0B0C0A;
  --black-soft:   #141510;
  --marble:       #F7F5F0;
  --marble-dark:  #EDE9E2;
  --cream:        #FDFBF8;
  --wood:         #8B6340;
  --wood-light:   #B08B62;
  --text:         #1A1A18;
  --muted:        #7A7A72;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-hero:    'Special Gothic Condensed One', Georgia, serif;
  --radius:       3px;
  --transition:   0.38s cubic-bezier(0.4,0,0.2,1);
  --shadow:       0 8px 40px rgba(11,12,10,0.1);
  --shadow-lg:    0 20px 60px rgba(11,12,10,0.15);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: var(--font-body); font-weight: 300; line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ── Typographie ────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1rem;
}
.section-title em { font-style: normal; font-weight: 400; color: var(--green); font-family: var(--font-hero); }

.section-subtitle { font-size: 0.98rem; color: var(--muted); max-width: 460px; line-height: 1.85; }

.wood-line {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--wood), var(--wood-light));
  border-radius: 2px; margin: 1.2rem 0;
}

/* ── Layout ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; z-index: 1; }

.dark-section { background: var(--black); color: var(--cream); }
.dark-section .section-title { color: var(--cream); }
.dark-section .section-subtitle { color: rgba(253,251,248,0.5); }
.dark-section .section-label { color: #4CAF7D; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999; padding: 1rem 0;
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--green-border), var(--shadow);
  transition: padding var(--transition);
}
.navbar.scrolled {
  padding: 0.8rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 36px; height: 36px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; flex-shrink: 0;
}
.logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text); }
.logo-text span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); opacity: 0.7; transition: opacity var(--transition), color var(--transition); }
.nav-links a:hover { opacity: 1; color: var(--green); }
.nav-cta { background: var(--green) !important; color: white !important; padding: 0.55rem 1.4rem !important; border-radius: 100px !important; opacity: 1 !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: white !important; }

/* ── Boutons auth navbar ─────────────────────── */
.nav-auth-group { display: flex; align-items: center; gap: 0.5rem; }

.nav-login {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text) !important; opacity: 1 !important;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--green-border);
  border-radius: 100px;
  transition: border-color var(--transition), color var(--transition);
}
.nav-login:hover { border-color: var(--green); color: var(--green) !important; opacity: 1 !important; }

.nav-register {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: var(--green); color: white !important; opacity: 1 !important;
  border-radius: 100px;
  border: 1.5px solid var(--green);
  transition: background var(--transition);
}
.nav-register:hover { background: var(--green-dark); color: white !important; }

/* ── Dropdown utilisateur connecté ──────────── */
.nav-user-wrap { position: relative; }

.nav-user-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: none; border: 1.5px solid var(--green-border);
  border-radius: 100px; padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  cursor: pointer; font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition);
}
.nav-user-btn:hover, .nav-user-btn[aria-expanded="true"] {
  border-color: var(--green); background: var(--green-mist);
}

.nav-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0;
}
.nav-username { font-size: 0.78rem; font-weight: 500; color: var(--text); max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-arrow { font-size: 0.65rem; color: var(--muted); transition: transform var(--transition); }
.nav-user-btn[aria-expanded="true"] .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid var(--green-border);
  box-shadow: var(--shadow); min-width: 180px; z-index: 1000;
}
.nav-dropdown.open { display: block; animation: fadeUp 0.2s ease; }

.nav-dd-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.2rem; font-size: 0.85rem; font-weight: 400;
  color: var(--text) !important; opacity: 1 !important;
  letter-spacing: normal; text-transform: none;
  transition: background var(--transition);
}
.nav-dd-item:hover { background: var(--green-mist); color: var(--green) !important; }
.nav-dd-divider { height: 1px; background: var(--green-border); margin: 0.3rem 0; }
.nav-dd-logout { color: #c0392b !important; }
.nav-dd-logout:hover { background: #fff5f5; color: #c0392b !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--transition); }

/* ── Héros ──────────────────────────────────── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr; overflow: hidden; padding: 0; }

.hero-left {
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 2rem 6rem;
  background: var(--cream); position: relative;
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
}

/* Coin décoratif vert — fixé en bas à droite de l'écran */
.hero-left::after {
  content: '';
  position: fixed; bottom: 0; right: 0;
  width: 90px; height: 90px;
  background: var(--green);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 50;
  pointer-events: none;
}

.hero-right { display: none; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(0.85); transition: transform 8s ease; }
.hero-right:hover img { transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,12,10,0.55) 100%); }

.hero-city { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 1.8rem; font-weight: 500; }

h1.hero-title, .hero-title { font-size: clamp(2.8rem, 4.5vw, 4.8rem); font-weight: 400; color: var(--text); margin-bottom: 0.3rem; font-family: var(--font-hero) !important; letter-spacing: 0.03em; text-transform: uppercase; }
h1.hero-title strong, .hero-title strong { display: block; font-weight: 400; color: var(--green); font-style: normal; font-family: var(--font-hero) !important; }
h1.hero-title em, .hero-title em { font-style: normal; color: var(--green); font-family: var(--font-hero) !important; }

.hero-tagline { width: 36px; height: 2px; background: var(--wood); margin: 1.5rem 0; }

.hero-desc { font-size: 0.98rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 380px; line-height: 1.9; }

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2rem; padding-top: 2rem; margin-top: 1.5rem; border-top: none; position: relative; }
.hero-stats::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: var(--green-border); }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Étiquette flottante */
.hero-float {
  position: absolute; bottom: 3rem; left: -1.5rem;
  background: white; padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg); z-index: 4;
  display: flex; align-items: center; gap: 1rem; min-width: 200px;
}
.hero-float-icon { width: 40px; height: 40px; background: var(--green-mist); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-float-text strong { display: block; font-size: 0.85rem; color: var(--text); font-weight: 500; }
.hero-float-text span { font-size: 0.72rem; color: var(--muted); }

/* ── Boutons ─────────────────────────────────── */
.btn-primary { display: inline-block; background: var(--green); color: white; padding: 0.85rem 2rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); box-shadow: 0 4px 20px rgba(26,107,56,0.25); }
.btn-primary:hover { background: var(--green-dark); color: white; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,107,56,0.35); }

.btn-outline { display: inline-block; border: 1.5px solid var(--green-border); color: var(--text); padding: 0.85rem 2rem; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; transition: border-color var(--transition), color var(--transition); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-outline-white { display: inline-block; color: var(--green); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; padding: 0.5rem 0; border-bottom: 1.5px solid var(--green); transition: opacity var(--transition); }
.btn-outline-white:hover { opacity: .7; }

.btn-white { display: inline-block; background: white; color: var(--green); padding: 0.85rem 2rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; transition: background var(--transition), transform var(--transition); }
.btn-white:hover { background: var(--marble); color: var(--green-dark); transform: translateY(-2px); }

/* ── Services (fond blanc) ──────────────────── */
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; gap: 1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: transparent; }

.service-card {
  background: var(--green); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background var(--transition), transform var(--transition);
  border-radius: 4px;
}
.service-card::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: linear-gradient(90deg, rgba(255,255,255,.4), rgba(255,255,255,.1)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { background: #124D29; transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }

.service-number { font-family: var(--font-display); font-size: 0.85rem; color: #000; letter-spacing: 0.1em; margin-bottom: 1rem; font-style: italic; font-weight: 700; }
.service-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.service-name { font-family: var(--font-hero); font-size: 1.3rem; font-weight: 400; color: #fff; margin-bottom: 0.6rem; letter-spacing: 0.03em; text-transform: uppercase; }
.service-desc { font-size: 0.85rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 1.5rem; }
.service-footer { display: flex; align-items: baseline; justify-content: space-between; }
.service-price { font-family: var(--font-display); font-size: 1.9rem; color: #000; font-weight: 700; }
.service-duration { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ── Galerie (fond marbre) ──────────────────── */
.gallery { background: var(--marble); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
}

.gallery-item:nth-child(1) { grid-column: 1/6;  grid-row: 1/3; }
.gallery-item:nth-child(2) { grid-column: 6/9;  grid-row: 1/2; }
.gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
.gallery-item:nth-child(4) { grid-column: 6/9;  grid-row: 2/3; }
.gallery-item:nth-child(5) { grid-column: 9/11; grid-row: 2/3; }
.gallery-item:nth-child(6) { grid-column: 11/13;grid-row: 2/3; }

.gallery-item { position: relative; overflow: hidden; background: var(--marble-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: transform 0.7s ease, filter 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gallery-item::after { content: '✦'; position: absolute; inset: 0; background: rgba(26,107,56,0.22); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* ── Équipe (fond crème) ────────────────────── */
.team { background: var(--cream); }
.team-header { text-align: center; margin-bottom: 4rem; }
.team-header .wood-line { margin: 1.2rem auto; }
.team-header .section-subtitle { margin: 0 auto; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
             gap: 2.5rem; max-width: 1180px; margin: 0 auto; }

.team-card {
  display: grid; grid-template-columns: 160px 1fr;
  background: white; box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.team-photo-wrap { position: relative; overflow: hidden; }
.team-photo { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: top; filter: saturate(0.7); transition: filter var(--transition); }
.team-card:hover .team-photo { filter: saturate(1); }
.team-photo-wrap::after { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--green); }

.team-info { padding: 1.8rem; display: flex; flex-direction: column; justify-content: center; }
.team-handle { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 0.3rem; }
.team-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--text); }
.team-realname { font-family: var(--font-display); font-size: 0.85rem; font-style: italic; color: var(--muted); margin-bottom: 0.8rem; }
.team-bio { font-size: 0.84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

.team-skills { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.skill-tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; background: var(--green-mist); color: var(--green); padding: 0.25rem 0.7rem; border-radius: 100px; border: 1px solid var(--green-border); }

/* ── Réservation (fond noir) ────────────────── */
.booking-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.booking-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.booking-feature { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.88rem; color: rgba(253,251,248,0.5); line-height: 1.6; }
.booking-feature strong { color: var(--cream); display: block; margin-bottom: 0.2rem; }
.booking-feature-icon { width: 36px; height: 36px; background: rgba(76,175,125,0.1); border: 1px solid rgba(76,175,125,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.booking-widget { background: var(--cream); border: 1px solid var(--green-border); padding: 2.5rem; }
.amelia-placeholder { text-align: center; padding: 2.5rem; border: 1.5px dashed var(--green-border); color: var(--muted); border-radius: var(--radius); }
.amelia-placeholder code { display: block; margin-top: 1rem; background: var(--green-mist); padding: 0.6rem 1rem; font-size: 0.85rem; color: var(--green); border-radius: var(--radius); }

/* ── Contact (fond marbre) ──────────────────── */
.contact { background: var(--marble); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; }
.contact-block h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--green-border); }
.contact-block p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.38rem 0; border-bottom: 1px solid rgba(26,107,56,0.07); color: var(--muted); }
.hours-row span:last-child { color: var(--text); }
.hours-row.closed span:last-child { color: #c0392b; }

/* ── Footer ─────────────────────────────────── */
.footer { background: var(--black); border-top: 3px solid var(--green); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-mark { width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: white; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--cream); }
.footer-logo-text span { color: #4CAF7D; }
.footer-copy { font-size: 0.75rem; color: rgba(253,251,248,0.35); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(253,251,248,0.4); transition: border-color var(--transition), color var(--transition); }
.footer-social a:hover { border-color: #4CAF7D; color: #4CAF7D; }

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

/* ── Responsive ─────────────────────────────── */
/* ── Protection globale overflow mobile ────────────────────── */
html, body { overflow-x: hidden; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* ═══ Protection globale overflow mobile ══════════════════ */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ═══ DRAWER MOBILE ════════════════════════════════════════ */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(11,12,10,.55);
  z-index: 1001;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--green-border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.nav-drawer-close {
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer;
  color: var(--muted); padding: .4rem;
  line-height: 1;
  transition: color .15s;
}
.nav-drawer-close:hover { color: var(--text); }

.nav-drawer-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: .5rem 0 2rem;
}
.nav-drawer-item {
  display: block;
  padding: .95rem 1.4rem;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,107,56,.08);
  transition: background .15s, color .15s;
}
.nav-drawer-item:hover {
  background: var(--green-mist);
  color: var(--green);
}
.nav-drawer-sep {
  height: 1px;
  background: var(--green-border);
  margin: .5rem 0;
}
.nav-drawer-cta {
  display: block;
  margin: 1rem 1.2rem;
  padding: .9rem 1.4rem;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .2s;
}
.nav-drawer-cta:hover { background: var(--green-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 999;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ TABLETTE (max 1024px) ════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-left { padding: 7rem clamp(1.5rem,5vw,3rem) 4rem; }
  .hero-left::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 1; }
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ═══ MOBILE (max 768px) ════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links  { display: none !important; } /* Remplacé par nav-drawer */
  .hero { min-height: auto; }
  .hero-left { min-height: auto; }
  section { padding: 4rem 0; }
  .container { padding: 0 clamp(.8rem, 4vw, 1.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 100px 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-header, .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 6rem 1.2rem 3rem; }
  .hero-title { font-size: clamp(2rem, 7vw, 3.5rem); white-space:normal !important; }
  .hero-right { height: 60vw; min-height: 220px; }
  .faq-layout { grid-template-columns: 1fr; }
  .nav-dropdown { position: fixed; top: 70px; left: 1rem; right: 1rem; width: auto; }
}

/* ═══ PETIT MOBILE (max 480px) ════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 .9rem; }
  section { padding: 3rem 0; }
  .team-card { grid-template-columns: 1fr; text-align: center; }
  .team-photo-wrap { width: 110px; height: 110px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 5.5rem .9rem 2.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero-btns a { text-align: center; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .service-card { padding: 1.4rem; }
}

/* ═══ TRÈS PETIT (max 360px) ══════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 .7rem; }
  .hero-title { font-size: 1.9rem; }
  .nav-cta { padding: .45rem .9rem !important; font-size: .73rem !important; }
}
/* ═══ PAGE HERO (pages intérieures) ════════════════════════ */
.page-hero {
  background: var(--black);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(26,107,56,.25) 0%, transparent 70%);
  pointer-events: none;
}
/* Dégradé supplémentaire pour les pages sans dark-section en dessous */
.page-hero.hero-with-gradient::before {
  background:
    radial-gradient(ellipse 90% 90% at 50% 110%, rgba(26,107,56,.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(26,107,56,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(26,107,56,.2) 0%, transparent 60%);
}
.page-hero .section-label { color: var(--green); }
.page-hero-title {
  font-family: var(--font-hero);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  margin: .5rem 0;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.page-hero-title em { color: var(--green); font-style: normal; font-family: var(--font-hero); }
.page-hero .wood-line { margin: 1.2rem auto; }
.page-hero .section-subtitle { color: rgba(255,255,255,.65); text-align: center; margin: 0 auto; }

/* ── Pied de page : coordonnées + liens légaux (v2.7.0) ─────── */
.footer-contact {
  display: flex; flex-wrap: wrap; gap: .4rem 1.4rem;
  justify-content: center; align-items: center;
  margin: 0 0 .9rem; font-size: .84rem; color: rgba(255,255,255,.55);
}
.footer-contact a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }

.footer-legal {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem;
  justify-content: center; margin: 0 0 .9rem;
}
.footer-legal a {
  color: rgba(255,255,255,.55); font-size: .8rem;
  text-decoration: none; transition: color var(--transition);
}
.footer-legal a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 640px) {
  .footer-contact, .footer-legal { flex-direction: column; gap: .45rem; text-align: center; }
}
