/* ============================================================
   BEACH PADDLE — Design System
   Premium Paddle & Kayak · Saint-Maur-des-Fossés
   ============================================================ */

/* === TOKENS === */
:root {
  --c-bg:          #FAF9F6;
  --c-dark:        #1A2116;
  --c-green:       #2D5A27;
  --c-green-light: #3A7232;
  --c-water:       #4A7C8E;
  --c-sand:        #C87A38;
  --c-amber:       #D4A853;
  --c-text:        #2C2C2A;
  --c-muted:       #7A7A6E;
  --c-border:      #E0DDD6;
  --c-surface:     #F2F0EB;
  --c-white:       #FEFEFE;

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

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 6px;
  --radius-lg: 12px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol { list-style: none; }

/* === UTILITIES === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === SKIP LINK (a11y) === */
.skip-link {
  position: fixed;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  background: var(--c-dark);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

/* === TYPOGRAPHY SYSTEM === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: var(--sp-4);
}

.section-head {
  margin-bottom: var(--sp-10);
}

.section-head h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
}

.section-head p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease-out);
  white-space: nowrap;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-sand);
  color: #fff;
}
.btn-primary:hover {
  background: #b8845a;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 149, 106, 0.35);
}

.btn-dark {
  background: var(--c-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #2a3825;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 33, 22, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-dark);
  border: 1.5px solid var(--c-dark);
}
.btn-outline:hover {
  background: var(--c-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost-sm {
  background: transparent;
  color: var(--c-muted);
  border: 1px solid rgba(26,33,22,0.2);
  font-size: 0.8125rem;
  padding: 0.45em 1em;
  border-radius: var(--radius);
}
.btn-ghost-sm:hover {
  color: var(--c-dark);
  border-color: rgba(26,33,22,0.5);
  transform: translateY(-1px);
}

.btn-sand {
  background: var(--c-sand);
  color: #fff;
}
.btn-sand:hover {
  background: #b87f55;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 149, 106, 0.35);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease-in-out),
              box-shadow var(--dur) var(--ease-in-out);
}

.nav.is-scrolled {
  background: rgba(26, 33, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* === NAV DROPDOWN === */
.nav-dropdown {
  position: relative;
  margin-left: auto;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 18px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.nav-dropdown-burger {
  width: 18px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  flex-shrink: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: rgba(26, 33, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 910;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu[aria-hidden="true"] {
  visibility: hidden;
}

.nav-dropdown-menu[aria-hidden="false"] {
  visibility: visible;
}

.nav-dropdown-menu a {
  padding: 10px 22px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-dropdown-menu a:hover {
  color: var(--c-sand);
  background: rgba(196, 149, 106, 0.08);
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-sand);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.nav-cta:hover {
  background: #b8845a;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
  transform-origin: center;
}

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

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: -0.02em;
  transform: translateX(-20px);
  opacity: 0;
  transition: color 0.2s, transform 0.4s var(--ease-out), opacity 0.4s;
}

.mobile-menu.is-open .mobile-menu-links a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu-links a:nth-child(1)  { transition-delay: 0.04s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(2)  { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(3)  { transition-delay: 0.12s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(4)  { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(5)  { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(6)  { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(7)  { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(8)  { transition-delay: 0.32s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(9)  { transition-delay: 0.36s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(10) { transition-delay: 0.40s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(11) { transition-delay: 0.44s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(12) { transition-delay: 0.48s; }
.mobile-menu.is-open .mobile-menu-links a:nth-child(13) { transition-delay: 0.52s; }

.mobile-menu-links a:hover { color: var(--c-sand); }

.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-6);
}

.mobile-menu-footer a {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2);
  transition: color 0.2s;
}
.mobile-menu-footer a:first-child {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: var(--sp-3);
}
.mobile-menu-footer a:hover { color: var(--c-sand); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-20);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 80%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 33, 22, 0.71);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: auto;
  margin-right: var(--sp-16);
  padding-inline: 0;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s var(--ease-out) 0.3s forwards;
}

.hero-tag::before {
  display: none;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-sand);
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s var(--ease-out) 0.75s forwards;
}

.hero-sub-main {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.hero-sub-season {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-sub-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-sand);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s var(--ease-out) 0.95s forwards;
}


.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  opacity: 0;
  animation: fadeIn 0.6s ease 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.3));
  animation: scrollPulse 2.5s ease-in-out infinite 2s;
}

/* === INTRO STRIP === */
.intro-strip {
  background: var(--c-dark);
  padding: var(--sp-12) 0;
  overflow: hidden;
}

.intro-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.intro-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-left: var(--sp-6);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.intro-item:first-child { border-left: none; padding-left: 0; }

.intro-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-sand);
}

.intro-item-value {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.intro-item-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* === TARIFS === */
.section-tarifs {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  align-items: start;
}

.tarifs-intro {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
}

.tarifs-intro h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}

.tarifs-intro p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  max-width: 34ch;
}

.tarifs-note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.6;
  padding: var(--sp-4);
  background: var(--c-surface);
  border-left: 2px solid var(--c-green);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.tarifs-payment-note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-top: var(--sp-3);
  padding: 0 var(--sp-1);
  font-style: italic;
}

.tarifs-contrat {
  margin-top: var(--sp-3);
  font-size: 0.875rem;
  color: var(--c-muted);
}

.tarifs-contrat-link {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}

.tarifs-contrat-link:hover {
  color: var(--c-dark);
}

.tarifs-tables {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.tarifs-block {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--c-border);
}

.tarifs-block-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tarifs-block-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tarifs-block-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tarifs-block-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-dark);
  letter-spacing: -0.01em;
}

.tarifs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tarifs-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  table-layout: fixed;
}

