/* ================================================================
   PAYSAGISTE VERT ENTRETIEN — Premium Design System
   Palette : Forest · Gold · Cream
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Forest Palette */
  --forest-950: #020b05;
  --forest-900: #060f08;
  --forest-800: #0a1f13;
  --forest-700: #122a1a;
  --forest-600: #1d4a2e;
  --forest-500: #2a7a50;
  --forest-400: #4a9d6e;
  --forest-300: #72bf90;
  --forest-200: #a8d9bc;
  --forest-100: #d6f0e4;
  --forest-50:  #eef8f3;

  /* Gold Palette */
  --gold-900: #4a3208;
  --gold-800: #6d4b0f;
  --gold-700: #8f6418;
  --gold-600: #b07e25;
  --gold-500: #c8a84b;
  --gold-400: #dfc068;
  --gold-300: #ecda96;
  --gold-200: #f5ecbf;
  --gold-100: #faf5df;
  --gold-50:  #fdfbf2;

  /* Neutrals */
  --cream:    #f9f5ec;
  --warm:     #f3ede0;
  --white:    #ffffff;
  --charcoal: #131f17;

  /* Semantic */
  --bg:           var(--cream);
  --surface:      var(--white);
  --text:         #111d15;
  --text-muted:   #4a6352;
  --text-light:   #7a9585;
  --border:       #dce8e0;
  --border-light: #edf4f0;

  /* Brand */
  --primary:       var(--forest-500);
  --primary-dark:  var(--forest-600);
  --primary-deep:  var(--forest-800);
  --accent:        var(--gold-500);
  --accent-light:  var(--gold-400);
  --accent-dark:   var(--gold-700);
  --accent-pale:   var(--gold-100);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  /* Spacing */
  --s1:  0.25rem;  --s2:  0.5rem;   --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem;  --s6:  1.5rem;
  --s8:  2rem;     --s10: 2.5rem;   --s12: 3rem;
  --s16: 4rem;     --s20: 5rem;     --s24: 6rem;
  --s32: 8rem;

  /* Border Radii */
  --r-sm:   4px;   --r-md: 8px;   --r-lg:   16px;
  --r-xl:   24px;  --r-2xl: 40px; --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11,22,15,.05);
  --shadow-sm: 0 2px 8px rgba(11,22,15,.07);
  --shadow-md: 0 6px 20px rgba(11,22,15,.09);
  --shadow-lg: 0 14px 40px rgba(11,22,15,.11);
  --shadow-xl: 0 24px 64px rgba(11,22,15,.13);
  --shadow-gold: 0 8px 32px rgba(200,168,75,.28);
  --shadow-green: 0 8px 32px rgba(42,122,80,.22);

  /* Easings */
  --ease-out:     cubic-bezier(0, 0, .2, 1);
  --ease-inout:   cubic-bezier(.4, 0, .2, 1);
  --ease-spring:  cubic-bezier(.34, 1.56, .64, 1);
  --ease-elegant: cubic-bezier(.25, .46, .45, .94);

  --t-fast:   150ms var(--ease-out);
  --t-base:   280ms var(--ease-out);
  --t-slow:   480ms var(--ease-elegant);
  --t-spring: 600ms var(--ease-spring);

  /* Layout */
  --max-w:    1280px;
  --max-w-sm: 800px;
  --nav-h:    82px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ----------------------------------------------------------------
   3. PAGE LOADER
---------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0;
  background: var(--forest-800);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s var(--ease-elegant), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: var(--s6);
}

.loader-logo {
  display: flex; align-items: center; gap: var(--s3);
  opacity: 0; animation: loaderFadein .8s var(--ease-elegant) .2s forwards;
}
.loader-logo span {
  font-family: var(--font-display);
  font-size: var(--text-3xl); font-weight: 600; color: var(--white);
  letter-spacing: .02em;
}
.loader-logo .loader-gold { color: var(--gold-400); }

.loader-bar {
  width: 180px; height: 2px; background: rgba(255,255,255,.12);
  border-radius: var(--r-full); overflow: hidden;
  opacity: 0; animation: loaderFadein .6s var(--ease-elegant) .6s forwards;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--r-full);
  animation: loaderProgress 1.4s var(--ease-inout) .8s forwards;
}

@keyframes loaderFadein   { to { opacity: 1; } }
@keyframes loaderProgress { to { width: 100%; } }

