/* ================== TOKENS ================== */
:root {
  --green-900: #1f3a2e;
  --green-800: #2f4f3a;
  --green-700: #3d6149;
  --green-600: #5a7c66;
  --green-300: #aebfb3;

  --sand-50:  #fbf8f3;
  --sand-100: #f5efe5;
  --sand-200: #ebe0cf;
  --sand-300: #dcc9ac;
  --caramel:  #b9895b;
  --caramel-d:#936a43;

  --ink:      #1a1f1c;
  --ink-soft: #394239;
  --white:    #ffffff;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 60px -20px rgba(31, 58, 46, 0.25);
  --shadow-card: 0 30px 80px -30px rgba(31, 58, 46, 0.35);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --script:"Dancing Script", cursive;

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand-50);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================== TYPO ================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--green-800);
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 500; }
em {
  font-style: italic;
  color: var(--caramel);
  font-family: var(--serif);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--sand-200); }
.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 20px 0 32px;
}
.section__sub {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 14px auto 0;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, background .3s, color .3s;
  white-space: nowrap;
}
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(47,79,58,.5);
}
.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(47,79,58,.6);
}
.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn--ghost:hover {
  background: var(--green-800);
  color: var(--white);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--sand-100);
  border: 1.5px solid var(--green-800);
  border-radius: 999px;
  padding: 12px 22px;
  margin-top: 14px;
  transition: gap .3s, background .3s, color .3s, transform .3s;
}
.link-arrow:hover { gap: 16px; background: var(--green-800); color: var(--sand-50); transform: translateY(-2px); }
.link-arrow:hover svg { color: var(--sand-50); }

/* ================== NAV ================== */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: var(--container);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 24px;
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(47, 79, 58, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 40px -12px rgba(31,58,46,.12);
  transition: top .3s, padding .3s;
}
.nav.scrolled {
  top: 10px;
  padding: 8px 12px 8px 20px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--script);
  font-size: 1.9rem;
  color: var(--green-800);
  font-weight: 600;
}
.nav__logo img { height: 68px; width: auto; display: block; }

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav__links a:hover { color: var(--green-800); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  background: var(--sand-50);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer > a {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--green-800);
}
.drawer > a.btn {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--sand-50);
  padding: 14px 28px;
  margin-top: 12px;
}

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 28px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: float 18s ease-in-out infinite;
}
.orb--1 {
  top: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--sand-300), transparent 70%);
}
.orb--2 {
  top: 40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90, 124, 102, 0.5), transparent 70%);
  animation-delay: -6s;
}
.orb--3 {
  bottom: -20%; left: 20%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.35), transparent 70%);
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-30px) scale(1.05); }
  66%      { transform: translate(-20px,20px) scale(.95); }
}

.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__text h1 em { font-family: var(--serif); }
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__meta {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(47,79,58,.15);
  padding-top: 26px;
  max-width: 520px;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
}
.hero__meta span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hero__frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand-200), var(--sand-100));
  box-shadow: var(--shadow-card);
  transform: rotate(-1.5deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.hero__frame:hover { transform: rotate(0deg) scale(1.02); }
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__frame img[src=""] {
  opacity: 0;
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(185,137,91,.25), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(90,124,102,.2), transparent 50%);
  pointer-events: none;
}
.hero__frame--art {
  background: linear-gradient(145deg, #fbf8f3, #f5efe5);
  transform: rotate(0deg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__frame--art::before { display: none; }
.hero__frame--art:hover { transform: scale(1.02); }
.hero__illu {
  width: 100%;
  height: 100%;
  max-width: 520px;
}
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.hero__badge svg {
  width: 32px; height: 32px;
  color: var(--caramel);
  flex-shrink: 0;
}
.hero__badge strong { color: var(--green-800); font-size: 0.95rem; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--green-600);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--green-600);
  border-radius: 3px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ================== MARQUEE ================== */
.marquee {
  background: var(--green-800);
  color: var(--sand-100);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}
.marquee__track span { color: var(--sand-100); opacity: .85; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================== SECTIONS ================== */
.section {
  padding: 120px 0;
  position: relative;
}
.section--dark {
  background: var(--green-800);
  color: var(--sand-100);
}
.section--dark h2 { color: var(--sand-50); }
.section--dark h2 em { color: var(--sand-300); }
.section--dark p { color: var(--sand-200); }

.section__head {
  text-align: center;
  margin-bottom: 70px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.grid-2 > div p { max-width: 460px; margin-bottom: 18px; }
.grid-2 > div h2 { margin-bottom: 22px; max-width: 460px; }
.grid-2--reverse > *:first-child { order: 2; }

/* About */
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__sticker {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(251,248,243,.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.about__sticker em {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--green-800);
  font-style: normal;
}
.about__sticker img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 6px;
}
.about__sticker span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
}
.pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: transform .4s, background .4s, border-color .4s;
}
.pillar:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(220,201,172,.3);
}
.pillar__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(251,248,243,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background .4s;
}
.pillar:hover .pillar__icon {
  background: rgba(220,201,172,.15);
}
.pillar__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(1.2) sepia(.2);
}
.pillar h3 { color: var(--sand-50); margin-bottom: 12px; }
.pillar p { color: var(--sand-200); font-size: 0.95rem; }

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.service__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-100);
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.service:hover .service__img img { transform: scale(1.06); }
.service__body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service__body h3 { color: var(--green-800); }
.service__body p { color: var(--ink-soft); font-size: 0.95rem; }
.service__meta {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  padding-top: 8px;
}
.service--feature {
  grid-column: span 3;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--sand-100);
}
.service--feature .service__img {
  flex: 0 0 45%;
  aspect-ratio: auto;
  background: var(--green-900);
}
.service--feature .service__body { padding: 50px 44px; justify-content: center; gap: 14px; }
.service--feature .service__body h3 { color: var(--sand-50); font-size: 2rem; }
.service--feature .service__body p { color: var(--sand-200); font-size: 1.05rem; max-width: 520px; }
.service--feature .link-arrow { color: var(--sand-300); border-color: var(--sand-300); background: transparent; margin-top: 10px; align-self: flex-start; }
.service--feature .link-arrow:hover { color: var(--green-800); background: var(--sand-50); border-color: var(--sand-50); }

/* Team */
.team { background: var(--sand-100); }
.team .grid-2 { grid-template-columns: 1.3fr 1fr; gap: 70px; }
.team__photo {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.team__names {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31,58,46,.88);
  backdrop-filter: blur(10px);
  color: var(--sand-50);
  padding: 12px 26px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  white-space: nowrap;
}
.team__names span:nth-child(even) { color: var(--caramel); }

/* Reviews (Planity) — monochrome */
.reviews { background: var(--sand-50); overflow: hidden; }

.reviews-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: 56px;
}
.reviews-summary__score {
  text-align: center;
  padding: 24px 20px;
  background: #0f0f0f;
  border-radius: var(--radius-md);
  color: #fff;
}
.score-value {
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.score-max {
  font-size: 1.6rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  margin-left: 4px;
}
.score-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 10px;
}
.score-stars svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.score-count {
  font-size: 0.92rem;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
}
.score-count strong {
  color: #fff;
  font-weight: 600;
}
.score-planity {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.score-planity__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.score-planity img {
  height: 18px;
  width: auto;
  filter: invert(1) brightness(2);
  opacity: .95;
}

.reviews-summary__criteria {
  display: grid;
  gap: 16px;
}
.criterion {
  display: grid;
  grid-template-columns: 180px 1fr 40px;
  align-items: center;
  gap: 18px;
}
.criterion__label {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.criterion__bar {
  height: 6px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  overflow: hidden;
  display: block;
}
.criterion__bar > span {
  display: block;
  height: 100%;
  background: #0f0f0f;
  border-radius: 999px;
}
.criterion__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f0f0f;
  text-align: right;
}

/* Marquee */
.reviews-marquee {
  position: relative;
  margin: 0 -28px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 10px)); }
}

.review-card {
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 190px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.28);
  border-color: rgba(0,0,0,.25);
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-stars {
  color: #0f0f0f;
  letter-spacing: 2px;
  font-size: 1rem;
}
.review-stars--partial {
  background: linear-gradient(90deg, #0f0f0f var(--fill, 96%), rgba(0,0,0,.18) var(--fill, 96%));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-score {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #0f0f0f;
  padding: 2px 10px;
  border-radius: 999px;
}
.review-card__text {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.review-author { font-weight: 500; color: var(--ink); }

.reviews-cta {
  text-align: center;
  margin-top: 44px;
}
.reviews-cta .link-arrow {
  color: #0f0f0f;
  font-weight: 500;
}
.reviews-cta .link-arrow:hover { color: #000; }

/* CTA final */
.cta-final {
  padding: 80px 28px 120px;
  background: var(--sand-50);
}
.cta-final__card {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--sand-100);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-final__card::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(185,137,91,.25), transparent 70%);
  border-radius: 50%;
}
.cta-final__card::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,124,102,.3), transparent 70%);
  border-radius: 50%;
}
.cta-final__card > * { position: relative; z-index: 1; }
.cta-final__card h2 { color: var(--sand-50); margin-bottom: 14px; }
.cta-final__card h2 em { color: var(--sand-300); }
.cta-final__card p { color: var(--sand-200); margin-bottom: 32px; }
.cta-final__card .btn--primary { background: var(--sand-50); color: var(--green-800); }
.cta-final__card .btn--primary:hover { background: var(--white); }

/* ================== FOOTER (refonte) ================== */
.footer {
  position: relative;
  background:
    radial-gradient(ellipse at top left, rgba(185,137,91,.08), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(90,124,102,.12), transparent 60%),
    var(--green-900);
  color: var(--sand-200);
  padding: 90px 0 30px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  opacity: .45;
}
.footer__deco { position: absolute; inset: 0; pointer-events: none; }
.footer__leaf {
  position: absolute;
  color: var(--caramel);
  opacity: 0.07;
  width: 170px; height: 170px;
}
.footer__leaf--1 { top: 40px; right: 5%; transform: rotate(22deg); }
.footer__leaf--2 { bottom: 70px; left: 3%; transform: scaleX(-1) rotate(12deg); width: 130px; height: 130px; }

.footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo { margin-bottom: 14px; }
.footer__logo img { height: 88px; width: auto; display: block; }
.footer__tag { max-width: 280px; font-size: 0.94rem; color: var(--sand-200); margin: 0 0 22px; line-height: 1.65; }

.footer__addr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}
.footer__addr-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--sand-200);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.55;
  transition: color .3s, transform .3s;
}
.footer__addr-line svg {
  flex-shrink: 0;
  color: var(--caramel);
  margin-top: 2px;
}
.footer__addr-line:hover { color: var(--sand-50); transform: translateX(2px); }

.footer h4 {
  color: var(--sand-50);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--caramel);
  border-radius: 2px;
}

.footer p { font-size: 0.92rem; line-height: 1.8; }
.footer a { color: var(--sand-200); text-decoration: none; }
.footer a:hover { color: var(--sand-50); }

.footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  transition: color .3s, transform .3s;
}
.footer__links a::before {
  content: "›";
  color: var(--caramel);
  transition: transform .3s;
  font-size: 1rem;
}
.footer__links a:hover { color: var(--sand-50); transform: translateX(3px); }

.footer__hours {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.footer__hours li:last-child { border-bottom: none; }
.footer__hours li span:first-child { color: var(--sand-50); font-weight: 500; }
.footer__hours li span:last-child { color: var(--sand-200); font-variant-numeric: tabular-nums; }
.footer__hours li.is-closed span:last-child { color: var(--caramel); font-style: italic; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: var(--sand-50);
  transition: background .35s, transform .35s, color .35s, box-shadow .35s;
}
.footer__social a:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(185,137,91,.35);
}
.footer__social svg { width: 18px; height: 18px; display: block; }

.footer__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.85rem;
  color: var(--sand-300);
  margin: 0;
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--sand-300);
  font-size: 0.85rem;
  transition: color .3s;
}
.footer__legal a:hover { color: var(--caramel); }
.footer__legal span { color: rgba(255,255,255,.25); font-size: 0.7rem; }

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .footer { padding: 70px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { gap: 8px; }
  .footer__leaf { display: none; }
}

/* ================== LEGAL PAGES ================== */
.page-legal { background: var(--sand-50); color: var(--ink); }
.legal-hero {
  position: relative;
  padding: 140px 24px 70px;
  background:
    radial-gradient(ellipse at top, rgba(185,137,91,.08), transparent 60%),
    linear-gradient(180deg, var(--sand-100), var(--sand-50));
  text-align: center;
  overflow: hidden;
}
.legal-hero .eyebrow { color: var(--green-800); }
.legal-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  color: var(--green-800);
  margin: 14px 0 12px;
  line-height: 1.1;
}
.legal-hero h1 em { color: var(--caramel); font-style: italic; }
.legal-hero p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.legal-updated {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--green-800);
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid rgba(47,79,58,.12);
  border-radius: 999px;
  margin-top: 18px;
}

.legal-body { padding: 70px 0 100px; }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--green-800);
  margin: 54px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(47,79,58,.12);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--green-800);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; }
.legal-content strong { color: var(--green-800); }
.legal-content a {
  color: var(--caramel);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-content a:hover { color: var(--caramel-d); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.94rem;
}
.legal-content table th,
.legal-content table td {
  border: 1px solid rgba(47,79,58,.15);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-soft);
  line-height: 1.55;
}
.legal-content table th {
  background: var(--sand-100);
  color: var(--green-800);
  font-weight: 600;
}
.legal-callout {
  background: var(--sand-100);
  border-left: 3px solid var(--caramel);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 20px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-callout strong { color: var(--green-800); }

@media (max-width: 720px) {
  .legal-hero { padding: 110px 18px 50px; }
  .legal-body { padding: 40px 0 70px; }
  .legal-content h2 { font-size: 1.35rem; margin-top: 40px; }
  .legal-content h3 { font-size: 1.08rem; }
  .legal-content table { font-size: 0.88rem; }
  .legal-content table th, .legal-content table td { padding: 8px 10px; }
}

/* ================== PAGE PRESTATIONS ================== */
.page-menu { background: var(--sand-50); }

/* Hero menu */
.menu-hero {
  position: relative;
  padding: 150px 28px 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(90,124,102,.14), transparent 55%),
    linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}
.menu-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.menu-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.menu-hero__text h1 { margin-bottom: 10px; }
.menu-hero__text .lead { max-width: 520px; }
.menu-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.menu-hero__cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-hero__cover-frame {
  position: relative;
  max-width: 340px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(31,58,46,.5);
  background: var(--white);
  transform: rotate(-2deg);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  animation: floatY 7s ease-in-out infinite;
}
.menu-hero__cover-frame:hover {
  transform: rotate(0deg) scale(1.02);
}
.menu-hero__cover-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-hero__cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(47,79,58,.08);
  border-radius: inherit;
  pointer-events: none;
}
@keyframes floatY {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-1.2deg) translateY(-10px); }
}

.menu-hero__sticker {
  position: absolute;
  top: -14px;
  right: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--sand-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -15px rgba(185,137,91,.6);
  transform: rotate(10deg);
  text-align: center;
  line-height: 1.1;
  animation: stickerSpin 14s linear infinite;
}
.menu-hero__sticker::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(255,255,255,.5);
  border-radius: 50%;
}
.sticker__top, .sticker__bottom {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .9;
}
.sticker__big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.65rem;
  font-weight: 500;
  margin: 2px 0;
}
@keyframes stickerSpin {
  0%   { transform: rotate(10deg); }
  100% { transform: rotate(370deg); }
}

/* Intro avant les feuilles */
.menu-sheets {
  padding: 110px 0 120px;
}
.menu-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 90px;
}
.menu-intro h2 { margin-bottom: 16px; }

/* Feuilles de la carte */
.sheet {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  padding: 60px 0 60px;
}
.sheet + .sheet { border-top: 1px solid rgba(47,79,58,.1); }
.sheet--reverse { grid-template-columns: 1fr 1.55fr; }
.sheet--reverse .sheet__img { order: 2; }
.sheet__num {
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
  font-size: 7rem;
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  text-shadow: 0 14px 32px rgba(31,58,46,.28);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.sheet:hover .sheet__num { transform: translateY(-6px); }
.sheet--reverse .sheet__num { left: auto; right: -10px; }
.sheet__num span { display: inline-block; }
.sheet__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(31,58,46,.35);
  background: var(--white);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.sheet__img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 100px -30px rgba(31,58,46,.45);
}
.sheet__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.sheet__img:hover img { transform: scale(1.03); }

.sheet__body h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  font-weight: 400;
}
.sheet__body p {
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 22px;
}
.sheet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.sheet__tags span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  background: rgba(47,79,58,.08);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}

/* Clôture : bannière narrow */
.menu-close {
  padding: 40px 28px 120px;
  background: var(--sand-50);
}
.menu-close__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  color: var(--sand-100);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.menu-close__inner::before {
  content: "";
  position: absolute;
  top: -40%; left: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(185,137,91,.22), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.menu-close__inner::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,201,172,.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.menu-close__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  background: var(--white);
}
.menu-close__img:hover { transform: scale(1.02); }
.menu-close__img img { width: 100%; height: auto; display: block; }
.menu-close__text {
  position: relative;
  z-index: 1;
}
.menu-close__text h2 {
  color: var(--sand-50);
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}
.menu-close__text h2 em { color: var(--sand-300); }
.menu-close__text p {
  color: var(--sand-200);
  max-width: 460px;
  margin-bottom: 26px;
}
.menu-close__text .btn--primary {
  background: var(--sand-50);
  color: var(--green-800);
}
.menu-close__text .btn--primary:hover {
  background: var(--white);
}

