/* ============================================================
   BROKEN DOGS — Le Relais Canin · Style V2
   Design: Dark luxury · Exaggerated minimalism · Editorial
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,600&family=Raleway:wght@300;400;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Core palette */
  --noir:         #080705;
  --noir-soft:    #0E0C09;
  --noir-card:    #131109;
  --noir-raised:  #1A1710;
  --or:           #C8922A;
  --or-light:     #E8B84B;
  --or-dim:       rgba(200,146,42,.12);
  --cream:        #F0E6D0;
  --cream-dim:    #B8A890;
  --blanc:        #FAFAF8;

  /* Semantic */
  --bg:           var(--noir);
  --bg-card:      var(--noir-card);
  --text:         var(--cream);
  --text-muted:   var(--cream-dim);
  --accent:       var(--or);
  --accent-light: var(--or-light);
  --border:       rgba(200,146,42,.15);
  --border-soft:  rgba(240,230,208,.06);

  /* Typography — exaggerated scale */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Bebas Neue', Impact, sans-serif;
  --font-ui:      'Raleway', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-xs:   .75rem;
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  clamp(3rem, 7vw, 5.5rem);
  --text-6xl:  clamp(4rem, 10vw, 9rem);
  --text-7xl:  clamp(5rem, 14vw, 13rem);

  /* Spacing */
  --sp-1:  .25rem;  --sp-2:  .5rem;  --sp-3:  .75rem;
  --sp-4:  1rem;    --sp-6:  1.5rem; --sp-8:  2rem;
  --sp-12: 3rem;    --sp-16: 4rem;   --sp-20: 5rem;
  --sp-24: 6rem;    --sp-32: 8rem;   --sp-40: 10rem;

  /* Layout */
  --max-w: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-in:   cubic-bezier(.7,0,.84,0);
  --dur-fast:  150ms;
  --dur-mid:   260ms;
  --dur-slow:  460ms;
  --dur-x:     700ms;

  /* z-index scale */
  --z-base:    10;
  --z-overlay: 20;
  --z-nav:     30;
  --z-pre:     35;
  --z-modal:   50;
  --z-cursor:  100;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

@media (hover: none) { body { cursor: auto; } }

img { 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; }
svg { flex-shrink: 0; }

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--or); border-radius: 2px; }

/* ── Custom Cursor (empreinte de patte) ──────────────────── */
.cursor-paw {
  position: fixed;
  top: 0; left: 0;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  pointer-events: none;
  z-index: var(--z-cursor);
  will-change: transform;
}

.cursor-paw__inner {
  display: block;
  width: 100%; height: 100%;
  transform: rotate(-16deg);
  transition: transform var(--dur-mid) var(--ease-out);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.55));
}

.cursor-paw__inner svg { display: block; width: 100%; height: 100%; }

.cursor-paw.is-hovering .cursor-paw__inner {
  transform: rotate(-16deg) scale(1.4);
}

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--noir);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-6);
  transition: opacity .5s var(--ease-in);
}

.preloader.is-done { opacity: 0; pointer-events: none; }

.preloader__logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: .3em;
  color: var(--or);
}

.preloader__bar {
  width: 120px; height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--or);
  transform: translateX(-100%);
  animation: bar-fill 1.2s var(--ease-out) .2s forwards;
}

@keyframes bar-fill {
  to { transform: translateX(0); }
}

/* ── Page Transition ──────────────────────────────────────── */
.page-overlay {
  position: fixed; inset: 0;
  background: var(--noir);
  z-index: var(--z-modal);
  pointer-events: none;
  opacity: 0;
  transition: opacity .32s var(--ease-in);
}

.page-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ── Pre-Header ───────────────────────────────────────────── */
.pre-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: var(--or);
  z-index: var(--z-pre);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transition: transform var(--dur-slow) var(--ease-out);
}

.pre-header.is-hidden {
  transform: translateY(-100%);
}

.pre-header__text {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.pre-header__sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(8,7,5,.4);
}

.pre-header__socials {
  position: absolute;
  right: var(--gutter);
  display: flex;
  gap: var(--sp-4);
}

