/**
 * Aurrera Consulting — Site Stylesheet
 * Requires: aurrera-tokens.css, aurrera-components.css
 * Polices: Montserrat + Source Sans 3 (Google Fonts, chargées dans le HTML)
 */

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

body {
  font-family: var(--font-body);
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-5); } }

/* ── Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.site-nav.is-scrolled {
  border-bottom-color: var(--color-border-subtle);
  box-shadow: var(--shadow-xs);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 68px;
  padding: 0 var(--space-8);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-fg-muted);
  padding: 6px var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast), background var(--duration-fast);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--color-fg); background: var(--color-bg-subtle); }
.nav-links a.is-active {
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  background: var(--color-accent-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  color: var(--color-fg-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 5px 10px;
  cursor: pointer;
  transition: color var(--duration-fast), border-color var(--duration-fast),
              background var(--duration-fast);
}
.lang-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.nav-login {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-fg-muted);
  padding: 6px var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast), background var(--duration-fast);
  white-space: nowrap;
}
.nav-login:hover { color: var(--color-accent); background: var(--color-accent-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-fg);
  border-radius: 2px;
  transition: transform var(--duration-base), opacity var(--duration-base);
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .aur-btn { display: none; }
  .nav-inner { gap: var(--space-4); padding: 0 var(--space-5); }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-md);
    gap: var(--space-1);
  }
  .nav-links.is-open a { padding: 12px var(--space-4); }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

/* Blobs CSS animés — gradient doux */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240,135,0,0.07) 0%, transparent 65%);
  top: -200px; right: -100px;
  filter: blur(40px);
  animation: blob-a 20s ease-in-out infinite alternate;
}
.hero::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(110,110,110,0.05) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  filter: blur(40px);
  animation: blob-b 28s ease-in-out infinite alternate;
}

@keyframes blob-a {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(50px,-40px) scale(1.1); }
  70%  { transform: translate(-30px,60px) scale(0.92); }
  100% { transform: translate(40px,20px) scale(1.06); }
}
@keyframes blob-b {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-40px,50px) scale(1.08); }
  70%  { transform: translate(60px,-30px) scale(0.94); }
  100% { transform: translate(-20px,40px) scale(1.04); }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 68px; /* nav height */
}

.hero-inner {
  max-width: 800px;
  padding: clamp(80px, 12vh, 140px) var(--space-8);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  animation: fade-up 0.6s var(--ease-out) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-fg);
  margin-bottom: var(--space-6);
  text-wrap: pretty;
  animation: fade-up 0.7s var(--ease-out) 0.25s both;
}
.hero-headline em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-lead {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-fg-muted);
  max-width: 520px;
  margin-bottom: var(--space-10);
  animation: fade-up 0.7s var(--ease-out) 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fade-up 0.7s var(--ease-out) 0.55s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: fade-up 1s var(--ease-out) 1s both;
}
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-fg-subtle);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Section Base ──────────────────────────────────────── */
.section {
  padding: var(--space-24) 0;
}
.section--subtle  { background: var(--color-bg-subtle); }
.section--dark    { background: var(--aurrera-grey-900); }

