@import url("https://api.fontshare.com/v2/css?f[]=thunder@500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap");

/* ============================================
   NOVA KID'S — Design system
   Centre expert anti-poux · Marrakech
   ============================================ */

:root {
  --coral: #f36b6b;
  --coral-hover: #e25555;
  --coral-deep: #c94d4d;
  --coral-soft: #fff4f4;
  --coral-mist: #fdeaea;
  --coral-line: rgba(243, 107, 107, 0.16);
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --bg-warm: #faf6f2;
  --white: #ffffff;
  --sand: #f7efe9;
  --border: rgba(17, 17, 17, 0.12);
  --shadow-xs: 0 1px 2px rgba(31, 23, 23, 0.04);
  --shadow-sm: 0 8px 30px rgba(31, 23, 23, 0.05);
  --shadow-md: 0 18px 50px rgba(31, 23, 23, 0.08);
  --shadow-coral: 0 14px 40px rgba(243, 107, 107, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --header-h: 82px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Thunder", "Anton", sans-serif;
  --font-serif: "Thunder", "Anton", sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open,
body.rdv-open {
  overflow: hidden;
}

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

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

a,
button,
.btn,
.icon-btn,
.acc-btn,
.menu-toggle {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.container-wide {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--coral);
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  font-size: clamp(2.6rem, 6.2vw, 4.7rem);
  text-transform: uppercase;
  color: var(--ink);
}

h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.title-spaced {
  line-height: 1.08;
}

h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--coral);
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 26px;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--coral);
  color: #111;
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
}

.btn-secondary:hover {
  background: #111;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-white {
  background: #fff;
  color: var(--coral);
}

.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #fff;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 251, 250, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(31, 23, 23, 0.06);
}

.header-inner {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-text {
  display: none !important;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.logo-text span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #111;
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  display: none;
}

.nav a:hover,
.nav a.is-active {
  color: var(--coral);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-xs);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  border-radius: 99px;
  transition: 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) {
  background: #f36b6b;
}

.menu-toggle span:nth-child(2) {
  background: #4eb3e0;
}

.menu-toggle span:nth-child(3) {
  background: #f0c14a;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(31, 23, 23, 0.28);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  padding: 32px 28px;
  transform: translateX(24px);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

body.nav-open .mobile-nav-panel {
  transform: none;
}

.mobile-nav-panel nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}

.mobile-nav-panel nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  padding: 8px 0;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 28px) 0 36px;
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.18fr);
  gap: 0;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-right: 0;
}

.hero-copy h1 {
  margin: 0 0 22px;
  margin-right: -22%;
  max-width: none;
  position: relative;
  z-index: 4;
  color: #111;
  line-height: 1.04;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke fill;
}

.hero-copy .lead,
.hero-note {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 10px;
}

.hero-claim {
  font-size: 0.98rem;
  color: #111;
  font-weight: 500;
  margin: 8px 0 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-proof p {
  font-size: 0.92rem;
  color: #333;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  background: #111;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  min-height: 420px;
  max-height: 680px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 48px;
  display: block;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-mascots {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  height: 560px;
  display: grid;
  place-items: center;
}

.mascot {
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(31, 23, 23, 0.18));
}

.mascot-main {
  position: relative;
  width: min(420px, 74%);
  aspect-ratio: 1;
  height: auto;
  z-index: 2;
  animation: floaty 5.5s ease-in-out infinite;
}

.mascot-left,
.mascot-right {
  position: absolute;
}

.mascot-left {
  width: 168px;
  height: 168px;
  left: 0;
  top: 28px;
  z-index: 3;
  animation: floaty 6.2s ease-in-out infinite;
  animation-delay: -1.4s;
}

.mascot-right {
  width: 176px;
  height: 176px;
  right: 0;
  bottom: 18px;
  z-index: 3;
  animation: floaty 6.8s ease-in-out infinite;
  animation-delay: -2.8s;
}

.hero-badge {
  position: absolute;
  left: 8px;
  bottom: 86px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
  z-index: 4;
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--coral);
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--muted);
}

.mascot-inline {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  box-shadow: var(--shadow-sm);
}

