/* ═══════════════════════════════════════════════════════════════════
   DÉCO FLEURISTE — Botanical Minimalist 2026
   Architecture : miroir exact de decofleuriste.ma
   Palette : Ivory · Sage Green · Forest · Warm Gold
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --ivory:        #FAFAF6;
  --ivory-warm:   #F5EFE3;
  --ivory-deep:   #EDE5D4;
  --sage-pale:    #D4E3CC;
  --sage:         #8BA888;
  --sage-mid:     #6E9069;
  --sage-dark:    #4E7149;
  --forest:       #2A4527;
  --forest-deep:  #1A2E18;
  --gold:         #C9A04A;
  --gold-pale:    #EDD9A3;
  --gold-dark:    #A07C2A;
  --charcoal:     #1C1C1C;
  --charcoal-50:  #555;
  --white:        #FFFFFF;
  --peach-tint:   #FFF0E9; /* couleur d'origine du site */

  /* Glass nav */
  --glass:        rgba(250, 250, 246, 0.78);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur:   blur(22px) saturate(170%);
  --glass-shadow: 0 4px 30px rgba(42, 69, 39, 0.09);

  /* Typo */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Inter', system-ui, -apple-system, sans-serif;

  /* Tailles texte */
  --t-xs:   0.72rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;
  --t-2xl:  2.25rem;
  --t-3xl:  clamp(2.2rem, 5vw, 3.5rem);
  --t-hero: clamp(2.6rem, 6.5vw, 5.2rem);

  /* Espacements */
  --sp-xs:  0.5rem;
  --sp-sm:  0.75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 5rem;
  --sp-4xl: 8rem;

  /* Rayons */
  --r-sm:   0.5rem;
  --r-md:   1rem;
  --r-lg:   1.75rem;
  --r-xl:   2.5rem;
  --r-pill: 100px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0.19, 1, 0.22, 1);
  --dur-fast:   160ms;
  --dur-base:   280ms;
  --dur-slow:   550ms;

  /* Layout */
  --max-w:          1300px;
  --nav-h:          68px;
  --nav-h-desktop:  80px;
}

/* ─── 2. RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ─── 3. UTILITIES ──────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; top: -200%; left: 1rem;
  padding: .5rem 1.25rem; background: var(--forest); color: #fff;
  border-radius: var(--r-pill); font-weight: 500; z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }

/* ─── 4. TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .6rem;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-2xl);
  padding: 0 var(--sp-lg);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.18;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: var(--t-md);
  color: var(--charcoal-50);
  line-height: 1.75;
}
.section-cta { text-align: center; margin-top: var(--sp-2xl); }

/* ─── 5. BOUTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.875rem;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 500;
  letter-spacing: .04em; border-radius: var(--r-pill);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast);
  white-space: nowrap; min-height: 52px; cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(42, 69, 39, .32);
}
.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 10px 36px rgba(42, 69, 39, .42);
}
.btn-outline {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* ─── 5b. LOGO IMAGE ────────────────────────────────────────────── */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Keep logo readable on glass nav */
  filter: drop-shadow(0 1px 2px rgba(255,255,255,.4));
}
.logo-img--footer {
  height: 52px;
  /* Lighten on dark footer background */
  filter: brightness(0) invert(1) opacity(.85);
}

/* ─── 6. HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--sp-lg);
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  gap: var(--sp-md);
  transition: box-shadow var(--dur-base);
}
.site-header.scrolled .nav-wrap {
  box-shadow: 0 8px 40px rgba(42, 69, 39, .14);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  flex-shrink: 0; color: var(--forest);
}
.logo-mark {
  width: 36px; height: 36px; color: var(--sage-dark);
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--serif); font-size: var(--t-lg);
  font-weight: 500; color: var(--forest); letter-spacing: .02em;
}
.logo-tagline {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage-mid);
}

/* Desktop nav links */
.nav-links {
  display: none; flex: 1;
  align-items: center; justify-content: center;
  gap: .25rem;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .5rem 1rem; min-height: 44px;
  font-size: var(--t-sm); font-weight: 400; letter-spacing: .02em;
  color: var(--charcoal-50); border-radius: var(--r-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover, .nav-link[aria-current="page"] {
  color: var(--forest); background: rgba(139, 168, 136, .13);
}
.nav-link[aria-current="page"] { font-weight: 500; }
.nav-link--btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: .5rem 1rem; min-height: 44px;
  font-size: var(--t-sm); font-weight: 400; color: var(--charcoal-50);
  border-radius: var(--r-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link--btn:hover { color: var(--forest); background: rgba(139,168,136,.13); }
.chevron { transition: transform var(--dur-base) var(--ease); flex-shrink: 0; }
.has-dropdown:hover .chevron,
.nav-link--btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white); min-width: 280px;
  border: 1px solid var(--sage-pale);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(42, 69, 39, .12);
  padding: .5rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base), transform var(--dur-base) var(--ease-out);
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.nav-link--btn[aria-expanded="true"] + .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex; align-items: center; gap: .875rem;
  padding: .75rem 1rem; border-radius: var(--r-md);
  transition: background var(--dur-fast);
}
.dropdown-item:hover { background: var(--ivory-warm); }
.dropdown-icon { font-size: 1.25rem; flex-shrink: 0; }
.dropdown-item strong { display: block; font-size: var(--t-sm); font-weight: 500; color: var(--forest); }
.dropdown-item small  { display: block; font-size: var(--t-xs); color: var(--charcoal-50); }

