/* ======================================
   VARIABLES
====================================== */
:root {
  --white:       #faf8f3;
  --cream:       #f3efe5;
  --cream-alt:   #e6dfd0;
  --black:       #1c2629;
  --text:        #354045;
  --text-light:  #5c6a70;
  --green:       #074730;
  --bordeau: #47071E;
  /* --green-light: #6e9180; */
  --green-pale:  #eaf0ec;
  --gold:        #b5935a;
  --border:      rgba(0,0,0,0.07);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.09);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.35s;
}

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

* { -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.nav-open {
  overflow: hidden;
}

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

/* ======================================
   ACCESSIBILITÉ — skip nav + utilitaires
====================================== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--green);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 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;
}

/* Focus visible — navigation clavier */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Scroll margin — compense le header sticky */
section[id] {
  scroll-margin-top: 72px;
}

/* ======================================
   TYPOGRAPHY UTILITIES
====================================== */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green); /* vert pour le contraste WCAG AA */
  margin-bottom: 1.1rem;
}

.eyebrow.center { text-align: center; }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.6rem;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

h2::after {
  content: "";
  display: block;
  width: 49px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.2rem;
}

h2.center { text-align: center; }
h2.center::after { margin: 1rem auto 0; }

p {
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 400;
}

.opt {
  opacity: 0.5;
  font-weight: 300;
}

/* ======================================
   BUTTONS
====================================== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--cream);
  color: var(--black);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--t) var(--ease),
              color     var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(95,125,106,0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.9);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 1.8rem;
  transition: background var(--t) var(--ease),
              color     var(--t) var(--ease),
              transform var(--t) var(--ease);
}

.btn-secondary:hover {
  background: var(--green);
  color: white;
  transform: translateY(-1px);
}

/* ======================================
   HEADER — transparent sur le hero, vert au scroll
====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background var(--t) var(--ease),
              box-shadow  var(--t) var(--ease);
}

.site-header.scrolled {
  background: var(--green);
  box-shadow: 0 4px 30px rgba(0,0,0,0.28);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 55px;
  height: 55px;
  border-radius: 999px;
  padding: 7px;
  background: rgb(220, 220, 220);
}

.logo-mark svg { width: 100%; height: 100%; }

.site-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin-left: 1.8rem;
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
  transition: color var(--t) var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: white;
  transition: width var(--t) var(--ease);
}

.nav a:hover { color: white; }
.nav a:hover::after { width: 100%; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}

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

/* Mobile nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}

/* ======================================
   PAGE WRAPPER
====================================== */
.page {
  background: var(--cream);
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ======================================
   SECTIONS
====================================== */
.section {
  padding: clamp(60px, 10vw, 110px) 2rem;
  max-width: 920px;
  margin: 0 auto;
}

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

.full-section {
  padding: clamp(60px, 10vw, 110px) 2rem;
}

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

.container {
  max-width: 920px;
  margin: 0 auto;
}

/* ======================================
   HERO
====================================== */
.hero {
  position: relative;
  min-height: 50vh;
  background:
    url('assets/hero-flipped.webp') center 30%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 max(2.5rem, calc((100% - 1200px) / 2 + 3rem));
}

.hero-content {
  background: var(--green-light);
  background: rgba(48, 104, 76, 0.844);
  border-radius: var(--radius-lg);
  text-align: left;
  color: white;
  max-width: 560px;
  padding: 3rem 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  animation: fadeUp 1.1s var(--ease) both;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 2rem;
  color: white;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 1;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.18);
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

.hero-sub {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 300;
  /* letter-spacing: 0.12em; */
  /* text-transform: uppercase; */
  margin-bottom: 0;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: max(2.5rem, calc((100% - 1200px) / 2 + 3rem));
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transform: rotate(45deg);
  animation: scrollBounce 2.2s ease infinite;
}

/* ======================================
   Presentation
====================================== */
.presentation-panel {
  background: #f6f2e8;
  /* background: var(--cream-alt); */
  padding: 2.5rem 2rem;
  margin: 2rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 71, 47, 0.15);
  border-left: 3px solid rgba(7, 71, 48, 0.25);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.presentation-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 1.5rem 0 2rem;
}

.tag {
  display: inline-block;
  padding: 10px 12px;

  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;

  color: var(--green);

  border: 1px solid rgba(7, 71, 48, 0.25);
  border-radius: var(--radius-sm);

  background: rgba(7, 71, 48, 0.03);

  transition: all 0.2s ease;
}

/* subtle interaction (optional but nice) */
.label:hover {
  background: rgba(7, 71, 48, 0.12);
  transform: translateY(-1px);
}