/* ----------------------------------------------------------------
   4. CUSTOM CURSOR
---------------------------------------------------------------- */
.cursor, .cursor-follower {
  position: fixed; border-radius: 50%; pointer-events: none;
  transform: translate(-50%,-50%); z-index: 9998; transition-timing-function: var(--ease-out);
}
.cursor {
  width: 10px; height: 10px;
  background: var(--gold-500);
  transition: transform .1s, width .3s var(--ease-spring), height .3s var(--ease-spring), background .3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,168,75,.45);
  transition: transform .18s, width .3s var(--ease-spring), height .3s var(--ease-spring), opacity .3s;
  opacity: .7;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold-500); opacity: 1;
}
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ----------------------------------------------------------------
   5. SCROLL PROGRESS BAR
---------------------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000;
  background: transparent; pointer-events: none;
}
.scroll-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--forest-500), var(--gold-500));
  transition: width .15s linear;
}

/* ----------------------------------------------------------------
   6. TYPOGRAPHY HELPERS
---------------------------------------------------------------- */
.display { font-family: var(--font-display); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold-300) 50%, var(--accent-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.text-green-gradient {
  background: linear-gradient(135deg, var(--forest-400), var(--forest-300));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------------
   7. LAYOUT
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 var(--s6); }

.section { padding: var(--s24) 0; }
.section-sm { padding: var(--s16) 0; }
.section-lg { padding: var(--s32) 0; }

/* ----------------------------------------------------------------
   8. NAVIGATION
---------------------------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}
.navbar.transparent { background: transparent; }
.navbar.solid {
  background: rgba(10,31,19,.92);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 2px 24px rgba(5,15,10,.25);
}
.navbar.light {
  background: rgba(249,245,236,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(5,15,10,.08);
}
.navbar.light .nav-link { color: var(--text); }
.navbar.light .nav-link::after { background: var(--primary); }
.navbar.light .nav-logo .logo-name { color: var(--text); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s6);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: var(--s3); }
.nav-logo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 600; line-height: 1.2;
  color: var(--white); letter-spacing: .02em;
}
.nav-logo .logo-name em {
  font-style: normal; color: var(--gold-400);
}
.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs); color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex; align-items: center; gap: var(--s8);
}
.nav-link {
  font-size: var(--text-sm); font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  position: relative; padding-bottom: var(--s1);
  transition: color var(--t-base);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold-400);
  transition: width var(--t-slow);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* CTA in nav */
.nav-cta {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s5);
  border: 1.5px solid var(--gold-500);
  color: var(--gold-400); font-size: var(--text-sm);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--r-full);
  transition: background var(--t-base), color var(--t-base), box-shadow var(--t-base);
}
.nav-cta:hover {
  background: var(--gold-500); color: var(--forest-900);
  box-shadow: var(--shadow-gold);
}
.nav-cta i { font-size: var(--text-xs); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; cursor: pointer; padding: var(--s1);
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--white);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
.nav-toggle span:nth-child(2) { width: 70%; }
.navbar.menu-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
.navbar.menu-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--forest-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s8); z-index: 850;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-5xl); font-weight: 500; color: rgba(255,255,255,.7);
  letter-spacing: .03em;
  transition: color var(--t-base), transform var(--t-base);
  transform: translateY(20px);
  opacity: 0;
}
.mobile-menu.open .mobile-link {
  opacity: 1; transform: none;
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: .1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: .18s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: .26s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: .34s; }
.mobile-link:hover { color: var(--gold-400); transform: translateX(8px); }

.mobile-phone {
  margin-top: var(--s6);
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: var(--text-lg); color: var(--gold-400);
  font-weight: 600; letter-spacing: .04em;
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) .44s, transform var(--t-slow) .44s;
}
.mobile-menu.open .mobile-phone { opacity: 1; transform: none; }

/* ----------------------------------------------------------------
   9. HERO
---------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--forest-900);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/photo_001.jpg') center / cover no-repeat;
  transform-origin: center; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,31,19,.92) 0%, rgba(10,31,19,.72) 55%, rgba(10,31,19,.3) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Decorative leaves */
.hero-leaves {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.leaf-particle {
  position: absolute;
  opacity: 0;
  animation: leafFall linear infinite;
}
@keyframes leafFall {
  0%   { transform: translateY(-60px) rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .2; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(80px); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s6);
  padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16);
  align-items: center; width: 100%;
}