/* Nav active */
.nav__links a.active {
  color: var(--green-800);
}
.nav__links a.active::after {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 960px) {
  .menu-hero__inner { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .menu-hero__cover { order: 2; }
  .menu-hero__cover-frame { max-width: 340px; }
  .menu-hero__cta { flex-direction: column; align-items: stretch; }
  .menu-hero__cta .btn { justify-content: center; }
  .sheet,
  .sheet--reverse { grid-template-columns: 1fr; gap: 32px; padding: 50px 0 40px; }
  .sheet--reverse .sheet__img { order: unset; }
  .sheet__num {
    font-size: 4.8rem;
    top: -22px;
    left: -4px;
  }
  .sheet--reverse .sheet__num { left: auto; right: -4px; }
  .menu-close__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 28px;
  }
  .menu-sheets { padding: 70px 0 80px; }
  .menu-intro { margin-bottom: 40px; }
}

@media (max-width: 720px) {
  .menu-hero { padding: 130px 20px 70px; }
  .menu-hero__sticker { width: 86px; height: 86px; top: -18px; right: -6px; }
  .sticker__big { font-size: 1.25rem; }
  .sticker__top, .sticker__bottom { font-size: 0.56rem; }
  .menu-close { padding: 20px 14px 80px; }
  .menu-close__inner { padding: 36px 22px; }
  .menu-intro h2 { font-size: 1.7rem; }
}

/* ================== REVEAL ================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal--right { transform: translateX(30px); }
.reveal.in {
  opacity: 1;
  transform: translate(0, 0);
}

/* Services wrap (desktop = invisible arrows) */
.services-wrap { position: relative; }
.services-arrow { display: none; }

/* ================== RESPONSIVE ================== */
@media (max-width: 960px) {
  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2--reverse > *:first-child { order: unset; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .service--feature { grid-column: auto; flex-direction: column; }
  .service--feature .service__img { flex: 0 0 260px; }
  .service--feature .service__body { padding: 36px 28px; }
  .reviews-summary { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .criterion { grid-template-columns: 140px 1fr 36px; gap: 12px; }
  .review-card { flex: 0 0 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 80px 0; }
  .hero__meta { gap: 24px; }
  .hero__meta strong { font-size: 1.5rem; }
  .cta-final__card { padding: 60px 24px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 10px; bottom: -10px; padding: 12px 16px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
}

/* ================== MOBILE ONLY (≤ 720px) ================== */
@media (max-width: 720px) {
  /* Marquee 2x plus rapide que la vitesse mobile précédente */
  .marquee__track { animation-duration: 10s; }

  /* CTA final : carte élargie avec marge réduite, bouton entier */
  .cta-final {
    padding: 60px 12px 90px;
  }
  .cta-final .container {
    padding: 0;
  }
  .cta-final__card {
    padding: 54px 20px;
  }
  .cta-final__card .btn,
  .cta-final__card .btn--lg {
    padding: 14px 22px;
    font-size: 0.9rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  /* Drawer : bouton "Prendre rendez-vous" lisible et bien dimensionné */
  .drawer > a.btn,
  .drawer > a.btn--primary {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--sand-50);
    background: var(--green-800);
    padding: 13px 30px;
    margin-top: 18px;
    min-width: 220px;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.02em;
  }

  /* Team : texte au-dessus (quasi pleine largeur), photo dessous en forme naturelle */
  .team .grid-2 {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team .grid-2 > .team__photo { order: 2; }
  .team .grid-2 > .reveal--right { order: 1; width: 100%; }
  .team__photo {
    aspect-ratio: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
  }
  .team__photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .team__names {
    font-size: 0.9rem;
    padding: 10px 18px;
    gap: 6px;
    bottom: 14px;
    max-width: calc(100% - 40px);
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
  .team .reveal--right { transform: translateY(30px); }
  .team .reveal--right.in { transform: translate(0,0); }
  .team .reveal--right p,
  .team .reveal--right h2 { max-width: 100%; }

  /* Services : carousel horizontal, carte centrale pleine + petit peek à gauche et à droite */
  .services-wrap {
    position: relative;
    margin: 0 -28px;
    padding: 0;
  }
  .services {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 44px 12px;
    scroll-padding-inline: 44px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services::-webkit-scrollbar { display: none; }
  .service {
    flex: 0 0 calc(100vw - 88px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .service--feature { grid-column: auto; }
  .services-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    color: var(--green-800);
    border: 1px solid rgba(47,79,58,.12);
    box-shadow: 0 6px 18px -6px rgba(0,0,0,.25);
    cursor: pointer;
    z-index: 3;
    -webkit-tap-highlight-color: transparent;
  }
  .services-arrow--prev { left: 4px; }
  .services-arrow--next { right: 4px; }
  .services-arrow:active { transform: translateY(-50%) scale(0.94); }
  .services-arrow:disabled { opacity: .35; pointer-events: none; }
}

/* ================================================== */
/* ============= PAGE ÉQUIPE (equipe.html) ========== */
/* ================================================== */

.page-team { background: var(--white); }

/* --------- HERO --------- */
.equipe-hero {
  position: relative;
  padding: 150px 28px 90px;
  min-height: 58vh;
  background: linear-gradient(135deg, #f5e6d8 0%, #f0dcc8 55%, #e8cfb6 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.equipe-hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.equipe-hero__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.equipe-hero__bg .orb--1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(185,137,91,.45), transparent 70%);
  top: -140px; left: -120px;
  opacity: .6;
  animation: orbFloat 14s ease-in-out infinite;
}
.equipe-hero__bg .orb--2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(220,201,172,.6), transparent 70%);
  bottom: -200px; right: -120px;
  opacity: .55;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.equipe-hero__flower {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  color: var(--caramel);
  opacity: .35;
  animation: floatY 10s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(-50%) rotate(0); }
  50% { transform: translateY(calc(-50% - 16px)) rotate(3deg); }
}

.equipe-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.equipe-hero__text .eyebrow {
  color: var(--green-800);
  margin-bottom: 18px;
  display: block;
}
.equipe-hero__text h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.92;
  color: var(--caramel);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.equipe-hero__text h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordIn 1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 0.2s;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}
.equipe-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: #8a6a46;
  font-weight: 300;
  line-height: 1.3;
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  animation: wordIn 1s cubic-bezier(.2,.8,.2,1) .55s forwards;
}
.equipe-hero__sub em {
  font-style: italic;
  color: var(--green-800);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(47,79,58,.35);
  border-radius: 14px;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 8px;
  z-index: 3;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--green-800);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0; }
}

/* --------- TRIO --------- */
.equipe-trio {
  padding: 110px 0 100px;
  background: var(--white);
}
.trio-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.trio-intro h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 12px 0 16px;
}

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.member {
  text-align: center;
  position: relative;
}
.member__visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.member__blob {
  position: absolute;
  width: 260px; height: 260px;
  background: #f3e0cf;
  border-radius: 50%;
  top: -10px; left: -30px;
  opacity: .7;
  animation: blobFloat 9s ease-in-out infinite;
  z-index: 0;
}
.member__blob--2 {
  background: #e7d5c0;
  top: auto; left: auto;
  bottom: -10px; right: -30px;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6px, -10px) scale(1.04); }
}
.member__deco {
  position: absolute;
  width: 220px;
  height: 220px;
  color: var(--caramel);
  opacity: .35;
  right: -48px;
  top: -12px;
  z-index: 1;
  animation: floatY2 11s ease-in-out infinite;
}
.member:nth-child(2) .member__deco { right: auto; left: -48px; transform: scaleX(-1); }
@keyframes floatY2 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(4deg); }
}
.member:nth-child(2) .member__deco {
  animation: floatY2r 11s ease-in-out infinite;
}
@keyframes floatY2r {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(0); }
  50% { transform: scaleX(-1) translateY(-8px) rotate(4deg); }
}

.member__photo {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 70px -22px rgba(31,58,46,.35);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
  background: var(--white);
}
.member:hover .member__photo {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 44px 100px -26px rgba(31,58,46,.45);
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.member:hover .member__photo img {
  transform: scale(1.08);
}

.member__name {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-800);
  margin: 0 0 4px;
  line-height: 1;
}
.member__role {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 18px;
  font-weight: 500;
}
.member__text {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 340px;
  margin: 0 auto;
}
.member__text strong {
  color: var(--green-800);
  font-weight: 600;
}

/* collectif */
.trio-together {
  max-width: 820px;
  margin: 110px auto 0;
  padding: 40px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
}
.trio-together__img {
  width: 130px; height: 130px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.trio-together__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: .78;
  filter: brightness(1.08) saturate(.9);
  mix-blend-mode: multiply;
  transition: opacity .6s, filter .6s, transform .6s;
}
.trio-together__img::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 24px 6px var(--white);
  pointer-events: none;
}
.trio-together:hover .trio-together__img img {
  opacity: 1;
  filter: brightness(1.1) saturate(1);
  transform: scale(1.04);
}
.trio-together__text {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
  border-left: 2px solid var(--caramel);
  padding-left: 36px;
}
.trio-together__text strong {
  color: var(--green-800);
  font-weight: 600;
}

/* --------- GREEN BAND CTA --------- */
.equipe-band {
  position: relative;
  padding: 100px 28px;
  background: linear-gradient(135deg, #6b8571 0%, #567460 50%, #3f5849 100%);
  color: var(--sand-50);
  overflow: hidden;
}
.equipe-band__deco {
  position: absolute; inset: 0; pointer-events: none;
}
.equipe-band__deco::before {
  content: "";
  position: absolute;
  top: -40%; left: -10%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(185,137,91,.22), transparent 70%);
  border-radius: 50%;
  animation: orbFloat 16s ease-in-out infinite;
}
.equipe-band__deco::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(220,201,172,.14), transparent 70%);
  border-radius: 50%;
  animation: orbFloat 20s ease-in-out infinite reverse;
}
.equipe-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.equipe-band__inner h2 {
  color: var(--sand-50);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 36px;
}
.equipe-band__inner h2 em {
  color: var(--sand-300);
  font-style: italic;
}
.btn--pill {
  background: var(--sand-50);
  color: var(--green-800);
  padding: 18px 42px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.3);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.btn--pill:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -14px rgba(0,0,0,.4);
}
.btn--pill svg {
  transition: transform .4s;
}
.btn--pill:hover svg { transform: translateX(4px); }

/* --------- ASTUCE --------- */
.equipe-astuce {
  padding: 120px 28px 100px;
  background: var(--white);
}
.equipe-astuce__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
}
.equipe-astuce__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 34px 80px -26px rgba(31,58,46,.35);
  aspect-ratio: 4/5;
  background: var(--sand-100);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.equipe-astuce__img:hover { transform: scale(1.015) translateY(-4px); }
.equipe-astuce__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.equipe-astuce__img:hover img { transform: scale(1.05); }
.equipe-astuce__chip {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--caramel);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.25);
  animation: chipFloat 4s ease-in-out infinite;
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.equipe-astuce__text h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 14px 0 26px;
  font-weight: 400;
  line-height: 1.1;
}
.equipe-astuce__text p {
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 540px;
}
.equipe-astuce__text strong {
  color: var(--green-800);
  font-weight: 600;
}
.equipe-astuce__planity {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  margin-top: 22px !important;
}
.equipe-astuce__planity a {
  color: var(--caramel);
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: color .3s;
}
.equipe-astuce__planity a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform .3s;
}
.equipe-astuce__planity a:hover::after { transform: scaleX(0); transform-origin: right; }

/* --------- FINAL CLOSING --------- */
.equipe-final {
  position: relative;
  padding: 80px 28px 100px;
  background: linear-gradient(180deg, #f5e6d8 0%, #f0dcc8 100%);
  overflow: hidden;
}
.equipe-final__shape {
  position: absolute;
  top: 0; right: -100px;
  width: 700px; height: 110%;
  background: radial-gradient(ellipse at center, rgba(185,137,91,.16), transparent 60%);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  transform: rotate(-6deg);
  pointer-events: none;
}
.equipe-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.equipe-final__msg {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: #8a6a46;
  max-width: 620px;
  line-height: 1.35;
  margin: 0;
}
.equipe-final__msg em {
  font-style: italic;
  color: var(--green-800);
}
.equipe-final__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--caramel);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(185,137,91,.35);
  transition: color .4s, border-color .4s, transform .4s;
  white-space: nowrap;
}
.equipe-final__link em { font-style: italic; }
.equipe-final__link:hover {
  color: var(--green-800);
  border-color: var(--green-800);
  transform: translateX(6px);
}
.equipe-final__link svg { transition: transform .4s; }
.equipe-final__link:hover svg { transform: translateX(6px); }

/* --------- RESPONSIVE --------- */
@media (max-width: 1100px) {
  .trio-grid { gap: 40px; }
  .member__visual { width: 240px; height: 240px; }
  .member__photo { width: 210px; height: 210px; }
  .member__blob { width: 230px; height: 230px; }
  .member__deco { width: 190px; height: 190px; }
}

@media (max-width: 960px) {
  .equipe-hero { padding: 130px 20px 60px; min-height: auto; }
  .equipe-hero__flower { width: 400px; height: 400px; right: -80px; opacity: .22; }
  .equipe-hero__text h1 { font-size: clamp(4rem, 14vw, 7rem); }

  .equipe-trio { padding: 70px 20px 70px; }
  .trio-intro { margin-bottom: 50px; }
  .trio-grid { grid-template-columns: 1fr; gap: 70px; max-width: 420px; }
  .member__text { max-width: 420px; }
  .trio-together {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 80px;
    padding: 30px 24px;
    text-align: left;
  }
  .trio-together__img { width: 90px; height: 90px; }

  .equipe-band { padding: 80px 24px; }
  .equipe-astuce { padding: 80px 22px 70px; }
  .equipe-astuce__grid { grid-template-columns: 1fr; gap: 44px; }
  .equipe-astuce__img { max-width: 480px; margin: 0 auto; }

  .equipe-final__inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 720px) {
  .equipe-hero { padding: 110px 18px 60px; }
  .equipe-hero__text h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .equipe-hero__sub { font-size: 1.1rem; }
  .equipe-hero__flower { width: 300px; height: 300px; right: -120px; top: 60%; opacity: .2; }

  .equipe-trio { padding: 56px 16px 54px; }
  .trio-intro h2 { font-size: 1.7rem; }
  .trio-grid { gap: 56px; }
  .member__visual { width: 220px; height: 220px; margin-bottom: 22px; }
  .member__photo { width: 200px; height: 200px; }
  .member__blob { width: 210px; height: 210px; }
  .member__deco { width: 170px; height: 170px; right: -36px; }
  .member__name { font-size: 1.8rem; }
  .member__text { font-size: 0.98rem; padding: 0 8px; }

  .trio-together { margin-top: 60px; padding: 24px 18px; }
  .trio-together__text { font-size: 1rem; line-height: 1.7; }

  .equipe-band { padding: 60px 18px; }
  .equipe-band__inner h2 { font-size: 1.7rem; margin-bottom: 26px; }
  .btn--pill { padding: 14px 28px; font-size: 0.92rem; }

  .equipe-astuce { padding: 60px 14px 50px; }
  .equipe-astuce__text h2 { font-size: 1.7rem; }
  .equipe-astuce__text p { font-size: 1rem; }
  .equipe-astuce__chip { font-size: 0.66rem; padding: 8px 16px; top: 14px; left: 14px; }

  .equipe-final { padding: 50px 18px 70px; }
  .equipe-final__msg { font-size: 1.15rem; }
  .equipe-final__link { font-size: 1.1rem; }
}


/* ========================================================
   ============== PAGE : LASER ============================
   ======================================================== */
.page-laser { background: var(--sand-50); }

/* -------- HERO -------- */
.laser-hero {
  position: relative;
  min-height: 60vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(185, 137, 91, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(47, 79, 58, 0.12), transparent 55%),
    linear-gradient(180deg, #faf3e8 0%, #f5e9d6 100%);
}
.laser-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.laser-hero__bg .orb { position: absolute; }
.laser-hero__bg .orb--1 {
  width: 520px; height: 520px;
  top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.35), transparent 70%);
}
.laser-hero__bg .orb--2 {
  width: 420px; height: 420px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.22), transparent 70%);
}
.laser-hero__flower {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 260px; height: 260px;
  color: var(--caramel);
  opacity: 0.28;
  animation: blobFloat 14s ease-in-out infinite;
}
.laser-hero__beam {
  position: absolute;
  top: 30%;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185, 137, 91, 0) 30%,
    rgba(185, 137, 91, 0.55) 50%,
    rgba(185, 137, 91, 0) 70%,
    transparent 100%);
  filter: blur(1px);
  transform-origin: center;
  transform: rotate(-8deg);
  animation: laserSweep 7s cubic-bezier(.6,.2,.4,1) infinite;
}
.laser-hero__beam--2 {
  top: 68%;
  transform: rotate(6deg);
  animation-delay: 3s;
  opacity: .7;
}
@keyframes laserSweep {
  0%   { transform: translateX(-30%) rotate(-8deg); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(30%) rotate(-8deg); opacity: 0; }
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-18px, 14px) rotate(8deg); }
}

.laser-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  z-index: 2;
  text-align: center;
}
.laser-hero__text .eyebrow { margin-bottom: 22px; }
.laser-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 300;
  margin-bottom: 22px;
  color: var(--green-800);
  letter-spacing: -0.02em;
}
.laser-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
  display: inline-block;
  animation: wordIn 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.laser-hero h1 .word {
  display: inline-block;
  animation: wordIn 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.laser-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.laser-hero__sub em {
  color: var(--caramel);
  font-style: italic;
  margin: 0 4px;
}

/* -------- MAIN -------- */
.laser-main {
  padding: 130px 0 140px;
  position: relative;
}
.laser-main__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.laser-main__text h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 34px;
  color: var(--green-800);
}
.laser-main__text h2 em { font-style: italic; color: var(--caramel); }
.laser-main__body p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.laser-main__body strong {
  color: var(--green-800);
  font-weight: 600;
}

.laser-main__visual { position: relative; }
.laser-stack {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin-left: auto;
}
.laser-stack__main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.laser-stack__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.laser-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.laser-slide--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.laser-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.laser-stack:hover .laser-slide--active img { transform: none; }

.laser-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.35);
  z-index: 4;
}
.laser-arrow:hover {
  background: var(--caramel);
  color: var(--white);
  border-color: var(--caramel);
  transform: translateY(-50%) scale(1.08);
}
.laser-arrow--prev { left: 14px; }
.laser-arrow--next { right: 14px; }

