/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --cream: #FFFBF0;
  --cream-deep: #FCEFC4;
  --ink: #14213D;
  --ink-soft: #3A4D70;
  --line: rgba(20, 33, 61, 0.15);

  /* Couleur d'accent par défaut (accueil, contact) : marine neutre */
  --accent: #2D6E8E;
  --accent-deep: #144C66;
  --accent2: #3A4D70;
  --accent2-deep: #14213D;
  --accent-onlight: #6FB4D6;

  --terracotta: #C1502E;
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1080px;
}

/* Organisation — bleu */
main.theme-organisation {
  --accent: #2D7FF0;
  --accent-deep: #0E3A75;
  --accent2: #2D7FF0;
  --accent2-deep: #0E3A75;
}

/* Communication — jaune */
main.theme-communication {
  --accent: #FFC400;
  --accent-deep: #8C6500;
  --accent2: #FFC400;
  --accent2-deep: #8C6500;
}

/* Adaptabilité — vert */
main.theme-adaptabilite {
  --accent: #34A65B;
  --accent-deep: #1F6B3A;
  --accent2: #34A65B;
  --accent2-deep: #1F6B3A;
}

/* Ce que j'apporte — rose fuchsia */
main.theme-apport {
  --accent: #E63D8C;
  --accent-deep: #9C1F5C;
  --accent2: #E63D8C;
  --accent2-deep: #9C1F5C;
  --accent-onlight: #F06AA8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 10px;
}

/* ============================================================
   TOPBAR / NAV
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--ink); }

.nav a[data-route="organisation"],
.nav-mobile a[data-route="organisation"],
.nav a.active[data-route="organisation"],
.nav-mobile a.active[data-route="organisation"] { color: #0E3A75; }

.nav a[data-route="communication"],
.nav-mobile a[data-route="communication"],
.nav a.active[data-route="communication"],
.nav-mobile a.active[data-route="communication"] { color: #8C6500; }

.nav a[data-route="adaptabilite"],
.nav-mobile a[data-route="adaptabilite"],
.nav a.active[data-route="adaptabilite"],
.nav-mobile a.active[data-route="adaptabilite"] { color: #1F6B3A; }

.nav a.active { color: var(--accent-deep); }

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav a.nav-highlight {
  background: var(--ink);
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 999px;
}

.nav a.nav-highlight:hover { background: var(--accent-deep); color: var(--cream); }

.nav a.nav-highlight.active {
  background: var(--accent-deep);
  color: var(--cream);
}

.nav a.nav-highlight.active::after { display: none; }

.nav-mobile a.nav-highlight {
  color: var(--accent-deep);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: sticky;
  top: 65px;
  z-index: 49;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.nav-mobile.open {
  max-height: 320px;
}

.nav-mobile a {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--terracotta);
}

.nav-mobile a.active { color: var(--accent-deep); }

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
}

/* ============================================================
   LAYOUT GÉNÉRIQUE
   ============================================================ */
.section {
  padding: 84px 32px;
}

.section.alt {
  background: var(--cream-deep);
}

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 720px;
}

.section h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 28px;
  max-width: 640px;
}

main.theme-organisation .section h2,
main.theme-communication .section h2,
main.theme-adaptabilite .section h2,
main.theme-apport .section h2 {
  color: var(--accent-deep);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

@media (max-width: 760px) {
  .section { padding: 56px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HERO (accueil)
   ============================================================ */
.hero {
  position: relative;
  padding: 110px 32px 90px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-deep);
  color: var(--accent-deep);
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

.hero-scroll:hover {
  opacity: 1;
  border-color: var(--accent-deep);
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 6px 0 18px;
}

.hero-titre {
  font-size: 19px;
  font-weight: 500;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.hero-accroche {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--accent-deep); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.about-photo-col {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.about-photo {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 320px;
}

.about-photo::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: 0;
}

.about-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(20, 33, 61, 0.16);
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-text-col { order: 2; }
  .about-photo-col { order: 1; }
  .about-photo { max-width: 240px; }
  .about-photo::before { top: 12px; left: -12px; }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  font-size: 17px;
  color: var(--ink-soft);
}

/* Timeline scolarité */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
  max-width: 600px;
}

.timeline li {
  position: relative;
  padding: 0 0 28px 28px;
}

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

.timeline-dot {
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--cream);
}

.timeline-label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.timeline-lieu {
  font-size: 14px;
  color: var(--ink-soft);
}

/* Hobbies */
.hobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hobby-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hobby-card .carousel-hobby {
  border-radius: 0;
}

.hobby-card-body {
  padding: 22px 24px 26px;
}

.hobby-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--accent2-deep);
}

.hobby-card p {
  font-size: 15px;
  color: var(--ink-soft);
}

.hobby-detail {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}

.hobby-recit {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.hobby-recit + .hobby-recit {
  margin-top: 10px;
}

.hobby-villes-label {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent2-deep);
}

.hobby-villes {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .hobby-grid { grid-template-columns: 1fr; }
}

/* Teaser compétences sur l'accueil */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.teaser-card {
  display: block;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.teaser-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.teaser-card h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 8px;
}

.teaser-card p {
  font-size: 14px;
  opacity: 0.85;
}