.hero-left { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s4);
  border: 1px solid rgba(200,168,75,.35);
  background: rgba(200,168,75,.08);
  border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: var(--s8);
  backdrop-filter: blur(8px);
}
.hero-eyebrow i { font-size: 10px; color: var(--gold-500); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.08;
  color: var(--white); letter-spacing: -.01em;
  margin-bottom: var(--s6);
}
.hero-title .line { display: block; }
.hero-title .gold { color: var(--gold-400); }
.hero-title .line.reveal-word .word {
  display: inline-block; overflow: hidden;
}
.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .8s var(--ease-elegant);
}
.hero-title .word.visible span { transform: none; }

.hero-desc {
  font-size: var(--text-lg); color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: var(--s10); max-width: 520px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4);
  margin-bottom: var(--s12);
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s6);
}
.trust-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); color: rgba(255,255,255,.55);
}
.trust-item i { color: var(--gold-500); font-size: var(--text-xs); }

/* Hero right — image frame */
.hero-right {
  display: flex; justify-content: flex-end; align-items: center; position: relative;
}
.hero-image-frame {
  position: relative; width: 100%; max-width: 520px;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-frame img { width: 100%; height: 560px; object-fit: cover; display: block; }

.hero-image-frame::before {
  content: ''; position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold-500) 0%, transparent 45%, transparent 55%, var(--forest-400) 100%);
  z-index: -1;
}

/* Floating badge */
.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--forest-800);
  border: 1.5px solid rgba(200,168,75,.3);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--s3);
}
.badge-float-stars { color: var(--gold-500); font-size: var(--text-lg); letter-spacing: 2px; }
.badge-float-info span { display: block; }
.badge-float-info .badge-score { font-size: var(--text-xl); font-weight: 700; color: var(--white); line-height: 1; }
.badge-float-info .badge-label { font-size: var(--text-xs); color: rgba(255,255,255,.5); margin-top: 2px; }

/* Floating stat card */
.hero-stat-card {
  position: absolute; top: 30px; right: -20px;
  background: var(--gold-500);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.hero-stat-card .stat-num {
  display: block; font-family: var(--font-display);
  font-size: var(--text-4xl); font-weight: 700; color: var(--forest-900); line-height: 1;
}
.hero-stat-card .stat-label {
  font-size: var(--text-xs); font-weight: 600;
  color: rgba(10,25,15,.6); text-transform: uppercase; letter-spacing: .08em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: var(--s8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--s2);
  color: rgba(255,255,255,.4); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: .1em; z-index: 2;
  cursor: pointer;
  animation: heroBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}
@keyframes heroBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ----------------------------------------------------------------
   10. SECTION HEADERS
---------------------------------------------------------------- */
.section-tag {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s1) var(--s4);
  background: var(--accent-pale);
  border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: var(--s5);
}
.section-tag.light {
  background: rgba(200,168,75,.15);
  color: var(--gold-400);
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--s16); }
.section-header.left { text-align: left; margin-left: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 4vw, var(--text-6xl));
  font-weight: 600; line-height: 1.12;
  color: var(--text); letter-spacing: -.02em;
  margin-bottom: var(--s4);
}
.section-title.white { color: var(--white); }

.section-desc {
  font-size: var(--text-lg); color: var(--text-muted); line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.6); }

/* Gold divider */
.gold-divider {
  display: flex; align-items: center; gap: var(--s4);
  margin-bottom: var(--s6);
}
.gold-divider-line { height: 1px; width: 48px; background: var(--gold-500); flex-shrink: 0; }
.gold-divider-dot { width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; flex-shrink: 0; }

/* ----------------------------------------------------------------
   11. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s3) var(--s7, var(--s10));
  border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  transition: all var(--t-base);
  position: relative; overflow: hidden; cursor: pointer;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0; transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--forest-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,75,.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest-800);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--forest-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-green {
  background: linear-gradient(135deg, var(--forest-500), var(--forest-600));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42,122,80,.35);
}

.btn i { font-size: var(--text-sm); }
.btn-icon-right i { margin-left: var(--s1); transition: transform var(--t-base); }
.btn:hover .btn-icon-right i { transform: translateX(4px); }

/* ----------------------------------------------------------------
   12. ABOUT SECTION
---------------------------------------------------------------- */
.about { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center;
}

.about-image-wrap {
  position: relative; padding: var(--s6) 0 0 var(--s6);
}
.about-image-main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img { width: 100%; height: 540px; object-fit: cover; }