.laser-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.laser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(185, 137, 91, 0.35);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.laser-dot--active {
  background: var(--caramel);
  border-color: var(--caramel);
  width: 22px;
  border-radius: 4px;
}
.laser-dot:hover { background: var(--caramel); border-color: var(--caramel); }

.laser-stack__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(185, 137, 91, 0.4);
  pointer-events: none;
  z-index: 1;
}
.laser-stack__ring--1 {
  width: 70%; aspect-ratio: 1;
  top: -8%; left: -10%;
  animation: laserPulse 5s ease-in-out infinite;
}
.laser-stack__ring--2 {
  width: 55%; aspect-ratio: 1;
  bottom: -6%; right: -8%;
  border-color: rgba(47, 79, 58, 0.35);
  animation: laserPulse 6s ease-in-out infinite 1.3s;
}
.laser-stack__ring--3 {
  width: 38%; aspect-ratio: 1;
  top: 30%; right: -14%;
  border-style: dashed;
  border-color: rgba(185, 137, 91, 0.55);
  animation: laserSpin 22s linear infinite;
}
@keyframes laserPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@keyframes laserSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.stat-chip {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 16px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  min-width: 130px;
}
.stat-chip__value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-800);
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-chip__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}
.stat-chip--1 {
  top: 8%; left: -8%;
  animation: floatY 5s ease-in-out infinite;
}
.stat-chip--2 {
  top: 68%; left: -14%;
  animation: floatY2 6s ease-in-out infinite 1s;
}
.stat-chip--3 {
  bottom: 4%; right: -6%;
  animation: floatY 5.5s ease-in-out infinite 2s;
}

/* -------- BILAN CALLOUT -------- */
.laser-bilan {
  padding: 40px 0 100px;
}
.laser-bilan__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.laser-bilan__inner::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: linear-gradient(180deg, var(--caramel), var(--caramel-d));
  border-radius: 0 2px 2px 0;
}
.laser-bilan__icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e9d6, #ebdcc2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(185, 137, 91, 0.18);
}
.laser-bilan__icon img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.laser-bilan__text {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
}
.laser-bilan__text strong {
  color: var(--green-800);
  font-weight: 500;
  font-style: italic;
}

/* -------- GREEN BAND -------- */
.laser-band {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
  overflow: hidden;
  color: var(--white);
}
.laser-band__deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(185, 137, 91, 0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}
.laser-band__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.laser-band__inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 42px;
  line-height: 1.08;
}
.laser-band__inner h2 em {
  color: var(--sand-200);
  font-style: italic;
}
.laser-band .btn--pill {
  background: var(--white);
  color: var(--green-800);
}
.laser-band .btn--pill:hover {
  background: var(--sand-100);
}

/* -------- TESTIMONIALS -------- */
.laser-testi {
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(185, 137, 91, 0.08), transparent 55%),
    radial-gradient(circle at 88% 80%, rgba(47, 79, 58, 0.06), transparent 55%),
    var(--sand-50);
}
.laser-testi__bg { position: absolute; inset: 0; pointer-events: none; }
.laser-testi__bg .orb { position: absolute; }
.laser-testi__bg .orb--1 {
  width: 360px; height: 360px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.22), transparent 70%);
  animation: blobFloat 15s ease-in-out infinite;
}
.laser-testi__bg .orb--2 {
  width: 300px; height: 300px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.16), transparent 70%);
  animation: blobFloat 18s ease-in-out infinite reverse;
}

.laser-testi__inner {
  position: relative;
  z-index: 2;
}
.laser-testi__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.laser-testi__head .eyebrow { margin-bottom: 22px; }
.laser-testi h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
}
.laser-testi h2 em { color: var(--caramel); font-style: italic; }

.laser-testi__card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 80px 64px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.laser-testi__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
    rgba(185, 137, 91, 0.06) 0%,
    transparent 40%,
    transparent 60%,
    rgba(47, 79, 58, 0.05) 100%);
  pointer-events: none;
}
.laser-testi__deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 500px;
  color: var(--caramel);
  opacity: 0.14;
  pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite;
}

.testi-carousel {
  position: relative;
  z-index: 2;
}
.testi-track {
  position: relative;
  min-height: 190px;
  padding: 0 50px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  padding: 0 50px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
  text-align: center;
}
.testi-slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 36px;
}
.testi-author {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--caramel);
  font-style: italic;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
  padding-top: 14px;
}
.testi-author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--caramel);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand-200);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .35s ease;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.testi-arrow:hover {
  background: var(--caramel);
  color: var(--white);
  border-color: var(--caramel);
  transform: translateY(-50%) scale(1.08);
}
.testi-arrow--prev { left: 0; }
.testi-arrow--next { right: 0; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand-200);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.testi-dot--active {
  background: var(--caramel);
  width: 24px;
  border-radius: 4px;
}
.testi-dot:hover { background: var(--caramel); }

/* -------- INFO CTA -------- */
.laser-info {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(185, 137, 91, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(47, 79, 58, 0.12), transparent 55%),
    linear-gradient(180deg, #faf3e8 0%, #f5e9d6 100%);
}
.laser-info__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.laser-info__bg .orb { position: absolute; }
.laser-info__bg .orb--1 {
  width: 380px; height: 380px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.32), transparent 70%);
}
.laser-info__bg .orb--2 {
  width: 320px; height: 320px;
  bottom: -70px; left: -70px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.2), transparent 70%);
}
.laser-info__flower {
  position: absolute;
  top: 14%;
  left: 6%;
  width: 150px; height: 150px;
  color: var(--caramel);
  opacity: 0.22;
  animation: blobFloat 14s ease-in-out infinite;
}
.laser-info__beam {
  position: absolute;
  top: 28%;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185, 137, 91, 0) 30%,
    rgba(185, 137, 91, 0.5) 50%,
    rgba(185, 137, 91, 0) 70%,
    transparent 100%);
  filter: blur(1px);
  transform-origin: center;
  transform: rotate(-6deg);
  animation: laserSweep 7s cubic-bezier(.6,.2,.4,1) infinite;
}
.laser-info__beam--2 {
  top: 72%;
  transform: rotate(7deg);
  animation-delay: 3.5s;
  opacity: .6;
}
.laser-info__shape {
  position: absolute;
  top: 18%;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.laser-info__inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.laser-info__inner .eyebrow { margin-bottom: 18px; }
.laser-info__q {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 300;
  color: var(--green-800);
  margin-bottom: 28px;
  line-height: 1.3;
}
.laser-info__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--caramel);
  border-bottom: 1px solid var(--caramel);
  padding-bottom: 5px;
  transition: all .3s ease;
}
.laser-info__link em { font-style: italic; color: var(--caramel); }
.laser-info__link svg { transition: transform .3s ease; }
.laser-info__link:hover { color: var(--caramel-d); border-color: var(--caramel-d); }
.laser-info__link:hover svg { transform: translateX(6px); }

/* -------- RESPONSIVE -------- */
@media (max-width: 1100px) {
  .laser-main__grid { gap: 50px; }
  .laser-stack { max-width: 440px; }
  .stat-chip--1 { left: -4%; }
  .stat-chip--2 { left: -8%; }
}
@media (max-width: 960px) {
  .laser-hero { padding: 120px 0 70px; min-height: auto; }
  .laser-hero__flower { width: 180px; height: 180px; opacity: 0.22; }

  .laser-main { padding: 90px 0 100px; }
  .laser-main__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .laser-stack {
    margin: 0 auto;
    max-width: 380px;
  }
  .stat-chip {
    min-width: 110px;
    padding: 12px 18px;
  }
  .stat-chip__value { font-size: 1.2rem; }
  .stat-chip__label { font-size: 0.62rem; }
  .stat-chip--1 { left: -10px; top: 4%; }
  .stat-chip--2 { left: -20px; top: 70%; }
  .stat-chip--3 { right: -10px; bottom: 4%; }

  .laser-bilan__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;
    gap: 24px;
  }
  .laser-bilan__inner::before {
    left: 10%; right: 10%;
    top: 0; bottom: auto;
    width: auto; height: 4px;
    background: linear-gradient(90deg, var(--caramel), var(--caramel-d));
    border-radius: 0 0 2px 2px;
  }
  .laser-bilan__icon { margin: 0 auto; }
  .laser-bilan__text { font-size: 1.1rem; }

  .laser-band { padding: 80px 0; }

  .laser-testi { padding: 100px 0 90px; }
  .laser-testi__head { margin-bottom: 50px; }
  .laser-testi__card { padding: 60px 40px 50px; }
  .laser-testi__deco { width: 400px; height: 360px; opacity: 0.1; }
  .testi-track { padding: 0 30px; }
  .testi-slide { padding: 0 30px; }
  .testi-arrow { width: 42px; height: 42px; }

  .laser-info { padding: 70px 0 80px; min-height: auto; }
  .laser-info__flower { width: 120px; height: 120px; opacity: 0.18; }
  .laser-info__shape { width: 140px; height: 140px; }
}
@media (max-width: 720px) {
  .laser-hero { padding: 100px 0 60px; }
  .laser-hero h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .laser-hero__sub { font-size: 1rem; }

  .laser-main { padding: 70px 0 80px; }
  .laser-main__text h2 { font-size: 2rem; margin-bottom: 22px; }
  .laser-main__body p { font-size: 1rem; }
  .laser-stack { max-width: 320px; }
  .stat-chip { min-width: 96px; padding: 10px 14px; }
  .stat-chip__value { font-size: 1.05rem; }

  .laser-bilan { padding: 20px 0 70px; }
  .laser-bilan__inner { padding: 32px 22px; }
  .laser-bilan__icon { width: 96px; height: 96px; }
  .laser-bilan__text { font-size: 1rem; }

  .laser-band { padding: 70px 18px; }
  .laser-band__inner h2 { font-size: 1.7rem; margin-bottom: 28px; }

  .laser-testi { padding: 80px 0 80px; }
  .laser-testi__head { margin-bottom: 40px; }
  .laser-testi__card { padding: 44px 20px 36px; border-radius: var(--radius-md); }
  .laser-testi__deco { width: 300px; height: 270px; opacity: 0.08; }
  .testi-track { padding: 0 10px; min-height: 200px; }
  .testi-slide { padding: 0 10px; }
  .testi-arrow { width: 36px; height: 36px; }
  .testi-arrow svg { width: 16px; height: 16px; }
  .testi-arrow--prev { left: -6px; }
  .testi-arrow--next { right: -6px; }
  .testi-quote { font-size: 1.15rem; margin-bottom: 24px; }
  .testi-author { font-size: 1rem; }

  .laser-info { padding: 60px 0 70px; }
  .laser-info__flower { display: none; }
  .laser-info__shape { width: 110px; height: 110px; top: 10%; right: 4%; }
  .laser-info__q { font-size: 1.1rem; margin-bottom: 22px; }
  .laser-info__link { font-size: 1.15rem; gap: 10px; }
  .laser-info__link svg { width: 16px; height: 16px; }
}

/* ========================================================
   ============== PAGE : PRODUITS =========================
   ======================================================== */
.page-products { background: var(--sand-50); }

/* -------- HERO -------- */
.products-hero {
  position: relative;
  min-height: 62vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(185, 137, 91, 0.18), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(47, 79, 58, 0.14), transparent 55%),
    linear-gradient(180deg, #faf3e8 0%, #f0e4d0 100%);
}
.products-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.products-hero__bg .orb { position: absolute; }
.products-hero__bg .orb--1 {
  width: 520px; height: 520px;
  top: -140px; left: -140px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.32), transparent 70%);
}
.products-hero__bg .orb--2 {
  width: 420px; height: 420px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.22), transparent 70%);
}
.float-shape {
  position: absolute;
  color: var(--caramel);
  opacity: 0.35;
  pointer-events: none;
}
.float-shape--1 {
  width: 70px; height: 110px;
  top: 18%; left: 8%;
  animation: floatY 6s ease-in-out infinite, shapeRot 18s linear infinite;
}
.float-shape--2 {
  width: 120px; height: 120px;
  top: 22%; right: 10%;
  color: var(--green-700);
  opacity: 0.25;
  animation: floatY2 7s ease-in-out infinite, shapeRot 24s linear infinite reverse;
}
.float-shape--3 {
  width: 80px; height: 110px;
  bottom: 14%; left: 18%;
  animation: floatY 5.5s ease-in-out infinite 1.2s, shapeRot 22s linear infinite;
}
@keyframes shapeRot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.products-hero__beam {
  position: absolute;
  top: 46%;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185, 137, 91, 0) 30%,
    rgba(185, 137, 91, 0.45) 50%,
    rgba(185, 137, 91, 0) 70%,
    transparent 100%);
  filter: blur(1px);
  transform-origin: center;
  transform: rotate(-5deg);
  animation: laserSweep 8s cubic-bezier(.6,.2,.4,1) infinite 1.5s;
}

.products-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  z-index: 2;
  text-align: center;
}
.products-hero__text .eyebrow { margin-bottom: 22px; }
.products-hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  font-weight: 300;
  margin-bottom: 22px;
  color: var(--green-800);
  letter-spacing: -0.02em;
  animation: wordIn 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.products-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--caramel);
}
.products-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.products-hero__sub em { color: var(--caramel); font-style: italic; margin: 0 4px; }

/* -------- BRAND MARQUEE -------- */
.brand-strip {
  padding: 28px 0;
  background: linear-gradient(90deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-800) 100%);
  overflow: hidden;
  position: relative;
}
.brand-strip::before,
.brand-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--green-800), transparent);
}
.brand-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--green-800), transparent);
}
.brand-strip__track {
  display: flex;
  gap: 42px;
  align-items: center;
  white-space: nowrap;
  animation: stripSlide 30s linear infinite;
  width: fit-content;
}
.brand-strip__item {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--sand-100);
  letter-spacing: 0.02em;
}
.brand-strip__sep {
  color: var(--caramel);
  font-size: 1.4rem;
  opacity: 0.7;
}
@keyframes stripSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- BRAND BLOCK (Mary Cohr / Estime & Sens) -------- */
.brand-block {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.brand-block__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.brand-block--reverse .brand-block__grid {
  grid-template-columns: 0.9fr 1.2fr;
}
.brand-block--reverse .brand-block__visual { order: 2; }
.brand-block--reverse .brand-block__text { order: 1; }

.brand-block__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 600px;
}
.brand-block:not(.brand-block--reverse) .brand-block__visual { margin-right: auto; }
.brand-block--reverse .brand-block__visual { margin-left: auto; }

.brand-block__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.brand-block__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.brand-block__frame:hover img { transform: scale(1.06); }

.brand-block__ring {
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px dashed rgba(185, 137, 91, 0.5);
  z-index: 1;
  animation: laserSpin 26s linear infinite;
}
.brand-block__ring--green {
  top: auto; right: auto;
  bottom: -30px; left: -30px;
  border-color: rgba(47, 79, 58, 0.4);
  animation-direction: reverse;
  animation-duration: 32s;
}

.brand-sticker {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel) 0%, var(--caramel-d) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  z-index: 3;
  box-shadow: 0 20px 50px -20px rgba(185, 137, 91, 0.6);
  animation: badgeSpin 12s linear infinite;
}
.brand-sticker__small {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}
.brand-sticker__big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
}
.brand-sticker__tiny {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}
.brand-sticker--sens {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  bottom: auto; right: auto;
  top: -28px; left: -28px;
  animation-direction: reverse;
}
@keyframes badgeSpin {
  from { transform: rotate(-6deg); }
  50%  { transform: rotate(6deg); }
  to   { transform: rotate(-6deg); }
}

.brand-block__text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 26px;
}
.brand-block__text h2 em { color: var(--caramel); font-style: italic; }
.brand-block__text p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.brand-block__text strong {
  color: var(--green-800);
  font-weight: 600;
}

.brand-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.brand-badge {
  background: var(--white);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  border: 1px solid var(--sand-200);
}
.brand-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.brand-badge__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 8px;
}
.brand-badge__label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--green-800);
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.brand-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.cert-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--green-300);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--green-800);
  transition: all .35s ease;
}
.cert-chip:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.cert-chip__leaf {
  display: inline-flex;
  width: 14px; height: 14px;
  color: var(--green-700);
  transition: color .35s ease;
}
.cert-chip__leaf svg { width: 100%; height: 100%; }
.cert-chip:hover .cert-chip__leaf { color: var(--sand-100); }

/* -------- SPOTLIGHT : AQUASMOSES -------- */
.spotlight {
  position: relative;
  padding: 120px 0 140px;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 137, 91, 0.1), transparent 60%),
    linear-gradient(180deg, var(--sand-100) 0%, var(--sand-50) 100%);
  overflow: hidden;
}
.spotlight__drops { position: absolute; inset: 0; pointer-events: none; }
.spotlight__drop {
  position: absolute;
  color: var(--caramel);
  opacity: 0.35;
}
.spotlight__drop--1 { width: 36px; height: 44px; top: 12%; left: 10%; animation: floatDrop 6s ease-in-out infinite; }
.spotlight__drop--2 { width: 28px; height: 34px; top: 28%; right: 15%; animation: floatDrop 7s ease-in-out infinite 1s; }
.spotlight__drop--3 { width: 42px; height: 50px; bottom: 22%; left: 20%; animation: floatDrop 5.5s ease-in-out infinite 2s; color: var(--green-700); opacity: 0.28; }
.spotlight__drop--4 { width: 30px; height: 36px; bottom: 14%; right: 18%; animation: floatDrop 6.5s ease-in-out infinite .5s; }
@keyframes floatDrop {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(-8deg); }
}

.spotlight__intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 28px;
  position: relative;
}
.spotlight__intro::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 10%; bottom: 10%;
  width: 1px;
  background: var(--caramel);
  opacity: 0.4;
}
.spotlight__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e9d6, #ebdcc2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel-d);
  flex-shrink: 0;
  animation: badgeSpin 10s ease-in-out infinite;
}
.spotlight__seal svg { width: 66px; height: 66px; }
.spotlight__intro p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  padding-left: 24px;
}
.spotlight__intro strong {
  color: var(--green-800);
  font-weight: 500;
  font-style: italic;
}