.pre-header__socials a {
  color: var(--noir);
  opacity: .7;
  transition: opacity var(--dur-fast);
}

.pre-header__socials a:hover { opacity: 1; }

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  height: 72px;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  transition: background var(--dur-slow), backdrop-filter var(--dur-slow),
              border-color var(--dur-slow), top var(--dur-slow) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(8,7,5,.88);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
}

.pre-header.is-hidden ~ .site-header { top: 0; }

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

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
}

.header__logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-image: url('../images/Logo-BrokenDogs.png');
  background-repeat: no-repeat;
  background-size: 212% auto;
  background-position: 51% 25%;
  background-color: #F1E9D6;
  border: 1px solid rgba(200,146,42,.6);
  box-shadow: 0 3px 12px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.35);
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header__logo-main {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: var(--cream);
}

.header__logo-sub {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
}

/* Nav */
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__link {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--dur-fast);
  cursor: pointer;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--or);
  transition: right var(--dur-mid) var(--ease-out);
}

.nav__link:hover,
.nav__link:focus-visible { color: var(--cream); }

.nav__link:hover::after,
.nav__link:focus-visible::after { right: 0; }

.nav__cta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: var(--sp-3) var(--sp-6);
  transition: background var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
}

.nav__cta:hover { background: var(--or-light); transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-mid), width var(--dur-mid);
}

.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out);
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-link {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: .06em;
  color: var(--cream-dim);
  transition: color var(--dur-fast);
}

.nav__mobile-link:hover { color: var(--or); }

.nav__mobile-cta {
  margin-top: var(--sp-8);
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: var(--sp-4) var(--sp-12);
}

/* ── Hero V2 ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(36px + 72px + var(--sp-20)) var(--gutter) var(--sp-20);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(200,146,42,.04) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(200,146,42,.02) 0%, transparent 50%),
    var(--noir);
}

/* Giant decorative logo badge — background element */
.hero__badge-bg {
  position: absolute;
  right: -6vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 50vw, 680px);
  height: clamp(320px, 50vw, 680px);
  opacity: .028;
  pointer-events: none;
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--or);
}

.hero__eyebrow-text {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or);
}

/* Mixed-weight headline: big contrast between types */
.hero__headline {
  line-height: .92;
  margin-bottom: var(--sp-10);
}

.hero__line--intro {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream-dim);
  letter-spacing: -.01em;
  margin-bottom: var(--sp-2);
}

.hero__line--big {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-7xl);
  letter-spacing: -.01em;
  color: var(--cream);
  line-height: .88;
}

.hero__line--big .word-gold { color: var(--or); }

.hero__line--sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-top: var(--sp-4);
  letter-spacing: .01em;
}

.hero__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
}

.hero__desc {
  max-width: 420px;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--cream-dim);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  opacity: .4;
  animation: float-up 2.4s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or) 0%, transparent 100%);
}

.hero__scroll-text {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  writing-mode: vertical-rl;
}

@keyframes float-up {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: all var(--dur-mid) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--or);
  color: var(--noir);
  padding: var(--sp-4) var(--sp-8);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--or-light);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--cream);
  padding: var(--sp-4) 0;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: var(--sp-2);
  left: 0; right: 100%;
  height: 1px;
  background: var(--or);
  transition: right var(--dur-mid) var(--ease-out);
}

.btn-ghost:hover::after,
.btn-ghost:focus-visible::after { right: 0; }

.btn svg { transition: transform var(--dur-mid) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* ── Section Scaffolding ──────────────────────────────────── */
.section {
  padding: var(--sp-32) var(--gutter);
}

.section--dark { background: var(--noir); }
.section--raised { background: var(--noir-card); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.section-label__line {
  width: 28px; height: 1px;
  background: var(--or);
}

.section-label__text {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--or);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream-dim);
}

/* ── Marquee Ticker ───────────────────────────────────────── */
.marquee-strip {
  background: var(--or);
  overflow: hidden;
  padding: var(--sp-4) 0;
  cursor: default;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: .12em;
  color: var(--noir);
}