.about-image-decoration {
  position: absolute; top: 0; left: 0;
  width: 180px; height: 180px;
  border: 2.5px solid var(--gold-400);
  border-radius: var(--r-xl);
  pointer-events: none;
}
.about-image-decoration::before {
  content: ''; position: absolute; top: 8px; left: 8px; right: -8px; bottom: -8px;
  border: 1px solid var(--gold-200); border-radius: var(--r-xl);
}

.about-certif {
  position: absolute; bottom: var(--s6); right: var(--s4);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--s3);
  border-left: 3px solid var(--gold-500);
}
.certif-icon { font-size: var(--text-2xl); color: var(--gold-500); }
.certif-text span { display: block; }
.certif-text .certif-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.certif-text .certif-value { font-size: var(--text-sm); font-weight: 700; color: var(--text); }

.about-content { max-width: 560px; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
  font-weight: 600; line-height: 1.15;
  color: var(--text); margin-bottom: var(--s4);
}
.about-desc { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.75; margin-bottom: var(--s8); }

.about-features { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s10); }
.about-feature {
  display: flex; align-items: flex-start; gap: var(--s4);
  padding: var(--s4); border-radius: var(--r-lg);
  transition: background var(--t-base), transform var(--t-base);
}
.about-feature:hover { background: var(--border-light); transform: translateX(4px); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: var(--text-lg);
}
.about-feature-text h4 { font-size: var(--text-base); font-weight: 600; color: var(--text); margin-bottom: 2px; }
.about-feature-text p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s4);
  padding: var(--s6);
  background: var(--forest-800);
  border-radius: var(--r-xl);
}
.about-stat { text-align: center; }
.about-stat .stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl); font-weight: 700;
  color: var(--gold-400); line-height: 1; display: block;
}
.about-stat .stat-label {
  font-size: var(--text-xs); color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .1em; margin-top: var(--s1);
}

/* ----------------------------------------------------------------
   13. SERVICES SECTION
---------------------------------------------------------------- */
.services-section { background: var(--cream); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6);
}

.service-card {
  background: var(--forest-800);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  border: 1px solid rgba(255,255,255,.04);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(5,15,10,.3), 0 0 0 1px rgba(200,168,75,.2);
}

.service-card-image {
  position: relative;
  height: 220px; overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-elegant);
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--forest-800) 100%);
}

.service-card-body { padding: var(--s6); }

.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(200,168,75,.12);
  border: 1px solid rgba(200,168,75,.25);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: var(--text-xl);
  margin-bottom: var(--s4);
  transition: background var(--t-base), transform var(--t-spring);
}
.service-card:hover .service-card-icon {
  background: rgba(200,168,75,.22);
  transform: scale(1.08) rotate(-4deg);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 600;
  color: var(--white); line-height: 1.25;
  margin-bottom: var(--s3);
}

.service-card-desc {
  font-size: var(--text-sm); color: rgba(255,255,255,.5);
  line-height: 1.65; margin-bottom: var(--s5);
}

.service-card-list { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s6); }
.service-card-list li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); color: rgba(255,255,255,.65);
}
.service-card-list li i { color: var(--gold-500); font-size: var(--text-xs); flex-shrink: 0; }

.service-card-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-400);
  transition: gap var(--t-base), color var(--t-base);
}
.service-card-link i { transition: transform var(--t-base); }
.service-card:hover .service-card-link { gap: var(--s3); }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* Featured card */
.service-card.featured {
  border-color: rgba(200,168,75,.3);
  background: linear-gradient(160deg, var(--forest-700) 0%, var(--forest-800) 100%);
}
.service-card.featured::before {
  content: 'Le plus demandé';
  position: absolute; top: var(--s4); right: var(--s4); z-index: 5;
  background: var(--gold-500); color: var(--forest-900);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: var(--s1) var(--s3); border-radius: var(--r-full);
}

/* ----------------------------------------------------------------
   14. STATS SECTION
---------------------------------------------------------------- */
.stats-section {
  background: var(--forest-800);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,168,75,.07) 0%, transparent 70%);
}
.stats-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.06);
}

.stat-item {
  padding: var(--s12) var(--s8); text-align: center;
  background: var(--forest-800);
  position: relative; overflow: hidden;
  transition: background var(--t-base);
}
.stat-item:hover { background: var(--forest-700); }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--gold-500);
  border-radius: var(--r-full);
  transition: width var(--t-slow);
}
.stat-item:hover::before { width: 80px; }