.spotlight__hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.spotlight__image {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin: 0 auto;
}
.spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.spotlight__image:hover img { transform: scale(1.04); }
.spotlight__halo {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.22), transparent 65%);
  z-index: 1;
  animation: haloBreath 5s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.08); opacity: 1; }
}

.spotlight__text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
}
.spotlight__text h2 em { color: var(--caramel); font-style: italic; }
.spotlight__text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.spotlight__text strong {
  color: var(--green-800);
  font-weight: 600;
}

/* -------- TOOFRUIT -------- */
.toofruit {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 176, 140, 0.28), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(170, 210, 180, 0.28), transparent 55%),
    linear-gradient(180deg, #fef7ee 0%, #fce8d6 100%);
}
.toofruit__bg { position: absolute; inset: 0; pointer-events: none; }
.toofruit__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.toofruit__blob--1 {
  width: 280px; height: 280px;
  top: 10%; left: -80px;
  background: rgba(255, 176, 140, 0.5);
  animation: blobFloat 14s ease-in-out infinite;
}
.toofruit__blob--2 {
  width: 220px; height: 220px;
  top: 20%; right: 5%;
  background: rgba(170, 210, 180, 0.55);
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.toofruit__blob--3 {
  width: 260px; height: 260px;
  bottom: 8%; left: 18%;
  background: rgba(255, 210, 150, 0.5);
  animation: blobFloat 12s ease-in-out infinite 1s;
}
.toofruit__blob--4 {
  width: 200px; height: 200px;
  bottom: 12%; right: -60px;
  background: rgba(255, 168, 190, 0.45);
  animation: blobFloat 18s ease-in-out infinite reverse;
}

.toofruit__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.toofruit__text h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 26px;
}
.toofruit__text h2 em { color: var(--caramel); font-style: italic; }
.toofruit__text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.toofruit__text strong {
  color: var(--green-800);
  font-weight: 600;
}

.toofruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.fruit-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.2);
  transition: transform .35s ease;
}
.fruit-tag:hover { transform: translateY(-4px) rotate(-2deg); }
.fruit-tag--1 { background: linear-gradient(135deg, #ffb08c, #e8876a); animation: floatY 4s ease-in-out infinite; }
.fruit-tag--2 { background: linear-gradient(135deg, #aad2b4, #7dbf94); animation: floatY2 5s ease-in-out infinite .5s; }
.fruit-tag--3 { background: linear-gradient(135deg, #ffca82, #e8a54c); animation: floatY 4.5s ease-in-out infinite 1s; }
.fruit-tag--4 { background: linear-gradient(135deg, #ffa8be, #e887a3); animation: floatY2 5.5s ease-in-out infinite 1.5s; }

.toofruit__visual {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
}
.toofruit__frame {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
  line-height: 0;
}
.toofruit__frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.toofruit__frame:hover img { transform: scale(1.05); }

.toofruit__badge {
  position: absolute;
  top: -22px; right: -22px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a6e, #e8876a);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 20px 50px -15px rgba(232, 135, 106, 0.6);
  animation: badgeSpin 8s ease-in-out infinite;
}
.toofruit__badge-top {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.95;
}
.toofruit__badge-mid {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  margin: 4px 0;
}
.toofruit__badge-bot {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

.toofruit__fruit {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.25);
}
.toofruit__fruit--a {
  width: 46px; height: 46px;
  bottom: 14%; left: -18px;
  background: radial-gradient(circle at 30% 30%, #ffd890, #e8a54c);
  animation: floatY 4s ease-in-out infinite;
}
.toofruit__fruit--b {
  width: 36px; height: 36px;
  bottom: -14px; left: 30%;
  background: radial-gradient(circle at 30% 30%, #ffbccb, #e887a3);
  animation: floatY2 5s ease-in-out infinite 1s;
}
.toofruit__fruit--c {
  width: 30px; height: 30px;
  top: 10%; right: -12px;
  background: radial-gradient(circle at 30% 30%, #bee0c4, #7dbf94);
  animation: floatY 4.5s ease-in-out infinite .5s;
}

/* -------- CTA FINAL -------- */
.products-cta {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(185, 137, 91, 0.18), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(47, 79, 58, 0.14), transparent 55%),
    linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--white);
}
.products-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.products-cta__bg .orb { position: absolute; }
.products-cta__bg .orb--1 {
  width: 420px; height: 420px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.3), transparent 70%);
}
.products-cta__bg .orb--2 {
  width: 360px; height: 360px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}
.products-cta__beam {
  position: absolute;
  top: 30%;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(185, 137, 91, 0) 30%,
    rgba(185, 137, 91, 0.55) 50%,
    rgba(185, 137, 91, 0) 70%,
    transparent 100%);
  filter: blur(1px);
  transform: rotate(-6deg);
  animation: laserSweep 7s cubic-bezier(.6,.2,.4,1) infinite;
}
.products-cta__beam--2 {
  top: 70%;
  transform: rotate(5deg);
  animation-delay: 3s;
  opacity: .7;
}
.products-cta__inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.products-cta__inner .eyebrow {
  color: var(--sand-200);
  margin-bottom: 22px;
}
.products-cta__inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 22px;
}
.products-cta__inner h2 em {
  color: var(--sand-200);
  font-style: italic;
}
.products-cta__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.products-cta .btn--pill {
  background: var(--white);
  color: var(--green-800);
}
.products-cta .btn--pill:hover {
  background: var(--sand-100);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1100px) {
  .brand-block__grid, .brand-block--reverse .brand-block__grid { gap: 60px; }
  .spotlight__hero { gap: 60px; }
  .toofruit__inner { gap: 60px; }
}
@media (max-width: 960px) {
  .products-hero { padding: 120px 0 70px; min-height: auto; }
  .float-shape--1 { width: 50px; height: 80px; top: 12%; left: 4%; }
  .float-shape--2 { width: 80px; height: 80px; top: 14%; right: 6%; }
  .float-shape--3 { display: none; }

  .brand-block { padding: 90px 0; }
  .brand-block__grid,
  .brand-block--reverse .brand-block__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .brand-block--reverse .brand-block__visual { order: 2; }
  .brand-block--reverse .brand-block__text { order: 1; }
  .brand-block__visual { margin: 0 auto !important; max-width: 420px; }

  .brand-sticker { width: 130px; height: 130px; }
  .brand-sticker__big { font-size: 1.1rem; }
  .brand-block__ring { width: 140px; height: 140px; }

  .brand-badges { grid-template-columns: 1fr 1fr; }

  .spotlight { padding: 90px 0 100px; }
  .spotlight__intro {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    margin-bottom: 70px;
  }
  .spotlight__intro::before { display: none; }
  .spotlight__seal { margin: 0 auto; }
  .spotlight__intro p { padding-left: 0; font-size: 1.05rem; }
  .spotlight__hero { grid-template-columns: 1fr; gap: 50px; }
  .spotlight__image { max-width: 360px; }

  .toofruit { padding: 90px 0; }
  .toofruit__inner { grid-template-columns: 1fr; gap: 60px; }
  .toofruit__visual { margin: 0 auto; max-width: 480px; }
  .toofruit__badge { width: 110px; height: 110px; }
  .toofruit__badge-mid { font-size: 1.6rem; }

  .products-cta { padding: 55px 0 65px; }
}
@media (max-width: 720px) {
  .products-hero { padding: 100px 0 60px; }
  .products-hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .products-hero__sub { font-size: 1rem; }

  .brand-strip { padding: 20px 0; }
  .brand-strip__item { font-size: 1.3rem; }
  .brand-strip__track { gap: 28px; }

  .brand-block { padding: 70px 0; }
  .brand-block__text h2 { font-size: 1.8rem; margin-bottom: 22px; }
  .brand-block__text p { font-size: 0.98rem; }
  .brand-block__visual { max-width: 340px; }
  .brand-sticker { width: 110px; height: 110px; bottom: -20px; right: -14px; padding: 12px; }
  .brand-sticker__big { font-size: 0.95rem; }
  .brand-sticker__small, .brand-sticker__tiny { font-size: 0.55rem; }
  .brand-sticker--sens { top: -20px; left: -14px; }
  .brand-block__ring { width: 110px; height: 110px; top: -18px; right: -18px; }
  .brand-block__ring--green { bottom: -18px; left: -18px; }
  .brand-badges { grid-template-columns: 1fr; gap: 12px; margin-top: 26px; }
  .brand-badge { padding: 16px; }
  .brand-badge__num { font-size: 1.4rem; }

  .spotlight { padding: 70px 0 80px; }
  .spotlight__seal { width: 90px; height: 90px; }
  .spotlight__seal svg { width: 54px; height: 54px; }
  .spotlight__intro p { font-size: 1rem; }
  .spotlight__text h2 { font-size: 1.8rem; }
  .spotlight__text p { font-size: 0.98rem; }
  .spotlight__image { max-width: 300px; }

  .toofruit { padding: 70px 0; }
  .toofruit__text h2 { font-size: 1.8rem; margin-bottom: 22px; }
  .toofruit__text p { font-size: 0.98rem; }
  .toofruit__visual { max-width: 360px; }
  .toofruit__frame { border-radius: 28px; }
  .toofruit__badge { width: 88px; height: 88px; top: -14px; right: -12px; }
  .toofruit__badge-mid { font-size: 1.3rem; }
  .toofruit__badge-top, .toofruit__badge-bot { font-size: 0.6rem; }
  .fruit-tag { padding: 8px 16px; font-size: 0.92rem; }
  .toofruit__fruit--a { width: 36px; height: 36px; }
  .toofruit__fruit--b { width: 28px; height: 28px; }
  .toofruit__fruit--c { width: 24px; height: 24px; }

  .products-cta { padding: 50px 18px 60px; }
  .products-cta__inner h2 { font-size: 1.5rem; }
  .products-cta__inner p { font-size: 1.05rem; margin-bottom: 30px; }
}

/* ============================================================
   PAGE BON CADEAU — .page-gift
   ============================================================ */

.page-gift {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(185, 137, 91, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(47, 79, 58, 0.07), transparent 60%),
    var(--sand-50);
}

/* -------- HERO -------- */
.gift-hero {
  position: relative;
  min-height: 78vh;
  padding: 160px 0 110px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gift-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.gift-hero__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .7;
}
.gift-hero__bg .orb--1 {
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.28), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.gift-hero__bg .orb--2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.22), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

/* Floating gift boxes */
.gift-float {
  position: absolute;
  color: rgba(185, 137, 91, 0.35);
  width: 110px; height: 110px;
  animation: giftFloat 7s ease-in-out infinite;
}
.gift-float--1 { top: 14%; left: 6%; animation-delay: 0s; }
.gift-float--2 { top: 28%; right: 8%; width: 90px; height: 90px; color: rgba(47, 79, 58, 0.3); animation-delay: 1.5s; animation-duration: 9s; }
.gift-float--3 { bottom: 14%; left: 12%; width: 80px; height: 80px; color: rgba(185, 137, 91, 0.3); animation-delay: 3s; animation-duration: 8s; }

@keyframes giftFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-24px) rotate(4deg); }
}

/* Ribbon SVGs */
.gift-ribbon {
  position: absolute;
  color: rgba(185, 137, 91, 0.28);
  width: 260px;
  animation: ribbonWave 6s ease-in-out infinite;
}
.gift-ribbon--1 { top: 40%; right: -40px; }
.gift-ribbon--2 { bottom: 30%; left: -40px; color: rgba(47, 79, 58, 0.22); animation-delay: 2s; }
@keyframes ribbonWave {
  0%, 100% { transform: translateX(0) rotate(-4deg); }
  50%      { transform: translateX(20px) rotate(4deg); }
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--caramel);
  border-radius: 50%;
  filter: blur(.3px);
  animation: sparkle 3.2s ease-in-out infinite;
}
.sparkle::before, .sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
}
.sparkle::before { transform: rotate(45deg); }
.sparkle::after  { transform: rotate(-45deg); }
@keyframes sparkle {
  0%, 100% { transform: scale(.4); opacity: .3; }
  50%      { transform: scale(1.2); opacity: 1; }
}
.sparkle--1 { top: 20%;  left: 42%; animation-delay: 0s; }
.sparkle--2 { top: 70%;  left: 35%; animation-delay: .6s; background: var(--green-700); }
.sparkle--3 { top: 35%;  right: 30%; animation-delay: 1.2s; width: 6px; height: 6px; }
.sparkle--4 { bottom: 22%; right: 40%; animation-delay: 1.8s; background: var(--green-700); }
.sparkle--5 { top: 55%;  left: 18%; animation-delay: 2.4s; width: 5px; height: 5px; }
.sparkle--6 { top: 82%;  left: 58%; animation-delay: 3s; background: var(--caramel-d); width: 5px; height: 5px; }

/* Confetti falling */
.confetti {
  position: absolute;
  width: 10px; height: 14px;
  border-radius: 2px;
  opacity: .7;
  animation: confettiFall 9s linear infinite;
}
.confetti--1 { top: -20px; left: 12%; background: var(--caramel); animation-delay: 0s; }
.confetti--2 { top: -20px; left: 28%; background: var(--green-300); animation-delay: 1.2s; transform: rotate(12deg); }
.confetti--3 { top: -20px; left: 46%; background: var(--caramel-d); animation-delay: 2.4s; width: 8px; height: 8px; border-radius: 50%; }
.confetti--4 { top: -20px; left: 60%; background: var(--green-700); animation-delay: 3.6s; transform: rotate(-22deg); }
.confetti--5 { top: -20px; left: 74%; background: var(--sand-300); animation-delay: 0.6s; transform: rotate(30deg); }
.confetti--6 { top: -20px; left: 88%; background: var(--caramel); animation-delay: 1.8s; width: 8px; height: 8px; border-radius: 50%; }
.confetti--7 { top: -20px; left: 18%; background: var(--green-300); animation-delay: 3s; }
.confetti--8 { top: -20px; left: 68%; background: var(--caramel-d); animation-delay: 4.2s; transform: rotate(-12deg); }
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0); opacity: 0; }
  10%  { opacity: .8; }
  100% { transform: translateY(120vh) rotate(360deg); opacity: 0; }
}

/* Hero content */
.gift-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.gift-hero__text { max-width: 780px; }
.gift-hero__text .eyebrow { color: var(--green-800); margin-bottom: 24px; display: inline-block; }
.gift-hero__text h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  color: var(--green-800);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.gift-hero__text h1 em {
  font-style: italic;
  color: var(--caramel);
  background: linear-gradient(120deg, var(--caramel) 0%, var(--caramel-d) 50%, var(--caramel) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.gift-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 0 36px;
  letter-spacing: .01em;
}
.gift-hero__sub em {
  font-style: italic;
  color: var(--green-700);
}
.gift-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* -------- MARQUEE -------- */
.gift-strip {
  background: var(--green-800);
  color: var(--sand-100);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.gift-strip__track {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  animation: stripSlide 35s linear infinite;
  padding-left: 42px;
}
.gift-strip__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: .02em;
}
.gift-strip__sep {
  color: var(--caramel);
  font-size: 1rem;
}

/* -------- INTRO + CARD -------- */
.gift-intro {
  padding: 120px 0 100px;
  position: relative;
}
.gift-intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center;
}
.gift-intro__text .eyebrow { color: var(--green-800); margin-bottom: 22px; }
.gift-intro__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--green-800);
  margin: 0 0 26px;
}
.gift-intro__text h2 em { color: var(--caramel); font-style: italic; }
.gift-intro__text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.gift-intro__text strong {
  color: var(--green-800);
  font-weight: 600;
}

.gift-perks {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gift-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 1rem;
}
.gift-perks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  flex-shrink: 0;
}
.gift-perks__icon svg { width: 16px; height: 16px; }

/* 3D gift card */
.gift-card-3d {
  position: relative;
  perspective: 1200px;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
}
.gift-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.7) 0%, transparent 40%),
    linear-gradient(135deg, #f4e3d2 0%, #e9d2b7 50%, #dcbc97 100%);
  box-shadow:
    0 40px 80px -30px rgba(185, 137, 91, 0.55),
    0 20px 50px -20px rgba(47, 79, 58, 0.2),
    inset 0 0 0 1px rgba(255,255,255,.5);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--green-800);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(6deg);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
  animation: cardTilt 8s ease-in-out infinite;
}
@keyframes cardTilt {
  0%, 100% { transform: rotateY(-8deg) rotateX(6deg) translateY(0); }
  50%      { transform: rotateY(8deg) rotateX(-4deg) translateY(-10px); }
}
.gift-card:hover {
  transform: rotateY(0) rotateX(0) translateY(-14px) scale(1.02);
  animation-play-state: paused;
}
.gift-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: cardShine 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes cardShine {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.gift-card__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  justify-content: space-between;
}
.gift-card__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
}
.gift-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  margin: 0;
  color: var(--green-800);
}
.gift-card__script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--caramel-d);
  align-self: flex-end;
  transform: rotate(-6deg);
}
.gift-card__amount {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--serif);
  color: var(--green-800);
}
.gift-card__currency {
  font-size: 1.6rem;
  font-weight: 400;
}
.gift-card__value {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1;
}
.gift-card__foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  opacity: .8;
}

.gift-card__flower {
  position: absolute;
  color: rgba(47, 79, 58, 0.22);
  z-index: 1;
  pointer-events: none;
}
.gift-card__flower--a {
  top: 18px; right: 18px;
  width: 80px; height: 80px;
  animation: laserSpin 28s linear infinite;
}
.gift-card__flower--b {
  bottom: 70px; left: 24px;
  width: 60px; height: 60px;
  opacity: .6;
  animation: laserSpin 32s linear infinite reverse;
}

.gift-card__halo {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.2) 0%, transparent 60%);
  z-index: -1;
  animation: haloBreath 5s ease-in-out infinite;
  pointer-events: none;
}