/* Nav end */
.nav-end { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-cta {
  display: none; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem; min-height: 44px;
  font-size: var(--t-sm); font-weight: 500; color: var(--forest);
  border: 1.5px solid var(--sage-pale); border-radius: var(--r-pill);
  transition: all var(--dur-fast);
}
.nav-cta:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: 0 10px;
  border-radius: var(--r-sm); flex-shrink: 0;
}
.bar {
  display: block; height: 1.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast), width var(--dur-base);
  width: 100%;
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav backdrop (mobile) */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(26, 46, 24, .45);
  backdrop-filter: blur(4px); z-index: 195;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-base);
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }

/* Mobile nav off-canvas */
@media (max-width: 959px) {
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100dvh; width: min(320px, 88vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: calc(var(--nav-h) + 2rem) var(--sp-xl) var(--sp-2xl);
    background: var(--ivory); box-shadow: -20px 0 60px rgba(42,69,39,.12);
    gap: .25rem; z-index: 200; overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links:not(.open) { display: flex; } /* keep in DOM for transition */
  .nav-link, .nav-link--btn {
    width: 100%; font-size: var(--t-md); padding: .875rem var(--sp-lg); min-height: 56px;
  }
  .dropdown {
    position: static; transform: none;
    box-shadow: none; border: none;
    background: var(--ivory-warm); border-radius: var(--r-md);
    opacity: 1; pointer-events: all;
    margin-top: .25rem;
  }
  .has-dropdown:hover .dropdown { transform: none; }
}

@media (min-width: 960px) {
  .hamburger { display: none; }
  .nav-links  { display: flex; }
  .nav-cta    { display: flex; }
  .nav-wrap   { height: var(--nav-h-desktop); padding: 0 var(--sp-2xl); }
}

/* ─── 7. HERO SLIDER ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100dvh - var(--nav-h));
  min-height: 520px;
  overflow: hidden;
  background: var(--forest-deep);
}
@media (min-width: 960px) { .hero { height: calc(100dvh - var(--nav-h-desktop)); } }

/* Track */
.slides-track {
  display: flex; height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
  will-change: transform;
}

/* Individual slide */
.slide {
  position: relative;
  min-width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Background image */
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--forest);
  transition: transform 8s linear;
  will-change: transform;
}
.slide.is-active .slide-bg { transform: scale(1.06); }

/* LCP hint image tag inside .slide-bg — invisible */
.slide-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0; pointer-events: none;
}

/* Gradient overlay — centré, lumière au milieu */
.slide-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(20, 40, 18, 0.25) 0%,
    rgba(20, 40, 18, 0.60) 70%,
    rgba(20, 40, 18, 0.80) 100%
  );
}

/* Content — centré horizontalement */
.slide-content {
  position: relative; z-index: 2;
  padding: var(--sp-2xl) var(--sp-xl);
  max-width: 760px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  animation: slideIn .7s var(--ease-out) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-eyebrow {
  display: inline-block;
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-pale);
  padding: .3rem .9rem;
  border: 1px solid rgba(201, 160, 74, .5);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-lg);
  backdrop-filter: blur(8px);
}

.slide-title {
  font-family: var(--serif);
  font-size: var(--t-hero); font-weight: 300;
  line-height: 1.06; color: var(--white);
  margin-bottom: var(--sp-lg); letter-spacing: -.01em;
}
.slide-title em { font-style: italic; color: var(--gold-pale); }