.tarifs-table thead tr {
  border-bottom: 1px solid var(--c-border);
}

.tarifs-table thead th {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: var(--sp-3) var(--sp-6);
  text-align: center;
  white-space: nowrap;
}

.tarifs-table thead th:first-child {
  text-align: left;
  width: 40%;
}

.tarifs-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}

.tarifs-table tbody tr:last-child { border-bottom: none; }

.tarifs-table tbody tr:hover { background: var(--c-surface); }

.tarifs-table tbody td {
  padding: var(--sp-4) var(--sp-6);
  font-size: 0.9375rem;
}

.tarifs-table tbody td:first-child {
  font-weight: 500;
  color: var(--c-dark);
  white-space: nowrap;
}

.tarifs-table tbody td:not(:first-child) {
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--c-muted);
}

.tarifs-table .price {
  font-weight: 600;
  color: var(--c-dark);
  font-size: 1rem;
}

.tarifs-table .price-highlight {
  color: var(--c-green);
}

.tarifs-special {
  padding: var(--sp-4) var(--sp-6);
  background: rgba(45, 90, 39, 0.06);
  border-top: 1px solid rgba(45, 90, 39, 0.12);
  font-size: 0.875rem;
  color: var(--c-green);
  font-weight: 500;
  text-align: center;
}

/* === HORAIRES === */
.section-horaires {
  background: var(--c-dark);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}

.horaires-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.09;
}

.horaires-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(100%);
}

.horaires-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.horaires-head h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.horaires-head p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.horaires-list {
  display: flex;
  flex-direction: column;
}

.horaires-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: var(--sp-4);
}

.horaires-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.horaires-day {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  line-height: 1.5;
  align-self: start;
}

.horaires-time {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.5;
  align-self: start;
}

.horaires-season-block {
  margin-bottom: var(--sp-6);
}

.horaires-season-block:last-of-type {
  margin-bottom: 0;
}

.horaires-season-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-bottom: var(--sp-2);
  margin-top: var(--sp-6);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(196, 149, 106, 0.2);
}

.horaires-season-block:first-child .horaires-season-title {
  margin-top: 0;
}

.horaires-meteo {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.horaires-meteo::before {
  content: '☁';
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.6;
  line-height: 1.4;
}

.horaires-season {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(196, 149, 106, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-sand);
  letter-spacing: 0.04em;
}

.horaires-season::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-sand);
}

/* === RÉSERVATIONS === */
.section-reservations {
  position: relative;
  padding: var(--sp-32) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.reservations-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reservations-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.reservations-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 33, 22, 0.48);
}

.reservations-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  max-width: 56ch;
}

.reservations-content h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.reservations-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.reservations-intro {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.reservations-intro-main {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
}

.reservations-intro-note {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.reservations-intro-note::before {
  display: none;
}

.reservations-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.phone-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
}

.reservations-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.reservations-actions .btn.btn-ghost {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.reservations-actions .btn.btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.65);
}

.reservations-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* === LA BASE === */
.section-base {
  padding: 0;
  overflow: hidden;
}

.base-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.base-media {
  position: relative;
  overflow: hidden;
}

.base-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}

.base-media:hover img { transform: scale(1.03); }

.base-body {
  padding: var(--sp-20) var(--sp-16);
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
}

.base-body-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.base-body h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--c-dark);
  margin-bottom: var(--sp-6);
}

.base-body > p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 48ch;
}

.base-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.base-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--c-text);
}