.marquee-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(8,7,5,.3);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Impact Stats Band ────────────────────────────────────── */
.stats-band {
  padding: var(--sp-24) var(--gutter);
  background: var(--noir-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
}

.stat-item {
  padding: var(--sp-8) var(--sp-8);
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-soft);
}

.stat-item__number {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-6xl);
  line-height: .9;
  color: var(--or);
  letter-spacing: -.02em;
}

.stat-item__label {
  display: block;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: var(--sp-3);
}

.stat-item__sub {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--cream-dim);
  opacity: .6;
  margin-top: var(--sp-2);
}

/* ── Bento Grid — Services ────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: rgba(200,146,42,.06);
}

.bento__col-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bento-card {
  position: relative;
  background: var(--noir-card);
  padding: var(--sp-12);
  overflow: hidden;
  cursor: pointer;
  transition: background var(--dur-slow);
}

.bento-card:hover { background: var(--noir-raised); }

/* Decorative number */
.bento-card__num {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-8);
  font-family: var(--font-accent);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  color: rgba(200,146,42,.06);
  pointer-events: none;
  transition: color var(--dur-slow);
}

.bento-card:hover .bento-card__num { color: rgba(200,146,42,.1); }

.bento-card__icon {
  width: 48px; height: 48px;
  background: var(--or-dim);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-8);
  transition: background var(--dur-mid), border-color var(--dur-mid);
}

.bento-card:hover .bento-card__icon {
  background: rgba(200,146,42,.2);
  border-color: var(--or);
}

.bento-card__icon svg { width: 22px; height: 22px; stroke: var(--or); }

.bento-card__label {
  font-family: var(--font-ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--sp-3);
}

.bento-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.bento-card--small .bento-card__title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.bento-card__desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: var(--sp-8);
}

.bento-card--small .bento-card__desc { margin-bottom: var(--sp-6); }

.bento-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.bento-card__tag {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--border-soft);
}

.bento-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  transition: gap var(--dur-mid);
}

.bento-card__link svg { width: 14px; height: 14px; stroke: var(--or); }
.bento-card:hover .bento-card__link { gap: var(--sp-4); }

/* ── Manifesto ────────────────────────────────────────────── */
.manifesto {
  padding: var(--sp-40) var(--gutter);
  background: var(--noir);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 25vw, 22rem);
  line-height: 1;
  color: rgba(200,146,42,.04);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: var(--sp-8);
}

.manifesto__quote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--or);
}

.manifesto__attr {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.manifesto__attr::before,
.manifesto__attr::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--border);
}

/* ── Horizontal Process Timeline ──────────────────────────── */
.process-section {
  padding: var(--sp-32) var(--gutter);
  background: var(--noir-card);
  overflow: hidden;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--sp-16);
}

/* Connecting line through all steps */
.process-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, var(--or) 0%, rgba(200,146,42,.2) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--sp-6);
}

.process-step__dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--noir-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-8);
  position: relative;
  transition: border-color var(--dur-mid), background var(--dur-mid);
}

.process-step__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color var(--dur-mid);
}

.process-step:hover .process-step__dot {
  background: var(--or-dim);
  border-color: var(--or);
}

.process-step:hover .process-step__dot::after { border-color: rgba(200,146,42,.3); }

.process-step__num {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--or);
  letter-spacing: .05em;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.process-step__desc {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--cream-dim);
}

/* ── Team — Magazine Style ────────────────────────────────── */
.team-section {
  padding: var(--sp-32) var(--gutter);
  background: var(--noir);
}

.team-grid {
  margin-top: var(--sp-16);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 0;
  background: var(--noir-card);
  overflow: hidden;
  transition: background var(--dur-slow);
  cursor: default;
}

.team-card:hover { background: var(--noir-raised); }

.team-card__avatar-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--noir-raised);
}

.team-card__avatar-wrap svg {
  width: 100%;
  height: 100%;
}

.team-card__avatar-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 18%;
  filter: grayscale(8%) contrast(1.02);
}