.slide-desc {
  font-size: var(--t-md); color: rgba(255,255,255,.88);
  line-height: 1.75; margin-bottom: var(--sp-xl);
  max-width: 52ch; text-align: center;
}

/* Arrows */
.slide-arrow {
  position: absolute; top: 50%; z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-50%);
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-fast);
  backdrop-filter: blur(8px);
}
.slide-arrow:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
}
.slide-arrow:active { transform: translateY(-50%) scale(.94); }
.slide-arrow--prev { left: var(--sp-lg); }
.slide-arrow--next { right: var(--sp-lg); }
@media (min-width: 960px) {
  .slide-arrow { width: 60px; height: 60px; }
  .slide-arrow--prev { left: var(--sp-2xl); }
  .slide-arrow--next { right: var(--sp-2xl); }
}

/* Bullets */
.slide-bullets {
  position: absolute; bottom: var(--sp-xl); left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--dur-base), width var(--dur-base) var(--ease-out);
  cursor: pointer; min-width: 8px;
}
.bullet--active, .bullet[aria-selected="true"] {
  background: var(--white); width: 28px; border-radius: 4px;
}

/* Progress bar */
.slide-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.12); z-index: 3;
}
.slide-progress-bar {
  height: 100%; background: var(--gold);
  transition: width .1s linear;
}

/* ─── 8. FEATURES ───────────────────────────────────────────────── */
.features {
  padding: var(--sp-3xl) var(--sp-lg);
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); } }

.feature-card {
  padding: var(--sp-xl) var(--sp-lg) var(--sp-xl);
  border-radius: var(--r-xl);
  border: 1px solid var(--sage-pale);
  text-align: center;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
  background: var(--ivory);
}
.feature-card:hover {
  box-shadow: 0 16px 48px rgba(42, 69, 39, .09);
  transform: translateY(-4px);
}
.feature-card--accent {
  background: var(--forest);
  border-color: var(--forest);
}
/* Spécificité renforcée pour surpasser .feature-card h3 déclaré plus bas */
.feature-card.feature-card--accent h3 {
  color: var(--white) !important;
}
.feature-card.feature-card--accent p { color: rgba(255,255,255,.92); }
.feature-card--accent .feature-icon { color: var(--gold-pale); }

.feature-img-wrap {
  width: 110px; height: 110px;
  margin: 0 auto var(--sp-lg);
  border-radius: 50%;
  overflow: hidden;
  background: var(--ivory-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(42, 69, 39, .12);
  transition: transform var(--dur-slow) var(--ease-out);
}
/* Cercle sur fond forest : teinte or pâle */
.feature-card--accent .feature-img-wrap {
  background: rgba(201, 160, 74, .18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.feature-img {
  width: 75%; height: 75%;
  object-fit: contain;
  transition: transform var(--dur-slow) var(--ease-out);
}
.feature-card:hover .feature-img-wrap { transform: scale(1.08); }
.feature-card h3 {
  font-family: var(--serif);
  font-size: var(--t-xl); font-weight: 400; color: var(--forest);
  margin-bottom: .75rem;
}
.feature-card p { font-size: var(--t-sm); color: var(--charcoal-50); line-height: 1.75; }

@media (min-width: 960px) { .features { padding: var(--sp-4xl) var(--sp-3xl); } }

/* ─── 9. STATS BANNER ───────────────────────────────────────────── */
.stats-banner {
  background: var(--forest);
  padding: var(--sp-2xl) var(--sp-lg);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl) var(--sp-lg);
  max-width: var(--max-w); margin: 0 auto;
  align-items: center;
}
@media (min-width: 640px) {
  .stats-inner { grid-template-columns: repeat(7, auto); align-items: center; justify-content: center; }
  .stat-divider { display: block; }
}
@media (max-width: 639px) { .stat-divider { display: none; } }

.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--gold-pale); line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  display: block; font-size: var(--t-xs); font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.15);
  justify-self: center;
}

/* ─── 10. SERVICES GRID ─────────────────────────────────────────── */
.services-section {
  padding: var(--sp-3xl) var(--sp-lg);
  background: var(--ivory);
  max-width: 100%;
}
@media (min-width: 960px) { .services-section { padding: var(--sp-4xl) var(--sp-3xl); } }

.services-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--sp-2xl);
}

