/* ============================================================
   BROKEN DOGS — Le Relais Canin
   Main Stylesheet
   ============================================================ */

/* 1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --noir-profond: #0E0C09;
  --noir-carte: #161310;
  --noir-section: #120F0C;
  --or-chaud: #C8922A;
  --or-clair: #E8B84B;
  --or-pale: #F0D080;
  --beige-creme: #F2EAD8;
  --beige-sable: #C4B49A;
  --terre: #6B4C2A;
  --terre-clair: #8A6040;
  --vert-foret: #2D4A1E;
  --blanc-casse: #FAF7F2;
  --gris-doux: #3A3530;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Raleway', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Inter', system-ui, sans-serif;
  --font-accent: 'Bebas Neue', 'Impact', sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.75rem;
  --text-6xl: 5rem;
  --text-hero: clamp(2.8rem, 6vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 800px;

  /* Borders */
  --radius-sm: 3px;
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast: 0.18s;
  --t-med: 0.38s;
  --t-slow: 0.7s;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(200, 146, 42, 0.15);
  --shadow-gold: 0 0 20px rgba(200, 146, 42, 0.3);
}

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

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

body {
  background-color: var(--noir-profond);
  color: var(--beige-creme);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--or-chaud);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Selection */
::selection {
  background: var(--or-chaud);
  color: var(--noir-profond);
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--beige-creme);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: var(--text-xl); }

p {
  color: var(--beige-sable);
  line-height: 1.8;
}

.text-gold { color: var(--or-chaud); }
.text-cream { color: var(--beige-creme); }
.text-muted { color: var(--beige-sable); }

.overline {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or-chaud);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-chaud);
  margin-bottom: var(--space-6);
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--or-chaud);
  flex-shrink: 0;
}

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}

.section--dark { background-color: var(--noir-profond); }
.section--card { background-color: var(--noir-carte); }
.section--section { background-color: var(--noir-section); }
.section--light { background-color: var(--blanc-casse); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--t-med) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: transform var(--t-med) var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--or-chaud);
  color: var(--noir-profond);
  box-shadow: 0 4px 20px rgba(200, 146, 42, 0.35);
}

.btn--primary:hover {
  background: var(--or-clair);
  box-shadow: 0 6px 30px rgba(232, 184, 75, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--beige-creme);
  border: 1px solid rgba(200, 146, 42, 0.5);
}

.btn--outline:hover {
  border-color: var(--or-chaud);
  color: var(--or-chaud);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--or-chaud);
  padding-inline: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
}

.btn--ghost:hover {
  border-bottom-color: var(--or-chaud);
  gap: var(--space-4);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 6. CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity var(--t-fast) ease, transform var(--t-fast) ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}

.custom-cursor.is-hidden { opacity: 0; }
.custom-cursor.is-hovering { transform: translate(-50%, -50%) scale(1.4); }

/* 7. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--noir-profond);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-6);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader__logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--or-chaud);
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

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

.preloader__bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--or-chaud);
  animation: preloader-bar 1.2s ease-in-out forwards;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes preloader-bar {
  0% { left: -100%; }
  100% { left: 0; }
}

/* 8. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-block: var(--space-6);
  transition: all var(--t-med) var(--ease-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 9, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med) var(--ease-out);
}

.site-header.is-scrolled::before {
  background: rgba(14, 12, 9, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(200, 146, 42, 0.12);
}

.site-header.is-scrolled {
  padding-block: var(--space-4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease-out);
}

.nav__logo:hover .nav__logo-svg {
  transform: rotate(5deg);
}

/* Logo emblème en médaillon (image BD-Logo-2) */
.nav__logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  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, 0.55);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transition: transform var(--t-med) var(--ease-out);
}

.nav__logo:hover .nav__logo-mark {
  transform: rotate(5deg);
}

.footer__logo-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  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, 0.5);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

.nav__logo-name {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--beige-creme);
}

.nav__logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or-chaud);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--beige-sable);
  text-decoration: none;
  position: relative;
  transition: color var(--t-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or-chaud);
  transition: width var(--t-med) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--beige-creme);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--or-chaud);
}