.team-card__accent {
  width: 3px;
  align-self: stretch;
  background: var(--or);
  flex-shrink: 0;
}

.team-card__body {
  padding: var(--sp-8) var(--sp-10);
  border-left: 1px solid var(--border-soft);
}

.team-card__role {
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--sp-2);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.team-card__bio {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 560px;
}

.team-card__badges {
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-end;
  border-left: 1px solid var(--border-soft);
  min-width: 180px;
}

.team-card__badge {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--border-soft);
  padding: var(--sp-1) var(--sp-3);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.team-card:hover .team-card__badge {
  color: var(--or);
  border-color: var(--border);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  padding: var(--sp-32) var(--gutter);
  background: var(--noir-card);
}

.testimonials-grid {
  margin-top: var(--sp-16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-1);
  background: var(--border-soft);
}

.testimonial-card {
  background: var(--noir-card);
  padding: var(--sp-10);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: var(--sp-8);
}

.testimonial-card__rule {
  width: 32px; height: 1px;
  background: var(--or);
  margin-bottom: var(--sp-6);
}

.testimonial-card__author {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.testimonial-card__context {
  font-size: .75rem;
  color: var(--cream-dim);
  opacity: .6;
  margin-top: var(--sp-1);
}

/* ── Partners Band ────────────────────────────────────────── */
.partners-band {
  padding: var(--sp-20) var(--gutter);
  background: var(--noir);
  border-top: 1px solid var(--border-soft);
}

.partners-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.partners-band__label {
  font-family: var(--font-ui);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-band__sep {
  width: 1px;
  height: 32px;
  background: var(--border-soft);
  flex-shrink: 0;
}

.partners-band__logos {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .4;
  transition: opacity var(--dur-mid), color var(--dur-mid);
  cursor: default;
}

.partner-logo:hover { opacity: 1; color: var(--cream); }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-32) var(--gutter);
  background: var(--noir-card);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'COMMENCER';
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 1;
  color: rgba(200,146,42,.025);
  pointer-events: none;
  white-space: nowrap;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-16);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}

.cta-section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--or);
}

.cta-section__desc {
  margin-top: var(--sp-4);
  font-size: var(--text-base);
  color: var(--cream-dim);
  max-width: 500px;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-end;
}

.cta-section__trust {
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .5;
}

/* ── Footer V2 ────────────────────────────────────────────── */
.site-footer {
  background: var(--noir);
  border-top: 1px solid var(--border-soft);
}

.footer__top {
  padding: var(--sp-20) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}

.footer__brand { }

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.footer__brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-image: url('../images/bd-logo-2-cut.png');
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center 46%;
  background-color: #F1E9D6;
  border: 1px solid rgba(200,146,42,.5);
  box-shadow: 0 3px 12px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.3);
  flex-shrink: 0;
}

.footer__brand-name {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: .1em;
  color: var(--cream);
}

.footer__brand-sub {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
}

.footer__brand-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--cream-dim);
  opacity: .7;
  margin-bottom: var(--sp-6);
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: var(--sp-4);
}

.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.footer__social-link:hover {
  border-color: var(--or);
  color: var(--or);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: var(--sp-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: .875rem;
  color: var(--cream-dim);
  opacity: .7;
  transition: opacity var(--dur-fast), color var(--dur-fast);
  cursor: pointer;
}

.footer__link:hover { opacity: 1; color: var(--cream); }

.footer__contact-item {
  display: flex;
  gap: var(--sp-3);
  font-size: .8rem;
  color: var(--cream-dim);
  opacity: .7;
  margin-bottom: var(--sp-3);
}

.footer__contact-item svg {
  width: 14px; height: 14px;
  stroke: var(--or);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--border-soft);
  padding: var(--sp-6) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.footer__legal {
  font-size: .75rem;
  color: var(--cream-dim);
  opacity: .4;
}

.footer__certif {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .4;
}

.footer__certif-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--or);
}

