/* ══════════════════════════════════════════════════════
   NERDEN & FILS – STYLESHEET
   Typographie : Cormorant Garamond (titres) + DM Sans (corps)
   Palette : Ivoire chaud / Ardoise profond / Or discret
   ══════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES ──────────────────────────────────── */
:root {
  /* Couleurs principales — adaptez selon le logo */
  --col-bg:        #F7F4EF;   /* Ivoire chaud – fond principal */
  --col-bg-stone:  #EFEBE3;   /* Pierre claire – sections alternées */
  --col-dark:      #1C1A17;   /* Ardoise profond – fond sombre */
  --col-dark-2:    #252119;   /* Variante sombre légèrement plus claire */
  --col-text:      #2D2B27;   /* Texte courant */
  --col-text-muted:#7A7468;   /* Texte secondaire */
  --col-border:    #DDD8CE;   /* Bordures légères */

  /* Couleur d'accentuation — changez cette valeur pour coller au logo */
  --accent:        #8B6F3E;   /* Or chaud / Bronze */
  --accent-light:  #C4A265;   /* Accentuation claire (sur fond sombre) */
  --accent-hover:  #704F24;   /* Hover accent */

  /* Typographie */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Espacements */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-2xl: 10rem;

  /* Border-radius */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(28,26,23,.07);
  --shadow-md:  0 6px 24px rgba(28,26,23,.12);
  --shadow-lg:  0 16px 48px rgba(28,26,23,.16);

  /* Transitions */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --transition: .35s var(--ease);
}

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

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

body {
  background-color: var(--col-bg);
  color: var(--col-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── 3. UTILITIES ──────────────────────────────────── */
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--space-xl);
}

.section--dark {
  background-color: var(--col-dark);
  color: #fff;
}

.section--stone {
  background-color: var(--col-bg-stone);
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--col-dark);
  margin-bottom: var(--space-md);
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

.section--dark .section__title { color: #fff; }

/* ─── 4. BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,111,62,.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--col-dark);
  border: 2px solid var(--col-dark);
}
.btn--outline:hover {
  background-color: var(--col-dark);
  color: #fff;
}

.btn--ghost {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn--sm { padding: .55rem 1.2rem; font-size: .8rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__arrow {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─── 5. SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child reveals */
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }

/* ─── 6. HEADER / NAV ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background:
    linear-gradient(to bottom, rgba(20, 17, 13, 0.38), rgba(20, 17, 13, 0.10));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  transition: color var(--transition), text-shadow var(--transition);
}

.scrolled .nav__logo-main { color: var(--col-dark); }

.nav__logo-amp {
  color: var(--accent-light);
  transition: color var(--transition);
}
.scrolled .nav__logo-amp { color: var(--accent); }

.nav__logo-sub {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
  transition: color var(--transition), text-shadow var(--transition);
}
.scrolled .nav__logo-sub { color: var(--col-text-muted); }

.scrolled .nav__logo-main,
.scrolled .nav__logo-sub,
.scrolled .nav__link {
  text-shadow: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: #fff;
  background-color: rgba(255,255,255,.1);
}

.scrolled .nav__link { color: var(--col-text); }
.scrolled .nav__link:hover,
.scrolled .nav__link.active {
  color: var(--col-dark);
  background-color: var(--col-bg-stone);
}

.scrolled .btn--outline {
  border-color: var(--accent);
  color: var(--accent);
}
.scrolled .btn--outline:hover {
  background-color: var(--accent);
  color: #fff;
}

.nav__links .btn--outline {
  border-color: rgba(255,255,255,.72);
  color: #fff;
  margin-left: .5rem;
  background-color: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav__links .btn--outline:hover {
  background-color: #fff;
  color: var(--col-dark);
  border-color: #fff;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.scrolled .nav__burger span { background-color: var(--col-dark); }

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(28,26,23,.5);
  z-index: 99;
  opacity: 0;
  transition: opacity var(--transition);
}

/* ─── 7. HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 10s var(--ease);
}

/* SLIDER HERO PREMIUM */

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.5s ease-in-out, transform 8s ease;
  transform: scale(1.08);
}

