/* ============================================================
   WASHYS — Premium Sneaker Cleaning & Restoration
   style.css — Main stylesheet
   ============================================================ */

/* ── 1. Variables & Reset ── */
:root {
  --color-primary: #5D149A;
  --color-primary-hover: #4D1080;
  --color-accent: #5D149A;
  --color-bg: #FBF9FE;
  --color-bg-soft: #F8F5FC;
  --color-card: #FFFFFF;
  --color-border: #E8DFF4;
  --color-text: #17172B;
  --color-muted: #8A8495;
  --color-white: #FFFFFF;

  --font-serif: 'Bricolage Grotesque', sans-serif;
  --font-sans: 'Manrope', sans-serif;

  --radius-card: 18px;
  --radius-pill: 999px;
  --radius-btn: 10px;

  --shadow-soft: 0 18px 50px rgba(93, 20, 154, 0.08);
  --shadow-cta: 0 12px 30px rgba(93, 20, 154, 0.18);
  --shadow-nav: 0 4px 24px rgba(93, 20, 154, 0.10);

  --transition-fast: 180ms ease-out;
  --transition-med: 320ms cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1160px;
  --section-v: 100px;
  --section-v-sm: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── 2. Utilities ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--color-text);
  text-wrap: balance;
}

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

.section-sub {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 540px;
}

.section-sub--white { color: rgba(255,255,255,0.78); }

/* ── 3. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(93, 20, 154, 0.26);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-bg-soft);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--color-bg-soft);
  transform: translateY(-2px);
}

.btn-pill { border-radius: var(--radius-pill); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── 4. Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left.visible,
.fade-right.visible,
.fade-scale.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-1 { transition-delay: 80ms; }
.fade-up-delay-2 { transition-delay: 160ms; }
.fade-up-delay-3 { transition-delay: 240ms; }
.fade-up-delay-4 { transition-delay: 320ms; }

/* ── 5. Navbar ── */
.navbar-wrap {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 32px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  height: 76px;
  padding-left: 28px;
  padding-right: 14px;
  background: rgba(255, 255, 255, 0.90);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
  transition: box-shadow var(--transition-fast);
}

.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(93, 20, 154, 0.14);
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-full {
  display: block;
  height: 34px;
  width: auto;
}

.navbar-logo-picto {
  display: none;
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--color-primary);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actions .btn {
  padding: 16px 30px;
  font-size: 15px;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition-fast);
}

.navbar-burger:hover { background: var(--color-bg-soft); }

.navbar-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  padding: 12px 24px;
  border-radius: 12px;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover { color: var(--color-accent); }

.mobile-menu .btn {
  margin-top: 16px;
  color: var(--color-white);
  font-size: 16px;
  padding: 16px 40px;
}