.base-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

.base-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.base-plan-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: var(--sp-5);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.base-plan-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.base-plan-link:hover {
  color: var(--c-dark);
  border-bottom-color: var(--c-dark);
}

.base-plan-link:hover svg {
  transform: translateX(2px);
}

.base-team-strip {
  background: var(--c-dark);
  padding: var(--sp-8) var(--sp-16);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.base-team-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.base-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.base-team-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.base-team-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}

/* === GROUPES === */
.section-groupes {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.section-groupes .section-label { color: var(--c-sand); }

.groupes-head h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--c-dark);
  margin-bottom: var(--sp-3);
  white-space: nowrap;
}

.groupes-head p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--sp-10);
}

.groupes-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.groupe-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.groupe-card-media {
  position: absolute;
  inset: 0;
}

.groupe-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.groupe-card:hover .groupe-card-media img {
  transform: scale(1.04);
}

.groupe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 33, 22, 0.97) 0%,
    rgba(26, 33, 22, 0.78) 45%,
    rgba(26, 33, 22, 0.42) 100%
  );
}

.groupe-card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--sp-8) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: var(--sp-3);
}

.groupe-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-sand);
  border: 1px solid rgba(196, 149, 106, 0.4);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
}

.groupe-card-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  min-height: 1.5em;
}

.groupe-card-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

.groupe-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
  align-items: center;
}

.groupe-card-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.92);
}

.groupe-card-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-sand);
  flex-shrink: 0;
}

.groupe-card-cta {
  margin-top: var(--sp-2);
}

.groupes-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-1);
  margin-top: var(--sp-4);
}

.groupes-strip-item {
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-surface);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  text-align: center;
}

.groupes-strip-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-1);
}

.groupes-strip-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

@media (max-width: 1024px) {
  .groupes-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-groupes { padding: var(--sp-16) 0; }

  .groupes-cards {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .groupe-card { aspect-ratio: 4/3; }

  .groupe-card-body { padding: var(--sp-6); }

  .groupes-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
    margin-top: var(--sp-4);
  }

  .groupes-strip-item { padding: var(--sp-4); }
}

/* === BEACH PADDLE DOG === */
.section-paddledog {
  position: relative;
  padding: var(--sp-32) 0;
  background: var(--c-dark);
  overflow: hidden;
}

.section-paddledog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,149,106,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.paddledog-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(45,90,39,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.paddledog-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-20);
  align-items: center;
}

.paddledog-badges {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.paddledog-badges .section-label {
  margin-bottom: 0;
}

.paddledog-new {
  display: inline-block;
  background: var(--c-sand);
  color: var(--c-dark);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.paddledog-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: var(--sp-8);
  line-height: 1.15;
}

.paddledog-content > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.paddledog-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.paddledog-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.paddledog-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-sand);
  fill: none;
  flex-shrink: 0;
}

.paddledog-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--sp-6);
}

.paddledog-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-sand);
  line-height: 1;
}

.price-currency {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
  margin-left: 0.1em;
  letter-spacing: 0;
}

.paddledog-price-detail {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.paddledog-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.paddledog-slider {
  position: relative;
  width: 480px;
  max-width: 100%;
  flex-shrink: 0;
}

.paddledog-slides {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(196,149,106,0.2);
}

.paddledog-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.paddledog-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.paddledog-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.paddledog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,33,22,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

@media (hover: hover) {
  .paddledog-arrow:hover {
    background: rgba(196,149,106,0.7);
    transform: translateY(-50%) scale(1.08);
  }
}
.paddledog-arrow:active {
  background: rgba(196,149,106,0.7);
  transform: translateY(-50%) scale(1.03);
  transition: background 0.05s ease, transform 0.05s ease;
}
.paddledog-arrow:focus:not(:focus-visible) {
  outline: none;
  background: rgba(26,33,22,0.75);
}

.paddledog-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paddledog-arrow-prev { left: var(--sp-3); }
.paddledog-arrow-next { right: var(--sp-3); }

.paddledog-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.paddledog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.paddledog-dot.is-active {
  background: var(--c-sand);
  transform: scale(1.25);
}

/* === FITNESS === */
.section-fitness {
  background: var(--c-surface);
  overflow: hidden;
}

.fitness-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 680px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
  gap: var(--sp-10);
}

/* Colonne texte */
.fitness-content {
  padding: var(--sp-16) var(--sp-8) var(--sp-16) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fitness-content .section-label {
  color: var(--c-sand);
}

.fitness-content h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--c-dark);
  line-height: 1.05;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.fitness-content h2 em {
  font-style: italic;
  color: var(--c-green);
}