.gift-card__dot {
  position: absolute;
  border-radius: 50%;
  animation: floatY 4s ease-in-out infinite;
}
.gift-card__dot--1 { top: -20px; left: 20%; width: 22px; height: 22px; background: var(--caramel); animation-delay: 0s; }
.gift-card__dot--2 { top: 10%; right: -30px; width: 16px; height: 16px; background: var(--green-700); animation-delay: 1s; }
.gift-card__dot--3 { bottom: 10%; left: -28px; width: 20px; height: 20px; background: var(--caramel-d); animation-delay: 2s; }
.gift-card__dot--4 { bottom: -18px; right: 20%; width: 14px; height: 14px; background: var(--green-300); animation-delay: 3s; }

.gift-card__ribbon {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 130%;
  color: rgba(185, 137, 91, 0.5);
  z-index: 3;
  animation: ribbonWave 7s ease-in-out infinite;
  pointer-events: none;
}

/* -------- MONTANTS -------- */
.gift-amounts {
  position: relative;
  padding: 110px 0 120px;
  background: var(--white);
  overflow: hidden;
}
.gift-amounts__bg { position: absolute; inset: 0; pointer-events: none; }
.gift-amounts__blob {
  position: absolute;
  filter: blur(40px);
  border-radius: 50%;
  opacity: .5;
}
.gift-amounts__blob--1 {
  width: 420px; height: 420px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.18), transparent 70%);
  animation: blobFloat 16s ease-in-out infinite;
}
.gift-amounts__blob--2 {
  width: 380px; height: 380px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.15), transparent 70%);
  animation: blobFloat 20s ease-in-out infinite reverse;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--green-800);
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--green-800);
  margin: 0;
}
.section-head h2 em { color: var(--caramel); font-style: italic; }

.amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  position: relative;
  z-index: 1;
}
.amount-card {
  position: relative;
  padding: 42px 28px 36px;
  border-radius: 28px;
  background: var(--sand-50);
  border: 1.5px solid var(--sand-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s, border-color .4s;
}
.amount-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(47, 79, 58, 0.22);
  border-color: var(--caramel);
}
.amount-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel-d);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(185, 137, 91, 0.1);
}
.amount-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--green-800);
  font-family: var(--serif);
}
.amount-card__num {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
}
.amount-card__cur {
  font-size: 1.6rem;
  font-weight: 400;
}
.amount-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}
.amount-card__glow {
  position: absolute;
  bottom: -60%;
  left: -20%;
  width: 140%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(185, 137, 91, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.amount-card:hover .amount-card__glow { opacity: 1; }

.amount-card--feat {
  background: linear-gradient(160deg, var(--green-800) 0%, #253d2d 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 30px 60px -30px rgba(47, 79, 58, 0.6);
}
.amount-card--feat .amount-card__tag {
  color: var(--sand-100);
  background: rgba(255,255,255,0.12);
}
.amount-card--feat .amount-card__price { color: var(--white); }
.amount-card--feat .amount-card__cur { color: var(--sand-200); }
.amount-card--feat p { color: rgba(255,255,255,.85); }
.amount-card--feat .amount-card__glow {
  background: radial-gradient(circle at center, rgba(185, 137, 91, 0.4) 0%, transparent 60%);
}
.amount-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--caramel);
  color: var(--white);
  font-weight: 600;
}

.amount-card--prestige {
  background: linear-gradient(160deg, #f3e2ce, #e4c9a8);
  border-color: transparent;
}
.amount-card--prestige .amount-card__tag {
  background: rgba(255,255,255,0.5);
}

.amount-card--custom {
  background: repeating-linear-gradient(45deg, var(--sand-50), var(--sand-50) 10px, var(--sand-100) 10px, var(--sand-100) 20px);
  border-style: dashed;
  border-color: var(--caramel);
}
.amount-card--custom .amount-card__num {
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  color: var(--caramel-d);
}

/* -------- STEPS -------- */
.gift-steps {
  padding: 110px 0;
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--caramel) 0 8px, transparent 8px 16px);
  opacity: .5;
  z-index: 0;
}
.step-card {
  position: relative;
  padding: 40px 30px 36px;
  text-align: center;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  z-index: 1;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.step-card__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-card__icon {
  width: 70px; height: 70px;
  margin: 18px auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
}
.step-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--green-800);
  margin: 0 0 14px;
}
.step-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.step-card strong { color: var(--green-800); font-weight: 600; }

/* -------- OCCASIONS -------- */
.gift-occasions {
  padding: 110px 0;
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(185, 137, 91, 0.05) 100%),
    var(--sand-50);
  overflow: hidden;
}
.gift-occasions__bg { position: absolute; inset: 0; pointer-events: none; }
.gift-occasions__bg .confetti--a { top: 10%; left: 8%; background: var(--caramel); animation-delay: .2s; }
.gift-occasions__bg .confetti--b { top: 60%; left: 88%; background: var(--green-300); animation-delay: 1.4s; }
.gift-occasions__bg .confetti--c { top: 35%; left: 92%; background: var(--caramel-d); animation-delay: 2.6s; width: 8px; height: 8px; border-radius: 50%; }
.gift-occasions__bg .confetti--d { top: 80%; left: 6%; background: var(--green-700); animation-delay: 3.8s; }

.occasions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.occ-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green-800);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  animation: floatY 4s ease-in-out infinite;
}
.occ-pill:hover { transform: translateY(-6px) scale(1.05); box-shadow: var(--shadow-card); }
.occ-pill__icon { font-size: 1.3rem; }
.occ-pill--1 { animation-delay: 0s; }
.occ-pill--2 { animation-delay: .3s; background: linear-gradient(135deg, #fff, #f0e5d6); animation-name: floatY2; }
.occ-pill--3 { animation-delay: .6s; }
.occ-pill--4 { animation-delay: .9s; background: linear-gradient(135deg, #fff, #e5eae0); animation-name: floatY2; }
.occ-pill--5 { animation-delay: 1.2s; }
.occ-pill--6 { animation-delay: 1.5s; background: linear-gradient(135deg, #fff, #f5e8dc); animation-name: floatY2; }
.occ-pill--7 { animation-delay: 1.8s; }
.occ-pill--8 { animation-delay: 2.1s; background: linear-gradient(135deg, #fff, #eee6db); animation-name: floatY2; }

/* -------- CTA FINAL -------- */
.gift-cta {
  position: relative;
  padding: 100px 0 110px;
  background:
    radial-gradient(700px 300px at 20% 30%, rgba(185, 137, 91, 0.22), transparent 60%),
    linear-gradient(135deg, var(--green-800) 0%, #24402d 55%, #1e3627 100%);
  overflow: hidden;
  color: var(--white);
}
.gift-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.gift-cta__bg .orb { position: absolute; border-radius: 50%; filter: blur(50px); }
.gift-cta__bg .orb--1 {
  width: 420px; height: 420px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.35), transparent 70%);
}
.gift-cta__bg .orb--2 {
  width: 360px; height: 360px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}
.gift-cta__beam {
  position: absolute;
  top: 30%;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 137, 91, 0.5) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(185, 137, 91, 0.5) 70%, transparent);
  transform: rotate(-5deg);
  filter: blur(1px);
  opacity: 0;
  animation: laserSweep 7s cubic-bezier(.6,.2,.4,1) infinite;
}
.gift-cta__beam--2 {
  top: 70%;
  transform: rotate(5deg);
  animation-delay: 3s;
  opacity: .7;
}
.gift-cta__bg .sparkle--c1 { top: 20%; left: 20%; background: var(--sand-100); animation-delay: 0s; }
.gift-cta__bg .sparkle--c2 { top: 60%; right: 18%; background: var(--caramel); animation-delay: 1.2s; }
.gift-cta__bg .sparkle--c3 { bottom: 20%; left: 45%; background: var(--white); animation-delay: 2.4s; }

.gift-cta__inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.gift-cta__inner .eyebrow {
  color: var(--sand-200);
  margin-bottom: 22px;
  display: inline-block;
}
.gift-cta__inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
}
.gift-cta__inner h2 em {
  color: var(--sand-200);
  font-style: italic;
}
.gift-cta__inner p {
  color: rgba(255,255,255,0.85);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.gift-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.gift-cta .btn--pill {
  background: var(--white);
  color: var(--green-800);
}
.gift-cta .btn--pill:hover { background: var(--sand-100); }
.gift-cta .btn--pill-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.gift-cta .btn--pill-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1100px) {
  .gift-intro__grid { gap: 60px; }
}
@media (max-width: 960px) {
  .gift-hero { padding: 130px 0 80px; min-height: auto; }
  .gift-float--2, .gift-float--3 { display: none; }
  .gift-ribbon { width: 180px; }

  .gift-intro { padding: 80px 0; }
  .gift-intro__grid { grid-template-columns: 1fr; gap: 60px; }
  .gift-card-3d { max-width: 420px; aspect-ratio: 3 / 4; }

  .gift-amounts { padding: 80px 0 90px; }
  .amount-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  .gift-steps { padding: 80px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }

  .gift-occasions { padding: 80px 0; }

  .gift-cta { padding: 80px 0 90px; }
}
@media (max-width: 720px) {
  .gift-hero { padding: 110px 18px 70px; }
  .gift-hero__text h1 { font-size: 3rem; }
  .gift-hero__sub { font-size: 1.1rem; margin-bottom: 28px; }
  .gift-hero__cta .btn { width: 100%; justify-content: center; }
  .gift-float--1 { width: 80px; height: 80px; }

  .gift-strip__item { font-size: 1.2rem; }
  .gift-strip__track { gap: 28px; }

  .gift-intro { padding: 60px 18px; }
  .gift-intro__text h2 { font-size: 1.8rem; margin-bottom: 22px; }
  .gift-card-3d { max-width: 320px; }
  .gift-card { padding: 28px; border-radius: 22px; }

  .gift-amounts { padding: 60px 18px 70px; }
  .amount-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.7rem; }

  .gift-steps { padding: 60px 18px; }
  .step-card { padding: 34px 24px 28px; }

  .gift-occasions { padding: 60px 18px; }
  .occ-pill { padding: 12px 20px; font-size: 0.95rem; }

  .gift-cta { padding: 60px 18px 70px; }
  .gift-cta__inner h2 { font-size: 1.7rem; }
  .gift-cta__inner p { font-size: 1rem; margin-bottom: 28px; }
  .gift-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PAGE CONTACT — .page-contact
   ============================================================ */

.page-contact {
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(185, 137, 91, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(47, 79, 58, 0.07), transparent 60%),
    var(--sand-50);
}

/* -------- HERO -------- */
.contact-hero {
  position: relative;
  min-height: 68vh;
  padding: 150px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.contact-hero__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .7;
}
.contact-hero__bg .orb--1 {
  width: 480px; height: 480px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.3), transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.contact-hero__bg .orb--2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -80px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.22), transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.contact-hero__beam {
  position: absolute;
  top: 38%;
  left: -20%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 137, 91, 0.5), transparent);
  transform: rotate(-4deg);
  filter: blur(.5px);
  animation: laserSweep 7s cubic-bezier(.6,.2,.4,1) infinite;
}

/* Floating envelopes */
.env-float {
  position: absolute;
  color: rgba(185, 137, 91, 0.35);
  width: 140px; height: 95px;
  animation: envFloat 8s ease-in-out infinite;
}
.env-float--1 { top: 16%; right: 8%; animation-delay: 0s; }
.env-float--2 { top: 60%; left: 6%; width: 110px; height: 75px; color: rgba(47, 79, 58, 0.3); animation-delay: 1.5s; animation-duration: 10s; }
.env-float--3 { bottom: 14%; right: 16%; width: 90px; height: 60px; color: rgba(185, 137, 91, 0.3); animation-delay: 3s; animation-duration: 9s; }
@keyframes envFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-22px) rotate(5deg); }
}

/* Signal waves */
.signal {
  position: absolute;
  color: rgba(47, 79, 58, 0.28);
  width: 80px; height: 80px;
  animation: signalPulse 3s ease-in-out infinite;
}
.signal--1 { top: 28%; left: 10%; }
.signal--2 { bottom: 22%; right: 8%; color: rgba(185, 137, 91, 0.35); animation-delay: 1.2s; }
@keyframes signalPulse {
  0%, 100% { opacity: .3; transform: scale(.95); }
  50%      { opacity: 1;  transform: scale(1.05); }
}

/* Hero content */
.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}
.contact-hero__text { max-width: 860px; margin: 0 auto; }
.contact-hero__text .eyebrow { color: var(--green-800); margin-bottom: 22px; display: inline-block; }
.contact-hero__text h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.98;
  color: var(--green-800);
  margin: 0 0 26px;
  letter-spacing: -0.02em;
}
.contact-hero__text h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--caramel) 0%, var(--caramel-d) 50%, var(--caramel) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
.contact-hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 auto 36px;
  max-width: 680px;
  letter-spacing: .01em;
}
.contact-hero__sub em { font-style: italic; color: var(--green-700); }
.contact-hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* -------- CHANNELS -------- */
.contact-channels {
  position: relative;
  padding: 10px 0 60px;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}
.channel-card {
  position: relative;
  padding: 36px 32px 34px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s, background .6s;
  isolation: isolate;
}
.channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px -30px rgba(47, 79, 58, 0.28);
}
.channel-card__pulse {
  position: absolute;
  inset: auto -40% -80% auto;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .6s, transform .6s;
  pointer-events: none;
  z-index: -1;
}
.channel-card:hover .channel-card__pulse { opacity: 1; transform: scale(1.1); }

.channel-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sand-100), var(--sand-200));
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.channel-card:hover .channel-card__icon {
  transform: rotate(-6deg) scale(1.08);
}
.channel-card__icon svg { width: 28px; height: 28px; }
.channel-card--planity .channel-card__icon {
  background: linear-gradient(135deg, var(--green-800), #253d2d);
  color: var(--sand-100);
}
.channel-card--map .channel-card__icon {
  background: linear-gradient(135deg, var(--caramel), var(--caramel-d));
  color: var(--white);
}

.channel-card__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel-d);
}
.channel-card__title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-800);
}
.channel-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background .4s, color .4s;
}
.channel-card:hover .channel-card__arrow {
  transform: translate(4px, -4px) rotate(-10deg);
  background: var(--green-800);
  color: var(--white);
}

/* -------- INTRO -------- */
.contact-intro {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.contact-intro__bg { position: absolute; inset: 0; pointer-events: none; }
.contact-intro__blob {
  position: absolute;
  filter: blur(50px);
  border-radius: 50%;
  opacity: .5;
}
.contact-intro__blob--1 {
  width: 440px; height: 440px;
  top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.2), transparent 70%);
  animation: blobFloat 18s ease-in-out infinite;
}
.contact-intro__blob--2 {
  width: 380px; height: 380px;
  bottom: -120px; right: -100px;
  background: radial-gradient(circle, rgba(47, 79, 58, 0.18), transparent 70%);
  animation: blobFloat 22s ease-in-out infinite reverse;
}

.contact-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.contact-intro__text .eyebrow { color: var(--green-800); margin-bottom: 22px; }
.contact-intro__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--green-800);
  margin: 0 0 26px;
}
.contact-intro__text h2 em { color: var(--caramel); font-style: italic; }
.contact-intro__text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.contact-intro__text strong {
  color: var(--green-800);
  font-weight: 600;
}

.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-800);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, color .4s, background .4s;
}
.contact-social svg { width: 18px; height: 18px; }
.contact-social:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.contact-social--fb:hover { background: #1877f2; color: var(--white); }
.contact-social--ig:hover {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: var(--white);
}

/* Portrait card */
.portrait-card {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin: 0 auto;
}
.portrait-card__img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.portrait-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}
.portrait-card:hover .portrait-card__img img { transform: scale(1.06); }
.portrait-card__ring {
  position: absolute;
  top: -26px; right: -26px;
  width: 170px; height: 170px;
  border-radius: 50%;
  border: 1.5px dashed rgba(185, 137, 91, 0.5);
  animation: laserSpin 30s linear infinite;
  z-index: 1;
}
.portrait-card__halo {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 137, 91, 0.18), transparent 60%);
  z-index: 0;
  animation: haloBreath 5s ease-in-out infinite;
  pointer-events: none;
}
.portrait-card__badge {
  position: absolute;
  bottom: -28px; left: -28px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), #253d2d);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  z-index: 3;
  box-shadow: 0 20px 50px -20px rgba(47, 79, 58, 0.55);
  animation: badgeSpin 14s linear infinite;
}
.portrait-card__badge-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--sand-100);
}
.portrait-card__badge-txt {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
}
.portrait-card__leaf {
  position: absolute;
  top: 42%; right: -50px;
  width: 90px; height: 90px;
  color: rgba(185, 137, 91, 0.45);
  animation: floatY 5s ease-in-out infinite;
  z-index: 3;
}

/* -------- FORM + HOURS -------- */
.contact-form-sec {
  position: relative;
  padding: 100px 0 110px;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.7) 20%, rgba(255,255,255,.9) 80%, transparent),
    var(--sand-50);
}
.contact-form-sec__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 60px;
  align-items: start;
}
.contact-form__wrap .eyebrow { color: var(--green-800); margin-bottom: 18px; }
.contact-form__wrap h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--green-800);
  margin: 0 0 32px;
}
.contact-form__wrap h2 em { color: var(--caramel); font-style: italic; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 30px 80px -40px rgba(47, 79, 58, 0.25);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(185, 137, 91, 0.15), transparent 40%, transparent 60%, rgba(47, 79, 58, 0.1));
  z-index: 0;
  pointer-events: none;
}
.contact-form > * { position: relative; z-index: 1; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  position: relative;
  display: block;
}
.field input,
.field textarea {
  width: 100%;
  padding: 22px 18px 12px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand-50);
  border: 1.5px solid transparent;
  border-radius: 14px;
  outline: none;
  transition: background .4s, border-color .4s, box-shadow .4s;
  resize: vertical;
}
.field textarea {
  min-height: 130px;
  font-family: var(--sans);
  line-height: 1.6;
}
.field__label {
  position: absolute;
  left: 18px;
  top: 20px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), color .35s, font-size .35s;
  transform-origin: left top;
  background: transparent;
  padding: 0 2px;
}
.field__req { color: var(--caramel); margin-left: 2px; }
.field input:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(185, 137, 91, 0.12);
}
.field input:focus + .field__label,
.field input:not(:placeholder-shown) + .field__label,
.field textarea:focus + .field__label,
.field textarea:not(:placeholder-shown) + .field__label {
  transform: translateY(-14px) scale(0.78);
  color: var(--caramel-d);
}
.field__border {
  position: absolute;
  left: 18px; right: 18px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
  pointer-events: none;
}
.field input:focus ~ .field__border,
.field textarea:focus ~ .field__border {
  transform: scaleX(1);
}