/* ── 6. Hero ── */
.hero {
  --hero-bg-offset-y: 86px;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 140px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 10%, rgba(93, 20, 154, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(93, 20, 154, 0.16), transparent 70%),
    url('../img/fondhero.png') center calc(100% + var(--hero-bg-offset-y)) / cover no-repeat,
    var(--color-bg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(93, 20, 154, 0.22);
  top: -80px;
  right: 10%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(93, 20, 154, 0.08);
  bottom: 160px;
  left: 8%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(46px, 6.2vw, 74px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--color-text);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(93, 20, 154, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(93, 20, 154, 0.10);
  animation: bounce 1.8s ease-in-out infinite;
  transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.hero-scroll:hover .hero-scroll-icon {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.92);
}

.hero-scroll:hover .hero-scroll-icon {
  border-color: rgba(93, 20, 154, 0.26);
  box-shadow: 0 10px 26px rgba(93, 20, 154, 0.16);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── 7. Stats Bandeau ── */
.stats {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 52px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding-inline: 40px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 52px;
  width: 1px;
  background: var(--color-border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── 8. Why Washys ── */
.why {
  background: var(--color-bg-soft);
  padding-block: var(--section-v);
}

.why-header {
  text-align: center;
  margin-bottom: 16px;
}

.why-header .section-sub {
  margin-inline: auto;
  margin-top: 16px;
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(93, 20, 154, 0.12);
  border-color: rgba(93, 20, 154, 0.25);
}

.why-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 800;
  color: rgba(93, 20, 154, 0.07);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(93, 20, 154, 0.09);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── 9. Services / Packs ── */
.services {
  background: var(--color-white);
  padding-block: var(--section-v);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-sub {
  margin-inline: auto;
  margin-top: 16px;
}

/* Includes list — clean, reused inside .pack-card-panel-content */
.service-includes {
  flex: 1;
  margin-bottom: 28px;
  border-top: 1px solid var(--color-border);
  padding-top: 4px;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  padding-block: 9px;
}

.service-includes li + li {
  border-top: 1px solid rgba(93, 20, 154, 0.07);
}

.service-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237B24C6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Services subsections ── */
.services-subsection {
  margin-top: 80px;
}

.services-subsection-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-subsection-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-border), transparent);
}

.services-subsection-header {
  margin-bottom: 36px;
}

.services-subsection-header .services-subsection-title {
  margin-bottom: 12px;
}

.services-subsection-sub {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* ── Prestations sneakers — cartes empilées (accordion) ── */
.pack-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pack-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pack-card:hover {
  border-color: rgba(93, 20, 154, 0.24);
}

.pack-card.active {
  border-color: rgba(93, 20, 154, 0.32);
  box-shadow: 0 20px 56px rgba(93, 20, 154, 0.12);
  transform: translateY(-2px);
}

.pack-card-header {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 44px 1fr auto 18px;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 220ms ease;
}

.pack-card-header:hover {
  background: rgba(93, 20, 154, 0.045);
}

.pack-card.featured .pack-card-header {
  background: linear-gradient(160deg, rgba(93, 20, 154, 0.05) 0%, rgba(93, 20, 154, 0.02) 100%);
}

.pack-card.featured .pack-card-header:hover {
  background: linear-gradient(160deg, rgba(93, 20, 154, 0.09) 0%, rgba(93, 20, 154, 0.04) 100%);
}

.pack-card-header:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.pack-card-num {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 800;
  color: rgba(93, 20, 154, 0.28);
}

.pack-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(93, 20, 154, 0.07);
  border-radius: 12px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background 300ms ease;
}

.pack-card.active .pack-card-icon {
  background: rgba(93, 20, 154, 0.12);
}

.pack-card-heading {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.pack-card-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 800;
  color: var(--color-text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pack-card-tagline {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pack-card-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.pack-card-price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
}

.pack-card-chevron {
  color: var(--color-muted);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), color 300ms ease;
}

.pack-card.active .pack-card-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.pack-card-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pack-card.active .pack-card-panel {
  max-height: 640px;
}

.pack-card-panel-content {
  padding: 4px 28px 28px;
}

/* ── 10. Delivery Bandeau ── */
.delivery {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: 40px;
}

.delivery-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.delivery-cap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.delivery-cap svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.delivery-divider {
  width: 1px;
  height: 28px;
  background: var(--color-border);
}

/* ── 11. Instagram Gallery ── */
.gallery {
  background: var(--color-bg);
  padding-block: var(--section-v);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header .section-sub {
  margin-inline: auto;
  margin-top: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(93, 20, 154, 0.12);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-border);
}

.gallery-placeholder svg { color: var(--color-accent); opacity: 0.4; }
.gallery-placeholder span { font-size: 12px; color: var(--color-muted); font-weight: 500; }

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-cta {
  text-align: center;
}

/* ── 12. Reviews ── */
.reviews {
  background: var(--color-bg-soft);
  padding-block: var(--section-v);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.reviews-rating-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary);
}

.stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 52s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  flex: 0 0 360px;
  width: 360px;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(93, 20, 154, 0.10);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: 14px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}

.review-date {
  font-size: 12px;
  color: var(--color-muted);
}


/* ── 12b. FAQ ── */
.faq {
  background: var(--color-white);
  padding-block: var(--section-v);
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-header .section-sub {
  margin-inline: auto;
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 300ms ease, background 220ms ease;
}

.faq-item:hover {
  background: rgba(93, 20, 154, 0.045);
}

.faq-item.active {
  border-color: rgba(93, 20, 154, 0.28);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-question span {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-panel {
  max-height: 260px;
}

.faq-panel-content {
  padding: 0 24px 22px;
}

.faq-panel-content p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── 13. Footer ── */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  display: block;
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}

.footer-baseline {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer-social:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(180,140,255,0.8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-delivery-cap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-legal span {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* ── 14. Contact Page ── */
.contact-header {
  background: linear-gradient(135deg, #4D1080 0%, #5D149A 40%, #5D149A 100%);
  padding-top: 150px;
  padding-bottom: 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.contact-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(180,120,255,0.25), transparent 60%);
  pointer-events: none;
}

.contact-header-content {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.contact-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 16px;
  margin-top: 0;
  text-wrap: balance;
}

.contact-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.contact-wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.contact-body {
  background: var(--color-bg);
  padding-block: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(93, 20, 154, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

.contact-ig-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-card);
  padding: 32px;
  color: var(--color-white);
}

.contact-ig-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-ig-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── 15. Form ── */
.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}

.form-card h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-card > p {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group label .req {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 52px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  padding: 0 16px;
  font-size: 15px;
  color: var(--color-text);
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8495' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(93, 20, 154, 0.10);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  font-weight: 500;
  display: none;
}

.form-group.has-error .form-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #EF4444; }

.form-submit-error {
  display: none;
  margin-bottom: 18px;
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.08);
  color: #B91C1C;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 14px;
}

.form-submit-error.show {
  display: block;
}

.upload-zone {
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  background: var(--color-bg-soft);
  position: relative;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--color-accent);
  background: rgba(93, 20, 154, 0.04);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-zone svg { color: var(--color-accent); margin-bottom: 10px; opacity: 0.65; }

.upload-zone p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.upload-zone span {
  font-size: 12px;
  color: var(--color-muted);
}

.upload-zone-video {
  background: rgba(93, 20, 154, 0.05);
  border-color: rgba(93, 20, 154, 0.25);
}

.form-submit {
  margin-top: 8px;
}

.btn-submit {
  height: 56px;
  font-size: 16px;
  border-radius: 10px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 20px;
  color: white;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 360px;
  margin-inline: auto;
}

/* ── 16. Utility classes (moved from inline) ── */
.section-sub--mt { margin-top: 12px; }

.reviews-count {
  font-size: 13px;
  color: var(--color-muted);
}

.btn-footer-cta {
  font-size: 14px;
  padding: 12px 22px;
}

/* ── 17. Responsive ── */
@media (max-width: 1023px) {
  :root { --section-v: 72px; }

  .hero { --hero-bg-offset-y: 62px; }

  .navbar-links { display: none; }
  .navbar-actions .btn { display: none; }
  .navbar-burger { display: flex; }
  .mobile-menu { display: flex; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-header { padding-top: 138px; }

  /* Horizontal slide-in transforms push cards past the viewport edge on
     narrow/2-col layouts, which forces the page to scroll sideways. */
  .fade-left, .fade-right {
    transform: translateY(32px);
  }
}

@media (max-width: 767px) {
  :root { --section-v: 60px; }

  .navbar-wrap { top: 12px; padding-inline: 16px; }
  .container { padding-inline: 20px; }

  .navbar-logo-full { display: none; }
  .navbar-logo-picto { display: block; }

  .hero { --hero-bg-offset-y: 34px; min-height: unset; padding-top: 130px; padding-bottom: 56px; padding-inline: 20px; }
  .hero-title { font-size: clamp(34px, 9vw, 46px); line-height: 1.08; letter-spacing: 0; margin-bottom: 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { text-align: center; }
  .hero-scroll { display: none; }

  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding-inline: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .review-card { flex-basis: 280px; width: 280px; padding: 22px; }

  .pack-card-header {
    grid-template-columns: 44px 1fr auto 18px;
    padding: 16px 18px;
    gap: 12px;
  }
  .pack-card-num { display: none; }
  .pack-card-tagline { display: none; }
  .pack-card-icon { width: 38px; height: 38px; }
  .pack-card-name { font-size: 17px; }
  .pack-card-price { font-size: 18px; }
  .pack-card-panel-content { padding: 4px 18px 22px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-header { padding-top: 126px; }
  .contact-header-content { padding-bottom: 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }

  .delivery-inner { gap: 10px; }
  .delivery-divider { display: none; }
}

@media (max-width: 479px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Refonte conversion 2026
   Direction: atelier sneakers premium, propre, concret.
   ============================================================ */

:root {
  --color-primary: #5D149A;
  --color-primary-hover: #4D1080;
  --color-accent: #5D149A;
  --color-ink-soft: #2B2440;
  --color-warm: #F2D36B;
  --color-bg: #FCFAFF;
  --color-bg-soft: #F4EFF9;
  --color-border: #DED2EA;
  --color-muted: #716A7D;
  --radius-card: 8px;
  --radius-btn: 8px;
  --shadow-soft: 0 14px 34px rgba(36, 20, 63, 0.08);
  --shadow-cta: 0 12px 26px rgba(93, 20, 154, 0.22);
  --section-v: 112px;
}

html {
  scroll-padding-top: 120px;
}

body {
  color: var(--color-ink-soft);
  background:
    linear-gradient(90deg, rgba(93, 20, 154, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(93, 20, 154, 0.026) 1px, transparent 1px),
    var(--color-bg);
  background-size: 42px 42px;
  -webkit-tap-highlight-color: rgba(93, 20, 154, 0.16);
}

.fade-up,
.fade-left,
.fade-right,
.fade-scale {
  opacity: 1;
  transform: none;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform var(--transition-fast);
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--color-warm);
  outline-offset: 3px;
}

.section-eyebrow,
.hero-kicker,
.contact-kicker {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.70);
}

.section-title {
  color: var(--color-ink-soft);
}

.btn {
  min-height: 48px;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--color-primary);
  box-shadow: var(--shadow-cta);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(93, 20, 154, 0.22);
  color: var(--color-primary);
}

.navbar {
  height: 70px;
  border-radius: 18px;
  background: rgba(252, 250, 255, 0.88);
  border-color: rgba(93, 20, 154, 0.14);
}

.navbar-links a {
  color: #6B6377;
}

.navbar-actions .btn {
  border-radius: 12px;
}

.mobile-menu {
  overscroll-behavior: contain;
}

.hero {
  min-height: auto;
  padding: 150px 0 88px;
  text-align: left;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(252, 250, 255, 0.80), rgba(252, 250, 255, 0.94) 56%, rgba(244, 239, 249, 0.96)),
    url('../img/fondhero.png') center bottom / cover no-repeat;
}

.hero-orb {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
}

.hero-title em {
  display: inline;
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(242, 211, 107, 0.95);
  text-decoration-thickness: 0.16em;
  text-underline-offset: -0.06em;
}

.hero-sub {
  margin-right: auto;
  margin-left: 0;
  max-width: 620px;
  color: #51495E;
  font-size: 19px;
}

.hero-ctas {
  justify-content: flex-start;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span,
.contact-header-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(93, 20, 154, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  color: #4B4258;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-video-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(93, 20, 154, 0.18);
  border-radius: 12px;
  background: #171022;
  box-shadow: 0 30px 70px rgba(36, 20, 63, 0.18);
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-result-card {
  position: absolute;
  right: -22px;
  bottom: 26px;
  width: min(260px, 72%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(93, 20, 154, 0.92);
  color: var(--color-white);
  box-shadow: 0 18px 38px rgba(36, 20, 63, 0.28);
}

.hero-result-card span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-result-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.hero-scroll {
  display: none;
}

.stats {
  background: #FFFFFF;
  border-color: rgba(93, 20, 154, 0.12);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding-inline: 26px;
}

.stat-number {
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: #675F72;
  letter-spacing: 0.04em;
}

.process {
  padding-block: var(--section-v);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-soft) 100%);
}

.process-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.process-header .section-eyebrow {
  margin-bottom: 12px;
}

.process-header .section-title {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 0.98;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(93, 20, 154, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
}

.process-step {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid rgba(93, 20, 154, 0.12);
}

.process-step:last-child {
  border-right: 0;
}

.process-num {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
}

.process-step h3,
.why-card h3,
.contact-info-card h3,
.contact-ig-card h3,
.form-card h2 {
  font-family: var(--font-serif);
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--color-ink-soft);
  font-size: 21px;
  line-height: 1.18;
}

.process-step p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.why {
  background: var(--color-bg-soft);
}

.why-header {
  max-width: 780px;
  margin-inline: auto;
}

.why-grid {
  gap: 18px;
}

.why-card,
.pack-card,
.faq-item,
.review-card,
.form-card,
.contact-info-card {
  border-radius: 8px;
}

.why-card {
  padding: 28px 24px;
  box-shadow: none;
}

.why-card-num {
  font-size: 42px;
  color: rgba(93, 20, 154, 0.09);
}

.why-icon,
.pack-card-icon,
.contact-info-icon {
  border-radius: 8px;
  background: rgba(93, 20, 154, 0.08);
  color: var(--color-primary);
}

.services {
  background: #FFFFFF;
}

.services-subsection {
  margin-top: 66px;
}

.services-subsection-title {
  color: #5F566C;
}

.pack-stack {
  gap: 10px;
}

.pack-card {
  box-shadow: none;
}

.pack-card.active {
  border-color: rgba(93, 20, 154, 0.26);
  box-shadow: 0 18px 42px rgba(36, 20, 63, 0.10);
}

.pack-card.featured {
  border-color: rgba(93, 20, 154, 0.36);
}

.pack-card-header {
  min-height: 88px;
}

.pack-card.featured .pack-card-header {
  background: linear-gradient(90deg, rgba(93, 20, 154, 0.085), rgba(242, 211, 107, 0.12));
}

.pack-card-price {
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.service-includes li {
  color: #3B3448;
}

.booking-strip {
  padding-block: 74px;
  background:
    linear-gradient(135deg, rgba(23, 12, 43, 0.94), rgba(93, 20, 154, 0.96)),
    url('../img/fondhero.png') center bottom / cover no-repeat;
  color: var(--color-white);
}

.booking-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.booking-strip h2 {
  max-width: 660px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.03;
}

.booking-strip p:not(.section-eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  background: var(--color-bg);
}

.gallery-grid {
  gap: 14px;
}

.gallery-item {
  border-radius: 8px;
  border-color: rgba(93, 20, 154, 0.14);
}

.reviews {
  background: var(--color-bg-soft);
}

.reviews-rating-num {
  color: var(--color-primary);
}

.stars,
.review-stars {
  color: #D9A51B;
}

.review-avatar {
  background: var(--color-primary);
}

.faq {
  background: #FFFFFF;
}

.footer {
  background:
    linear-gradient(180deg, #5D149A 0%, #26103F 100%);
}

.contact-header {
  padding-top: 160px;
  padding-bottom: 72px;
  background:
    linear-gradient(135deg, rgba(23, 12, 43, 0.94), rgba(93, 20, 154, 0.96)),
    url('../img/fondhero.png') center bottom / cover no-repeat;
}

.contact-header-bg,
.contact-wave {
  display: none;
}

.contact-header-content {
  max-width: 880px;
  padding-bottom: 0;
  text-align: left;
}

.contact-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.contact-header h1 {
  max-width: 720px;
}

.contact-header p:not(.contact-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.contact-header-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-header-points span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.86);
}

.contact-body {
  padding-block: 84px;
  background: var(--color-bg);
}

.contact-layout {
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 34px;
}

.contact-left {
  position: sticky;
  top: 112px;
}

.contact-info-card,
.form-card {
  box-shadow: 0 16px 42px rgba(36, 20, 63, 0.08);
}

.contact-ig-card {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-primary), #24162F);
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 8px;
  background-color: #FFFFFF;
  color: var(--color-ink-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(93, 20, 154, 0.10);
}

.upload-zone {
  border-radius: 8px;
  background: #F8F4FC;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1023px) {
  :root { --section-v: 82px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-media {
    max-width: 520px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item:nth-child(3)::before {
    display: none;
  }

  .process-header,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(93, 20, 154, 0.12);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-num {
    margin-bottom: 22px;
  }

  .booking-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-left {
    position: static;
  }
}

@media (max-width: 767px) {
  :root { --section-v: 66px; }

  .navbar {
    border-radius: 14px;
  }

  .hero {
    padding-top: 124px;
    padding-bottom: 58px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust span,
  .contact-header-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-video-frame {
    aspect-ratio: 1 / 1.08;
  }

  .hero-result-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding-block: 18px;
  }

  .stat-item + .stat-item::before {
    display: block;
    top: 0;
    left: 50%;
    width: 54px;
    height: 1px;
    transform: translateX(-50%);
  }

  .process-step {
    padding: 24px 20px;
  }

  .booking-strip {
    padding-block: 58px;
  }

  .booking-strip .btn {
    width: 100%;
  }

  .contact-header {
    padding-top: 126px;
    padding-bottom: 54px;
  }

  .contact-header-content {
    text-align: center;
  }

  .contact-body {
    padding-block: 54px;
  }
}

@media (max-width: 479px) {
  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .mobile-menu .btn {
    width: auto;
  }

  .pack-card-header {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .pack-card-price,
  .pack-card-chevron {
    grid-column: 2;
  }
}