.nav__cta {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-xs);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--beige-creme);
  transition: all var(--t-med) var(--ease-out);
  transform-origin: center;
}

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

/* Mobile nav overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 9, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med) var(--ease-out);
  pointer-events: none;
}

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

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--beige-creme);
  transition: color var(--t-fast) ease;
  text-align: center;
}

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

.nav__mobile-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--or-chaud), transparent);
}

/* 9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--noir-profond);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(200, 146, 42, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(107, 76, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(200, 146, 42, 0.04) 0%, transparent 50%);
}

.hero__dog {
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  max-width: 700px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  opacity: 0.85;
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-block: 10vh 8vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 100svh;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or-chaud);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__badge-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-chaud);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  color: var(--beige-creme);
  margin-bottom: var(--space-6);
}

.hero__headline .line-1 {
  display: block;
  color: var(--beige-sable);
}

.hero__headline .line-2 {
  display: block;
}

.hero__headline .line-2 em {
  font-style: italic;
  color: var(--or-chaud);
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--beige-sable);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--space-10);
}

.hero__sub strong {
  color: var(--beige-creme);
  font-weight: 600;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.hero__location {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--beige-sable);
}

.hero__location svg {
  color: var(--or-chaud);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
  opacity: 0.6;
  transition: opacity var(--t-fast) ease;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-indicator__text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-chaud);
  writing-mode: vertical-rl;
}

.scroll-indicator__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--or-chaud), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* 10. STATS BAND
   ============================================================ */
.stats-band {
  background: var(--noir-carte);
  border-top: 1px solid rgba(200, 146, 42, 0.1);
  border-bottom: 1px solid rgba(200, 146, 42, 0.1);
  padding-block: var(--space-12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat {
  text-align: center;
  padding: var(--space-6);
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 146, 42, 0.15);
}

.stat__number {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--or-chaud);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige-sable);
  line-height: 1.4;
}

/* 11. SERVICES SECTION
   ============================================================ */
.services {
  background: var(--noir-profond);
  padding-block: clamp(5rem, 12vw, 9rem);
}

.services__header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.services__title {
  margin-bottom: var(--space-4);
}

.services__title span {
  color: var(--or-chaud);
}

.services__desc {
  font-size: var(--text-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--noir-carte);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or-chaud), transparent);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease-out);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 120%, rgba(200, 146, 42, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}

.service-card:hover {
  border-color: rgba(200, 146, 42, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-6);
  color: var(--or-chaud);
  position: relative;
  z-index: 1;
  transition: transform var(--t-med) var(--ease-out);
}

.service-card:hover .service-card__icon { transform: scale(1.08); }

.service-card__tag {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-chaud);
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--beige-creme);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.service-card__desc {
  color: var(--beige-sable);
  line-height: 1.75;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.service-card__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__detail {
  max-height: 200px;
}

.service-card__detail ul {
  border-top: 1px solid rgba(200, 146, 42, 0.15);
  padding-top: var(--space-4);
}

.service-card__detail li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--beige-sable);
  margin-bottom: var(--space-2);
}

.service-card__detail li::before {
  content: '—';
  color: var(--or-chaud);
  flex-shrink: 0;
  font-size: var(--text-xs);
  margin-top: 3px;
}

/* 12. APPROACH PREVIEW
   ============================================================ */
.approach {
  background: var(--noir-section);
  padding-block: clamp(5rem, 12vw, 9rem);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at left, rgba(200, 146, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.approach__left {}

.approach__right {
  padding-top: var(--space-10);
}

.approach__title {
  margin-bottom: var(--space-6);
}

.approach__title em {
  display: block;
  font-style: italic;
  color: var(--or-chaud);
}

.approach__intro {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.timeline-item__num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--or-chaud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--or-chaud);
  flex-shrink: 0;
  background: var(--noir-section);
  position: relative;
  z-index: 1;
  transition: all var(--t-med) var(--ease-out);
}

.timeline-item:hover .timeline-item__num {
  background: var(--or-chaud);
  color: var(--noir-profond);
  box-shadow: var(--shadow-gold);
}

.timeline-item__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(200, 146, 42, 0.3), rgba(200, 146, 42, 0.05));
  margin-top: var(--space-2);
}