.fitness-content > p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}

.fitness-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-1);
}

.fitness-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: 500;
}

.fitness-features svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-green);
  fill: none;
  flex-shrink: 0;
}

.fitness-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
  margin-bottom: var(--sp-6);
}

.fitness-price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1;
}

.fitness-price-detail {
  font-size: 0.9375rem;
  color: var(--c-muted);
  font-weight: 400;
}

.fitness-cta {
  display: flex;
}

/* Carrousel fitness */
.fitness-slider {
  position: relative;
  width: 100%;
  align-self: center;
}

.fitness-slides {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,90,39,0.2);
  border: 1px solid rgba(45,90,39,0.12);
}

.fitness-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.fitness-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fitness-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fitness-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding: 0 2px;
}

.fitness-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--c-green);
  color: var(--c-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

@media (hover: hover) {
  .fitness-arrow:hover {
    background: var(--c-green);
    color: #fff;
  }
}
.fitness-arrow:active {
  background: var(--c-green);
  color: #fff;
  transition: background 0.05s ease, color 0.05s ease;
}
.fitness-arrow:focus:not(:focus-visible) {
  outline: none;
  background: transparent;
  color: var(--c-green);
}

.fitness-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fitness-bars {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: center;
}

.fitness-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(45,90,39,0.18);
  transition: background 0.3s ease;
}

.fitness-bar.is-active {
  background: var(--c-green);
}

@media (max-width: 1024px) {
  .fitness-inner { grid-template-columns: 1fr; gap: 0; }
  .fitness-content { padding: var(--sp-16) 0 var(--sp-8) 0; }
  .fitness-slides { height: 400px; }
}

@media (max-width: 768px) {
  .fitness-inner { padding-inline: var(--sp-5); }
  .fitness-content { padding: var(--sp-12) 0 var(--sp-8) 0; }
  .fitness-content h2 { font-size: 2.25rem; }
  .fitness-slides { height: 280px; border-radius: 14px; }
  .fitness-cta .btn { width: 100%; justify-content: center; }
}

/* === APÉRO === */
/* === APÉRO === */
.section-apero {
  background: var(--c-dark);
  padding: var(--sp-24) 0;
  overflow: hidden;
}


/* Top zone: text left, photo right */
.apero-top {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: var(--sp-16);
  align-items: center;
  margin-bottom: var(--sp-16);
}

.apero-header .section-label {
  display: block;
  margin-bottom: var(--sp-3);
}

.apero-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.apero-header h2 em {
  font-style: italic;
  color: var(--c-sand);
}

.apero-intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: var(--sp-8);
}

.apero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.apero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sand);
  border: 1px solid rgba(196,149,106,0.4);
  padding: 5px var(--sp-4);
  border-radius: 100px;
  background: rgba(196,149,106,0.08);
}

/* Photo frame */
.apero-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  border: 1px solid rgba(196,149,106,0.15);
}

.apero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 3-column horizontal features */
.apero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.apero-feature {
  padding: var(--sp-8) var(--sp-8) 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 var(--sp-4);
}

.apero-feature:nth-child(2) {
  padding-left: var(--sp-8);
}

.apero-feature:last-child {
  border-right: none;
  padding-left: var(--sp-8);
  padding-right: 0;
}

.apero-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

.apero-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-sand);
}

.apero-feature strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  flex: 1;
}

.apero-feature p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
  flex-basis: 100%;
  margin-top: var(--sp-2);
}

@media (max-width: 768px) {
  .section-apero { padding: var(--sp-20) 0; }
  .apero-top {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .apero-photo {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
  .apero-header h2 { font-size: 2rem; }
  .apero-intro { font-size: 0.9375rem; max-width: 100%; }
  .apero-features { grid-template-columns: 1fr; }
  .apero-feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 var(--sp-4);
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: var(--sp-6) 0 0 0;
  }
  .apero-feature-icon { margin-bottom: 0; flex-shrink: 0; }
  .apero-feature strong { flex: 1; margin-bottom: 0; }
  .apero-feature p { flex-basis: 100%; margin-top: var(--sp-2); }
  .apero-feature:nth-child(2),
  .apero-feature:last-child { padding-left: 0; }
  .apero-feature:first-child { border-top: none; }
}

/* === GALERIE === */
.section-galerie {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.galerie-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-10);
}

.galerie-head-actions {
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.galerie-masonry {
  columns: 3;
  column-gap: var(--sp-4);
}

.galerie-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out), filter 0.5s;
}

.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 33, 22, 0);
  transition: background 0.4s;
}