/* Slide active */
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero.loaded .hero__img { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(18, 16, 13, 0.60) 0%,
      rgba(18, 16, 13, 0.22) 18%,
      rgba(18, 16, 13, 0.10) 34%,
      rgba(18, 16, 13, 0.22) 100%
    ),
    linear-gradient(
      to right,
      rgba(18, 16, 13, 0.72) 0%,
      rgba(18, 16, 13, 0.48) 32%,
      rgba(18, 16, 13, 0.20) 56%,
      rgba(18, 16, 13, 0.05) 78%,
      rgba(18, 16, 13, 0.00) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(206, 192, 166, 0.94);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
}

.hero__title em {
  font-style: italic;
  color: var(--accent-light);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.hero__desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.92);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.62);
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .4; transform: scaleY(.5); transform-origin: top; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.br-desk { display: inline; }

/* ─── 8. STATS ──────────────────────────────────────── */
.stats {
  background-color: var(--col-dark);
  padding-block: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
}

.stats__label {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  max-width: 140px;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ─── 9. ABOUT ──────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__visual { position: relative; }

.about__img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.about__img-frame:hover .about__img { transform: scale(1.03); }

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: -0.3rem;
  background-color: var(--accent);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
}

.about__badge-year {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
}
.about__badge-text {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: .3rem;
}

.about__lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--col-dark);
  margin-bottom: 1.5rem;
}

.about__body {
  font-size: .975rem;
  color: var(--col-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about__body strong { color: var(--col-text); font-weight: 500; }

.about__signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--col-border);
}

.about__sig-img {
  height: 48px;
  width: auto;
  opacity: .7;
}

.about__signature div {
  display: flex;
  flex-direction: column;
}
.about__signature strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--col-dark);
}
.about__signature span {
  font-size: .78rem;
  color: var(--col-text-muted);
  margin-top: .1rem;
}

/* ─── 10. SERVICES ──────────────────────────────────── */
.services__intro {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background-color: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background-color: var(--col-dark-2);
  transition: background-color var(--transition);
  cursor: default;
}
.service-card:hover { background-color: #2A2720; }

.service-card__img-wrap {
  overflow: hidden;
  height: 200px;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.85) saturate(.9);
}
.service-card:hover .service-card__img { transform: scale(1.05); filter: brightness(.9) saturate(1); }

.service-card__body {
  padding: 1.75rem;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  color: var(--accent-light);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .65rem;
  line-height: 1.2;
}