.timeline-item:last-child .timeline-item__line { display: none; }

.timeline-item__content {
  padding-top: var(--space-2);
  padding-bottom: var(--space-4);
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--beige-creme);
  margin-bottom: var(--space-2);
}

.timeline-item__desc {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  line-height: 1.6;
}

/* 13. TEAM SECTION
   ============================================================ */
.team {
  background: var(--noir-carte);
  padding-block: clamp(5rem, 12vw, 9rem);
}

.team__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.team__title { margin-bottom: var(--space-4); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.team-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--noir-section);
  border: 1px solid rgba(200, 146, 42, 0.06);
  transition: all var(--t-med) var(--ease-out);
}

.team-card:hover {
  border-color: rgba(200, 146, 42, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.team-card__avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 146, 42, 0.3);
  transition: border-color var(--t-med) ease;
}

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

.team-card__avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, 0.15);
  transition: border-color var(--t-med) ease;
}

.team-card:hover .team-card__avatar-ring {
  border-color: rgba(200, 146, 42, 0.4);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--beige-creme);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-chaud);
  margin-bottom: var(--space-4);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.team-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(45, 74, 30, 0.3);
  border: 1px solid rgba(45, 74, 30, 0.6);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #7AB55A;
  font-weight: 600;
}

/* 14. TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--noir-profond);
  padding-block: clamp(5rem, 12vw, 9rem);
  position: relative;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--noir-carte);
  border: 1px solid rgba(200, 146, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--t-med) var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(200, 146, 42, 0.2);
  box-shadow: var(--shadow-card);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--or-chaud);
  opacity: 0.3;
  margin-bottom: var(--space-4);
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--beige-creme);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--beige-creme);
}

.testimonial-card__author-detail {
  font-size: var(--text-xs);
  color: var(--beige-sable);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--or-chaud);
}

/* 15. PARTNERS SECTION
   ============================================================ */
.partners {
  background: var(--noir-section);
  padding-block: clamp(4rem, 10vw, 7rem);
  border-top: 1px solid rgba(200, 146, 42, 0.08);
}

.partners__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.partners__intro {
  max-width: 560px;
  margin-inline: auto;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  border: 1px solid rgba(200, 146, 42, 0.12);
  border-radius: var(--radius-md);
  opacity: 0.5;
  transition: all var(--t-med) var(--ease-out);
  min-width: 160px;
  height: 70px;
  background: rgba(255,255,255,0.02);
}

.partner-logo:hover {
  opacity: 1;
  border-color: rgba(200, 146, 42, 0.3);
  background: rgba(200, 146, 42, 0.04);
}

.partner-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--beige-sable);
}

/* 16. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--noir-carte);
  padding-block: clamp(5rem, 12vw, 9rem);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 146, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}

.cta-band__pretitle {
  margin-bottom: var(--space-4);
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-6);
}

.cta-band__title em {
  font-style: italic;
  color: var(--or-chaud);
}

.cta-band__desc {
  font-size: var(--text-lg);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.cta-band__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  font-size: var(--text-xs);
  color: var(--beige-sable);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.cta-band__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cta-band__trust-item svg {
  color: var(--or-chaud);
  width: 14px;
  height: 14px;
}

/* 17. FOOTER
   ============================================================ */
.footer {
  background: #080705;
  border-top: 1px solid rgba(200, 146, 42, 0.1);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  line-height: 1.8;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige-sable);
  transition: all var(--t-fast) ease;
}

.footer__social-link:hover {
  border-color: var(--or-chaud);
  color: var(--or-chaud);
  background: rgba(200, 146, 42, 0.08);
}

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

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-chaud);
  margin-bottom: var(--space-6);
}

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

.footer__link {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  transition: color var(--t-fast) ease;
}

.footer__link:hover { color: var(--beige-creme); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--beige-sable);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

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