/* Service card — default layout (image left) */
.service-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sage-pale);
  transition: box-shadow var(--dur-base) var(--ease);
}
.service-card:hover { box-shadow: 0 20px 64px rgba(42, 69, 39, .1); }

@media (min-width: 768px) {
  .service-card { grid-template-columns: 1fr 1fr; }
  .service-card--reverse .service-card__img-wrap { order: 2; }
  .service-card--reverse .service-card__body      { order: 1; }
  .service-card--full { grid-template-columns: 1fr; }
  .service-card--full .service-card__img-wrap { aspect-ratio: 21/8; }
}

/* Image */
.service-card__img-wrap {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ivory-deep);
}
.service-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__img-overlay {
  position: absolute; inset: 0;
  background: rgba(42, 69, 39, 0);
  transition: background var(--dur-base);
}
.service-card:hover .service-card__img-overlay { background: rgba(42, 69, 39, .08); }

/* Body */
.service-card__body {
  padding: var(--sp-xl) var(--sp-2xl);
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--sp-md);
}
@media (max-width: 767px) { .service-card__body { padding: var(--sp-xl) var(--sp-lg); } }

.service-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: var(--sage-pale); line-height: 1; display: block;
}
.service-card__body h3 {
  font-family: var(--serif);
  font-size: var(--t-2xl); font-weight: 400;
  color: var(--forest); line-height: 1.25;
}
.service-card__body h3 a:hover { text-decoration: underline; text-underline-offset: 4px; }
.service-card__body p { font-size: var(--t-sm); color: var(--charcoal-50); line-height: 1.8; }

.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--t-sm); font-weight: 500; color: var(--sage-dark);
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.service-link:hover { color: var(--forest); gap: .7rem; }

/* Full-width service card */
.service-card--full .service-card__body {
  max-width: 620px; padding: var(--sp-2xl);
}

/* ─── 11. CLIENTS ───────────────────────────────────────────────── */
.clients {
  padding: var(--sp-3xl) 0;
  background: var(--ivory-warm);
  overflow: hidden;
}
.clients-track {
  display: flex; gap: 0;
  margin-top: var(--sp-xl);
}
.clients-strip {
  display: flex; align-items: center;
  gap: var(--sp-2xl);
  padding: 0 var(--sp-xl);
  animation: logoScroll 22s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.clients-track:hover .clients-strip { animation-play-state: paused; }

.client-logo {
  display: flex; align-items: center; justify-content: center;
  padding: .875rem var(--sp-xl);
  border: 1px solid var(--sage-pale);
  border-radius: var(--r-pill);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
  flex-shrink: 0;
}
.client-logo:hover {
  border-color: var(--sage);
  box-shadow: 0 4px 20px rgba(42, 69, 39, .08);
  transform: translateY(-2px);
}
.client-logo img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter var(--dur-base);
}
.client-logo:hover img { filter: grayscale(0) opacity(1); }

/* ─── 12. PORTFOLIO ─────────────────────────────────────────────── */
.portfolio {
  padding: var(--sp-3xl) var(--sp-lg);
  background: var(--white);
}
@media (min-width: 960px) { .portfolio { padding: var(--sp-4xl) var(--sp-3xl); } }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-md);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-lg); }
  .portfolio-item--large { grid-row: span 2; }
}

.portfolio-item { margin: 0; }
.portfolio-link {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--ivory-deep);
  aspect-ratio: 1;
}
.portfolio-item--large .portfolio-link { aspect-ratio: 3/4; height: 100%; }

.portfolio-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.portfolio-link:hover img { transform: scale(1.07); }

.portfolio-caption {
  position: absolute; inset: 0;
  background: rgba(26, 46, 24, 0);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: var(--sp-lg);
  color: var(--white); font-size: var(--t-sm); font-weight: 500;
  opacity: 0;
  transition: background var(--dur-base), opacity var(--dur-base);
}
.portfolio-link:hover .portfolio-caption {
  background: rgba(26, 46, 24, .55); opacity: 1;
}

/* ─── 13. ABOUT ─────────────────────────────────────────────────── */
.about {
  padding: var(--sp-3xl) var(--sp-lg);
  background: var(--ivory);
  display: grid; grid-template-columns: 1fr; gap: var(--sp-2xl);
  max-width: var(--max-w); margin: 0 auto;
}
@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr; align-items: center;
    gap: var(--sp-3xl);
    padding: var(--sp-4xl) var(--sp-3xl);
  }
}