.btn-send {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), #253d2d);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  box-shadow: 0 18px 40px -20px rgba(47, 79, 58, 0.5);
  align-self: flex-start;
  isolation: isolate;
}
.btn-send:hover:not(.is-loading):not(.is-done) {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -20px rgba(47, 79, 58, 0.6);
}
.btn-send__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(185, 137, 91, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.btn-send:hover .btn-send__glow { opacity: 1; }
.btn-send__arrow {
  display: inline-flex;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.btn-send:hover .btn-send__arrow { transform: translateX(4px); }

.btn-send.is-loading { pointer-events: none; opacity: 0.8; }
.btn-send.is-loading .btn-send__label::after {
  content: "…";
  animation: dots 1s steps(4, end) infinite;
}
@keyframes dots {
  0%   { content: "."; }
  33%  { content: ".."; }
  66%  { content: "..."; }
  100% { content: ""; }
}
.btn-send.is-done {
  background: linear-gradient(135deg, var(--caramel), var(--caramel-d));
  pointer-events: none;
}

.contact-form__gdpr {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 6px 0 0;
  opacity: 0.85;
}
.contact-form__gdpr strong { color: var(--green-800); }

.contact-form__success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(47, 79, 58, 0.08);
  color: var(--green-800);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s, transform .5s;
}
.contact-form__success.in {
  opacity: 1;
  transform: translateY(0);
}
.contact-form__success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Hours */
.contact-hours {
  position: sticky;
  top: 110px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--green-800) 0%, #253d2d 100%);
  color: var(--white);
  box-shadow: 0 30px 80px -40px rgba(47, 79, 58, 0.5);
  overflow: hidden;
  isolation: isolate;
}
.contact-hours::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(185, 137, 91, 0.25), transparent 55%);
  z-index: -1;
  animation: haloBreath 7s ease-in-out infinite;
}
.contact-hours .eyebrow { color: var(--sand-200); display: inline-block; margin-bottom: 16px; }
.contact-hours h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 28px;
}
.contact-hours h3 em { color: var(--sand-100); font-style: italic; }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hours-row:first-child { border-top: none; }
.hours-row__day {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;
}
.hours-row__time {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hours-row__sep { color: var(--sand-200); opacity: .5; }
.hours-row__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(185, 137, 91, 0.28);
  color: var(--sand-100);
  font-family: var(--sans);
}
.hours-row--closed .hours-row__time {
  color: var(--sand-200);
  font-style: italic;
  opacity: .7;
}

.hours-tip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 26px;
}
.hours-tip__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--sand-100);
  animation: badgeSpin 12s linear infinite;
}
.hours-tip__icon svg { width: 100%; height: 100%; }
.hours-tip p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}
.hours-tip strong { color: var(--sand-100); font-weight: 600; }

.hours-cta {
  width: 100%;
  justify-content: center;
  background: var(--white);
  color: var(--green-800);
}
.hours-cta:hover { background: var(--sand-100); }

/* -------- MAP -------- */
.contact-map {
  position: relative;
  padding: 100px 0 110px;
}
.contact-map__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.contact-map__text .eyebrow { color: var(--green-800); margin-bottom: 22px; display: inline-block; }
.contact-map__text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--green-800);
  margin: 0 0 24px;
}
.contact-map__text h2 em { color: var(--caramel); font-style: italic; }
.contact-map__text p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-map__text strong { color: var(--green-800); font-weight: 600; }
.contact-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map__embed {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(47, 79, 58, 0.35);
  background: var(--sand-100);
}
.contact-map__embed iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.3) contrast(1.02);
  transition: filter .6s;
}
.contact-map__embed:hover iframe { filter: grayscale(0) contrast(1); }
.contact-map__pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 60px;
  transform: translate(-50%, -100%);
  color: var(--caramel);
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(185, 137, 91, 0.45));
  animation: pinBounce 2.5s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50%      { transform: translate(-50%, -110%); }
}
.contact-map__pin svg { width: 100%; height: 100%; }

/* -------- RESPONSIVE -------- */
@media (max-width: 1100px) {
  .contact-intro__grid { gap: 60px; }
  .contact-form-sec__grid { gap: 40px; }
  .contact-map__grid { gap: 50px; }
  .contact-hours { position: static; }
}
@media (max-width: 960px) {
  .contact-hero { padding: 130px 0 70px; min-height: auto; }
  .env-float--2, .env-float--3 { display: none; }
  .signal--2 { display: none; }

  .channels-grid { grid-template-columns: 1fr; gap: 16px; margin-top: -30px; }
  .contact-channels { padding: 0 0 40px; }

  .contact-intro { padding: 60px 0 80px; }
  .contact-intro__grid { grid-template-columns: 1fr; gap: 60px; }
  .portrait-card { max-width: 380px; }

  .contact-form-sec { padding: 70px 0 90px; }
  .contact-form-sec__grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-map { padding: 70px 0 90px; }
  .contact-map__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map__embed { aspect-ratio: 16 / 12; }
}
@media (max-width: 720px) {
  .contact-hero { padding: 110px 18px 60px; }
  .contact-hero__text h1 { font-size: 3rem; }
  .contact-hero__sub { font-size: 1.05rem; margin-bottom: 28px; }
  .contact-hero__cta .btn { width: 100%; justify-content: center; }
  .env-float--1 { width: 100px; height: 70px; top: 8%; right: 4%; }
  .signal--1 { width: 60px; height: 60px; }

  .contact-channels { padding: 0 18px 30px; }
  .channel-card { padding: 28px 24px 26px; }
  .channel-card__title { font-size: 1.3rem; }

  .contact-intro { padding: 40px 18px 60px; }
  .contact-intro__text h2 { font-size: 1.7rem; margin-bottom: 20px; }
  .portrait-card { max-width: 300px; }
  .portrait-card__ring { width: 120px; height: 120px; top: -18px; right: -18px; }
  .portrait-card__badge { width: 100px; height: 100px; bottom: -16px; left: -16px; padding: 10px; }
  .portrait-card__badge-num { font-size: 1.2rem; }
  .portrait-card__badge-txt { font-size: 0.54rem; }
  .portrait-card__leaf { width: 60px; height: 60px; right: -30px; }

  .contact-form-sec { padding: 50px 18px 70px; }
  .contact-form__wrap h2 { font-size: 1.7rem; margin-bottom: 24px; }
  .contact-form { padding: 24px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-hours { padding: 26px; border-radius: 22px; }
  .hours-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hours-row__time { text-align: left; justify-content: flex-start; }

  .contact-map { padding: 50px 18px 70px; }
  .contact-map__text h2 { font-size: 1.7rem; }
  .contact-map__embed { aspect-ratio: 1 / 1; }
  .contact-map__actions .btn { width: 100%; justify-content: center; }
}

/* ================== PROMISE LETTER (Notre promesse) ================== */
.contact-intro .container { position: relative; z-index: 2; }

.promise-letter {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 64px 72px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.85), rgba(255,255,255,0.55) 60%, transparent 100%),
    var(--sand-50);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -40px rgba(47,79,58,0.25), 0 8px 30px -10px rgba(185,137,91,0.12);
  border: 1px solid rgba(47,79,58,0.08);
  overflow: visible;
}

/* Giant decorative quotes on the card */
.promise-letter::before,
.promise-letter::after {
  content: "\201C";
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 320px;
  line-height: 1;
  color: var(--caramel);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.promise-letter::before { top: 20px; left: 24px; }
.promise-letter::after  { content: "\201D"; bottom: -40px; right: 24px; }

/* Rotating seal medallion */
.promise-seal {
  position: absolute;
  top: -70px;
  right: -30px;
  width: 160px;
  height: 160px;
  color: var(--caramel);
  z-index: 3;
}
.promise-seal__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: sealSpin 22s linear infinite;
}
.promise-seal__text text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3.2px;
  font-weight: 500;
  fill: var(--caramel);
  text-transform: uppercase;
}
.promise-seal__ring {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(185,137,91,0.5);
  border-radius: 50%;
  animation: sealSpin 30s linear infinite reverse;
}
.promise-seal__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--caramel), var(--caramel-d));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(185,137,91,0.35), inset 0 2px 6px rgba(255,255,255,0.25);
}
.promise-seal__core svg { width: 34px; height: 34px; }

@keyframes sealSpin { to { transform: rotate(360deg); } }

/* Card content */
.promise-letter .eyebrow {
  display: inline-block;
  color: var(--green-800);
  margin-bottom: 22px;
  letter-spacing: 3px;
}
.promise-letter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  color: var(--green-800);
  margin: 0 0 30px;
}
.promise-letter h2 em { color: var(--caramel); font-style: italic; }

.promise-flourish {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 36px;
  color: var(--caramel);
  opacity: 0.85;
}

.promise-letter p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.85;
  margin: 0 auto 22px;
  max-width: 640px;
  text-align: left;
}
.promise-letter strong { color: var(--green-800); font-weight: 600; }

.promise-lead {
  position: relative;
  font-size: 1.18rem !important;
  color: var(--green-800) !important;
  font-style: italic;
  padding-left: 56px;
  margin-bottom: 28px !important;
}
.promise-lead strong { color: var(--caramel) !important; }
.promise-quote {
  position: absolute;
  top: -38px; left: -4px;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--caramel);
  opacity: 0.38;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Handwritten signature */
.promise-signature {
  display: block;
  margin: 40px 0 10px;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: 2.1rem;
  color: var(--caramel);
  line-height: 1;
}
.promise-signature em {
  font-style: normal;
  font-family: 'Dancing Script', cursive;
  color: var(--green-800);
}

/* Centered socials inside letter */
.promise-socials {
  justify-content: center;
  margin-top: 30px !important;
}

/* Floating leaves in background */
.promise-leaf {
  position: absolute;
  color: var(--green-700);
  opacity: 0.22;
  width: 110px;
  height: 110px;
}
.promise-leaf--1 { top: 6%;  left: 3%;  animation: floatY 12s ease-in-out infinite; }
.promise-leaf--2 { top: 14%; right: 5%; width: 78px; height: 78px; transform: scaleX(-1); animation: floatY2 14s ease-in-out infinite; color: var(--caramel); opacity: 0.2; }
.promise-leaf--3 { bottom: 16%; left: 6%; width: 90px; height: 90px; animation: floatY2 16s ease-in-out infinite; color: var(--caramel); opacity: 0.2; }
.promise-leaf--4 { bottom: 8%;  right: 4%; transform: scaleX(-1); animation: floatY 18s ease-in-out infinite; }

/* Floating dots */
.promise-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  opacity: 0.4;
  box-shadow: 0 0 14px rgba(185,137,91,0.45);
}
.promise-dot--1 { top: 22%; left: 18%; animation: floatY 9s ease-in-out infinite; }
.promise-dot--2 { top: 36%; right: 14%; animation: floatY2 11s ease-in-out infinite; background: var(--green-700); opacity: 0.35; box-shadow: 0 0 14px rgba(47,79,58,0.4); }
.promise-dot--3 { bottom: 26%; left: 12%; animation: floatY2 13s ease-in-out infinite; }
.promise-dot--4 { bottom: 18%; right: 20%; animation: floatY 10s ease-in-out infinite; background: var(--green-700); opacity: 0.35; box-shadow: 0 0 14px rgba(47,79,58,0.4); }

/* Responsive */
@media (max-width: 960px) {
  .promise-letter { padding: 72px 42px 60px; }
  .promise-seal { width: 130px; height: 130px; top: -54px; right: -12px; }
  .promise-seal__core { width: 60px; height: 60px; }
  .promise-seal__core svg { width: 28px; height: 28px; }
  .promise-letter::before, .promise-letter::after { font-size: 240px; }
}

@media (max-width: 720px) {
  .contact-intro { padding: 50px 0 70px; }
  .promise-letter {
    padding: 60px 24px 48px;
    border-radius: var(--radius-md);
    margin: 0 14px;
  }
  .promise-seal {
    width: 104px; height: 104px;
    top: -46px; right: 50%;
    transform: translateX(50%);
  }
  .promise-seal__core { width: 48px; height: 48px; }
  .promise-seal__core svg { width: 22px; height: 22px; }
  .promise-seal__text text { font-size: 10px; letter-spacing: 2.4px; }
  .promise-seal__ring { inset: 12px; }

  .promise-letter .eyebrow { margin-top: 20px; }
  .promise-letter h2 { font-size: 1.8rem; margin-bottom: 22px; }
  .promise-flourish { width: 160px; margin-bottom: 26px; }

  .promise-letter p { font-size: 1rem; line-height: 1.75; }
  .promise-lead {
    font-size: 1.06rem !important;
    padding-left: 38px;
  }
  .promise-quote { font-size: 5.2rem; top: -18px; }

  .promise-signature { font-size: 1.7rem; margin-top: 32px; }

  .promise-letter::before, .promise-letter::after { font-size: 170px; }
  .promise-letter::before { top: 10px; left: 10px; }
  .promise-letter::after  { bottom: -18px; right: 10px; }

  .promise-leaf--1 { width: 70px; height: 70px; }
  .promise-leaf--2 { width: 54px; height: 54px; }
  .promise-leaf--3 { width: 60px; height: 60px; }
  .promise-leaf--4 { width: 70px; height: 70px; }
}

/* ================== TEAM HERO (redesigned, animated) ================== */
.team-hero {
  position: relative;
  padding: 170px 28px 130px;
  min-height: 82vh;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(185,137,91,.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 80%, rgba(47,79,58,.18), transparent 65%),
    linear-gradient(135deg, #f7e9db 0%, #f0dcc8 55%, #eccfb3 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.team-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.th-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); will-change: transform;
}
.th-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(185,137,91,.55), transparent 70%);
  top: -160px; left: -140px;
  animation: thBlob 16s ease-in-out infinite;
}
.th-blob--2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(220,201,172,.55), transparent 70%);
  bottom: -240px; right: -160px;
  animation: thBlob 22s ease-in-out -4s infinite reverse;
}
.th-blob--3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(47,79,58,.22), transparent 70%);
  top: 52%; left: 50%;
  animation: thBlob 20s ease-in-out -8s infinite;
}
@keyframes thBlob {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  33%      { transform: translate(calc(-50% + 50px), calc(-50% - 30px)) scale(1.1); }
  66%      { transform: translate(calc(-50% - 40px), calc(-50% + 40px)) scale(.95); }
}
/* corner blobs use non-centered origin */
.th-blob--1, .th-blob--2 {
  animation-name: thBlobCorner;
}
@keyframes thBlobCorner {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(50px,-30px) scale(1.1); }
  66%      { transform: translate(-40px,40px) scale(.95); }
}

.th-leaf {
  position: absolute; color: var(--green-800);
  opacity: .28; width: 80px; height: 80px;
  animation: thLeafFloat 9s ease-in-out infinite;
}
.th-leaf--1 { top: 22%; left: 7%; }
.th-leaf--2 { top: 70%; left: 12%; width: 60px; height: 60px; transform: rotate(-30deg); animation-duration: 11s; opacity: .22; }
.th-leaf--3 { top: 26%; right: 9%; width: 70px; height: 70px; transform: rotate(150deg); animation-duration: 13s; opacity: .25; }
@keyframes thLeafFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -18px; }
}

.th-dot {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--caramel); opacity: .5;
  animation: thTwinkle 4s ease-in-out infinite;
}
.th-dot--1 { top: 18%; left: 38%; }
.th-dot--2 { top: 32%; right: 32%; width: 5px; height: 5px; background: var(--green-800); animation-delay: .9s; }
.th-dot--3 { top: 74%; left: 30%; width: 6px; height: 6px; animation-delay: 1.6s; }
.th-dot--4 { top: 58%; right: 22%; animation-delay: 2.2s; background: var(--green-800); opacity: .45; }
.th-dot--5 { top: 12%; right: 40%; width: 4px; height: 4px; animation-delay: 3s; }
.th-dot--6 { top: 82%; right: 40%; width: 5px; height: 5px; animation-delay: 1.1s; background: var(--green-800); }
@keyframes thTwinkle {
  0%, 100% { transform: scale(1); opacity: .2; }
  50%      { transform: scale(1.6); opacity: .85; }
}

.th-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(95,63,32,.07) 1px, transparent 1px),
    radial-gradient(rgba(95,63,32,.05) 1px, transparent 1px);
  background-size: 22px 22px, 37px 37px;
  background-position: 0 0, 11px 19px;
  mix-blend-mode: multiply; opacity: .5;
}

/* Rotating seal medallion */
.th-seal {
  position: absolute;
  top: 92px; right: 6%;
  width: 180px; height: 180px;
  color: var(--green-800);
  z-index: 1;
  opacity: 0;
  animation: thSealFade 1s cubic-bezier(.2,.8,.2,1) .6s forwards;
}
@keyframes thSealFade { to { opacity: 1; } }
.th-seal svg { width: 100%; height: 100%; animation: thSealSpin 28s linear infinite; }
.th-seal text {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .28em; fill: var(--green-800);
  text-transform: uppercase;
}
.th-seal__star {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: var(--caramel); font-size: 22px;
  animation: thStarPulse 3s ease-in-out infinite;
}
@keyframes thSealSpin { to { transform: rotate(360deg); } }
@keyframes thStarPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1) rotate(0); opacity: .9; }
  50%      { transform: translate(-50%,-50%) scale(1.25) rotate(45deg); opacity: 1; }
}

.team-hero__inner {
  position: relative; z-index: 2;
  max-width: 1080px; width: 100%; margin: 0 auto;
}

.th-eyebrow {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .5em;
  font-size: 1.05rem; color: var(--green-800); font-weight: 500;
  margin-bottom: 30px;
  opacity: 0;
  animation: thFadeUp .8s cubic-bezier(.2,.8,.2,1) .1s forwards;
}
.th-eyebrow__line {
  width: 68px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-800));
}
.th-eyebrow__line:last-child {
  background: linear-gradient(90deg, var(--green-800), transparent);
}