.method-photo {
  margin: 0 0 40px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.method-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.method-stage {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(420px, 1.55fr) minmax(210px, 0.78fr);
  grid-template-areas:
    "c1 photo c2"
    "c4 photo c3";
  gap: 18px 22px;
  align-items: stretch;
  width: 100%;
}

.method-stage .method-photo {
  grid-area: photo;
  width: 100%;
  margin: 0;
  align-self: center;
  border-radius: 32px;
  background: #fff;
}

.method-stage .method-step {
  margin: 0;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  will-change: transform;
}

.method-step--1 { grid-area: c1; }
.method-step--2 { grid-area: c2; }
.method-step--3 { grid-area: c3; }
.method-step--4 { grid-area: c4; }

.method-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.method-step-icon {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(31, 23, 23, 0.1));
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.method-step {
  text-align: center;
}

.step-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1;
  background: transparent;
  margin-bottom: 18px;
}

.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
  filter: drop-shadow(0 12px 24px rgba(31, 23, 23, 0.12));
}

.method-step:hover .step-visual img {
  transform: scale(1.05);
}

.step-index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-coral);
  flex-shrink: 0;
}

.method-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.method-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.avatar-mascot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

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

.orb-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(243, 107, 107, 0.18), transparent 68%);
  top: -80px;
  right: -40px;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(243, 107, 107, 0.12), transparent 70%);
  left: 18%;
  bottom: -40px;
}

.blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-compact {
  padding: 36px 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-coral {
  background: linear-gradient(180deg, #fff7f6 0%, #fff 100%);
}

/* Stats */
.stats-band {
  padding: 8px 0 28px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff3f0;
  border-radius: 28px;
  padding: 36px 28px;
}

.stat-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 8px 12px;
  text-align: left;
  position: relative;
  overflow: visible;
}

.stat-card::after {
  display: none;
}

.stat-card:hover {
  transform: none;
  box-shadow: none;
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  line-height: 1;
  color: #111;
  text-transform: uppercase;
}

.stat-card p {
  margin-top: 8px;
  color: #333;
  font-size: 0.88rem;
}

/* Cards */
.cards-3,
.cards-4,
.cards-2 {
  display: grid;
  gap: 22px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 28px;
}

.card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

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

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

.icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--coral-soft);
  color: var(--coral);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.icon-pill svg {
  width: 24px;
  height: 24px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img,
.split .frame {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.frame {
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.photo-stage {
  position: relative;
  padding: 6px;
  align-self: start;
}

.photo-stage-media {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.photo-stage-media img,
.split .photo-stage-media img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.photo-ring {
  position: absolute;
  z-index: 3;
  border-radius: 26px;
  pointer-events: none;
  will-change: transform;
}

.photo-ring--a {
  inset: 36px 28px 48px 22px;
  border: 1.5px solid #111;
}

.photo-ring--b {
  inset: 52px 18px 28px 40px;
  border: 1.5px solid var(--coral);
}

.photo-ring--c {
  inset: 24px 44px 58px 16px;
  border: 1px solid rgba(17, 17, 17, 0.28);
}

.photo-ring--d {
  inset: 64px 32px 20px 26px;
  border: 1px solid rgba(243, 107, 107, 0.55);
}

.values {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.value strong {
  display: block;
  margin-bottom: 2px;
}

.value p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Advantages */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  overflow: visible;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}

.adv-card-inner {
  position: relative;
  z-index: 2;
}

.adv-card .photo-ring {
  z-index: 1;
  border-radius: 22px;
}

.adv-card .photo-ring--a {
  inset: -8px -6px -9px -8px;
}

.adv-card .photo-ring--b {
  inset: -5px -10px -6px -4px;
}

.adv-card .photo-ring--c {
  inset: -10px -4px -5px -9px;
}

.adv-card .photo-ring--d {
  inset: -4px -8px -10px -5px;
}

.adv-card:hover {
  transform: translateY(-5px);
}

.adv-card:nth-child(3n + 1) {
  background: #eef8f1;
  border-color: #b7e0c4;
}

.adv-card:nth-child(3n + 1) .icon-pill {
  background: #d8f0e0;
  color: #2f8a55;
}

.adv-card:nth-child(3n + 1) .photo-ring {
  border-color: #4caf73;
}

.adv-card:nth-child(3n + 2) {
  background: #fff4f4;
  border-color: #f5c2c2;
}

.adv-card:nth-child(3n + 2) .icon-pill {
  background: #ffe0e0;
  color: var(--coral);
}

.adv-card:nth-child(3n + 2) .photo-ring {
  border-color: var(--coral);
}

.adv-card:nth-child(3n + 3) {
  background: #fff8e6;
  border-color: #ecd48a;
}

.adv-card:nth-child(3n + 3) .icon-pill {
  background: #ffefc2;
  color: #c39212;
}

.adv-card:nth-child(3n + 3) .photo-ring {
  border-color: #e3b423;
}

.adv-card h3 {
  font-size: 1.35rem;
  margin: 14px 0 10px;
}

.adv-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Method preview */
.method-card {
  padding: 0;
}

.method-card .card-body {
  padding: 26px 26px 30px;
}

.method-card .kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 8px;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
}

.price-card.featured:hover {
  transform: translateY(-16px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.badge-rec {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--coral);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-full);
}

.price-card .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 8px;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  margin: 8px 0 6px;
}

.price-card .amount small {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.price-card ul {
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coral);
}

.price-card.featured .check {
  color: #ffb4b4;
}

.price-card .btn {
  width: 100%;
}

.price-note {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 72px 28px;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 23, 23, 0.35), rgba(31, 23, 23, 0.62));
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-band h2 {
  margin: 12px 0 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

.cta-band .eyebrow,
.cta-band .eyebrow::before {
  color: #ffd4d4;
  background: #ffd4d4;
}

.cta-band .eyebrow {
  background: transparent;
}

.cta-band .eyebrow::before {
  background: #ffd4d4;
}

/* Reviews */
.reviews-wrap {
  position: relative;
  overflow: visible;
}

.review-hopper {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  z-index: 6;
  pointer-events: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(31, 23, 23, 0.16));
  will-change: transform;
  transform: translate(-120px, -120px);
}

.reviews-track {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 16px 8px 20px;
  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  min-width: min(380px, 82vw);
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.review-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card .photo-ring {
  z-index: 1;
  border-radius: 22px;
}

.review-card .photo-ring--a { inset: -8px -6px -9px -8px; }
.review-card .photo-ring--b { inset: -5px -10px -6px -4px; }
.review-card .photo-ring--c { inset: -10px -4px -5px -9px; }
.review-card .photo-ring--d { inset: -4px -8px -10px -5px; }

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #e7b008;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.review-card p {
  color: var(--ink-soft);
  flex: 1;
}

.review-card .date {
  font-size: 0.8rem;
  color: var(--muted);
}

.carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s var(--ease);
}

