/* ============================================
   SÈVE & PIEDS — Cabinet de massage & réflexologie
   Palette nature : vert sauge + beige chaud
   ============================================ */

:root {
  /* Couleurs nature */
  --green-deep:   #2f3e2a;
  --green-dark:   #4a5e44;
  --green:        #6b8062;
  --green-sage:   #8aa17e;
  --green-soft:   #b8c8a8;
  --green-mist:   #dde5d2;

  --beige-cream:  #f6f0e3;
  --beige-paper:  #ede4ce;
  --beige-warm:   #d9c9a5;
  --beige-dark:   #a89878;

  --bg:           #faf6ec;
  --bg-soft:      #f0eadb;
  --ink:          #2a2f24;
  --ink-soft:     #5a6053;
  --muted:        #8b8c7d;
  --line:         rgba(58, 70, 50, 0.12);

  /* Typo */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  --radius-sm: 8px;
  --radius:    18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: color 0.4s var(--ease-out);
}
.nav.scrolled .nav-logo { color: var(--green-deep); }
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-sage);
}
.nav.scrolled .logo-mark { color: var(--green); }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.logo-text em { font-style: italic; color: var(--green-sage); }
.nav.scrolled .logo-text em { color: var(--green); }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s var(--ease-out);
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
}
.nav-cta:hover {
  background: var(--green-sage);
  border-color: var(--green-sage);
  transform: translateY(-1px);
}
.nav.scrolled .nav-cta {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.nav.scrolled .nav-cta:hover { background: var(--green); border-color: var(--green); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease-out);
}
.nav.scrolled .nav-burger span { background: var(--green-deep); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px 32px 80px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1.04); }
}

/* Hero images — Ken Burns + crossfade entre 3 photos de pied/massage */
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  will-change: transform, opacity;
  animation: heroSlideShow 24s ease-in-out infinite, kenBurns 24s ease-in-out infinite;
}
.hero-image--1 { animation-delay: 0s, 0s; }
.hero-image--2 { animation-delay: 8s, 8s; }
.hero-image--3 { animation-delay: 16s, 16s; }