.th-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(5.5rem, 12.5vw, 11rem);
  line-height: 1;
  color: var(--caramel);
  margin: 0 0 22px;
  letter-spacing: -.01em;
}
.th-title em {
  display: inline-block;
  font-style: italic;
  position: relative;
  background: linear-gradient(135deg, var(--caramel) 0%, #c89966 45%, var(--green-800) 115%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(60px) rotate(-3deg);
  animation: thTitleIn 1.1s cubic-bezier(.2,.8,.2,1) .25s forwards;
  padding: 0 .08em;
}
.th-title em::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel), var(--green-800), var(--caramel), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: thUnderline 1.1s cubic-bezier(.2,.8,.2,1) 1.2s forwards;
}
@keyframes thTitleIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.th-flourish {
  display: block;
  margin: 10px auto 28px;
  width: min(380px, 72%); height: 36px;
  color: var(--caramel);
}
.th-flourish path {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: thDraw 1.6s cubic-bezier(.5,0,.5,1) 1s forwards;
}
@keyframes thDraw { to { stroke-dashoffset: 0; } }

.th-lead {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  color: #8a6a46;
  line-height: 1.35;
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 0 36px;
  opacity: 0;
  animation: thFadeUp 1s cubic-bezier(.2,.8,.2,1) 1.1s forwards;
}
.th-lead em {
  font-style: italic;
  color: var(--green-800);
  position: relative;
  white-space: nowrap;
  font-weight: 400;
}
.th-lead em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: thUnderline 1.1s cubic-bezier(.2,.8,.2,1) 1.7s forwards;
}
.th-lead em:nth-of-type(2)::after { animation-delay: 2s; }
.th-lead__quote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -.38em;
  color: var(--caramel);
  opacity: .42;
  margin-right: .08em;
  display: inline-block;
  transform: translateY(.12em);
}
.th-lead__quote--end {
  margin-right: 0;
  margin-left: .08em;
}
@keyframes thUnderline { to { transform: scaleX(1); } }
@keyframes thFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.th-marquee {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0;
  animation: thFadeUp .9s cubic-bezier(.2,.8,.2,1) 1.4s forwards;
}
.th-marquee__track {
  display: flex; gap: 42px; width: max-content;
  animation: thMarquee 24s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: 1.9rem; color: var(--caramel);
  opacity: .82;
}
.th-marquee__track span:nth-child(even) {
  color: var(--green-800);
  font-style: normal; font-size: 1.2rem;
  opacity: .65; align-self: center;
}
@keyframes thMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ================== TEAM FINAL (redesigned, animated) ================== */
.team-final {
  position: relative;
  padding: 130px 28px 150px;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(185,137,91,.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 85%, rgba(47,79,58,.18), transparent 60%),
    linear-gradient(180deg, #f7e9db 0%, #eccfb3 100%);
  overflow: hidden; text-align: center;
}
.team-final__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.tf-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.tf-blob--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(185,137,91,.55), transparent 70%);
  top: -180px; right: -160px;
  animation: thBlobCorner 18s ease-in-out infinite;
}
.tf-blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(47,79,58,.28), transparent 70%);
  bottom: -200px; left: -140px;
  animation: thBlobCorner 20s ease-in-out -6s infinite reverse;
}
.tf-blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(220,201,172,.45), transparent 70%);
  top: 40%; left: 40%;
  animation: thBlobCorner 24s ease-in-out -10s infinite;
}

.tf-leaf {
  position: absolute; color: var(--green-800);
  opacity: .25; width: 80px; height: 80px;
  animation: thLeafFloat 10s ease-in-out infinite;
}
.tf-leaf--1 { top: 18%; left: 8%; }
.tf-leaf--2 { bottom: 16%; right: 10%; width: 60px; height: 60px; transform: rotate(160deg); animation-duration: 12s; }

.tf-dot {
  position: absolute; width: 6px; height: 6px;
  border-radius: 50%; background: var(--caramel);
  opacity: .5; animation: thTwinkle 4s ease-in-out infinite;
}
.tf-dot--1 { top: 22%; right: 28%; }
.tf-dot--2 { bottom: 26%; left: 30%; background: var(--green-800); animation-delay: 1.3s; }
.tf-dot--3 { top: 60%; right: 18%; animation-delay: 2.1s; }
.tf-dot--4 { top: 36%; left: 22%; width: 4px; height: 4px; background: var(--green-800); animation-delay: 2.9s; }
.tf-dot--5 { bottom: 42%; right: 42%; width: 5px; height: 5px; animation-delay: .6s; }

.tf-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(95,63,32,.06) 1px, transparent 1px),
    radial-gradient(rgba(95,63,32,.04) 1px, transparent 1px);
  background-size: 24px 24px, 41px 41px;
  background-position: 0 0, 12px 21px;
  mix-blend-mode: multiply; opacity: .55;
}

.tf-seal {
  position: absolute;
  top: 70px; left: 6%;
  width: 170px; height: 170px;
  color: var(--green-800); z-index: 1;
}
.tf-seal svg {
  width: 100%; height: 100%;
  animation: thSealSpin 26s linear infinite reverse;
}
.tf-seal text {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: .28em; fill: var(--green-800);
  text-transform: uppercase; font-weight: 500;
}
.tf-seal__star {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: var(--caramel); font-size: 20px;
  animation: thStarPulse 3s ease-in-out infinite;
}

.team-final__inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
}

.tf-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.15;
  color: var(--caramel);
  margin: 10px 0 16px;
  letter-spacing: -.005em;
}
.tf-title em {
  font-style: italic;
  color: var(--green-800);
  position: relative;
}
.tf-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
}

.tf-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #8a6a46;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* CTA pill with shimmer sweep */
.tf-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px;
  padding: 18px 18px 18px 38px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff; text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--caramel) 0%, #a9754a 55%, var(--green-800) 130%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 14px 34px rgba(95,63,32,.28);
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, background-position .8s;
  isolation: isolate;
}
.tf-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
  pointer-events: none;
}
.tf-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(95,63,32,.38);
  background-position: 100% 50%;
}
.tf-cta:hover::before { transform: translateX(120%); }
.tf-cta__label { position: relative; z-index: 1; }
.tf-cta__icon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: transform .4s, background .4s;
}
.tf-cta:hover .tf-cta__icon {
  transform: translateX(4px) rotate(-5deg);
  background: rgba(255,255,255,.32);
}