.galerie-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.galerie-item:hover::after {
  background: rgba(26, 33, 22, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 33, 22, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: var(--sp-8);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: #fff;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* === VIDEOS === */
.section-videos {
  padding: var(--sp-24) 0;
  background: var(--c-dark);
}

.videos-head .section-label { color: var(--c-sand); }

.videos-head h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: var(--sp-3);
}

.videos-head p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: var(--sp-10);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.video-card:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-out), background 0.25s;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--c-dark);
  margin-left: 3px;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #fff;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* === PRESSE === */
.section-presse {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}

.presse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.presse-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  position: relative;
}

.presse-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--c-sand);
  opacity: 0.3;
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  pointer-events: none;
}

.presse-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--c-dark);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  position: relative;
}

.presse-source {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === FAQ === */
.section-faq {
  padding: var(--sp-24) 0;
  background: var(--c-dark);
  position: relative;
}

/* Asymmetric header */
.faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-head-text .section-label {
  display: block;
  margin-bottom: var(--sp-3);
}

.faq-head-text h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.faq-head-text h2 em {
  font-style: italic;
  color: var(--c-sand);
}

.faq-head-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.faq-count {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* FAQ list — single column */
.faq-list {
  display: flex;
  flex-direction: column;
}

/* Individual item */
.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Left accent stripe */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-sand);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open::before {
  transform: scaleY(1);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-6) var(--sp-6) var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question:hover {
  padding-left: var(--sp-8);
}

/* Ghost number */
.faq-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  line-height: 1;
  width: 2ch;
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-num {
  color: var(--c-sand);
}

/* Question text */
.faq-q-text {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  transition: color 0.25s ease;
}

.faq-question:hover .faq-q-text,
.faq-item.is-open .faq-q-text {
  color: #fff;
}

/* Plus/cross icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  transition: stroke 0.25s ease;
}

.faq-question:hover .faq-icon {
  border-color: rgba(255,255,255,0.35);
}

.faq-item.is-open .faq-icon {
  background: var(--c-sand);
  border-color: var(--c-sand);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-icon svg {
  stroke: var(--c-dark);
}

/* Answer — smooth grid reveal */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 var(--sp-6) 0 calc(var(--sp-6) + 2ch + var(--sp-6));
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: var(--sp-6);
}

.faq-answer p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.faq-answer ul {
  margin: var(--sp-2) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-answer ul li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  padding-left: var(--sp-4);
  position: relative;
  line-height: 1.65;
}

.faq-answer ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--c-sand);
}

.faq-answer a {
  color: var(--c-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: #fff;
}

/* Ghost btn on dark bg */
.section-faq .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}

.section-faq .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .faq-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-6);
    padding-bottom: var(--sp-8);
    margin-bottom: var(--sp-10);
  }

  .faq-head-meta {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .faq-question {
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-4);
  }

  .faq-question:hover {
    padding-left: var(--sp-6);
  }

  .faq-answer-inner {
    padding: 0 var(--sp-4) 0 var(--sp-4);
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: var(--sp-5);
  }
}

/* === CONTACT === */
.section-contact {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--c-dark);
  margin-bottom: var(--sp-4);
}

.contact-info > p {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 44ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-dark);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--c-text);
  line-height: 1.5;
}

