:root {
  --b: #48a6a5;
  --bd: #328988;
  --bdd: #1d5f5e;
  --bp: #ddf0f0;
  --g: #bbd572;
  --gd: #9ab756;
  --gp: #f0f7d8;
  --ink: #0e1117;
  --ink2: #2d3340;
  --ink3: #5c6478;
  --cream: #f7f5f0;
  --off: #f0ede6;
  --rule: rgba(14, 17, 23, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 302;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5vw;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.s {
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(24px);
  padding: 1rem 5vw;
  border-bottom: 1px solid var(--rule);
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.n-mark {
  width: 50px;
  height: 50px;
  position: relative;
  flex-shrink: 0;
}
.n-mark svg {
  width: 100%;
  height: 100%;
}
.n-name {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.n-sub {
  font-size: 0.67rem;
  color: var(--ink3);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.05rem;
}

.n-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.n-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.n-links a:hover {
  color: var(--ink);
}

.n-rdv {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}
.n-rdv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--b);
  transform: translateX(-105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.n-rdv:hover::after {
  transform: translateX(0);
}
.n-rdv span,
.n-rdv svg {
  position: relative;
  z-index: 1;
}
.n-rdv svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 301;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bdd);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 6rem 2rem 2rem;
  z-index: 300;
  transition: right 0.4s ease;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--g);
}
.mobile-menu .n-rdv {
  margin-top: 2rem;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 80px;
  }
}

.hero-l {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 3rem 6rem 5vw;
  position: relative;
  z-index: 2;
}

.h-overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: lineIn 0.8s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.h-overline-bar {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--g);
}
.h-overline-txt {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gd);
}

.h-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.4rem, 6.5vw, 6.5rem);
  line-height: 0.95;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  overflow: hidden;
}
.h-line {
  display: block;
  overflow: hidden;
}
.h-line-inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.h-line:nth-child(1) .h-line-inner {
  animation-delay: 0.2s;
}
.h-line:nth-child(2) .h-line-inner {
  animation-delay: 0.35s;
}
.h-line:nth-child(3) .h-line-inner {
  animation-delay: 0.5s;
}
.h-italic {
  font-style: italic;
  color: var(--b);
}

.h-body {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--ink3);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s ease forwards;
}