.service-card__desc {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

/* ─── 11. APPROACH ──────────────────────────────────── */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach__body {
  font-size: .975rem;
  color: var(--col-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.approach__body strong { color: var(--col-text); font-weight: 500; }

.approach__visual { position: relative; }

.approach__img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  height: 480px;
  object-fit: cover;
}

.approach__quote {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: var(--col-dark);
  color: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.approach__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
}

/* ─── 12. LABELS ────────────────────────────────────── */
.labels__intro {
  font-size: 1rem;
  color: var(--col-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.labels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.label-card {
  background-color: #fff;
  border: 1px solid var(--col-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.label-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.label-card__logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.label-card__logo {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.label-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--col-dark);
  margin-bottom: .75rem;
}

.label-card__desc {
  font-size: .875rem;
  color: var(--col-text-muted);
  line-height: 1.75;
}

/* ─── 13. TESTIMONIALS ──────────────────────────────── */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.testi-card {
  background-color: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background-color var(--transition);
}
.testi-card:hover { background-color: rgba(255,255,255,.07); }

.testi-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  flex: 1;
}

.testi-card__text::before { content: '\201C'; color: var(--accent-light); font-size: 1.4em; line-height: 0; vertical-align: -.25em; margin-right: .1em; }

.testi-card__author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.testi-card__author strong { font-size: .875rem; color: #fff; font-weight: 500; }
.testi-card__author span { font-size: .78rem; color: rgba(255,255,255,.4); letter-spacing: .04em; }

/* ─── 14. CONTACT ───────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__lead {
  font-size: 1rem;
  color: var(--col-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  background-color: var(--col-bg-stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contact__detail div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.contact__detail strong {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--col-dark);
}
.contact__detail span {
  font-size: .9rem;
  color: var(--col-text-muted);
  line-height: 1.5;
}
.contact__detail a:hover { color: var(--accent); }

/* ─── 15. FORM ──────────────────────────────────────── */
.contact__form {
  background-color: #fff;
  border: 1px solid var(--col-border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--col-dark);
}
.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  font-size: .9rem;
  color: var(--col-text);
  background-color: var(--col-bg);
  border: 1.5px solid var(--col-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b4afa7;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139,111,62,.12);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border-color: #e05c5c;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A7468' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form__legal {
  font-size: .75rem;
  color: var(--col-text-muted);
  line-height: 1.6;
  text-align: center;
}

.form__success {
  display: none;
  align-items: center;
  gap: 1rem;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #2e7d32;
}
.form__success svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: #2e7d32;
  stroke-width: 2.5;
}
.form__success p { font-size: .875rem; line-height: 1.5; }
.form__success.show { display: flex; }

/* ─── 16. FOOTER ────────────────────────────────────── */
.footer {
  background-color: var(--col-dark);
  color: rgba(255,255,255,.55);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: .5rem;
}
.footer__logo span { color: var(--accent-light); }

.footer__tagline {
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer__addr {
  font-size: .85rem;
  line-height: 1.8;
}
.footer__addr a:hover { color: var(--accent-light); }

.footer__nav-title {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}

.footer__nav ul,
.footer__services ul,
.footer__legal-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer__nav a,
.footer__legal-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__nav a:hover,
.footer__legal-col a:hover { color: var(--accent-light); }

.footer__services li {
  font-size: .875rem;
  color: rgba(255,255,255,.35);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.footer__bottom em { color: var(--accent-light); font-style: normal; }

/* ─── 17. RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root {
    --space-xl: 4.5rem;
    --space-2xl: 7rem;
  }

  .about__grid,
  .approach__grid,
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  .about__visual { order: -1; }
  .about__img { height: 420px; }
  .about__badge { right: 1rem; }

  .approach__quote { position: static; margin-top: 1.5rem; max-width: none; }

  .labels__grid { grid-template-columns: 1fr; }
  .testi__grid  { grid-template-columns: 1fr; }

  .stats__grid {
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
  }
  .stats__divider { display: none; }
  .stats__item { flex: 0 0 calc(50% - 1rem); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 700px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--col-bg);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 101;
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    overflow-y: auto;
  }

  .nav__links.is-open { transform: translateX(0); }

  .nav__link {
    color: var(--col-text);
    font-size: 1rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--col-border);
    border-radius: 0;
  }
  .nav__link:hover { background: none; color: var(--accent); }

  .nav__links .btn--outline {
    margin-left: 0;
    margin-top: 1.5rem;
    border-color: var(--accent);
    color: var(--accent);
    width: 100%;
    justify-content: center;
  }
  .nav__links .btn--outline:hover { background-color: var(--accent); color: #fff; }

  .nav__overlay { display: block; }
  .nav__overlay.is-open { opacity: 1; }

  .nav__burger { display: flex; z-index: 102; }

  .hero__title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero__desc  { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .br-desk { display: none; }

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

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 1.75rem; }

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

@media (max-width: 480px) {
  .stats__item { flex: 0 0 100%; text-align: center; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 60px 80px 60px;
  max-width: 760px;
}

/* VOILE LOCAL PREMIUM */
.hero__content::before {
  content: "";
  position: absolute;
  inset: -40px -50px -40px -50px;
  z-index: -1;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.02)
    ),
    rgba(20,16,12,0.5);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.5);

  border-radius: 20px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 60px;
}

/* =========================
   NAVBAR LOGO
========================= */

.nav__logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
  text-decoration: none;
}

.nav__logo-img {
  height: 42px;
  width: auto !important;
  max-width: none !important;
  display: block;
  flex: 0 0 auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}


/* =========================
   FOOTER LOGO
========================= */

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.footer__logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer__logo-img {
  height: 42px;
  width: auto !important;
  max-width: none !important;
  display: block;
  flex: 0 0 auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