.icon-btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.gallery a,
.gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery a:hover img,
.gallery figure:hover img {
  transform: scale(1.06);
}

.g-lg {
  grid-row: 1 / 3;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.location-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.location-card h2 {
  margin: 10px 0 16px;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-of-type {
  border-bottom: 0;
}

.info-row svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 3px;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 28px;
  filter: grayscale(0.2) contrast(1.05);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card .card-media {
  aspect-ratio: 1 / 1;
  background: var(--coral-soft);
}

.product-card h3 {
  margin-bottom: 8px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
}

.faq-group + .faq-group {
  margin-top: 36px;
}

.faq-group h3 {
  margin-bottom: 14px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.acc-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.acc-item.is-open {
  border-color: var(--coral-line);
  box-shadow: var(--shadow-sm);
}

.acc-btn {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
}

.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.acc-item.is-open .acc-icon {
  transform: rotate(45deg);
  background: var(--coral);
  color: #fff;
}

.acc-panel {
  display: none;
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

.acc-item.is-open .acc-panel {
  display: block;
}

/* Footer */
.site-footer {
  background: #fff;
  color: #111;
  padding: 28px 0 48px;
}

.footer-cta-wrap {
  position: relative;
  padding-top: 88px;
}

.footer-mascots {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: calc(100% - 14px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.footer-mascot {
  width: 110px;
  height: auto;
  will-change: transform;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 16px 18px 16px 40px;
  background: var(--coral);
  color: #111;
  border: 2px solid #111;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-cta:hover {
  background: var(--coral-hover);
  color: #111;
}

.footer-cta-label {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-cta-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 48px;
  padding: 40px 12px 28px;
}

.footer-legal a {
  color: #111;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: var(--coral-deep);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 12px 0;
  font-size: 0.95rem;
  color: #111;
}

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

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--coral);
  color: #111;
  display: grid;
  place-items: center;
  transition: background 0.25s var(--ease);
}

.footer-socials a:hover {
  background: var(--coral-hover);
}

.pillar .mascot-inline {
  margin-bottom: 16px;
}

/* WhatsApp bars */
.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover {
  transform: scale(1.06);
}

.wa-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.wa-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  background: #25d366;
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wa-bar .wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Booking popover */
.rdv-pop {
  position: relative;
}

.rdv-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 240px;
  padding: 8px;
  display: none;
  z-index: 20;
}

.rdv-pop.is-open .rdv-menu,
.rdv-menu.is-open {
  display: grid;
}

.rdv-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.rdv-menu a:hover {
  background: var(--coral-soft);
  color: var(--coral-deep);
}

.rdv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 23, 23, 0.4);
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.rdv-overlay.is-open {
  display: grid;
}

.rdv-modal {
  background: #fff;
  border-radius: 28px;
  padding: 36px 32px;
  width: min(440px, 100%);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.rdv-modal h3 {
  margin: 8px 0 10px;
}

.rdv-modal p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.rdv-modal .btn {
  width: 100%;
  margin-bottom: 10px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.reveal.in-view {
  animation: fadeUp 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.08s !important; }
.delay-2 { animation-delay: 0.16s !important; }
.delay-3 { animation-delay: 0.24s !important; }
.delay-4 { animation-delay: 0.32s !important; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff4f4 0%, var(--bg) 100%);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  margin: 12px 0 14px;
}

.page-hero p {
  margin-inline: auto;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.flow span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow .arrow {
  color: var(--coral);
  border: 0;
  background: transparent;
  padding: 10px 0;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.legal h2 {
  font-size: 1.6rem;
  margin-top: 12px;
}

.timeline {
  display: grid;
  gap: 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: stretch;
}

.timeline-visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 180px;
  background: #111;
  display: grid;
  place-items: center;
}

.timeline-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-copy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.diff-box {
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 48px 40px;
  margin-top: 48px;
}

.diff-box p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 70ch;
}

.nattes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 110px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar {
  background: #fff;
  border-radius: 28px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.pillar .kicker {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
}

.hero-shape {
  position: absolute;
  width: 86px;
  height: 86px;
  right: 18px;
  top: 18px;
  z-index: 2;
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .nattes-grid,
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .contact-side { position: static; }
}

@media (max-width: 760px) {
  .nattes-grid,
  .pillars {
    grid-template-columns: 1fr;
  }
  .timeline-copy,
  .diff-box {
    padding: 24px 20px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .faq-layout,
  .location-grid,
  .footer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .g-lg { grid-row: auto; grid-column: 1 / -1; height: 320px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn { padding: 12px 16px; font-size: 0.72rem; }
  .frame { min-height: 360px; }
  .photo-stage { padding: 4px; }
  .section-compact { padding: 28px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "photo photo"
      "c1 c2"
      "c4 c3";
    gap: 14px;
  }
  .method-stage .method-photo { max-width: none; }
  .method-stage .method-step { transform: none !important; }
  .hero-photo { aspect-ratio: 5 / 4; max-height: 520px; }
  .hero-copy h1 {
    margin-right: 0;
    -webkit-text-stroke: 0;
  }
}

@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .container,
  .container-wide,
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .section { padding: 40px 0; }
  .hero { padding-top: calc(var(--header-h) + 16px); }
  .hero-photo { aspect-ratio: 4 / 3; min-height: 260px; }
  .hero-copy h1 { -webkit-text-stroke: 0; margin-right: 0; }
  .method-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .method-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "c1"
      "c2"
      "c3"
      "c4";
  }
  .cards-3,
  .cards-2,
  .cards-4,
  .price-grid,
  .product-grid,
  .adv-grid,
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery a,
  .gallery figure,
  .g-lg {
    height: 240px;
    grid-column: auto;
  }

  .hero-actions,
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-cta {
    min-height: 76px;
    padding: 14px 14px 14px 22px;
  }
  .footer-mascots {
    left: 12px;
    right: 12px;
  }
  .footer-mascot {
    width: 72px;
  }
  .footer-cta-wrap { padding-top: 68px; }
  .footer-cta-arrow { width: 42px; height: 42px; }
  .footer-legal { gap: 12px 28px; padding: 28px 4px 20px; }
  .header-cta .btn { display: none; }
  .wa-float {
    display: grid;
    width: 56px;
    height: 56px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .wa-float .wa-icon {
    width: 30px;
    height: 30px;
  }
  .wa-bar { display: none; }
  body { padding-bottom: 20px; }
  .cta-band { border-radius: 24px; min-height: 320px; padding: 48px 20px; }
  .price-card .amount { font-size: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