@keyframes heroSlideShow {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  33%  { opacity: 1; }
  37%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  37%  { transform: scale(1.12) translate(-1.5%, -1%); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(20, 30, 18, 0.78) 0%,
      rgba(30, 45, 28, 0.55) 45%,
      rgba(40, 55, 35, 0.35) 100%),
    radial-gradient(ellipse at 70% 50%,
      rgba(138, 161, 126, 0.18) 0%,
      transparent 60%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.hero-leaves .leaf {
  position: absolute;
  width: 480px;
  height: 480px;
  animation: leafFloat 18s ease-in-out infinite;
}
.leaf-1 { top: -120px; right: -80px; transform: rotate(15deg); }
.leaf-2 { bottom: -160px; left: -100px; transform: rotate(-160deg); animation-delay: -8s; }
@keyframes leafFloat {
  0%, 100% { transform: translate(0, 0) rotate(15deg); }
  50%      { transform: translate(20px, -20px) rotate(20deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero-word {
  display: inline-block;
  margin-right: 0.18em;
}
.hero-word--italic {
  font-style: italic;
  color: var(--green-soft);
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  max-width: 640px;
}
.hero-meta > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.meta-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
}
.meta-num small { font-size: 18px; opacity: 0.6; }
.meta-lbl {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%; left: 0;
  width: 100%;
  height: 40%;
  background: #fff;
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -40%; }
  100% { top: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.2px;
  font-weight: 400;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-deep);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(47, 62, 42, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.block {
  padding: 140px 0;
  position: relative;
}
.block-about     { background: var(--bg); }
.block-services  { background: var(--bg-soft); }
.block-marquee   { background: var(--green-deep); padding: 38px 0; color: var(--beige-cream); }
.block-benefits  { background: var(--bg); }
.block-zones     { background: var(--bg-soft); }
.block-testimonials { background: var(--bg); }
.block-cta       { background: var(--bg); padding: 80px 0 140px; }
.block-contact   { background: var(--bg-soft); }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
  font-weight: 500;
}
.section-eyebrow--light { color: var(--green-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--green-deep);
  margin-bottom: 28px;
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.section-title--light { color: #fff; }
.section-title--light em { color: var(--green-soft); }

.section-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 18px;
}
.section-text--center { margin-left: auto; margin-right: auto; }
.section-text--light { color: rgba(255, 255, 255, 0.85); }

.block-header { margin-bottom: 70px; max-width: 760px; }
.block-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.block-header--center .section-title { margin-left: auto; margin-right: auto; }

/* SPLIT LAYOUT */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-content { order: 1; }

/* ============================================
   BLOC ABOUT
   ============================================ */
.split-media {
  position: relative;
  height: 620px;
}
.media-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(40, 50, 30, 0.25);
}
.media-frame:first-child {
  top: 0; left: 0;
  width: 70%;
  height: 78%;
}
.media-frame:first-child img {
  width: 100%; height: 100%; object-fit: cover;
}
.media-frame--offset {
  bottom: 0;
  right: 0;
  width: 56%;
  height: 50%;
}
.media-frame--offset img {
  width: 100%; height: 100%; object-fit: cover;
}
.media-frame-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  color: var(--green-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.about-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-mist);
  flex-shrink: 0;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  left: 7px; top: 6px;
  width: 5px; height: 10px;
  border-right: 1.5px solid var(--green-deep);
  border-bottom: 1.5px solid var(--green-deep);
  transform: rotate(45deg);
}

/* ============================================
   BLOC SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(4) {
  transform: translateY(40px);
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.6s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 30px 60px -28px rgba(47, 62, 42, 0.2);
}
.services-grid .service-card:nth-child(1):hover,
.services-grid .service-card:nth-child(4):hover {
  transform: translateY(34px) !important;
}
.service-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}
.service-body { padding: 36px; }
.service-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-body p {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}
.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-deep);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: gap 0.3s var(--ease-out);
}
.link-arrow:hover { gap: 12px; color: var(--green-deep); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  color: var(--beige-cream);
}
.marquee-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-sage);
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit {
  background: var(--bg);
  padding: 48px 36px;
  transition: background 0.4s var(--ease-out);
}
.benefit:hover { background: var(--green-mist); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out);
}
.benefit:hover .benefit-icon {
  background: var(--green-deep);
  color: var(--green-mist);
  transform: rotate(-8deg);
}
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.benefit p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   ZONES
   ============================================ */
.zones-list {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.zone-item {
  display: flex;
  gap: 22px;
  padding: 22px 26px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease-out);
}
.zone-item:hover {
  transform: translateX(6px);
  border-color: var(--green-sage);
  background: #fff;
}
.zone-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--green);
  flex-shrink: 0;
  width: 36px;
}
.zone-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.zone-item p {
  font-size: 14px;
  color: var(--ink-soft);
}

.zones-media { height: 720px; }
.zones-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 70px -40px rgba(40, 50, 30, 0.25);
}

.foot-diagram {
  width: 100%;
  height: 100%;
  max-width: 460px;
  filter: drop-shadow(0 12px 30px rgba(47, 62, 42, 0.12));
}

.foot-diagram .zone-bullet circle {
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.foot-diagram .zone-bullet:hover circle {
  fill: var(--green-deep);
}
.foot-diagram .zone-bullet text {
  pointer-events: none;
}

/* Pulse animation around each numbered bullet */
.foot-diagram .zone-bullet circle:first-child {
  animation: footPulse 3s ease-in-out infinite;
}
.foot-diagram .zone-bullet:nth-of-type(2) circle:first-child { animation-delay: 0.6s; }
.foot-diagram .zone-bullet:nth-of-type(3) circle:first-child { animation-delay: 1.2s; }
.foot-diagram .zone-bullet:nth-of-type(4) circle:first-child { animation-delay: 1.8s; }

@keyframes footPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(107, 128, 98, 0)); }
  50%      { filter: drop-shadow(0 0 8px rgba(107, 128, 98, 0.55)); }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.85s var(--ease-out);
  padding-bottom: 20px;
}
.testimonial {
  flex: 0 0 calc(50% - 15px);
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid var(--line);
}
.testimonial-quote {
  color: var(--green-sage);
  margin-bottom: 26px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.45;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 30px;
  font-weight: 400;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.testimonial footer strong {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial footer span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
}
.slider-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--green-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.slider-btn:hover {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--green-deep);
  width: 28px;
  border-radius: 6px;
}

