/* ============================================
   Sofia Benfrih — Kinésiologue à Paris
   Aesthetic: Cabinet Parisien
   ============================================ */

:root {
  --ivory: #F7F3EE;
  --ivory-warm: #F0EBE3;
  --sage: #4A5D4E;
  --sage-light: #6B7F6E;
  --sage-pale: #E2E8E3;
  --bronze: #A8875B;
  --bronze-light: #C4A97A;
  --bronze-pale: #EDE5D8;
  --charcoal: #2C2C2C;
  --clay: #D4C5B2;
  --clay-light: #E8DFD2;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset & Base ---- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage);
}

::selection {
  background: var(--sage-pale);
  color: var(--sage);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Animations ---- */

.anim-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* stagger children */
.anim-reveal:nth-child(2) { transition-delay: 0.08s; }
.anim-reveal:nth-child(3) { transition-delay: 0.16s; }
.anim-reveal:nth-child(4) { transition-delay: 0.24s; }
.anim-reveal:nth-child(5) { transition-delay: 0.32s; }
.anim-reveal:nth-child(6) { transition-delay: 0.4s; }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--clay);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bronze);
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--charcoal);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--sage);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--charcoal) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* ---- Hero ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--ivory) 0%, var(--ivory-warm) 50%, var(--clay-light) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(168, 135, 91, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(74, 93, 78, 0.03) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-title em {
  color: var(--sage);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-details {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clay);
}

.hero-detail-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-detail-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

.hero-detail-divider {
  width: 1px;
  height: 36px;
  background: var(--clay);
}

.hero-botanical {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  color: var(--sage);
  opacity: 0.5;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: scrollBounce 2.5s var(--ease-in-out) infinite;
}

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

/* ---- Section commons ---- */

.section {
  padding: 7rem 0;
}

.section-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.gold-rule {
  width: 48px;
  height: 1.5px;
  background: var(--bronze);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- Approche ---- */

.approche {
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.section-left {
  position: sticky;
  top: 8rem;
}

.approche-portrait {
  position: relative;
  margin-bottom: 2.5rem;
}

.portrait-frame {
  position: relative;
  width: 240px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.portrait-placeholder svg {
  display: block;
  width: 100%;
}

.portrait-accent {
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--bronze);
  border-radius: 4px;
  opacity: 0.3;
  z-index: -1;
}

/* Certifications */
.approche-certifications {
  margin-top: 2rem;
}

.certif-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.certif-list {
  list-style: none;
}

.certif-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}

.certif-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
  transform: translateY(-50%);
}

.approche-text .text-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.approche-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ---- Soins ---- */

.soins {
  background: var(--ivory);
}

.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (min-width: 1025px) {
  .soins-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.soin-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.soin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.soin-card:hover {
  border-color: var(--clay);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.soin-card:hover::before {
  opacity: 1;
}

.soin-icon {
  width: 48px;
  height: 48px;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.soin-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.soin-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Déroulement ---- */

.deroulement {
  background: var(--white);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--bronze);
  font-weight: 400;
  text-align: center;
  padding-top: 0.15rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

.step-duration {
  font-size: 0.78rem;
  color: var(--bronze);
  letter-spacing: 0.04em;
  padding-top: 0.3rem;
  white-space: nowrap;
}

.step-line {
  width: 1px;
  height: 24px;
  background: var(--clay);
  margin-left: 30px;
}

.deroulement-note {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--ivory);
  border-left: 2px solid var(--bronze);
  border-radius: 0 4px 4px 0;
}

.deroulement-note p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---- Témoignages ---- */

.temoignages {
  background: var(--sage);
  color: var(--white);
}

.temoignages .section-number {
  color: var(--bronze-light);
}

.temoignages .section-title {
  color: var(--white);
}

.temoignages .section-title em {
  color: var(--clay-light);
}

.temoignages .gold-rule {
  background: var(--bronze-light);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.temoignage {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
}

.temoignage:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.temoignage-featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}

.temoignage-stars {
  color: var(--bronze-light);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.temoignage-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}

.temoignage-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.temoignage-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
}

.temoignage-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ---- Tarifs ---- */

.tarifs {
  background: var(--ivory);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tarifs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.tarif-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.tarif-card-featured {
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(74, 93, 78, 0.1);
}

.tarif-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}

.tarif-type {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.tarif-price {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tarif-price span {
  font-size: 1.4rem;
  vertical-align: super;
}

.tarif-duration {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.tarif-details {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.tarif-details li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ivory);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tarif-details li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bronze);
  flex-shrink: 0;
}

.tarifs-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.tarifs-note p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.tarifs-cancellation {
  max-width: 600px;
  margin: 1.25rem auto 0;
  text-align: center;
}

.tarifs-cancellation p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Contact ---- */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.contact-block p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-block a {
  transition: color 0.3s;
}

.contact-block a:hover {
  color: var(--sage);
}

.contact-transport {
  font-size: 0.82rem !important;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.contact-note {
  font-size: 0.82rem !important;
  color: var(--bronze) !important;
  margin-top: 0.15rem;
}

.contact-booking {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: 4px;
  text-align: center;
}

.booking-text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-map {
  margin-top: 1rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--clay-light);
}

.contact-map iframe {
  display: block;
}

/* ---- Form ---- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--clay-light);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--text);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clay);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.25rem;
}

/* ---- Footer ---- */

.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-mark {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--bronze);
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(168, 135, 91, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
}

.footer-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-legal {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-botanical {
    width: 200px;
    opacity: 0.3;
  }

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

  .section-left {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem !important;
    color: var(--charcoal) !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .hero-botanical {
    display: none;
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-detail-divider {
    width: 40px;
    height: 1px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .soins-grid,
  .temoignages-grid,
  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }

  .step-duration {
    grid-column: 2;
    margin-top: -0.5rem;
  }

  .step-line {
    margin-left: 20px;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .footer-title {
    border-left: none;
    padding-left: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .tarif-price {
    font-size: 2.6rem;
  }
}