/* Newsletter */
.footer__newsletter-desc {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.footer__form {
  display: flex;
  gap: 0;
}

.footer__input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--beige-creme);
  transition: border-color var(--t-fast) ease;
}

.footer__input::placeholder { color: var(--beige-sable); opacity: 0.5; }
.footer__input:focus { outline: none; border-color: var(--or-chaud); }

.footer__form-btn {
  background: var(--or-chaud);
  color: var(--noir-profond);
  border: none;
  padding: var(--space-3) var(--space-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background var(--t-fast) ease;
}

.footer__form-btn:hover { background: var(--or-clair); }

.footer__bottom {
  border-top: 1px solid rgba(200, 146, 42, 0.08);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__legal {
  font-size: var(--text-xs);
  color: var(--beige-sable);
  opacity: 0.5;
}

.footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal a:hover { opacity: 1; color: var(--beige-sable); }

.footer__asbl-badge {
  font-size: var(--text-xs);
  color: var(--beige-sable);
  opacity: 0.5;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

/* 18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--space-32) + 60px);
  padding-bottom: var(--space-20);
  background: var(--noir-profond);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,146,42,0.3), transparent);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200, 146, 42, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--beige-sable);
  margin-bottom: var(--space-6);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.page-hero__breadcrumb a { color: var(--or-chaud); }
.page-hero__breadcrumb span { opacity: 0.4; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-4);
}

.page-hero__title em {
  font-style: italic;
  color: var(--or-chaud);
}

.page-hero__sub {
  font-size: var(--text-xl);
  max-width: 600px;
}

/* 19. CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-block {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.content-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.content-block__inner.reverse { direction: rtl; }
.content-block__inner.reverse > * { direction: ltr; }

.content-block__text h2 { margin-bottom: var(--space-4); }
.content-block__text h2 em { font-style: italic; color: var(--or-chaud); }
.content-block__text p { margin-bottom: var(--space-4); }

.content-block__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-block__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* 20. FORM STYLES
   ============================================================ */
.contact-form {
  display: grid;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige-sable);
}

.form-label .required { color: var(--or-chaud); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 146, 42, 0.15);
  border-radius: var(--radius);
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--beige-creme);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--or-chaud);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--beige-sable); opacity: 0.4; }

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8922A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-select option {
  background: var(--noir-carte);
  color: var(--beige-creme);
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 146, 42, 0.3);
  border-radius: var(--radius-sm);
  background: transparent;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--t-fast) ease;
  position: relative;
}

.form-checkbox:checked {
  background: var(--or-chaud);
  border-color: var(--or-chaud);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--noir-profond);
  border-bottom: 2px solid var(--noir-profond);
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: var(--text-sm);
  color: var(--beige-sable);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-label a { color: var(--or-chaud); text-decoration: underline; text-underline-offset: 3px; }

/* 21. DIVIDER
   ============================================================ */
.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--or-chaud);
  margin-bottom: var(--space-4);
}

.divider-gold--center { margin-inline: auto; }

/* 22. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

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

.reveal--left {
  transform: translateX(-28px);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.96);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 23. CARD PLACEHOLDER SVG
   ============================================================ */
.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(200,146,42,0.06) 0%, rgba(107,76,42,0.08) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 24. MEDIA QUERIES
   ============================================================ */

/* Tablet wide (≤1280px) */
@media (max-width: 1280px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { max-width: 600px; margin-inline: auto; }
  .services-grid { max-width: 600px; margin-inline: auto; }

  .approach__inner { grid-template-columns: 1fr; }
  .approach__right { padding-top: 0; }

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

  .content-block__inner { grid-template-columns: 1fr; }
  .content-block__inner.reverse { direction: ltr; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .hero__dog { display: none; }

  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }

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

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cta-band__trust { flex-direction: column; gap: var(--space-3); }

  .form-group--half { grid-template-columns: 1fr; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .hero__badge { font-size: 0.6rem; }

  .nav__logo-text { display: none; }
}

/* Large desktop (≥1440px) */
@media (min-width: 1440px) {
  .hero__container { max-width: var(--container-wide); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-indicator__line { animation: none; }
}

/* 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;}