.stat-count {
  font-family: var(--font-display);
  font-size: var(--text-7xl); font-weight: 700;
  color: var(--gold-400); line-height: 1;
  display: block; margin-bottom: var(--s2);
}
.stat-unit { font-size: var(--text-4xl); color: var(--gold-500); }
.stat-title {
  font-size: var(--text-base); color: rgba(255,255,255,.7); font-weight: 500;
  display: block; margin-bottom: var(--s1);
}
.stat-sub { font-size: var(--text-sm); color: rgba(255,255,255,.35); }

/* ----------------------------------------------------------------
   15. PROCESS SECTION
---------------------------------------------------------------- */
.process-section { background: var(--white); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: linear-gradient(90deg, var(--gold-300), var(--gold-500), var(--gold-300));
}

.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 var(--s4);
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%; background: var(--forest-800);
  border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 700; color: var(--gold-400);
  margin-bottom: var(--s6); z-index: 1;
  box-shadow: 0 0 0 6px var(--white), var(--shadow-md);
  transition: background var(--t-base), transform var(--t-spring);
}
.process-step:hover .step-number {
  background: var(--gold-500); color: var(--forest-900); transform: scale(1.1);
}
.step-icon-wrap {
  width: 72px; height: 72px;
  background: var(--accent-pale);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-2xl); color: var(--accent-dark);
  margin-bottom: var(--s5);
  transition: background var(--t-base), transform var(--t-spring);
}
.process-step:hover .step-icon-wrap { background: var(--gold-200); transform: translateY(-4px); }
.step-title { font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-bottom: var(--s2); }
.step-desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* ----------------------------------------------------------------
   16. GALLERY PREVIEW
---------------------------------------------------------------- */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s4);
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }

.gallery-item {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%; height: 100%; min-height: 240px; object-fit: cover; display: block;
  transition: transform .8s var(--ease-elegant);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,19,.8) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: var(--s5);
  opacity: 0; transition: opacity var(--t-slow);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: var(--text-sm); font-weight: 600; color: var(--white);
  letter-spacing: .04em; text-transform: uppercase;
}

.gallery-see-all {
  text-align: center; margin-top: var(--s10);
}

/* ----------------------------------------------------------------
   17. TESTIMONIALS
---------------------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(160deg, var(--forest-800) 0%, var(--forest-900) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6);
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  transition: background var(--t-base), transform var(--t-slow), border-color var(--t-base);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  border-color: rgba(200,168,75,.25);
}

.testimonial-quote-icon {
  font-size: 4rem; line-height: 1; color: var(--gold-500); opacity: .25;
  font-family: Georgia, serif;
  position: absolute; top: var(--s4); right: var(--s6);
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: var(--s4); color: var(--gold-500);
}
.testimonial-text {
  font-size: var(--text-base); color: rgba(255,255,255,.7);
  line-height: 1.75; margin-bottom: var(--s6); font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: var(--s3);
  padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,.08);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest-600); border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 600; color: var(--gold-400); flex-shrink: 0;
}
.testimonial-name { font-size: var(--text-sm); font-weight: 700; color: var(--white); }
.testimonial-loc { font-size: var(--text-xs); color: rgba(255,255,255,.4); margin-top: 2px; }
.testimonial-source {
  display: flex; align-items: center; gap: var(--s1);
  font-size: var(--text-xs); color: var(--gold-400);
}

.testimonials-google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s4); margin-top: var(--s12);
}
.google-badge-inner {
  display: inline-flex; align-items: center; gap: var(--s4);
  padding: var(--s4) var(--s8);
  border: 1.5px solid rgba(200,168,75,.3);
  border-radius: var(--r-full);
  background: rgba(200,168,75,.07);
}
.google-g {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base); font-weight: 900; color: #4285F4;
  font-family: 'Arial', sans-serif; flex-shrink: 0;
}
.google-info span { display: block; }
.google-rating { font-size: var(--text-lg); font-weight: 700; color: var(--gold-400); line-height: 1; }
.google-count  { font-size: var(--text-xs); color: rgba(255,255,255,.45); }

/* ----------------------------------------------------------------
   18. CTA FINALE
---------------------------------------------------------------- */
.cta-final {
  background: var(--cream);
}
.cta-final-inner {
  background: linear-gradient(135deg, var(--forest-700) 0%, var(--forest-800) 50%, var(--forest-900) 100%);
  border-radius: var(--r-2xl);
  padding: var(--s20) var(--s16);
  text-align: center; overflow: hidden; position: relative;
}
.cta-final-inner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,.1) 0%, transparent 70%);
}
.cta-final-inner::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,122,80,.15) 0%, transparent 70%);
}

