@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");
@import "./tokens.css";

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1rem;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

p { margin-bottom: 1rem; }

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  border: none;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-ghost {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-link img { height: 36px; width: auto; filter: invert(1); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-main { display: none; }
.nav-main ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-main a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-main a:hover,
.nav-main a[aria-current="page"] { color: var(--color-secondary); }
.nav-main .btn-primary { color: #fff; padding: 0.5rem 1.25rem; font-size: 0.9rem; }

/* Mobile menu */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0.25rem;
}
.nav-toggle svg { display: block; }

.nav-mobile {
  display: none;
  background: var(--color-primary);
  padding: 0 1.25rem 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-mobile a {
  color: rgba(255,255,255,0.85);
  display: block;
  padding: 0.65rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--color-secondary); }
.nav-mobile .btn-primary { margin-top: 0.75rem; width: 100%; text-align: center; }

@media (min-width: 768px) {
  .nav-main { display: block; }
  .nav-toggle { display: none; }
}

/* ─── HERO ─── */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0 3rem;
}
.hero .container {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--color-secondary);
  padding-left: 0.6rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-secondary { border-color: rgba(255,255,255,0.5); color: #fff; }

@media (min-width: 900px) {
  .hero .container { grid-template-columns: 1fr 1fr; }
  .hero { padding: 5.5rem 0 4.5rem; }
}

/* ─── VISUAL PLACEHOLDER ─── */
.visual-placeholder {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-primary) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-primary) 10%, var(--color-bg)) 55%,
      color-mix(in srgb, var(--color-secondary) 18%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-aspect="4:3"]  { aspect-ratio: 4 / 3; }
.visual-placeholder[data-aspect="1:1"]  { aspect-ratio: 1 / 1; }
.visual-placeholder[data-aspect="3:4"]  { aspect-ratio: 3 / 4; }
.visual-placeholder[data-aspect="21:9"] { aspect-ratio: 21 / 9; }

.visual-placeholder[data-tone="secondary"] {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-secondary) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-secondary) 10%, var(--color-bg)) 55%,
      color-mix(in srgb, var(--color-primary) 16%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-tone="accent"] {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-accent, var(--color-primary)) 22%, var(--color-bg)) 0%,
      color-mix(in srgb, var(--color-primary) 12%, var(--color-bg)) 60%,
      color-mix(in srgb, var(--color-secondary) 16%, var(--color-bg)) 100%
    );
}
.visual-placeholder[data-tone="muted"] {
  background: color-mix(in srgb, var(--color-text) 8%, var(--color-bg));
}

/* Hero placeholder dark treatment */
.hero .visual-placeholder {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-secondary) 25%, #1a0810) 0%,
      color-mix(in srgb, var(--color-accent) 18%, #18181B) 50%,
      color-mix(in srgb, var(--color-secondary) 12%, #1a0810) 100%
    );
}