/* ── Background Scenes (placeholders — replaceable by photos) ─
   USAGE: add class "has-scene" to a <section>, then drop this
   as its FIRST child:
     <div class="section-bg" aria-hidden="true">
       <div class="section-bg__img"
            style="background-image:url('assets/images/NOM.svg')"></div>
       <div class="section-bg__overlay"
            style="background:linear-gradient(...)"></div>
     </div>
   To swap for a real photo: just change the url() on __img to
   your .jpg/.webp dropped in assets/images/. The url is set
   INLINE (not via CSS variable) so it resolves relative to the
   HTML page — keep it that way.                                */
.has-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-bg__overlay {
  position: absolute;
  inset: 0;
}

/* keep all real content above the scene layer */
.has-scene > *:not(.section-bg) { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .section-bg__img { transition: none; }
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

/* ── Focus Styles ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

/* ── Reduced Motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1280px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__top > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr; }
  .bento__col-right { flex-direction: row; }
  .bento-card--small { flex: 1; }

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

  .team-card { grid-template-columns: 160px 1fr; }
  .team-card__badges { display: none; }

  .cta-section__inner { grid-template-columns: 1fr; }
  .cta-section__actions { align-items: flex-start; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > *:last-child { grid-column: 1 / -1; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .pre-header__socials { display: none; }

  .header__nav { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero { padding-bottom: var(--sp-16); }
  .hero__meta { flex-direction: column; align-items: flex-start; }
  .hero__ctas { width: 100%; flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .stats-band__inner { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }

  .bento__col-right { flex-direction: column; }

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

  .team-card { grid-template-columns: 1fr; }
  .team-card__avatar-wrap { height: 200px; }
  .team-card__accent { width: 100%; height: 3px; }
  .team-card__body { border-left: none; border-top: 1px solid var(--border-soft); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > *:last-child { grid-column: auto; }

  .partners-band__inner { flex-direction: column; align-items: flex-start; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
}

@media (max-width: 480px) {
  :root { --sp-32: 4rem; --sp-40: 5rem; }

  .hero__line--big { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .manifesto__quote { font-size: 1.4rem; }
  .section-title { font-size: 2rem; }
}

/* Cookie banner */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:9998;padding:1rem clamp(1rem,4vw,2rem);transform:translateY(130%);transition:transform .45s cubic-bezier(.16,1,.3,1);pointer-events:none;}
.cookie-banner.is-visible{transform:translateY(0);pointer-events:auto;}
.cookie-banner__inner{max-width:1100px;margin:0 auto;background:#161310;border:1px solid rgba(200,146,42,.28);border-radius:14px;box-shadow:0 12px 40px rgba(0,0,0,.5);padding:1.1rem 1.4rem;display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;}
.cookie-banner__text{flex:1 1 320px;}
.cookie-banner__title{font-family:'Bebas Neue',Impact,sans-serif;letter-spacing:.08em;color:#C8922A;font-size:1.05rem;margin-bottom:.25rem;}
.cookie-banner__text p{color:#C4B49A;font-size:.85rem;line-height:1.55;margin:0;}
.cookie-banner__text a{color:#C8922A;text-decoration:underline;text-underline-offset:2px;}
.cookie-banner__actions{display:flex;gap:.6rem;flex-shrink:0;}
.cookie-banner__btn{font-family:'Raleway',sans-serif;font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:.7rem 1.4rem;border-radius:999px;cursor:pointer;border:1px solid transparent;transition:all .2s ease;}
.cookie-banner__btn--accept{background:#C8922A;color:#0E0C09;}
.cookie-banner__btn--accept:hover{background:#E8B84B;}
.cookie-banner__btn--ghost{background:transparent;color:#C4B49A;border-color:rgba(200,146,42,.3);}
.cookie-banner__btn--ghost:hover{color:#F2EAD8;border-color:#C8922A;}
@media (max-width:560px){.cookie-banner__inner{flex-direction:column;align-items:stretch;}.cookie-banner__actions{justify-content:flex-end;}}
/* Footer legal links */
.footer__legal a{color:inherit;text-decoration:underline;text-underline-offset:2px;transition:color .18s ease;}
.footer__legal a:hover{color:#C8922A;}