.teaser-bleu { background: #0E3A75; }
.teaser-jaune { background: #8C6500; }
.teaser-vert { background: #1F6B3A; }
.teaser-fuchsia { background: #9C1F5C; }

.teaser-apport {
  display: block;
  margin-bottom: 28px;
}

@media (max-width: 760px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE "CE QUE J'APPORTE" — traitée comme un pilier du site
   ============================================================ */
.apport-fullhero {
  background: var(--ink);
  padding: 110px 32px 76px;
  border-bottom: 1px solid var(--line);
}

.apport-fullhero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow-light {
  color: var(--accent-onlight);
}

.apport-fullhero h1 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 50px);
  margin: 6px 0 18px;
  line-height: 1.08;
}

.apport-intro {
  color: rgba(251, 246, 239, 0.78);
}

.apport-blocs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.apport-bloc {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.apport-bloc h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent2-deep);
  margin-bottom: 14px;
  line-height: 1.35;
}

.apport-bloc .plain-list {
  gap: 12px;
}

.apport-bloc .plain-list li {
  font-size: 14px;
}

@media (max-width: 760px) {
  .apport-blocs { grid-template-columns: 1fr; }
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pourquoi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pourquoi-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent2-deep);
  margin-bottom: 10px;
  line-height: 1.4;
}

.pourquoi-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

@media (max-width: 760px) {
  .pourquoi-grid { grid-template-columns: 1fr; }
}

.apport-citation {
  margin: 0 0 32px;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: normal;
  line-height: 1.45;
  color: var(--ink);
}

/* ============================================================
   PAGE COMPÉTENCE
   ============================================================ */
.competence-fullhero {
  padding: 72px 32px 56px;
  background: var(--accent-deep);
  border-bottom: 1px solid var(--line);
}

.competence-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.competence-fullhero h1 {
  color: var(--cream);
  font-size: clamp(34px, 5vw, 48px);
}

.competence-intro {
  font-size: 18px;
  color: var(--cream);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.55;
}

.competence-soustitre {
  font-size: 13px;
  color: rgba(251, 246, 239, 0.62);
  margin-top: 16px;
  max-width: 460px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .competence-hero-inner { flex-direction: column-reverse; align-items: flex-start; gap: 24px; }
}

/* Jauge (sur fond coloré du hero) */
.gauge { flex-shrink: 0; }

.gauge-track {
  stroke: rgba(251, 246, 239, 0.25);
  stroke-width: 9;
  stroke-linecap: round;
}

.gauge-fill {
  stroke: var(--cream);
  stroke-width: 9;
  stroke-linecap: round;
}

.gauge-num {
  font-family: var(--font-display);
  font-size: 30px;
  fill: var(--cream);
  font-weight: 600;
}

.gauge-den {
  font-family: var(--font-body);
  font-size: 13px;
  fill: rgba(251, 246, 239, 0.78);
}

.justif {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 680px;
}

.justif + .justif {
  margin-top: 14px;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-soft);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent2);
}

/* ============================================================
   EXPÉRIENCES — ACCORDÉON
   ============================================================ */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exp-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.exp-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.exp-head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exp-titre {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.exp-meta {
  font-size: 13px;
  color: var(--ink-soft);
}

.exp-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 4px;
}

.exp-card[data-open="true"] .exp-chevron {
  transform: rotate(-135deg);
}

.exp-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.exp-card[data-open="true"] .exp-body {
  max-height: 900px;
  padding: 0 24px 24px;
}

.exp-desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.exp-grid h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .exp-grid { grid-template-columns: 1fr; gap: 20px; }
}

.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, var(--cream));
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  color: var(--accent2-deep);
  font-weight: 500;
}

.exp-preuve span {
  font-weight: 600;
  color: var(--accent2-deep);
  margin-right: 6px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding-top: 100px;
}

.contact-section h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.contact-value {
  font-size: 17px;
  font-weight: 500;
}

/* ============================================================
   CARROUSEL
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
}

.car-track {
  display: flex;
  transition: transform 0.4s ease;
}

.car-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.car-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream-deep);
}

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

/* Variante carte (dans les expériences) */
.carousel-card {
  width: 100%;
}

.carousel-card .car-slide,
.carousel-card .car-slide img,
.carousel-card .ph-svg {
  height: 320px;
}

/* Variante hero (en tête de page compétence) */
.carousel-hero {
  width: 100%;
}

.carousel-hero .car-slide,
.carousel-hero .car-slide img,
.carousel-hero .ph-svg {
  height: 460px;
}

/* Variante hobby (en tête de carte "Ce que j'aime") */
.carousel-hobby {
  width: 100%;
}

.carousel-hobby .car-slide,
.carousel-hobby .car-slide img,
.carousel-hobby .ph-svg {
  height: 280px;
}

@media (max-width: 760px) {
  .carousel-hero .car-slide,
  .carousel-hero .car-slide img,
  .carousel-hero .ph-svg {
    height: 360px;
  }
  .carousel-card .car-slide,
  .carousel-card .car-slide img,
  .carousel-card .ph-svg {
    height: 280px;
  }
}

.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(43, 37, 32, 0.55);
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.car-arrow:hover { background: var(--accent-deep); }

.car-arrow-prev { left: 10px; }
.car-arrow-next { right: 10px; }

.car-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 246, 239, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.car-dot.active {
  background: var(--cream);
  transform: scale(1.25);
}

/* Bloc preuve dans la carte d'expérience */
.exp-preuve-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.exp-preuve-block h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--accent2-deep);
  margin-bottom: 10px;
}

/* Galerie en tête de page compétence */
.competence-galerie {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 32px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* ============================================================
   ACCESSIBILITÉ
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