/* About visual */
.about-visual { position: relative; }
.about-img {
  width: 100%; border-radius: var(--r-xl);
  object-fit: cover; aspect-ratio: 4/5;
  position: relative; z-index: 1;
}
.about-badge {
  position: absolute; bottom: var(--sp-xl); right: -1rem;
  z-index: 2;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  text-align: center;
  box-shadow: 0 12px 40px rgba(42, 69, 39, .3);
}
.about-badge strong {
  display: block;
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 300; line-height: 1; color: var(--gold-pale);
}
.about-badge span {
  font-size: var(--t-xs); letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
}
@media (max-width: 899px) { .about-badge { right: var(--sp-md); } }

/* About copy */
.about-copy h2 {
  font-family: var(--serif);
  font-size: var(--t-3xl); font-weight: 400;
  color: var(--forest); line-height: 1.2;
  margin: .6rem 0 var(--sp-md);
}
.about-copy > p {
  font-size: var(--t-sm); color: var(--charcoal-50);
  line-height: 1.85; margin-bottom: var(--sp-md);
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm) var(--sp-md);
  margin: var(--sp-xl) 0;
}
.highlight {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--t-sm); color: var(--charcoal-50);
}
.highlight svg { color: var(--sage-dark); flex-shrink: 0; }
.about-actions { display: flex; flex-wrap: wrap; gap: var(--sp-md); }

/* ─── 14. FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.7);
}
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg) var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 640px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1.8fr; padding: var(--sp-4xl) var(--sp-3xl) var(--sp-2xl); } }

/* Footer brand */
.footer-logo .logo-name    { color: var(--white); }
.footer-logo .logo-tagline { color: var(--sage-mid); }
.footer-logo .logo-mark    { color: var(--sage); }

.footer-desc {
  font-size: var(--t-sm); color: rgba(255,255,255,.5);
  line-height: 1.8; margin: var(--sp-md) 0 var(--sp-lg);
  max-width: 34ch;
}

.footer-social { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--dur-fast);
}
.social-btn:hover {
  background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white);
}
.social-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Footer nav */
.footer-nav h3 {
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: var(--sp-md);
}
.footer-nav ul li + li { margin-top: .6rem; }
.footer-nav a {
  font-size: var(--t-sm); color: rgba(255,255,255,.6);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--white); }

/* Footer contact */
.footer-contact h3 {
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: var(--sp-md);
}
.contact-row {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: var(--t-sm); color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.contact-row svg { flex-shrink: 0; margin-top: 3px; color: var(--sage); }
.contact-row a { color: rgba(255,255,255,.75); }
.contact-row a:hover { color: var(--white); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: var(--sp-md);
  padding: .7rem 1.25rem; min-height: 44px;
  background: #25D366; color: var(--white);
  border-radius: var(--r-pill); font-size: var(--t-sm); font-weight: 500;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.whatsapp-btn:hover { background: #1EB857; transform: translateY(-2px); }

/* Footer bottom */
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--sp-lg) var(--sp-lg);
  display: flex; flex-wrap: wrap; gap: var(--sp-md);
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: var(--t-xs); color: rgba(255,255,255,.3); }
.footer-bottom nav { display: flex; gap: var(--sp-lg); }
.footer-bottom nav a { font-size: var(--t-xs); color: rgba(255,255,255,.38); transition: color var(--dur-fast); }
.footer-bottom nav a:hover { color: var(--white); }

/* ─── 15. WHATSAPP FAB ──────────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: var(--sp-lg); right: var(--sp-lg); z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  animation: fabIn .6s 1s var(--ease-out) both;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .55);
}
@keyframes fabIn {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ─── 16. LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(15, 25, 13, .92);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-lg);
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img {
  max-width: 90vw; max-height: 90dvh;
  border-radius: var(--r-xl);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  animation: scaleIn .3s var(--ease-out) both;
}
@keyframes scaleIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox-close {
  position: absolute; top: var(--sp-lg); right: var(--sp-lg);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background var(--dur-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

/* ─── 17. SCROLL REVEAL ─────────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── 18. FOCUS & A11Y ──────────────────────────────────────────── */
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
*:focus:not(:focus-visible) { outline: none; }

/* ─── 19. REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .clients-strip { animation: none; }
}

/* ─── 20. PRINT ─────────────────────────────────────────────────── */
@media print {
  .site-header, .wa-fab, .slide-arrow, .slide-bullets,
  .footer-social, .whatsapp-btn { display: none !important; }
}