/* --------- Team hero/final responsive --------- */
@media (max-width: 1100px) {
  .th-seal { top: 88px; right: 4%; width: 150px; height: 150px; }
  .tf-seal { top: 60px; left: 4%; width: 140px; height: 140px; }
}
@media (max-width: 960px) {
  .team-hero { padding: 140px 20px 90px; min-height: auto; }
  .th-seal { top: 96px; right: 4%; width: 120px; height: 120px; }
  .th-title { font-size: clamp(5rem, 14vw, 8.5rem); }
  .th-lead { font-size: clamp(1.5rem, 3.4vw, 2.2rem); padding: 0 20px; }
  .th-lead__quote { font-size: 2em; }
  .th-marquee__track { font-size: 1.5rem; }
  .th-marquee__track span:nth-child(even) { font-size: 1.05rem; }

  .team-final { padding: 110px 20px 110px; }
  .tf-seal { top: 30px; left: 50%; transform: translateX(-50%); width: 110px; height: 110px; }
  .tf-title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .tf-cta { font-size: 1.15rem; padding: 16px 16px 16px 30px; }
  .tf-cta__icon { width: 34px; height: 34px; }
}
@media (max-width: 720px) {
  .team-hero { padding: 120px 18px 70px; }
  .th-seal { display: none; }
  .th-leaf--1 { width: 60px; height: 60px; top: 18%; left: 4%; }
  .th-leaf--2 { width: 46px; height: 46px; top: 74%; left: 6%; }
  .th-leaf--3 { width: 54px; height: 54px; top: 22%; right: 4%; }
  .th-title { font-size: clamp(4rem, 18vw, 6rem); }
  .th-lead { font-size: 1.35rem; margin-bottom: 34px; padding: 0 14px; }
  .th-lead__quote { font-size: 1.7em; }
  .th-marquee__track { font-size: 1.2rem; gap: 26px; }
  .th-marquee__track span:nth-child(even) { font-size: .9rem; }

  .team-final { padding: 90px 18px 100px; }
  .tf-seal { width: 92px; height: 92px; top: 22px; }
  .tf-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .tf-lead { font-size: 1rem; }
  .tf-cta { font-size: 1.05rem; padding: 14px 14px 14px 26px; gap: 10px; }
  .tf-cta__icon { width: 32px; height: 32px; }
  .tf-leaf--1 { width: 58px; height: 58px; }
  .tf-leaf--2 { width: 46px; height: 46px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .th-blob, .th-blob--1, .th-blob--2, .th-blob--3,
  .th-leaf, .th-dot,
  .tf-blob, .tf-blob--1, .tf-blob--2, .tf-blob--3,
  .tf-leaf, .tf-dot,
  .th-marquee__track, .th-title em, .th-lead,
  .th-flourish path, .th-title em::after, .th-lead em::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ============== MOBILE HERO FIXES (≤720px) ==============
   Push the first section below the floating nav pill so the full hero
   title/subtitle is visible, hide the small green scroll indicator,
   and tighten the laser testimonial card. */
@media (max-width: 720px) {
  .page-products .products-hero { padding-top: 160px; }
  .page-laser    .laser-hero    { padding-top: 160px; }
  .page-gift     .gift-hero     { padding-top: 160px; }
  .page-contact  .contact-hero  { padding-top: 160px; }

  .page-products .hero__scroll,
  .page-laser    .hero__scroll,
  .page-gift     .hero__scroll,
  .page-contact  .hero__scroll { display: none !important; }

  /* Laser testimonials — reduce wasted vertical space */
  .laser-testi__card { padding: 34px 20px 28px; }
  .laser-testi__deco { width: 280px; height: 250px; opacity: .10; }
  .testi-track { min-height: 150px; padding: 0 6px; }
  .testi-slide { padding: 0 6px; }
  .testi-arrow { width: 38px; height: 38px; }
  .testi-quote { font-size: 1.05rem; line-height: 1.45; }
  .testi-author { margin-top: 12px; }
}

/* ============================================================
   CONTACT — « NOTRE PROMESSE » (remplace le pavé RGPD)
   3 badges chiffrés + signature manuscrite SVG animée
   ============================================================ */
.contact-promise{
  position: relative;
  margin: 36px 0 8px;
  padding: 32px 28px 26px;
  border-radius: 22px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(212,163,115,.10) 0%, rgba(212,163,115,0) 55%),
    radial-gradient(140% 120% at 100% 100%, rgba(46,64,45,.08) 0%, rgba(46,64,45,0) 55%),
    linear-gradient(180deg, #fbf6ef 0%, #f5ece0 100%);
  border: 1px solid rgba(212,163,115,.28);
  overflow: hidden;
  isolation: isolate;
}
.contact-promise::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(2px 2px at 12% 22%, rgba(212,163,115,.35) 0, transparent 60%),
    radial-gradient(2px 2px at 86% 18%, rgba(46,64,45,.28) 0, transparent 60%),
    radial-gradient(2px 2px at 78% 82%, rgba(212,163,115,.32) 0, transparent 60%),
    radial-gradient(2px 2px at 22% 86%, rgba(46,64,45,.22) 0, transparent 60%);
  pointer-events:none; z-index:0;
  opacity:.9;
  animation: cpTwinkle 4.8s ease-in-out infinite;
}
@keyframes cpTwinkle{ 0%,100%{opacity:.85} 50%{opacity:.45} }

.cp-flourish{
  position:absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: min(70%, 260px); height: 16px;
  fill:none;
  stroke: url(#cpGrad);
  stroke: var(--caramel);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: cpDraw 1.6s cubic-bezier(.6,.1,.3,1) .2s forwards;
  opacity:.7;
}
@keyframes cpDraw{ to{ stroke-dashoffset: 0; } }

.cp-eyebrow{
  display:block;
  position: relative; z-index:1;
  margin-top: 18px;
  text-align:center;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--caramel);
  opacity:.85;
}
.cp-title{
  position:relative; z-index:1;
  margin: 6px 0 22px;
  text-align:center;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  color: var(--green-800, #2e402d);
}
.cp-title em{
  font-style: italic;
  display: inline-block;
  background: linear-gradient(135deg, var(--caramel) 0%, #c89966 45%, var(--green-800, #2e402d) 115%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 .08em;
}
.cp-title em::after{
  content:"";
  position:absolute; left:6%; right:6%; bottom:-4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel) 20%, var(--caramel) 80%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  animation: cpUnderline 1.1s cubic-bezier(.6,.1,.3,1) 1.1s forwards;
  border-radius: 2px;
}
@keyframes cpUnderline{ to{ transform: scaleX(1); } }

.cp-badges{
  position:relative; z-index:1;
  list-style:none;
  margin: 0 0 22px;
  padding: 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cp-badge{
  position:relative;
  text-align:center;
  padding: 14px 8px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(212,163,115,.22);
  backdrop-filter: blur(6px);
  opacity:0;
  transform: translateY(14px);
  animation: cpFadeUp .8s cubic-bezier(.2,.8,.2,1) var(--d, 0s) forwards;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cp-badge:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(46,64,45,.18);
  border-color: rgba(212,163,115,.45);
}
@keyframes cpFadeUp{ to{ opacity:1; transform: translateY(0);} }

.cp-badge__ring{
  position:absolute; top:-16px; left:50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  display:grid; place-items:center;
  pointer-events:none;
}
.cp-badge__ring svg{
  width:100%; height:100%;
  fill:none;
  stroke: var(--caramel);
  stroke-width: 1.4;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
  animation: cpRing 1.2s cubic-bezier(.6,.1,.3,1) calc(var(--d, 0s) + .3s) forwards;
  opacity:.55;
}
@keyframes cpRing{ to{ stroke-dashoffset: 0; } }
.cp-badge__ring::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width: 5px; height: 5px;
  border-radius:50%;
  background: var(--caramel);
  transform: translate(-50%, -50%);
  opacity:0;
  animation: cpDot .6s ease-out calc(var(--d, 0s) + 1.1s) forwards;
  box-shadow: 0 0 10px rgba(212,163,115,.55);
}
@keyframes cpDot{ to{ opacity:1; } }

.cp-badge__num{
  display:block;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--caramel) 0%, #c89966 40%, var(--green-800, #2e402d) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}
.cp-badge__lbl{
  display:block;
  margin-top: 4px;
  font-size: .78rem;
  line-height: 1.3;
  color: #6f5a43;
  letter-spacing: .01em;
}

/* Signature manuscrite */
.cp-sign{
  position:relative; z-index:1;
  margin: 8px 0 0;
  text-align:center;
}
.cp-sign__lead{
  display:block;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: 1rem;
  color: #8a6a46;
  opacity:.9;
}
.cp-sign__svg{
  width: min(80%, 240px);
  height: 52px;
  margin: 4px auto 0;
  display:block;
  fill:none;
  stroke: var(--green-800, #2e402d);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cp-sign__path{
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: cpSignDraw 2.2s cubic-bezier(.6,.1,.3,1) 1.3s forwards;
}
.cp-sign__swash{
  stroke: var(--caramel);
  stroke-width: 1.2;
  opacity:.7;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: cpSignDraw 1.4s cubic-bezier(.6,.1,.3,1) 3.2s forwards;
}
@keyframes cpSignDraw{ to{ stroke-dashoffset: 0; } }

.cp-sign__meta{
  display:block;
  margin-top: 2px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--caramel);
  opacity:0;
  animation: cpFadeUp .8s ease 3.8s forwards;
}

/* ---- Mobile ---- */
@media (max-width: 720px){
  .contact-promise{ padding: 28px 18px 22px; margin: 28px 0 4px; }
  .cp-badges{ grid-template-columns: 1fr; gap: 22px 10px; margin-bottom: 18px; }
  .cp-badge{ padding: 16px 10px 14px; }
  .cp-sign__svg{ height: 46px; }
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce){
  .contact-promise *{ animation: none !important; }
  .cp-badge{ opacity:1; transform:none; }
  .cp-flourish, .cp-badge__ring svg, .cp-sign__path, .cp-sign__swash{ stroke-dashoffset: 0 !important; }
  .cp-title em::after{ transform: scaleX(1); }
  .cp-sign__meta{ opacity:1; }
  .cp-badge__ring::after{ opacity:1; }
}

/* ============================================================
   CONTACT — « L'institut, en ce moment »
   Remplace le formulaire. Horloge analogique temps réel
   + badge d'ouverture live + quote + CTA.
   ============================================================ */
.contact-live{
  position: relative;
  padding: 56px 44px 48px;
  border-radius: 32px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(212,163,115,.18) 0%, rgba(212,163,115,0) 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(46,64,45,.14) 0%, rgba(46,64,45,0) 55%),
    linear-gradient(165deg, #fdf8f0 0%, #f5ecdd 60%, #efe3ce 100%);
  border: 1px solid rgba(212,163,115,.30);
  box-shadow: 0 30px 60px -30px rgba(46,64,45,.22);
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background */
.cl-bg{
  position:absolute; inset:0; pointer-events:none; z-index:0;
  overflow:hidden;
}
.cl-blob{
  position:absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .55;
  animation: clBlob 14s ease-in-out infinite;
}
.cl-blob--1{ top:-10%; left:-12%; width: 55%; height: 55%; background: rgba(212,163,115,.55); }
.cl-blob--2{ bottom:-15%; right:-8%; width: 50%; height: 50%; background: rgba(46,64,45,.30); animation-delay: -5s; }
.cl-blob--3{ top:40%; left:55%; width: 28%; height: 28%; background: rgba(212,163,115,.35); animation-delay: -9s; }
@keyframes clBlob{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%    { transform: translate(20px,-15px) scale(1.08); }
  66%    { transform: translate(-14px, 22px) scale(.95); }
}

.cl-leaf{
  position:absolute;
  width: 34px; height: 34px;
  color: var(--caramel, #d4a373);
  opacity:.28;
  animation: clLeaf 9s ease-in-out infinite;
}
.cl-leaf--1{ top: 10%; right: 8%; animation-delay: -1s; }
.cl-leaf--2{ bottom: 18%; left: 6%; transform: scaleX(-1); animation-delay: -4s; color: var(--green-800, #2e402d); opacity:.22; }
.cl-leaf--3{ top: 58%; right: 4%; width: 22px; height: 22px; animation-delay: -7s; opacity:.22; }
@keyframes clLeaf{
  0%,100%{ transform: translateY(0) rotate(-6deg); }
  50%    { transform: translateY(-14px) rotate(8deg); }
}
.cl-leaf--2{ animation-name: clLeafFlipped; }
@keyframes clLeafFlipped{
  0%,100%{ transform: scaleX(-1) translateY(0) rotate(-6deg); }
  50%    { transform: scaleX(-1) translateY(-14px) rotate(8deg); }
}

.cl-spark{
  position:absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--caramel, #d4a373);
  box-shadow: 0 0 12px rgba(212,163,115,.8);
  opacity: 0;
  animation: clSpark 3.6s ease-in-out infinite;
}
.cl-spark--1{ top: 18%; left: 12%; animation-delay: 0s; }
.cl-spark--2{ top: 28%; right: 18%; animation-delay: -.8s; background: var(--green-800, #2e402d); box-shadow: 0 0 10px rgba(46,64,45,.6); }
.cl-spark--3{ bottom: 28%; left: 22%; animation-delay: -1.5s; }
.cl-spark--4{ bottom: 18%; right: 14%; animation-delay: -2.2s; background: var(--green-800, #2e402d); box-shadow: 0 0 10px rgba(46,64,45,.55); }
.cl-spark--5{ top: 48%; left: 6%; width: 3px; height: 3px; animation-delay: -.4s; }
@keyframes clSpark{
  0%,100%{ opacity: 0; transform: scale(.6); }
  50%    { opacity: 1; transform: scale(1.2); }
}

/* Put content above decor */
.contact-live > :not(.cl-bg){ position: relative; z-index: 1; }

/* Open/Closed live badge */
.cl-status{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,163,115,.4);
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-800, #2e402d);
  opacity: 0;
  transform: translateY(-10px);
  animation: clFadeDown .9s cubic-bezier(.2,.8,.2,1) .1s forwards;
  transition: border-color .4s ease, background .4s ease;
}
.cl-status[data-open="true"]{ border-color: rgba(58,115,60,.45); }
.cl-status[data-open="false"]{ border-color: rgba(200,120,90,.5); color: #8a4a3a; }
@keyframes clFadeDown{ to{ opacity:1; transform: translateY(0); } }

.cl-status__dot{
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.cl-status[data-open="true"]  .cl-status__dot{ background: #4aa752; box-shadow: 0 0 0 2px rgba(74,167,82,.2); }
.cl-status[data-open="false"] .cl-status__dot{ background: #c78058; box-shadow: 0 0 0 2px rgba(199,128,88,.2); }

.cl-status__pulse{
  position: absolute; inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: clPulse 2s ease-out infinite;
}
.cl-status__pulse--2{ animation-delay: 1s; }
.cl-status[data-open="true"]  .cl-status__pulse{ background: #4aa752; }
.cl-status[data-open="false"] .cl-status__pulse{ background: #c78058; }
@keyframes clPulse{
  0%  { transform: scale(1);   opacity: .55; }
  100%{ transform: scale(2.6); opacity: 0; }
}

/* Eyebrow + title */
.cl-eyebrow{
  display: block;
  margin-top: 22px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: .9rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--caramel, #d4a373);
  opacity: 0;
  animation: clFadeUp .9s ease .35s forwards;
}
.cl-title{
  margin: 10px 0 18px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: 1.05;
  color: var(--green-800, #2e402d);
  opacity: 0;
  animation: clFadeUp .9s cubic-bezier(.2,.8,.2,1) .5s forwards;
}
.cl-title em{
  font-style: italic;
  position: relative;
  background: linear-gradient(135deg, var(--caramel, #d4a373) 0%, #c89966 45%, var(--green-800, #2e402d) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 .08em;
}
.cl-title em::after{
  content: "";
  position: absolute; left: 4%; right: 4%; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel, #d4a373) 20%, var(--caramel, #d4a373) 80%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  animation: clUnderline 1s cubic-bezier(.6,.1,.3,1) 1.2s forwards;
  border-radius: 2px;
}
@keyframes clUnderline{ to{ transform: scaleX(1); } }
@keyframes clFadeUp{ to{ opacity:1; transform: translateY(0); } }

.cl-flourish{
  width: min(80%, 300px);
  height: 22px;
  display: block;
  margin: 4px 0 14px;
  fill: none;
  stroke: var(--caramel, #d4a373);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: .75;
}
.cl-flourish path{
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: clDraw 1.6s cubic-bezier(.6,.1,.3,1) .7s forwards;
}
.cl-flourish circle{
  fill: var(--caramel, #d4a373);
  opacity: 0;
  transform-origin: center;
  animation: clSparkIn .6s ease 2.1s forwards;
}
@keyframes clDraw{ to{ stroke-dashoffset: 0; } }
@keyframes clSparkIn{ 0%{ opacity:0; transform: scale(0);} 60%{ opacity:1; transform: scale(1.6);} 100%{ opacity:.85; transform: scale(1);} }

.cl-sub{
  margin: 0 0 28px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: #6f5a43;
  opacity: 0;
  animation: clFadeUp .9s ease .85s forwards;
}
.cl-sub em{ color: var(--green-800, #2e402d); font-weight: 500; font-style: italic; }

/* Analog clock */
.cl-clock{
  position: relative;
  width: 240px;
  margin: 10px auto 28px;
  opacity: 0;
  transform: scale(.9);
  animation: clClockIn 1.1s cubic-bezier(.2,.8,.2,1) 1s forwards;
}
@keyframes clClockIn{ to{ opacity: 1; transform: scale(1); } }

.cl-clock__halo{
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,163,115,.35) 0%, rgba(212,163,115,0) 70%);
  filter: blur(20px);
  z-index: -1;
  animation: clHalo 4s ease-in-out infinite;
}
@keyframes clHalo{
  0%,100%{ opacity: .6; transform: scale(1); }
  50%    { opacity: 1;  transform: scale(1.06); }
}
.cl-clock__svg{ width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 30px rgba(46,64,45,.18)); }

.cl-digital{
  margin-top: 14px;
  text-align: center;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--caramel, #d4a373);
}
.cl-digital__sep{ margin: 0 .5em; opacity: .5; }

/* Quote */
.cl-quote{
  position: relative;
  margin: 14px auto 30px;
  padding: 0 20px;
  max-width: 460px;
  text-align: center;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: #5a4a35;
  opacity: 0;
  animation: clFadeUp 1s ease 1.6s forwards;
}
.cl-quote em{
  font-style: italic;
  background: linear-gradient(135deg, var(--caramel, #d4a373) 0%, var(--green-800, #2e402d) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.cl-quote__mark{
  font-family: 'Playfair Display', var(--serif, 'Cormorant Garamond', serif);
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -.35em;
  color: var(--caramel, #d4a373);
  opacity: .42;
  margin-right: .1em;
}
.cl-quote__mark--end{ margin-right: 0; margin-left: .1em; }

/* CTA actions */
.cl-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  opacity: 0;
  animation: clFadeUp 1s ease 1.9s forwards;
}
.cl-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
}
.cl-cta svg{ flex-shrink: 0; }
.cl-cta--primary{ box-shadow: 0 12px 30px -12px rgba(46,64,45,.45); }

/* ---- Responsive ---- */
@media (max-width: 960px){
  .contact-live{ padding: 44px 28px 36px; border-radius: 26px; }
  .cl-clock{ width: 210px; }
}
@media (max-width: 720px){
  .contact-live{ padding: 38px 20px 30px; border-radius: 22px; }
  .cl-clock{ width: 180px; margin: 6px auto 22px; }
  .cl-quote{ padding: 0 10px; }
  .cl-actions .cl-cta{ padding: 12px 20px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce){
  .contact-live *{ animation: none !important; }
  .cl-status, .cl-eyebrow, .cl-title, .cl-sub, .cl-quote, .cl-actions, .cl-clock{ opacity: 1; transform: none; }
  .cl-flourish path{ stroke-dashoffset: 0; }
  .cl-title em::after{ transform: scaleX(1); }
  .cl-status__pulse{ display: none; }
}

/* ============================================================
   PAGES LÉGALES — Ambiance subtile partagée + hero redesigné
   S'applique à .page-legal (mentions, CGV, confidentialité, cookies)
   ============================================================ */
.page-legal{ position: relative; overflow-x: hidden; }

/* Ambient background : couche fixe derrière tout le contenu */
.legal-ambient{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-legal .nav,
.page-legal .legal-hero,
.page-legal .legal-body,
.page-legal .footer{
  position: relative;
  z-index: 1;
}

.la-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .42;
  animation: laBlob 18s ease-in-out infinite;
}
.la-blob--1{ top:-8%;  left:-6%;  width: 42%; height: 42%; background: rgba(212,163,115,.45); }
.la-blob--2{ top: 35%; right:-10%; width: 38%; height: 38%; background: rgba(46,64,45,.28); animation-delay: -6s; }
.la-blob--3{ bottom:-12%; left: 30%; width: 44%; height: 44%; background: rgba(212,163,115,.35); animation-delay: -11s; }
@keyframes laBlob{
  0%,100%{ transform: translate(0,0) scale(1); }
  33%    { transform: translate(18px,-22px) scale(1.06); }
  66%    { transform: translate(-20px, 14px) scale(.96); }
}

.la-leaf{
  position: absolute;
  width: 40px; height: 40px;
  color: var(--caramel, #d4a373);
  opacity: .18;
  animation: laLeaf 12s ease-in-out infinite;
}
.la-leaf--1{ top: 14%;  right: 6%; animation-delay: -2s; }
.la-leaf--2{ top: 54%;  left: 3%;  transform: scaleX(-1); color: var(--green-800, #2e402d); opacity: .14; animation-name: laLeafFlipped; animation-delay: -5s; }
.la-leaf--3{ bottom:10%; right:14%; width: 30px; height: 30px; opacity: .16; animation-delay: -8s; }
@keyframes laLeaf{
  0%,100%{ transform: translateY(0) rotate(-6deg); }
  50%    { transform: translateY(-18px) rotate(8deg); }
}
@keyframes laLeafFlipped{
  0%,100%{ transform: scaleX(-1) translateY(0) rotate(-6deg); }
  50%    { transform: scaleX(-1) translateY(-18px) rotate(8deg); }
}

.la-spark{
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--caramel, #d4a373);
  box-shadow: 0 0 10px rgba(212,163,115,.7);
  opacity: 0;
  animation: laSpark 4.2s ease-in-out infinite;
}
.la-spark--1{ top: 22%; left: 14%; animation-delay: 0s; }
.la-spark--2{ top: 68%; right: 22%; animation-delay: -1.2s; background: var(--green-800, #2e402d); box-shadow: 0 0 8px rgba(46,64,45,.55); }
.la-spark--3{ bottom: 30%; left: 10%; animation-delay: -2s; }
.la-spark--4{ top: 44%; right: 8%; animation-delay: -3s; width: 3px; height: 3px; }
@keyframes laSpark{
  0%,100%{ opacity: 0; transform: scale(.6); }
  50%    { opacity: 1; transform: scale(1.3); }
}

/* ---------- HERO redesigné « Mentions légales » ---------- */
.legal-hero--ml{
  position: relative;
  padding: 150px 24px 60px;
  text-align: center;
  overflow: hidden;
}
.legal-hero--ml .lh-inner{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 24px 30px;
  border-radius: 28px;
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(212,163,115,.14) 0%, rgba(212,163,115,0) 55%),
    radial-gradient(140% 120% at 100% 100%, rgba(46,64,45,.10) 0%, rgba(46,64,45,0) 55%),
    linear-gradient(180deg, rgba(253,248,240,.85) 0%, rgba(245,236,221,.75) 100%);
  border: 1px solid rgba(212,163,115,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -34px rgba(46,64,45,.22);
}
.legal-hero--ml .eyebrow{
  display: inline-block;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: .88rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--caramel, #d4a373);
  opacity: 0;
  animation: laFadeUp .9s ease .1s forwards;
}
.legal-hero--ml .lh-title{
  margin: 10px 0 8px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.02;
  color: var(--green-800, #2e402d);
  opacity: 0;
  animation: laFadeUp 1s cubic-bezier(.2,.8,.2,1) .3s forwards;
}
.legal-hero--ml .lh-title em{
  font-style: italic;
  background: linear-gradient(135deg, var(--caramel, #d4a373) 0%, #c89966 45%, var(--green-800, #2e402d) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding: 0 .06em;
}
.legal-hero--ml .lh-title em::after{
  content: "";
  position: absolute; left: 4%; right: 4%; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--caramel, #d4a373) 20%, var(--caramel, #d4a373) 80%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  animation: laUnderline 1s cubic-bezier(.6,.1,.3,1) 1.1s forwards;
  border-radius: 2px;
}
.legal-hero--ml .lh-flourish{
  display: block;
  width: min(80%, 300px);
  height: 22px;
  margin: 8px auto 16px;
  fill: none;
  stroke: var(--caramel, #d4a373);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: .75;
}
.legal-hero--ml .lh-flourish path{
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: laDraw 1.6s cubic-bezier(.6,.1,.3,1) .6s forwards;
}
.legal-hero--ml .lh-flourish circle{
  fill: var(--caramel, #d4a373);
  opacity: 0;
  transform-origin: center;
  animation: laSparkIn .6s ease 2s forwards;
}
@keyframes laDraw{ to{ stroke-dashoffset: 0; } }
@keyframes laSparkIn{ 0%{ opacity:0; transform: scale(0);} 60%{ opacity:1; transform: scale(1.6);} 100%{ opacity:.85; transform: scale(1);} }
@keyframes laFadeUp{ from{ opacity: 0; transform: translateY(12px); } to{ opacity: 1; transform: translateY(0); } }
@keyframes laUnderline{ to{ transform: scaleX(1); } }

.legal-hero--ml .lh-sub{
  max-width: 540px;
  margin: 0 auto 18px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: #6f5a43;
  opacity: 0;
  animation: laFadeUp 1s ease .75s forwards;
}
.legal-hero--ml .lh-sub em{
  font-style: italic;
  color: var(--green-800, #2e402d);
  font-weight: 500;
}
.legal-hero--ml .legal-updated{
  display: inline-block;
  margin-top: 6px;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel, #d4a373);
  opacity: 0;
  animation: laFadeUp 1s ease 1s forwards;
}

/* Body — carte cohérente avec l'ambiance */
.page-legal .legal-body{
  padding: 50px 0 100px;
}
.page-legal .legal-content{
  position: relative;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212,163,115,.22);
  border-radius: 22px;
  padding: 42px 48px;
  box-shadow: 0 24px 48px -28px rgba(46,64,45,.18);
}

/* ---- Mobile ---- */
@media (max-width: 720px){
  .legal-hero--ml{ padding: 120px 14px 40px; }
  .legal-hero--ml .lh-inner{ padding: 28px 18px 22px; border-radius: 22px; }
  .page-legal .legal-content{ padding: 26px 20px; border-radius: 18px; }
  .la-blob{ filter: blur(50px); }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce){
  .legal-ambient *{ animation: none !important; }
  .legal-hero--ml *{ animation: none !important; opacity: 1 !important; transform: none !important; }
  .legal-hero--ml .lh-flourish path{ stroke-dashoffset: 0; }
  .legal-hero--ml .lh-title em::after{ transform: scaleX(1); }
}

/* =======================================================
   Cookie consent banner
   ======================================================= */
.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  z-index: 9999;
  width: min(640px, calc(100vw - 24px));
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
  font-family: inherit;
  pointer-events: none;
}
.cookie-banner--in{
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner--out{
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid rgba(212, 163, 115, 0.35);
  border-radius: 18px;
  box-shadow:
    0 22px 60px -18px rgba(46, 64, 45, 0.35),
    0 1px 0 rgba(255,255,255,0.8) inset;
}
.cookie-banner__icon{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7ead6 0%, #e8d3ae 100%);
  color: #8a4a1e;
  box-shadow: inset 0 0 0 1px rgba(212, 163, 115, 0.5);
  flex: 0 0 auto;
}
.cookie-banner__text{
  color: #2e402d;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner__title{
  display: block;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 600;
  font-size: 18px;
  color: #2e402d;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.cookie-banner__text p{
  margin: 0;
  color: rgba(46, 64, 45, 0.82);
}
.cookie-banner__text a{
  color: #8a4a1e;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s ease;
}
.cookie-banner__text a:hover{
  color: #6b3815;
}
.cookie-banner__actions{
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}
.cookie-banner__btn{
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.cookie-banner__btn--primary{
  background: linear-gradient(135deg, #d4a373 0%, #b8855a 100%);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(138, 74, 30, 0.55);
}
.cookie-banner__btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(138, 74, 30, 0.65);
}
.cookie-banner__btn--ghost{
  background: transparent;
  color: rgba(46, 64, 45, 0.75);
  border: 1px solid rgba(46, 64, 45, 0.22);
}
.cookie-banner__btn--ghost:hover{
  background: rgba(46, 64, 45, 0.06);
  color: #2e402d;
}

/* Mobile */
@media (max-width: 640px){
  .cookie-banner{
    bottom: 10px;
    width: calc(100vw - 16px);
  }
  .cookie-banner__inner{
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 14px 16px;
  }
  .cookie-banner__actions{
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .cookie-banner__title{ font-size: 17px; }
  .cookie-banner__text{ font-size: 13.5px; }
  .cookie-banner__btn{ padding: 9px 14px; font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce){
  .cookie-banner{
    transition: opacity .2s ease;
    transform: translate(-50%, 0);
  }
  .cookie-banner--out{ transform: translate(-50%, 0); }
}