.cta-final-content { position: relative; z-index: 1; }
.cta-final-eyebrow {
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: var(--s4);
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 4vw, var(--text-6xl));
  font-weight: 600; color: var(--white); line-height: 1.12;
  margin-bottom: var(--s6); letter-spacing: -.015em;
}
.cta-final-desc {
  font-size: var(--text-lg); color: rgba(255,255,255,.6); margin-bottom: var(--s10);
}
.cta-final-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s4);
}
.cta-final-meta {
  margin-top: var(--s8);
  display: flex; align-items: center; justify-content: center; gap: var(--s8);
  flex-wrap: wrap;
}
.cta-meta-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); color: rgba(255,255,255,.5);
}
.cta-meta-item i { color: var(--gold-500); }

/* ----------------------------------------------------------------
   19. FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--forest-950);
  padding-top: var(--s20);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12); padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: var(--s4);
}
.footer-logo .logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 600; color: var(--white);
}
.footer-logo .logo-name em { font-style: normal; color: var(--gold-400); }
.footer-tagline { font-size: var(--text-sm); color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s5); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: var(--text-sm);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-400); background: rgba(200,168,75,.1); }

.footer-column h4 {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: var(--s5);
}
.footer-column ul { display: flex; flex-direction: column; gap: var(--s3); }
.footer-column li a, .footer-column li span {
  font-size: var(--text-sm); color: rgba(255,255,255,.45);
  transition: color var(--t-base), padding-left var(--t-base);
  display: flex; align-items: center; gap: var(--s2);
}
.footer-column li a:hover { color: rgba(255,255,255,.8); padding-left: var(--s1); }
.footer-column li i { color: var(--gold-600); font-size: var(--text-xs); flex-shrink: 0; }

.footer-bottom {
  padding: var(--s5) 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s4);
}
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,.2); }
.footer-rating {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-xs); color: rgba(255,255,255,.3);
}
.footer-rating .stars { color: var(--gold-500); letter-spacing: 2px; }

/* ----------------------------------------------------------------
   20. BACK TO TOP
---------------------------------------------------------------- */
.back-to-top {
  position: fixed; bottom: var(--s8); right: var(--s8); z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-500); color: var(--forest-900);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { transform: translateY(-4px); }

/* ----------------------------------------------------------------
   21. PAGE — SERVICES
---------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--s16));
  padding-bottom: var(--s16);
  background: linear-gradient(160deg, var(--forest-800) 0%, var(--forest-900) 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(200,168,75,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); color: rgba(255,255,255,.4); margin-bottom: var(--s6);
}
.page-hero-breadcrumb a { color: var(--gold-400); }
.page-hero-breadcrumb i { font-size: var(--text-xs); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-5xl), 5vw, var(--text-7xl));
  font-weight: 600; color: var(--white); line-height: 1.1;
  margin-bottom: var(--s4);
}
.page-hero-desc { font-size: var(--text-xl); color: rgba(255,255,255,.55); max-width: 600px; }

/* Service detail cards */
.service-detail {
  padding: var(--s24) 0;
}
.service-detail:nth-child(even) { background: var(--white); }

.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }

.service-detail-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.service-detail-media img { width: 100%; height: 460px; object-fit: cover; display: block; }

.service-detail-content {}
.service-detail-icon {
  width: 64px; height: 64px;
  background: var(--accent-pale);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: var(--text-2xl);
  margin-bottom: var(--s5);
}
.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 3.5vw, var(--text-5xl));
  font-weight: 600; color: var(--text); line-height: 1.15;
  margin-bottom: var(--s5);
}
.service-detail-desc { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.75; margin-bottom: var(--s8); }
.service-detail-features {
  display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s8);
}
.service-detail-feature {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--text-base); color: var(--text);
}
.service-detail-feature i { color: var(--gold-500); flex-shrink: 0; }