.contact-detail-value a:hover { color: var(--c-green); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(0.95);
}

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 122, 110, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  background: var(--c-dark);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-8);
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.footer-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.footer-logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--c-sand);
  background: rgba(196, 149, 106, 0.1);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.footer-social a:hover svg { stroke: var(--c-sand); }

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-4);
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-4);
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(0); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .tarifs-intro {
    position: static;
  }

  .tarifs-intro p { max-width: none; }

  .base-split {
    grid-template-columns: 1fr;
  }

  .base-body {
    padding: var(--sp-12) var(--sp-8);
  }

  .base-team-strip {
    padding: var(--sp-6) var(--sp-8);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .horaires-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

/* ============================================================
   RESPONSIVE — TABLETTE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* NAV */
  .container { padding-inline: var(--sp-5); }
  .nav-inner { padding-inline: var(--sp-4); }
  .nav-dropdown,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { width: 46px; height: 46px; }
  .nav-logo-text { font-size: 1.25rem; }
  .mobile-menu { justify-content: flex-start; padding-top: calc(var(--nav-h) + var(--sp-6)); }

  /* HERO */
  .hero {
    flex-direction: column;
    align-items: stretch;
    height: 100dvh;
    min-height: 100dvh;
    padding-top: calc(var(--nav-h) + var(--sp-10));
    padding-bottom: 0;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    padding-inline: var(--sp-5);
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  /* Boutons ancrés au bas de .hero (position: relative) */
  .hero-content { position: static; }
  .hero-actions {
    position: absolute;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: var(--sp-5);
    right: var(--sp-5);
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn-ghost   { order: -1; }
  .hero-actions .btn-primary { order:  0; }
  /* Fix 2 — légère opacité au milieu */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26,33,22,0.70) 0%,
      rgba(26,33,22,0.49) 45%,
      rgba(26,33,22,0.74) 100%
    );
  }
  /* Fix 3 — cacher le trait orange */
  .hero-tag::before { display: none; }
  .hero-scroll { display: none; }
  .hero-media img { object-position: 7% 85%; }

  /* INTRO STRIP */
  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding-inline: var(--sp-5);
  }
  .intro-item { padding-left: 0; border-left: none; }
  .intro-item:not(:last-child) {
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* TARIFS */
  .section-tarifs { padding: var(--sp-16) 0; }
  .tarifs-grid { gap: var(--sp-4); }
  .tarifs-tables { gap: var(--sp-6); }
  .tarifs-table-wrap { overflow-x: visible; }
  .tarifs-table { width: 100%; min-width: 0; font-size: 0.75rem; table-layout: fixed; }
  .tarifs-table thead th { padding: var(--sp-2) var(--sp-1); font-size: 0.5625rem; letter-spacing: 0.06em; text-align: center; white-space: normal; }
  .tarifs-table thead th:first-child { width: 34%; text-align: left; }
  .tarifs-table tbody td { padding: var(--sp-3) var(--sp-1); text-align: center; }
  .tarifs-table tbody td:first-child { white-space: normal; font-size: 0.75rem; text-align: left; }
  .tarifs-table tbody td:not(:first-child) { text-align: center; }
  .tarifs-table .price { font-size: 0.8125rem; white-space: nowrap; }
  .tarifs-special { font-size: 0.8125rem; }

  /* HORAIRES */
  .horaires-inner {
    padding-inline: var(--sp-5);
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .horaires-head h2 { font-size: 2rem; }
  .horaires-time { font-size: 0.875rem; }

  /* RESERVATIONS */
  .section-reservations { padding: 0; align-items: stretch; min-height: 100dvh; height: auto; }
  .reservations-content {
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--nav-h) + var(--sp-8));
    padding-bottom: max(var(--sp-10), env(safe-area-inset-bottom));
    flex: 1;
  }
  .reservations-actions { margin-top: var(--sp-6); padding-top: 0; }
  .reservations-intro-note::before { display: none; }
  .reservations-intro-note { display: block; }
  .reservations-phone {
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius);
    padding: var(--sp-3) var(--sp-6);
    background: rgba(26,33,22,0.35);
  }
  .reservations-overlay {
    background: linear-gradient(
      to right,
      rgba(26, 33, 22, 0.80) 0%,
      rgba(26, 33, 22, 0.67) 55%,
      rgba(26, 33, 22, 0.45) 100%
    );
  }
  .reservations-media img { object-position: 80% 0%; }
  .reservations-content { padding-inline: var(--sp-5); }
  .reservations-actions { flex-direction: column; }
  .reservations-actions .btn { width: 100%; justify-content: center; }
  .reservations-actions .btn.btn-primary { background: rgba(255,255,255,0) !important; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
  .reservations-actions .btn.btn-primary:hover { background: rgba(255,255,255,0.08) !important; }
  .reservations-actions .btn.btn-ghost { background: rgba(217,138,69,0.25) !important; color: #fff; border: 1px solid rgba(217,138,69,0.55); }
  .reservations-actions .btn.btn-ghost:hover { background: rgba(217,138,69,0.40) !important; }

  /* LA BASE */
  .base-media { min-height: 300px; }
  .base-body { padding: var(--sp-10) var(--sp-5); }
  .base-features { padding-left: var(--sp-3); }
  .base-features li { gap: var(--sp-4); }
  .base-body h2 { font-size: 1.875rem; }
  .base-actions { flex-direction: column; }
  .base-actions .btn { width: 100%; justify-content: center; }
  .base-team-strip { padding: var(--sp-5); }

  /* GROUPES */
  .section-groupes { padding: var(--sp-16) 0; }
  .groupes-head h2 { font-size: 1.375rem; white-space: normal; }
  .groupes-cards { grid-template-columns: 1fr; gap: var(--sp-5); }
  .groupe-card { aspect-ratio: unset; min-height: 520px; }
  .groupe-card-body { padding: var(--sp-5); gap: var(--sp-2); }
  .groupe-card-body h3 { font-size: 1.375rem; }
  .groupe-card-desc { font-size: 0.875rem; }
  .groupe-card-features li { font-size: 0.8125rem; }
  .groupe-card-cta .btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
  }

  /* PADDLE DOG */
  .section-paddledog { padding: var(--sp-16) 0; }
  .paddledog-inner { grid-template-columns: minmax(0, 1fr); gap: var(--sp-8); }
  .paddledog-content { min-width: 0; width: 100%; }
  .paddledog-slider { width: 100%; min-width: 0; }
  .paddledog-slides { height: auto; aspect-ratio: 6/7; }

  .paddledog-arrow { display: flex; width: 36px; height: 36px; }
  .paddledog-arrow svg { width: 16px; height: 16px; }
  .paddledog-content h2 { font-size: 1.875rem; }
  .paddledog-content > p { max-width: 100%; }
  .paddledog-price { justify-content: center; }
  .paddledog-price-amount { font-size: 2rem; }
  .paddledog-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .paddledog-actions .btn { width: 100%; justify-content: center; box-sizing: border-box; }

  /* GALERIE */
  .section-galerie { padding: var(--sp-16) 0; }
  .galerie-head { grid-template-columns: 1fr; gap: var(--sp-4); }
  .galerie-head-actions { justify-content: flex-start; }
  .galerie-masonry { columns: 2; column-gap: var(--sp-2); }
  .galerie-item { margin-bottom: var(--sp-2); }

  /* VIDEOS */
  .section-videos { padding: var(--sp-16) 0; }
  .videos-grid { grid-template-columns: 1fr; }

  /* PRESSE */
  .section-presse { padding: var(--sp-16) 0; }
  .presse-grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* FAQ */
  .section-faq { padding: var(--sp-16) 0; }

  /* CONTACT */
  .section-contact { padding: var(--sp-16) 0; }
  .form-row { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .galerie-masonry { columns: 1; }
  .hero-title { font-size: 2.875rem; }
  .tarifs-block-title { font-size: 1rem; }
  .horaires-day { font-size: 0.875rem; }
  .horaires-time { font-size: 0.875rem; }
  .nav-logo-text { font-size: 1.35rem; }
}

/* ============================================================
   RESPONSIVE — CORRECTIONS MOBILES COMPLÉMENTAIRES
   ============================================================ */
@media (max-width: 768px) {

  /* Empêche tout débordement horizontal */
  body { overflow-x: hidden; }
  section, .container { max-width: 100vw; }

  /* FITNESS — prix et CTA */
  .fitness-price-amount { font-size: 2rem; }
  .fitness-content { padding: var(--sp-10) 0 var(--sp-6) 0; }

  /* GROUPES — cartes empilées */
  .groupes-strip {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    padding: var(--sp-5) var(--sp-4);
  }
  .groupes-strip-item { padding: var(--sp-3); }
  .groupes-strip-value { font-size: 1.375rem; }

  /* APÉRO */
  .apero-features {
    border-top: none;
  }

  /* GALERIE */
  .section-galerie .container { padding-inline: var(--sp-4); }

  /* TARIFS — intro texte */
  .tarifs-intro { padding-inline: var(--sp-5); }
  .tarifs-contrat { margin-top: var(--sp-2); }

  /* CONTACT — form padding */
  .contact-form-wrap, .contact-info { padding-inline: var(--sp-1); }

  /* PRESSE — cartes */
  .presse-card { padding: var(--sp-5); }

  /* VIDEOS */
  .videos-head h2 { font-size: 1.875rem; }

  /* FOOTER */
  .footer-nav-group h4 { font-size: 0.875rem; }
}

@media (max-width: 480px) {

  /* NAV logo */
  .nav-logo img { width: 44px; height: 44px; }

  /* HERO */
  .hero-badge { font-size: 0.6875rem; }
  .hero-actions { gap: var(--sp-2); }

  /* INTRO STRIP */
  .intro-item-value { font-size: 1.75rem; }

  /* FITNESS */
  .fitness-slides { height: 240px; }
  .fitness-arrow { width: 32px; height: 32px; }
  .fitness-arrow svg { width: 13px; height: 13px; }

  /* APÉRO */
  .apero-badge { font-size: 0.625rem; padding: 4px var(--sp-3); }
  .apero-header h2 { font-size: 1.75rem; }

  /* GROUPES */
  .groupe-card-body h3 { font-size: 1.25rem; }
  .groupes-strip { grid-template-columns: 1fr; }

  /* PADDLE DOG */
  .paddledog-content h2 { font-size: 1.625rem; }

  /* TARIFS */
  .tarifs-table { min-width: 0; font-size: 0.75rem; table-layout: fixed; }

  /* CONTACT */
  .form-input, .form-textarea { font-size: 1rem; }
}

/* ============================================================
   RESPONSIVE — CORRECTIONS MOBILES iOS SAFARI
   Ciblage : 390px (iPhone 14/15), 430px (Plus), 768px (tablette)
   Contrainte : desktop strictement inchangé
   ============================================================ */

/* --- ≤ 768px : tablette & iPhone paysage / Plus --- */
@media (max-width: 768px) {

  /* 1. Empêche l'auto-zoom iOS Safari sur les champs (min 16px) */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
  }

  /* 2. Grille contact → colonne unique (manquait complètement) */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  /* 3. Bouton hamburger : zone de tap 44×44px minimum */
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* 4. Tous les boutons : hauteur de tap minimale */
  .btn {
    min-height: 44px;
  }

  /* 5. Footer — liens navigation : zone de tap */
  .footer-col-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* 6. Menu mobile — liens de bas de menu : zone de tap */
  .mobile-menu-footer a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* 7. Footer logo : taille réduite pour mobile */
  .footer-logo-text { font-size: 1.25rem; }
  .footer-logo img  { width: 44px; height: 44px; }

  /* 8. Horaires mobile : le grid 1fr/auto gère tout, rien à surcharger */

  /* 9. Hero : padding bas allégé */
  .hero { padding-bottom: var(--sp-16); }

  /* 10. Hero tag : autoriser le retour à la ligne */
  .hero-tag { white-space: normal; flex-wrap: wrap; }

  /* 11. Réservations content : pleine largeur */
  .reservations-content {
    max-width: 100%;
    padding-inline: var(--sp-5);
  }

  /* 12. Lien "Voir le plan de navigation" : zone de tap */
  .base-plan-link {
    min-height: 44px;
    padding-top: var(--sp-2);
    padding-bottom: var(--sp-2);
  }

  /* 13. Intro strip : padding vertical réduit */
  .intro-strip { padding: var(--sp-8) 0; }

  /* 14. Section galerie : texte "Cliquez…" aligné à gauche */
  .galerie-head-actions p { text-align: left; }
}