.section-header { margin-bottom: var(--space-12); }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-eyebrow::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--color-fg);
  margin-bottom: var(--space-4);
}
.section--dark .section-title { color: #ffffff; }

.section-desc {
  font-size: var(--text-md);
  color: var(--color-fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section--dark .section-desc { color: var(--aurrera-grey-400); }

/* ── Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-top: 4px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-top-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.service-card:hover {
  border-top-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-num {
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  color: var(--color-fg-subtle);
  opacity: 0.55;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-5);
}
.service-icon svg { width: 100%; height: 100%; display: block; }
.service-icon .ic-ring,
.service-icon .ic-line {
  stroke: var(--aurrera-grey-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--duration-base) var(--ease-out);
}
.service-icon .ic-dot { fill: var(--color-accent); }
.service-card:hover .service-icon .ic-ring,
.service-card:hover .service-icon .ic-line { stroke: var(--color-accent); }

.service-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-fg);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--color-fg-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-6);
}

.service-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-link);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-fast) var(--ease-out);
  margin-top: auto;
}
.service-link:hover { gap: var(--space-3); }

/* ── Values (dark section) ─────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-card {
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: background var(--duration-base), border-color var(--duration-base);
}
.value-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(240,135,0,0.25);
}

.value-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-5);
}
.value-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-3);
}
.value-desc {
  font-size: var(--text-sm);
  color: var(--aurrera-grey-400);
  line-height: 1.7;
}

/* ── CTA Strip ─────────────────────────────────────────── */
.cta-strip {
  padding: var(--space-24) 0;
  background: var(--color-accent);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
}
.cta-strip-text { max-width: 600px; }
.cta-strip-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: var(--space-2);
}
.cta-strip-desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  padding-top: calc(68px + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-subtle);
}
.page-hero--bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 42vh, 460px);
  display: flex;
  align-items: center;
}
.page-hero--bg > .container {
  position: relative;
  z-index: 2;
}
.page-hero .aur-eyebrow {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.page-hero .aur-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--text-3xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-fg);
  margin-bottom: var(--space-4);
}
.page-hero-desc {
  font-size: var(--text-md);
  color: var(--color-fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Services Detail (page services) ─────────────────────── */
.service-detail {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: start;
}
.service-detail-meta .service-num-lg {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.service-detail-meta .service-title-lg {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-fg);
  line-height: 1.25;
}
.service-detail-body p {
  font-size: var(--text-md);
  color: var(--color-fg-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}
.service-detail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-detail-body ul li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-fg-muted);
  line-height: 1.55;
}
.service-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* ── About Page ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-symbol {
  width: 280px;
  height: 280px;
  opacity: 0.12;
  filter: grayscale(0.3);
}
.about-badge {
  position: absolute;
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}
.about-badge-top {
  top: 10%; right: 5%;
  font-size: var(--text-xs);
  color: var(--color-fg-muted);
}
.about-badge-top strong {
  display: block;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-bottom {
  bottom: 10%; left: 5%;
  font-size: var(--text-xs);
  color: var(--color-fg-muted);
}
.about-badge-bottom strong {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-fg);
  line-height: 1;
  margin-bottom: 4px;
}

/* ── Contact Page ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: var(--space-1); }
.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-info-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-bg-subtle);
}
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: var(--space-3);
}
.contact-info-card p {
  font-size: var(--text-sm);
  color: var(--color-fg);
  line-height: 1.7;
}
.contact-info-card a { color: var(--color-link); font-weight: var(--weight-semibold); }
.contact-info-card a:hover { color: var(--color-link-hover); }

/* ── Blog / Jobs ───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-base), box-shadow var(--duration-base);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 180px;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-fg-subtle);
}
.blog-card-body { padding: var(--space-6); }
.blog-card-date {
  font-size: var(--text-xs);
  color: var(--color-fg-subtle);
  margin-bottom: var(--space-2);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-fg);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.blog-card-desc { font-size: var(--text-sm); color: var(--color-fg-muted); line-height: 1.6; }

.empty-state {
  text-align: center;
  padding: var(--space-24) var(--space-8);
}
.empty-state-icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--space-6);
  opacity: 0.15;
}
.empty-state-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-fg);
  margin-bottom: var(--space-3);
}
.empty-state-desc { font-size: var(--text-md); color: var(--color-fg-muted); max-width: 420px; margin: 0 auto var(--space-8); line-height: 1.7; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--aurrera-grey-900);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}
.footer-brand-name span { color: var(--color-accent); }
.footer-brand-name small {
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--aurrera-grey-500);
  font-size: 0.65em;
  display: block;
}
.footer-tagline {
  font-size: var(--text-sm);
  color: var(--aurrera-grey-500);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}
.footer-address {
  font-size: var(--text-xs);
  color: var(--aurrera-grey-600);
  line-height: 1.7;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aurrera-grey-300);
  margin-bottom: var(--space-5);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--aurrera-grey-500);
  transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--aurrera-grey-800);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: 12px;
  color: var(--aurrera-grey-600);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--aurrera-grey-500); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ── Hero entrance animation ───────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .service-detail-grid  { grid-template-columns: 1fr; gap: var(--space-6); }
  .about-grid           { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .cta-strip-inner      { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .section              { padding: var(--space-16) 0; }
  .services-grid        { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr; }
  .blog-grid            { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-inner           { padding: clamp(60px,10vh,100px) var(--space-5); }
  .form-row             { grid-template-columns: 1fr; }
  .page-hero            { padding-top: calc(68px + var(--space-10)); }
}

/* ═══════════════════════════════════════════════════════════
   BENTO HERO — style Arkt (warm grey · mosaic · bold type)
   ═══════════════════════════════════════════════════════════ */

/* Nav separator ─────────────────────── */
.nav-sep {
  width: 1px;
  height: 18px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Bento wrapper ─────────────────────── */
.hero-bento-wrap {
  position: relative;
  background: #EDECE8;
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}

/* Bento grid ────────────────────────── */
.hero-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.52fr;
  grid-template-rows: 1.35fr 0.65fr;
  gap: 10px;
  padding: calc(68px + 10px) 10px 10px;
  height: 100%;
}

/* Shared tile base */
.bento-tile {
  border-radius: 8px;
  overflow: hidden;
  animation: bento-in 0.55s var(--ease-snap) both;
}

@keyframes bento-in {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* A · Headline ──────────────────────── */
.bento-hl-tile {
  grid-column: 1 / 3;
  grid-row: 1;
  background: #ffffff;
  padding: 36px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  animation-delay: 0.05s;
}

.bento-acc-sq {
  position: absolute;
  top: 26px; right: 28px;
  width: 16px; height: 16px;
  background: var(--color-accent);
  border-radius: 2px;
  pointer-events: none;
}

.bento-pre {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-fg-subtle);
}

.bento-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 5.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.91;
  color: var(--color-fg);
  margin: 0;
}
.bento-h1 em {
  color: var(--color-accent);
  font-style: normal;
}