/* ======================================
   SPLIT (Qui suis je)
====================================== */
.split {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.profile-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-image {
  width: 280px;
  height: 370px;
  background: linear-gradient(135deg, #d8d4cc, #c5c0b6);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.profile-tag {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--green);
  color: white;
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 10px 30px rgba(95,125,106,0.4);
}

.profile-tag small {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

.text-content { flex: 1; }

.text-content h2 { margin-top: 0.5rem; }

.text-content p { max-width: 480px; }

.training {
  margin: 2rem 0;
}

.training-intro {
  margin-bottom: 1rem;
}

/* LIST RESET */
.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* EACH ITEM */
.training-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* CUSTOM BULLET (refined) */
.training-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #074730;
  border-radius: 50%;
  transform: translateY(-50%);
}

.note {
  margin-top: 3rem;
  padding: 1.5rem;

  /* background: rgba(7, 71, 48, 0.04); */
  background: var(--cream);
  border-left: 3px solid rgba(7, 71, 48, 0.3);

  border-radius: 10px;
}

.note p {
  font-size: 0.9rem;
  line-height: 1.6;
  /* color: rgba(0,0,0,0.75); */
  color: var(--text-light);
}

/* ======================================
   CARDS (Consultations)
====================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(7, 71, 48, 0.2);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-glyph {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: var(--green);
  font-family: serif;
  line-height: 1;
  opacity: 0.9;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--black);
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Stagger cards */
.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }

.link {
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--t) var(--ease);
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--green);
  color: var(--green);
  transition: width var(--t) var(--ease);
}

.link:hover { color: var(--green); }
.link:hover::after { width: 100%; }

/* ======================================
   TARIF BAND
====================================== */
.tarif-band {
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: var(--radius);
  margin-top: 3.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 0.5rem;
  color: white;
}

.tarif-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 3rem;
  margin: 0 auto;
}

.tarif-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.tarif-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.tarif-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ======================================
   CALENDAR PLACEHOLDER
====================================== */
.calendar-placeholder {
  margin-top: 2.5rem;
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  border: 1.5px dashed rgba(95,125,106,0.3);
}

.cal-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--green);
}

.calendar-placeholder p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.calendar-placeholder .btn-secondary {
  margin-top: 1.5rem;
}

/* ======================================
   INFOS
====================================== */
.infos-grid {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.infos-list { flex: 0 0 auto; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.info-item:first-child { padding-top: 0; }

.info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.info-item p {
  font-size: 0.9rem;
  margin: 0;
}

.map {
  flex: 1;
  height: 280px;
  width: 100%;
  background: linear-gradient(135deg, #d8d4cc, #c5c0b6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}

/* ======================================
   CONTACT FORM
====================================== */
.contact-form {
  max-width: 640px;
  margin-top: 2.5rem;
}

.form-status {
  display: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 17px 16px 9px;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  border-radius: 0;
  transition: border-color var(--t) var(--ease);
  resize: none;
}

.form-group textarea {
  padding-top: 20px;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--green);
}

.form-group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: top 0.25s var(--ease),
              font-size 0.25s var(--ease),
              color 0.25s var(--ease);
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: 0;
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.08em;
}

/* Form — validation states */
.field-error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.35rem;
  min-height: 1rem;
  font-weight: 400;
}

.field-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  opacity: 0.8;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-bottom-color: #c0392b;
}

/* Address (infos) */
address {
  font-style: normal;
}

address a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease);
}

address a:hover {
  border-bottom-color: var(--green);
}


/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem 2rem 1rem 2rem;

}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-text {
    text-align: center;
}

.footer-text p {
       
     font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-bottom p {
    margin: 1.2rem;
    font-size: 1rem;
}

.footer-credits {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.powered-by img {
    height: 30px;
    transition: transform 0.3s ease;
    margin-bottom: 5px;
}

.powered-by:hover img {
    transform: scale(1.08);
}


/* ======================================
   ANIMATIONS
====================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 900px) {

  /* Header toujours vert sur mobile (pas de hero plein écran) */
  .site-header {
    background: var(--green);
    box-shadow: 0 4px 30px rgba(0,0,0,0.28);
  }

  body { background: var(--cream); }

  .page {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .burger { display: flex; }

  .nav-backdrop { display: block; }
  .nav-backdrop.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 80vw);
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s var(--ease);
    z-index: 999;
    margin: 0;
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }

  .nav.open { right: 0; }

  .nav a {
    margin: 0;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
  }

  .nav a::after { display: none; }

  .hero {
    min-height: 85vh;
    padding: 0 1.8rem;
    background-position: 70% 30%;
  }

  .hero h1 { font-size: clamp(3rem, 12vw, 4.5rem); }

  .hero-scroll { left: 1.8rem; }

  .split { flex-direction: column; gap: 3rem; }

  .profile-image { width: 100%; height: 280px; }

  .profile-tag { bottom: -1rem; right: -0.5rem; }

  .cards { grid-template-columns: 1fr; gap: 1rem; }

  .tarif-band {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2
    rem 1.5rem;
  }

  .tarif-item { padding: 0; }
  .tarif-sep { width: 60px; height: 1px; }

  .infos-grid { flex-direction: column; gap: 2rem; }

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

  .hero-actions { flex-direction: column; align-items: flex-start; }

}

@media (max-width: 480px) {
  .header-inner { padding: 0.9rem 1.2rem; }
  .section { padding: 60px 1.2rem; }
  .full-section { padding: 60px 1.2rem; }
}

/* ======================================
   REDUCED MOTION
====================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

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