/* ----------------------------------------------------------------
   22. PAGE — RÉALISATIONS / GALERIE
---------------------------------------------------------------- */
.gallery-masonry {
  columns: 3; column-gap: var(--s4);
}
.gallery-masonry-item {
  break-inside: avoid; margin-bottom: var(--s4);
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-masonry-item img { display: block; width: 100%; transition: transform .6s var(--ease-elegant); }
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,31,19,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-base);
}
.gallery-masonry-item:hover .gallery-masonry-item-overlay { opacity: 1; }
.gallery-zoom-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,168,75,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-900); font-size: var(--text-lg);
  transform: scale(.7); transition: transform var(--t-spring);
}
.gallery-masonry-item:hover .gallery-zoom-icon { transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,10,8,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-slow), visibility var(--t-slow);
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); object-fit: contain; }
.lightbox-close {
  position: absolute; top: var(--s6); right: var(--s6);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: var(--text-xl); cursor: pointer;
  border: 1px solid rgba(255,255,255,.15);
  transition: background var(--t-base);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: var(--text-lg); cursor: pointer;
  transition: background var(--t-base);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.16); }
.lightbox-prev { left: var(--s6); }
.lightbox-next { right: var(--s6); }

/* ----------------------------------------------------------------
   23. PAGE — CONTACT
---------------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 5fr 4fr; gap: var(--s12); align-items: start;
}

.contact-form-wrap {
  background: var(--white); border-radius: var(--r-2xl);
  padding: var(--s10); box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 600; color: var(--text); margin-bottom: var(--s2); }
.form-subtitle { font-size: var(--text-base); color: var(--text-muted); margin-bottom: var(--s8); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s4); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: var(--s3) var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  font-size: var(--text-base); color: var(--text);
  background: var(--cream);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42,122,80,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { cursor: pointer; }

.form-submit { width: 100%; justify-content: center; padding: var(--s4) var(--s8); font-size: var(--text-base); margin-top: var(--s2); }

.contact-info-wrap { display: flex; flex-direction: column; gap: var(--s5); }
.contact-info-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--s6); box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: var(--s4);
  border-left: 3px solid var(--gold-500);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--accent-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); font-size: var(--text-lg);
}
.contact-info-text label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: var(--s1); }
.contact-info-text a, .contact-info-text span { font-size: var(--text-base); font-weight: 500; color: var(--text); }
.contact-info-text a:hover { color: var(--primary); }

.hours-card {
  background: var(--forest-800); border-radius: var(--r-xl);
  padding: var(--s6);
}
.hours-card h4 { font-size: var(--text-sm); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-400); margin-bottom: var(--s5); display: flex; align-items: center; gap: var(--s2); }
.hours-list { display: flex; flex-direction: column; gap: var(--s2); }
.hours-row { display: flex; justify-content: space-between; font-size: var(--text-sm); }
.hours-row .day { color: rgba(255,255,255,.5); }
.hours-row .time { color: rgba(255,255,255,.8); font-weight: 500; }
.hours-row.open .day, .hours-row.open .time { color: var(--gold-400); font-weight: 600; }

/* ----------------------------------------------------------------
   24. SCROLL REVEAL ANIMATIONS
---------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease-elegant), transform .8s var(--ease-elegant);
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="down"]  { transform: translateY(-30px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="fade"]  {}

[data-reveal].revealed { opacity: 1; transform: none; }

/* Stagger delays */
[data-delay="100"] { transition-delay: .1s !important; }
[data-delay="200"] { transition-delay: .2s !important; }
[data-delay="300"] { transition-delay: .3s !important; }
[data-delay="400"] { transition-delay: .4s !important; }
[data-delay="500"] { transition-delay: .5s !important; }
[data-delay="600"] { transition-delay: .6s !important; }

/* ----------------------------------------------------------------
   25. UTILITY CLASSES
---------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-auto { margin-top: auto; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }

/* ----------------------------------------------------------------
   26. RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s12); }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: var(--s10); }
  .about-image-wrap { max-width: 560px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; display: grid; grid-template-columns: 280px 1fr; }
  .service-card.featured .service-card-image { height: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--s8); }
  .process-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  @supports (grid-template-columns: repeat(2,1fr)) {
    .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
  .service-detail-media img { height: 360px; }

  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: 1; display: block; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: 1; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-final-inner { padding: var(--s12) var(--s6); }
  .form-row { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 1; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .stat-count { font-size: var(--text-5xl); }
  .back-to-top { bottom: var(--s5); right: var(--s5); }
}