/* ─── SECTIONS ─── */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.section-intro {
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 600px;
  margin-bottom: 2rem;
}
.section-bg-light { background: #F9FAFB; }
.section-bg-dark {
  background: var(--color-primary);
  color: #fff;
}
.section-bg-dark .section-title { color: #fff; }
.section-bg-dark .section-intro { color: rgba(255,255,255,0.7); }

/* ─── ATOUTS ─── */
.atouts-grid {
  display: grid;
  gap: 1.5rem;
}
.atout-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
}
.atout-icon {
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.atout-icon svg { width: 20px; height: 20px; stroke: #fff; }
.atout-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.atout-card p { font-size: 0.95rem; color: #4B5563; margin-bottom: 0; }

@media (min-width: 600px) { .atouts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .atouts-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── SERVICES PREVIEW ─── */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1px solid #E5E7EB;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.service-card-body { padding: 1.25rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.93rem; color: #4B5563; margin-bottom: 0.85rem; }
.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: #FFF1F3;
  color: var(--color-secondary);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
}

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--color-secondary);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.2rem, 3vw, 1.7rem); }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-band .btn-secondary { border-color: #fff; color: #fff; }
.cta-band .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT BAR ─── */
.contact-bar {
  background: #F9FAFB;
  padding: 2rem 0;
  border-top: 1px solid #E5E7EB;
}
.contact-bar-grid {
  display: grid;
  gap: 1.25rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-info-item .icon-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contact-info-item .icon-circle svg { width: 16px; height: 16px; stroke: #fff; fill: none; }
.contact-info-item strong { display: block; font-size: 0.8rem; color: #6B7280; margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-item a { color: var(--color-primary); font-weight: 600; }
.contact-info-item a:hover { color: var(--color-secondary); }

@media (min-width: 600px) { .contact-bar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .contact-bar-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── SERVICES PAGE ─── */
.service-detail {
  padding: 3rem 0;
  border-bottom: 1px solid #E5E7EB;
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.service-detail-content h2 { margin-bottom: 0.75rem; color: var(--color-primary); }
.service-detail-content p { color: #4B5563; }
.service-detail-list {
  margin: 0.75rem 0 1rem;
  padding-left: 0;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #374151;
}
.service-detail-list li::before {
  content: "—";
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr 1fr; }
  .service-detail:nth-child(even) .service-detail-content { order: 2; }
  .service-detail:nth-child(even) .visual-placeholder { order: 1; }
}

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-header h1 { color: #fff; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-secondary); }
.breadcrumb span { margin: 0 0.35rem; }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: #4B5563; }
.values-list { display: grid; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.value-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-top: 7px;
}
.value-item strong { display: block; margin-bottom: 0.2rem; }
.value-item p { font-size: 0.93rem; color: #4B5563; margin-bottom: 0; }

/* ─── RESERVATION PAGE ─── */
.reservation-options {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.resa-option-card {
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.resa-option-card:hover { border-color: var(--color-secondary); box-shadow: 0 4px 16px rgba(225,29,72,0.12); }
.resa-option-card .resa-icon {
  width: 56px; height: 56px;
  background: #FFF1F3;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.resa-option-card .resa-icon svg { width: 28px; height: 28px; stroke: var(--color-secondary); fill: none; }
.resa-option-card h3 { margin-bottom: 0.5rem; }
.resa-option-card p { color: #4B5563; margin-bottom: 1.25rem; font-size: 0.95rem; }
@media (min-width: 600px) { .reservation-options { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .reservation-options { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: #F9FAFB;
  border-radius: 8px;
  padding: 1.75rem;
  border-left: 4px solid var(--color-secondary);
}
.info-card h3 { margin-bottom: 0.75rem; font-size: 1rem; }
.info-card ul { padding-left: 0; }
.info-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #E5E7EB;
  color: #374151;
  font-size: 0.95rem;
}
.info-card li:last-child { border-bottom: none; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #374151;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s;
  margin-bottom: 1.1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  aspect-ratio: 4 / 3;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-details-block { margin-top: 1.5rem; }
.contact-detail-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E5E7EB;
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-row .icon-sm {
  width: 20px; height: 20px; min-width: 20px;
  stroke: var(--color-secondary); fill: none;
  margin-top: 2px;
}
.contact-detail-row div { font-size: 0.95rem; }
.contact-detail-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6B7280; margin-bottom: 0.1rem; }

.rgpd-notice {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-logo { height: 36px; width: auto; filter: invert(1); margin-bottom: 0.5rem; }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--color-secondary); }
.footer-contact address { font-style: normal; font-size: 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: var(--color-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--color-secondary); }

/* ─── MENTIONS LEGALES ─── */
.mentions-content { max-width: 720px; }
.mentions-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.mentions-content p, .mentions-content li { font-size: 0.95rem; color: #374151; }
.mentions-content ul { padding-left: 1.25rem; margin-bottom: 1rem; list-style: disc; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════
   ANIMATION PASS — WEB-5281
   Albalys Dominicana Professional Hair
   Template : élégant féminin Noir / Rose (D-like)
   ═══════════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes card-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── 1. Hero entrance (keyframe, pas de JS requis) ── */
  .hero-eyebrow { animation: fade-up 0.5s ease both 0.08s; }
  .hero h1      { animation: fade-up 0.55s ease both 0.22s; }
  .hero .intro  { animation: fade-up 0.5s ease both 0.36s; }
  .hero-cta     { animation: fade-up 0.5s ease both 0.50s; }
  .hero .visual-placeholder { animation: fade-up 0.65s ease both 0.18s; }

  /* ── 2. Atouts — stagger déclenché par IntersectionObserver (.revealed) ── */
  .atouts-grid.revealed .atout-card {
    animation: card-in 0.55s ease both;
  }
  .atouts-grid.revealed .atout-card:nth-child(1) { animation-delay: 0.04s; }
  .atouts-grid.revealed .atout-card:nth-child(2) { animation-delay: 0.18s; }
  .atouts-grid.revealed .atout-card:nth-child(3) { animation-delay: 0.32s; }

  /* ── 3. Services — stagger déclenché par IntersectionObserver (.revealed) ── */
  .services-grid.revealed .service-card {
    animation: card-in 0.55s ease both;
  }
  .services-grid.revealed .service-card:nth-child(1) { animation-delay: 0.04s; }
  .services-grid.revealed .service-card:nth-child(2) { animation-delay: 0.18s; }
  .services-grid.revealed .service-card:nth-child(3) { animation-delay: 0.32s; }

  /* ── 4. Service card hover lift ── */
  .service-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.13);
  }

  /* ── 5. Atout card hover ── */
  .atout-card {
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  }
  .atout-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.09);
  }

  /* ── 6. Visual placeholder hover lift ── */
  .visual-placeholder {
    transition: transform 0.3s ease;
  }
  .visual-placeholder:hover {
    transform: scale(1.02);
  }
  .hero .visual-placeholder {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .hero .visual-placeholder:hover {
    transform: scale(1.015);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.50);
  }

  /* btn — box-shadow au survol ── */
  .btn {
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

}

/* ── Focus visible amélioré ── */
:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Garde-fou reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