.h-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.85s ease forwards;
}
.cta-primary {
  background: var(--g);
  color: #fff;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gd);
  transform: translateY(105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-primary:hover::after {
  transform: translateY(0);
}
.cta-primary:hover {
  transform: translateY(-2px);
}
.cta-primary span,
.cta-primary svg {
  position: relative;
  z-index: 1;
}
.cta-primary svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.cta-sec {
  color: var(--ink);
  text-decoration: none;
  padding: 0.95rem 2rem;
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.cta-sec:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.cta-sec svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.h-stats {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fadeUp 0.7s 1.05s ease forwards;
}
.h-stat {
  padding: 1.5rem 2.5rem 1rem 0;
  border-right: 1px solid var(--rule);
  margin-right: 2.5rem;
}
.h-stat:last-child {
  border-right: none;
  margin-right: 0;
}
.h-stat-n {
  font-family: "DM Serif Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--b);
  line-height: 1;
}
.h-stat-l {
  font-size: 0.75rem;
  color: var(--ink3);
  margin-top: 0.3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-r {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
}

.slides-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.sl {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.sl.on {
  opacity: 1;
}
.sl-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sl-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Syne", sans-serif;
}
.sl:nth-child(1) .sl-ph {
  background: linear-gradient(170deg, #0d2e50 0%, #1a5080 100%);
}
.sl:nth-child(2) .sl-ph {
  background: linear-gradient(170deg, #1a3010 0%, #2e5820 100%);
}
.sl:nth-child(3) .sl-ph {
  background: linear-gradient(170deg, #1c1040 0%, #2e2060 100%);
}

.sl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 55%,
    transparent 100%
  );
}

.sl-label {
  position: absolute;
  bottom: 3rem;
  left: 15%;
  right: 3rem;
  color: #fff;
}
.sl-tag {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 0.6rem;
}
.sl-title {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}
.sl-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.sl-controls {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}
.sl-dot {
  width: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s ease;
  height: 6px;
}
.sl-dot.on {
  height: 32px;
  background: var(--g);
}

.sl-arrows {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.sl-arr {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sl-arr:hover {
  background: rgba(255, 255, 255, 0.22);
}
.sl-arr svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.marquee-strip {
  overflow: hidden;
  background: var(--g);
  padding: 0.9rem 0;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-s {
  padding: 9rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: #fff;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.5rem;
}
.s-tag-line {
  width: 28px;
  height: 2px;
  background: var(--g);
}
.s-h {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.s-h em {
  font-style: italic;
  color: var(--b);
}
.s-p {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pill-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.p-pill {
  background: var(--off);
  border: 1px solid rgba(14, 17, 23, 0.1);
  padding: 0.38rem 1rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink2);
  letter-spacing: 0.01em;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px 115px;
  gap: 10px;
}
.m {
  overflow: hidden;
  background: var(--off);
  position: relative;
}
.m img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.m:hover img {
  transform: scale(1.08);
}
.m .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 17, 23, 0.3);
  font-family: "Syne", sans-serif;
  font-weight: 600;
}
.m1 {
  grid-column: 1;
  grid-row: 1/3;
}
.m2 {
  grid-column: 2;
  grid-row: 1;
}
.m3 {
  grid-column: 2;
  grid-row: 2;
}
.m-row {
  grid-column: 1/-1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ms {
  overflow: hidden;
  background: var(--off);
  height: 115px;
}
.ms img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.ms:hover img {
  transform: scale(1.08);
}
.ms .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 17, 23, 0.25);
  font-family: "Syne", sans-serif;
  font-weight: 600;
}
.m1 .ph {
  background: linear-gradient(155deg, #bdd5e8, #8abcd5);
}
.m2 .ph {
  background: linear-gradient(155deg, #cce0b8, #9dc87a);
}
.m3 .ph {
  background: linear-gradient(155deg, #ddd8d0, #c5bfb5);
}
.ms:nth-child(1) .ph {
  background: linear-gradient(155deg, #d8ecc8, #b0d88a);
}
.ms:nth-child(2) .ph {
  background: linear-gradient(155deg, #c8d8e8, #a0bcd5);
}
.ms:nth-child(3) .ph {
  background: linear-gradient(155deg, #d0e5cc, #a8ccaa);
}
.ms:nth-child(4) .ph {
  background: linear-gradient(155deg, #e5ddd5, #ccc0b0);
}

.svc-s {
  padding: 9rem 5vw;
  background: var(--ink);
}
.svc-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.svc-top .s-h {
  color: #fff;
}
.svc-top .s-tag {
  color: rgba(255, 255, 255, 0.4);
}
.svc-top .s-tag-line {
  background: var(--g);
}
.svc-top-r p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
}
.svc-rdv {
  color: #fff;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.2rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.svc-rdv:hover {
  color: var(--g);
  border-color: var(--g);
}
.svc-rdv svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s;
}
.svc-rdv:hover svg {
  transform: translateX(4px);
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.svc-card {
  background: var(--ink2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.svc-card:hover {
  background: #252d40;
}
.svc-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--g);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-card-accent {
  height: 100%;
}
.svc-n {
  font-family: "DM Serif Display", serif;
  font-size: 5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.svc-ico {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.svc-card:hover .svc-ico {
  border-color: var(--g);
  background: rgba(145, 191, 66, 0.08);
}
.svc-ico svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill 0.3s;
}
.svc-card:hover .svc-ico svg {
  fill: var(--g);
}
.svc-card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.svc-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

.team-s {
  padding: 9rem 5vw;
  background: var(--off);
}
.team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(14, 17, 23, 0.06);
}

.tc {
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--b);
  transform: translateY(105%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}
.tc:hover::before {
  transform: translateY(0);
}
.tc.expanded:hover::before {
  transform: translateY(105%);
}
.tc:hover {
  transform: translateY(-4px);
}
.tc.expanded:hover {
  transform: none;
}

.tc-img {
  height: 230px;
  overflow: hidden;
  background: var(--off);
  position: relative;
}
.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tc:hover .tc-img img {
  transform: scale(1.08);
}
.tc-img .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14, 17, 23, 0.3);
  font-family: "Syne", sans-serif;
  font-weight: 600;
}
.tc:nth-child(1) .tc-img .ph {
  background: linear-gradient(155deg, #ccdde8, #9abfd5);
}
.tc:nth-child(2) .tc-img .ph {
  background: linear-gradient(155deg, #ccddb8, #99c880);
}
.tc:nth-child(3) .tc-img .ph {
  background: linear-gradient(155deg, #cdd0dd, #a8b0c8);
}

.tc-body {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}
.tc-role {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--b);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.tc:hover .tc-role {
  color: rgba(255, 255, 255, 0.6);
}
.tc.expanded:hover .tc-role {
  color: var(--b);
}
.tc-body h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.tc:hover .tc-body h3 {
  color: #fff;
}
.tc.expanded:hover .tc-body h3 {
  color: var(--ink);
}
.tc-body p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink3);
  line-height: 1.6;
  transition: color 0.3s;
}
.tc:hover .tc-body p {
  color: rgba(255, 255, 255, 0.65);
}
.tc.expanded:hover .tc-body p {
  color: var(--ink3);
}
.tc-foot {
  padding: 1rem 1.8rem 1.5rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(14, 17, 23, 0.07);
  transition: border-color 0.3s;
}
.tc:hover .tc-foot {
  border-color: rgba(255, 255, 255, 0.15);
}
.tc.expanded:hover .tc-foot {
  border-color: rgba(14, 17, 23, 0.07);
}
.tc-link {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gd);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color 0.3s,
    gap 0.2s;
}
.tc:hover .tc-link {
  color: #fff;
}
.tc.expanded:hover .tc-link {
  color: var(--gd);
}
.tc-link:hover {
  gap: 0.7rem;
}
.tc-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.tc-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}
.tc.expanded .tc-details {
  max-height: 600px;
}
.tc-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--b);
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
  margin-top: 0.8rem;
  transition: all 0.3s;
  position: relative;
  z-index: 3;
}
.tc:hover .tc-toggle {
  color: rgba(255, 255, 255, 0.8);
}
.tc.expanded:hover .tc-toggle {
  color: var(--b);
}
.tc-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s;
}
.tc.expanded .tc-toggle svg {
  transform: rotate(180deg);
}
.tc-toggle .toggle-less {
  display: none;
}
.tc.expanded .tc-toggle .toggle-more {
  display: none;
}
.tc.expanded .tc-toggle .toggle-less {
  display: inline;
}

.hours-s {
  padding: 9rem 5vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.h-bigs {
  display: flex;
  gap: 1.2rem;
  margin: 2.5rem 0 2.8rem;
}
.h-big {
  flex: 1;
  background: var(--ink);
  color: #fff;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}
.h-big::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b), var(--g));
}
.h-big-val {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  color: var(--bp);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.h-big-lbl {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

.h-phone {
  background: var(--b);
  color: #fff;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.h-phone-ico {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-phone-ico svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.h-phone-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Syne", sans-serif;
  font-weight: 600;
}
.h-phone-num {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
}
.h-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.h-row:last-child {
  border-bottom: none;
}
.h-day {
  width: 110px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink3);
  flex-shrink: 0;
}
.h-time {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink);
  flex: 1;
}
.h-closed {
  color: rgba(14, 17, 23, 0.22);
}
.h-badge {
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--gp);
  color: var(--gd);
  padding: 0.18rem 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.access-s {
  padding: 9rem 5vw;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.access-s .s-tag {
  color: rgba(255, 255, 255, 0.35);
}
.access-s .s-tag-line {
  background: var(--g);
}
.access-s .s-h {
  color: #fff;
}
.access-s .s-p {
  color: rgba(255, 255, 255, 0.42);
}

.map-box {
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.4) brightness(0.8);
}

.addr-line {
  margin: 1.5rem 0 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--b);
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 400;
}

.tpt-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.tpt {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 1.2rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.tpt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(6px);
}
.tpt-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tpt-badge.t {
  background: #d4a020;
  color: #fff;
}
.tpt-badge.r {
  background: var(--b);
  color: #fff;
}
.tpt-badge.b {
  background: var(--g);
  color: #fff;
}
.tpt-nm {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.tpt-st {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
}

.btn-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.btn-w {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-w:hover {
  background: var(--bp);
  transform: translateY(-1px);
}
.btn-w svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.btn-ghost-w {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost-w:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-ghost-w svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.faq-s {
  padding: 9rem 5vw;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 6rem;
}

.faq-big-num {
  font-family: "DM Serif Display", serif;
  font-size: 12rem;
  font-weight: 400;
  color: var(--off);
  line-height: 1;
  margin-bottom: -2rem;
  animation: numPulse 3s ease-in-out infinite;
}
@keyframes numPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.faq-i {
  border-top: 1.5px solid var(--rule);
}
.faq-i:last-child {
  border-bottom: 1.5px solid var(--rule);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--b);
}
.faq-plus {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(14, 17, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s;
}
.faq-plus svg {
  width: 12px;
  height: 12px;
  fill: var(--ink2);
  transition: fill 0.2s;
}
.faq-i.on .faq-plus {
  background: var(--g);
  border-color: var(--g);
  transform: rotate(45deg);
}
.faq-i.on .faq-plus svg {
  fill: #fff;
}
.faq-a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink3);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding-bottom 0.4s ease;
}
.faq-i.on .faq-a {
  max-height: 200px;
  padding-bottom: 1.4rem;
}

.cta-s {
  padding: 8rem 5vw;
  background: var(--g);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.04) 20px,
    rgba(255, 255, 255, 0.04) 40px
  );
  animation: stripeDrift 8s linear infinite;
}
@keyframes stripeDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 80px;
  }
}

.cta-left {
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
}
.cta-left h2 em {
  font-style: italic;
  color: var(--ink);
}
.cta-left p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1.2rem;
  line-height: 1.7;
}

.cta-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.cta-btn-main {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition:
    background 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}
.cta-btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bd);
  transform: translateX(-105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-btn-main:hover::after {
  transform: translateX(0);
}
.cta-btn-main:hover {
  transform: translateY(-2px);
}
.cta-btn-main span,
.cta-btn-main svg {
  position: relative;
  z-index: 1;
}
.cta-btn-main svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.cta-btn-sec {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.cta-btn-sec:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-btn-sec svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

footer {
  background: var(--bdd);
  color: #fff;
  padding: 5rem 5vw 2.5rem;
}
.ft {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-about p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
  margin-top: 1.2rem;
  max-width: 280px;
}
footer h5 {
  font-family: "Syne", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1.3rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
footer ul a {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--g);
}
.fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

@keyframes lineIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  nav.s {
    padding: 0.9rem 1.5rem;
  }
  .n-links {
    display: none;
  }
  .n-rdv {
    display: none;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu,
  .menu-overlay {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-l {
    padding: 7rem 1.5rem 3rem;
  }
  .hero-r {
    height: 360px;
  }
  .slides-container {
    clip-path: none;
  }
  .about-s,
  .hours-s,
  .access-s,
  .faq-s {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 5rem 1.5rem;
  }
  .svc-s,
  .team-s {
    padding: 5rem 1.5rem;
  }
  .svc-top,
  .team-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .svc-cards,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cta-s {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  footer {
    padding: 3.5rem 1.5rem 2rem;
  }
  .fb {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .faq-big-num {
    font-size: 8rem;
  }
  .faq-sticky {
    position: static;
  }
}

#legalModalOverlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#legalModalOverlay.active {
  opacity: 1;
  pointer-events: all;
}

.legal-modal {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 90%;
  max-width: 680px;
  z-index: 9999;
  background: var(--bdd);
  color: #fff;
  overflow-y: auto;
  padding: 3rem 3rem 3rem 3rem;
  box-shadow: -10px 0 60px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-modal.active {
  right: 0;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s;
}
.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  animation: zoomIn 0.3s;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
}
.lightbox-close:hover {
  transform: scale(1.1);
  color: var(--g);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10001;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--g);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
  fill: #000;
}
.lightbox-prev:hover svg,
.lightbox-next:hover svg {
  fill: #fff;
}
.lightbox-prev {
  left: 2rem;
}
.lightbox-next {
  right: 2rem;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.legal-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}
.legal-modal-close:hover {
  background: var(--g);
  color: #fff;
  transform: rotate(90deg);
}

.legal-modal h1 {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.legal-modal h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--g);
  margin: 2rem 0 1rem;
}
.legal-modal h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.5rem 0 0.75rem;
}
.legal-modal p {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}
.legal-modal ul {
  margin: 1rem 0 1rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}
.legal-modal li {
  margin-bottom: 0.5rem;
}
.legal-modal a {
  color: var(--g);
  text-decoration: none;
  transition: opacity 0.2s;
}
.legal-modal a:hover {
  opacity: 0.8;
}

/* Bandeau cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--cream);
  box-shadow: 0 -4px 24px rgba(14, 17, 23, 0.1);
  padding: 1.5rem 5vw;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid var(--g);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bp);
  border-radius: 50%;
}
.cookie-icon svg {
  width: 24px;
  height: 24px;
  color: var(--b);
}
.cookie-text {
  flex: 1;
}
.cookie-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink3);
  margin: 0;
  font-family: "DM Sans", sans-serif;
}
.cookie-text strong {
  color: var(--ink);
  font-weight: 600;
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.75rem 1.8rem;
  border: none;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.cookie-btn-primary {
  background: var(--g);
  color: white;
}
.cookie-btn-primary:hover {
  background: var(--gd);
  transform: translateY(-2px);
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--rule);
}
.cookie-btn-secondary:hover {
  background: var(--off);
  border-color: var(--ink3);
}
@media (max-width: 768px) {
  .h-overline-txt {
    font-size: 0.58rem;
  }
  .h-overline-bar {
    max-width: 40px;
  }
  .cookie-banner {
    padding: 1.25rem 1.25rem;
    /* Évite que la barre du navigateur (iOS Safari) cache les boutons */
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    /* Si l'écran est très petit, permet le scroll */
    max-height: 90dvh;
    overflow-y: auto;
    /* Fixe le bug de rendu sur certains mobiles */
    -webkit-overflow-scrolling: touch;
  }
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .cookie-icon {
    /* Masque l'icône sur très petits écrans pour gagner de la place */
    display: none;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    /* Zone de tap plus grande sur mobile */
    padding: 0.9rem 1.8rem;
    min-height: 48px;
  }
}