/* --- ≤ 430px : iPhone Plus --- */
@media (max-width: 430px) {
  .hero-tag { font-size: 0.6875rem; letter-spacing: 0.12em; }
  .base-team-text { font-size: 0.8125rem; }
}

/* --- ≤ 390px : iPhone 14 / 15 standard --- */
@media (max-width: 390px) {

  /* Nav logo compact */
  .nav-logo-text { font-size: 1.3rem; }
  .nav-logo img  { width: 42px; height: 42px; }

  /* Hero */
  .hero-title { font-size: 2.625rem; }
  .hero-tag   { font-size: 0.625rem; letter-spacing: 0.1em; }

  /* Réservations — numéro de téléphone */
  .phone-num { font-size: 1.375rem; }

  /* Prix — section Paddle Dog & Fitness */
  .paddledog-price-amount { font-size: 1.875rem; }
  .fitness-price-amount   { font-size: 1.875rem; }

  /* Bandeau équipe : empiler verticalement */
  .base-team-strip {
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
  }

  /* FAQ numéro fantôme : gain d'espace */
  .faq-num { display: none; }

  /* Footer logo */
  .footer-logo-text { font-size: 1.1rem; }
  .footer-logo img  { width: 38px; height: 38px; }
}

/* ============================================================
   SECTIONS MASQUÉES SUR LA PAGE D'ACCUEIL
   Accessibles via les liens du menu et du pied de page
   ============================================================ */
#galerie,
#videos,
#presse,
#faq {
  display: none;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner-link {
  color: var(--c-sand);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-banner-actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.cookie-btn-refuse:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.cookie-btn-accept {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
}
.cookie-btn-accept:hover {
  background: var(--c-green-dark, #1e4a1a);
}

/* Maps placeholder (consent refused) */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  background: var(--c-surface);
  border-radius: var(--radius);
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}
.map-placeholder-icon {
  width: 40px;
  height: 40px;
  color: var(--c-muted);
  opacity: 0.5;
}
.map-placeholder p {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}
.map-placeholder-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}
.map-load-btn {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--c-border);
  background: #fff;
  color: var(--c-dark);
  transition: background 0.2s;
}
.map-load-btn:hover { background: var(--c-surface); }
.map-ext-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 2.1;
}

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