/* B · Dark visual ───────────────────── */
.bento-dark-tile {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--aurrera-grey-900);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  animation-delay: 0.15s;
}

.bento-bg-sym {
  position: absolute;
  width: 220px; height: 220px;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  opacity: 0.06;
  filter: grayscale(1) brightness(12);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.bento-dark-body { position: relative; z-index: 1; }

.bento-chips {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.bento-chip {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.55);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.bento-dark-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.bento-dark-vals {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* C · Lead ──────────────────────────── */
.bento-lead-tile {
  grid-column: 1;
  grid-row: 2;
  background: #ffffff;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation-delay: 0.25s;
}

.bento-lead-txt {
  font-size: var(--text-sm);
  color: var(--color-fg-muted);
  line-height: 1.65;
  max-width: 400px;
}

.bento-btn-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* D · Orange CTA ────────────────────── */
.bento-cta-tile {
  grid-column: 2;
  grid-row: 2;
  background: var(--color-accent);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out);
  animation-delay: 0.20s;
}
.bento-cta-tile:hover { background: var(--color-accent-hover); }

.bento-cta-txt {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.bento-arr-ico {
  align-self: flex-end;
  transition: transform var(--duration-base) var(--ease-out);
}
.bento-cta-tile:hover .bento-arr-ico { transform: translate(4px, -4px); }

/* Bento responsive ──────────────────── */
@media (max-width: 1024px) {
  .hero-bento {
    grid-template-columns: 1fr 1fr 0.48fr;
  }
  .bento-h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
}

@media (max-width: 860px) {
  .hero-bento-wrap { height: auto; min-height: 100svh; }
  .hero-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    padding-bottom: var(--space-4);
  }
  .bento-hl-tile    { grid-column: 1 / 3; grid-row: 1; min-height: 320px; }
  .bento-dark-tile  { grid-column: 2;     grid-row: 2; min-height: 200px; }
  .bento-lead-tile  { grid-column: 1 / 3; grid-row: 3; }
  .bento-cta-tile   { grid-column: 1;     grid-row: 2; min-height: 160px; }
  .bento-h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
}

@media (max-width: 540px) {
  .hero-bento {
    grid-template-columns: 1fr;
  }
  .bento-hl-tile   { grid-column: 1; min-height: 260px; padding: 28px; }
  .bento-cta-tile  { grid-column: 1; grid-row: 2; min-height: 130px; }
  .bento-dark-tile { grid-column: 1; grid-row: 3; min-height: 200px; }
  .bento-lead-tile { grid-column: 1; grid-row: 4; }
  .bento-h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .bento-hl-tile { padding: 24px 28px 28px; }
}

/* ── P2 : système de marque ────────────────────────────── */
/* Logo dans le footer */
.footer-logo { display: inline-flex; margin-bottom: var(--space-4); }
.footer-logo img { height: 42px; width: auto; display: block; filter: brightness(0) invert(1); }

/* Filigrane hexagonal — section Valeurs (fond foncé) */
.section--dark { position: relative; overflow: hidden; }
.section--dark > .container { position: relative; z-index: 1; }
.values-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 460px; max-width: 52%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.values-bg img { width: 100%; display: block; }
@media (max-width: 768px) { .values-bg { display: none; } }

/* Icônes de la page Services détaillée (ADN de marque) */
.service-detail-icon { width: 56px; height: 56px; margin-bottom: var(--space-5); }
.service-detail-icon svg { width: 100%; height: 100%; display: block; }
.service-detail-icon .ic-ring,
.service-detail-icon .ic-line {
  stroke: var(--aurrera-grey-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-detail-icon .ic-dot { fill: var(--color-accent); }

/* ── P3 : focus clavier visible ────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.service-card a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.site-footer a:focus-visible { outline-color: var(--color-accent); }

/* ── P3 : bandeau cookies ──────────────────────────────── */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: var(--space-5);
  transform: translate(-50%, calc(100% + var(--space-8)));
  z-index: var(--z-toast);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: min(680px, calc(100vw - var(--space-8)));
  padding: var(--space-4) var(--space-5);
  background: var(--aurrera-grey-900);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: transform var(--duration-slow) var(--ease-snap),
              opacity var(--duration-slow) var(--ease-out);
}
.cookie-bar.is-visible { transform: translate(-50%, 0); opacity: 1; }
.cookie-bar__msg {
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--aurrera-grey-300);
  margin: 0;
}
.cookie-bar__msg a { color: var(--aurrera-orange-300); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar .aur-btn { flex-shrink: 0; }
@media (max-width: 540px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: left; left: var(--space-4); right: var(--space-4); transform: translateY(calc(100% + var(--space-8))); max-width: none; }
  .cookie-bar.is-visible { transform: translateY(0); }
}