/* ============================================
   CTA
   ============================================ */
.cta-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 100px 80px;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.cta-image {
  position: absolute; inset: 0;
}
.cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(20, 30, 18, 0.8) 0%,
    rgba(30, 45, 28, 0.55) 60%,
    rgba(40, 55, 35, 0.4) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-list {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.contact-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
  outline: none;
  width: 100%;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-sage);
  background: #fff;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-deep);
  color: var(--beige-cream);
  padding: 100px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
.footer-brand .logo-mark { color: var(--green-soft); }
.footer-brand .logo-text { display: inline-block; margin: 0 0 18px 10px; }
.footer-brand .logo-text em { color: var(--green-soft); }
.footer-brand p {
  font-size: 14px;
  color: rgba(246, 240, 227, 0.7);
  max-width: 30ch;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--green-soft);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(246, 240, 227, 0.75);
  transition: color 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--beige-cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(246, 240, 227, 0.5);
}
.footer-bottom a {
  color: rgba(246, 240, 227, 0.7);
  margin-left: 8px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 1ms);
}
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Initial hero word state */
.hero-word {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.hero-word.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-reverse .split-media { order: 1; }
  .split-reverse .split-content { order: 2; }
  .split-media { height: 480px; }
  .zones-media { height: 540px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(4) { transform: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { flex: 0 0 calc(100% - 0px); }
  .cta-card { padding: 60px 36px; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .hero { padding: 100px 22px 60px; text-align: center; }
  .hero-content { text-align: center; }
  .hero-title { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-eyebrow,
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-meta {
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .hero-actions .btn { justify-content: center; }
  .hero-scroll { display: none; }

  .block { padding: 70px 0; }
  .block-header { margin-bottom: 40px; text-align: center; }
  .block-header .section-title,
  .block-header .section-text { margin-left: auto; margin-right: auto; }
  .section-title { text-align: center; max-width: 100%; }
  .section-text { text-align: center; margin-left: auto; margin-right: auto; }
  .section-eyebrow { text-align: center; }

  /* About */
  .split-content { text-align: center; }
  .split-media { height: 340px; max-width: 100%; }
  .media-frame:first-child { width: 78%; height: 75%; left: 11%; }
  .media-frame--offset { width: 55%; height: 50%; right: 11%; }
  .about-list { grid-template-columns: 1fr; justify-items: center; }
  .about-list li { justify-content: center; }

  /* Zones */
  .zones-list { align-items: stretch; }
  .zone-item { flex-direction: column; text-align: center; gap: 8px; }
  .zone-item .zone-num { width: auto; }
  .zones-media { height: auto; min-height: 460px; padding: 16px; }
  .foot-diagram { max-width: 280px; }

  /* Services */
  .services-grid { gap: 24px; }
  .service-body { padding: 28px; text-align: center; }
  .service-meta { justify-content: center; gap: 18px; }
  .service-foot { justify-content: center; gap: 24px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { text-align: center; padding: 36px 26px; }
  .benefit-icon { margin-left: auto; margin-right: auto; }

  /* Testimonials */
  .testimonial { padding: 32px; text-align: center; }
  .testimonial p { font-size: 20px; }
  .testimonial footer { align-items: center; }

  /* Contact */
  .contact-info { text-align: center; }
  .contact-form { padding: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 6px; text-align: center; }

  /* CTA */
  .cta-card { padding: 50px 26px; text-align: center; }
  .cta-content { margin-left: auto; margin-right: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand .logo-mark,
  .footer-brand .logo-text { display: inline-block; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Neutraliser les translates horizontaux qui débordent à gauche sur mobile */
  .reveal-left,
  .reveal-right {
    transform: translateY(40px) !important;
  }
  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: translate(0, 0) !important;
  }

  /* Garantir que rien ne déborde horizontalement */
  body, html { overflow-x: hidden; max-width: 100vw; }
  .split-media,
  .split-content,
  .media-frame,
  .zones-image-wrap { max-width: 100%; }
}
