:root {
  /* Mediterranean summer palette */
  --sea-50:  oklch(97% 0.02 225);
  --sea-100: oklch(92% 0.05 225);
  --sea-200: oklch(85% 0.09 225);
  --sea-400: oklch(70% 0.14 230);
  --sea-500: oklch(58% 0.15 232);
  --sea-600: oklch(48% 0.14 234);
  --sea-700: oklch(38% 0.12 236);
  --sea-900: oklch(22% 0.06 240);

  --sand-50:  oklch(98% 0.01 85);
  --sand-100: oklch(96% 0.025 82);
  --sand-200: oklch(92% 0.04 80);
  --sand-300: oklch(86% 0.06 80);

  --sun-400: oklch(88% 0.16 90);
  --sun-500: oklch(82% 0.17 85);
  --sun-600: oklch(72% 0.17 70);

  --coral-400: oklch(78% 0.14 35);
  --coral-500: oklch(70% 0.17 35);
  --coral-600: oklch(60% 0.19 32);

  --leaf-500: oklch(62% 0.14 155);

  --ink: oklch(22% 0.04 240);
  --ink-soft: oklch(38% 0.04 240);
  --ink-mute: oklch(55% 0.03 240);

  --line: oklch(88% 0.03 230);
  --card: #ffffff;
  --bg: var(--sand-50);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(20, 40, 80, 0.06);
  --shadow-md: 0 8px 22px -12px rgba(20, 40, 80, 0.18), 0 2px 6px rgba(20, 40, 80, 0.05);
  --shadow-lg: 0 24px 60px -28px rgba(20, 40, 80, 0.28), 0 4px 12px rgba(20, 40, 80, 0.06);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; cursor: pointer; }
a { color: var(--sea-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; margin: 0; line-height: 1.05; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- NAVBAR ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--sand-50) 80%, white 20%);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.nav-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-crest {
  width: 40px; height: 40px; border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, var(--sun-500), var(--coral-500) 70%),
    var(--sea-500);
  display: grid; place-items: center;
  color: white; font-weight: 800; font-family: var(--font-display);
  font-size: 18px;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08), var(--shadow-sm);
}
.brand-sub { font-size: 12px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex; gap: 4px; margin-left: auto; align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav-links a:hover { background: var(--sand-200); text-decoration: none; color: var(--ink); }

.lang-toggle {
  display: inline-flex; background: white;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; margin-left: 8px;
}
.lang-toggle button {
  border: 0; background: transparent;
  padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px; color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.lang-toggle button.active {
  background: var(--sea-500); color: white;
  box-shadow: var(--shadow-sm);
}

.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-500); color: white;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px; border: 0;
  box-shadow: 0 6px 18px -6px color-mix(in oklab, var(--coral-500) 60%, transparent);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px color-mix(in oklab, var(--coral-500) 70%, transparent); }
.cta.ghost { background: white; color: var(--sea-700); box-shadow: inset 0 0 0 1.5px var(--sea-200); }
.cta.ghost:hover { background: var(--sea-50); }

/* ----- HERO ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background:
    radial-gradient(1200px 400px at 80% -10%, color-mix(in oklab, var(--sun-400) 40%, transparent), transparent 60%),
    radial-gradient(900px 320px at 10% 10%, color-mix(in oklab, var(--sea-200) 70%, transparent), transparent 60%),
    linear-gradient(180deg, var(--sand-50), var(--sand-100));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: white; color: var(--sea-700);
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral-500); }

.hero h1 {
  font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 800;
  margin: 18px 0 16px;
  color: var(--ink);
}
.hero h1 .accent {
  color: var(--sea-600);
  background: linear-gradient(180deg, var(--sea-500), var(--sea-700));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
  background: var(--sun-500);
  border-radius: 999px;
  opacity: 0.75;
  z-index: -1;
}
.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 28px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 36px;
}
.hero-stat {
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.hero-stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--sea-700); }
.hero-stat .lbl { font-size: 12.5px; color: var(--ink-mute); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hero illustration */
.hero-illu {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
@media (max-width: 900px) { .hero-illu { justify-self: start; max-width: 420px; } }

.hero-illu svg { width: 100%; height: 100%; display: block; }

.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px;
  pointer-events: none;
  z-index: 1;
}

/* ----- SECTIONS ----- */
section.block {
  padding: 84px 0;
  position: relative;
}
section.block.alt {
  background: white;
}
section.block.sea {
  background: linear-gradient(180deg, var(--sea-700), var(--sea-900));
  color: white;
}
section.block.sand {
  background: linear-gradient(180deg, var(--sand-100), var(--sand-50));
}

.section-title {
  font-size: clamp(32px, 4.2vw, 52px);
  max-width: 22ch;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px; color: var(--ink-soft); max-width: 62ch; margin-bottom: 42px;
}
.block.sea .section-sub { color: color-mix(in oklab, white 80%, var(--sea-200)); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--sea-50); color: var(--sea-700);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.block.sea .tag { background: color-mix(in oklab, white 15%, transparent); color: var(--sun-400); }

/* --- Audience cards --- */
.audience-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: stretch;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.age-chart {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  margin: 18px 0 4px;
}
.age-chip {
  background: var(--sand-100);
  border: 1.5px dashed var(--sand-300);
  border-radius: var(--radius-sm);
  padding: 10px 6px 8px;
  text-align: center;
}
.age-chip.highlight {
  background: color-mix(in oklab, var(--sea-500) 12%, white);
  border: 1.5px solid var(--sea-500);
  color: var(--sea-700);
}
.age-chip .year { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.age-chip.highlight .year { color: var(--sea-700); }
.age-chip .lvl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.age-chip.highlight .lvl { color: var(--sea-600); }

/* --- Locations --- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
  position: relative; overflow: hidden;
}
.loc-card .pin {
  width: 52px; height: 52px; border-radius: 14px; flex: 0 0 52px;
  display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(180deg, var(--sea-400), var(--sea-600));
  color: white;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.1);
}
.loc-card h3 { font-size: 22px; margin-bottom: 4px; }
.loc-card p { margin: 2px 0; color: var(--ink-soft); font-size: 15px; }
.loc-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  background: var(--sun-500); color: var(--sea-900);
}

/* --- Turnos calendar --- */
.turns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .turns-grid { grid-template-columns: 1fr; } }
.turn {
  background: linear-gradient(180deg, color-mix(in oklab, var(--sea-600) 10%, white), white);
  border: 1.5px solid var(--sea-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative; overflow: hidden;
}
.turn .num {
  position: absolute; top: -20px; right: -10px;
  font-family: var(--font-display); font-size: 140px; font-weight: 800;
  color: color-mix(in oklab, var(--sea-200) 80%, transparent);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.turn h3 { font-size: 22px; margin-bottom: 4px; position: relative; }
.turn .dates { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--sea-700); position: relative; }
.turn .days-strip {
  display: flex; gap: 3px; margin-top: 16px; position: relative;
}
.turn .day {
  flex: 1; height: 10px; border-radius: 3px; background: var(--sea-200);
}
.turn .day.weekend { background: var(--sand-200); }
.turn .meta { font-size: 13px; color: var(--ink-mute); margin-top: 12px; position: relative; }
.turn .places-box {
  position: relative;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--sea-200);
  display: grid; gap: 6px;
}
.turn .places-row {
  display: flex; align-items: baseline; gap: 8px;
}
.turn .places-row .places-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--sea-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.turn .places-row .places-l {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.turn .places-row.lunch .places-n {
  font-size: 22px;
  color: var(--coral-600);
}
.turn .places-row.lunch .places-l {
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* --- Horarios --- */
.schedule {
  background: white; border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.schedule-row {
  display: grid; grid-template-columns: 180px 1fr 120px;
  align-items: center; gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.schedule-row:last-child { border-bottom: 0; }
@media (max-width: 700px) { .schedule-row { grid-template-columns: 1fr; gap: 8px; } }
.schedule-row .time {
  font-family: var(--font-mono); font-weight: 700; color: var(--sea-700);
  font-size: 16px;
}
.schedule-row .label {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  display: flex; align-items: center; gap: 10px;
}
.schedule-row .icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sun-500); color: var(--sea-900);
  font-size: 22px;
}
.schedule-row.morning .icon { background: var(--sun-500); }
.schedule-row.noon .icon { background: var(--coral-500); color: white; }
.schedule-row.cangur .icon { background: var(--sea-500); color: white; }
.schedule-row .price {
  font-family: var(--font-mono); font-weight: 700; font-size: 20px;
  color: var(--ink); text-align: right;
}
@media (max-width: 700px) { .schedule-row .price { text-align: left; } }

.timeline-bar {
  background: var(--sand-100); border-radius: 999px;
  height: 46px; position: relative; margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.timeline-seg {
  position: absolute; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.timeline-labels {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute);
  padding: 0 4px;
}

/* --- Precios --- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1.5px solid var(--line);
  position: relative;
}
.price-card.featured {
  border-color: var(--sea-500);
  background: linear-gradient(180deg, white, color-mix(in oklab, var(--sea-50) 70%, white));
  box-shadow: 0 24px 60px -28px color-mix(in oklab, var(--sea-500) 50%, transparent);
}
.price-card .name {
  font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 4px;
}
.price-card .slot {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-mute); margin-bottom: 20px;
}
.price-card .amount {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.price-card .amount .euros {
  font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--sea-700); letter-spacing: -0.03em;
}
.price-card .amount .cents { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--sea-600); }
.price-card .per { font-size: 13px; color: var(--ink-mute); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0; font-size: 14.5px; }
.price-card li { padding: 6px 0 6px 26px; position: relative; color: var(--ink-soft); }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sea-100);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path fill='none' stroke='%23145079' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
  background-size: 16px 16px;
}

.bonif {
  margin-top: 28px; padding: 22px 26px;
  background: linear-gradient(90deg, var(--sun-500), var(--coral-500));
  border-radius: var(--radius-lg);
  color: var(--sea-900);
  display: flex; gap: 16px; align-items: center;
}
.bonif .ic {
  width: 44px; height: 44px; border-radius: 14px;
  background: white; display: grid; place-items: center;
  font-size: 22px;
  flex: 0 0 44px;
}
.bonif strong { font-weight: 800; }

/* --- How to register --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: color-mix(in oklab, white 8%, transparent);
  border: 1px solid color-mix(in oklab, white 18%, transparent);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step .step-n {
  display: inline-block;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: var(--sun-500); color: var(--sea-900);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.step h3 { color: white; font-size: 22px; margin-bottom: 6px; }
.step p { color: color-mix(in oklab, white 80%, var(--sea-200)); font-size: 15px; margin: 0; }
.step .when {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  margin-top: 12px;
  color: var(--sun-400);
}

/* --- FAQ --- */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 18px 22px;
  cursor: pointer;
}
.faq-item summary {
  list-style: none; font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 28px; height: 28px; border-radius: 50%; background: var(--sand-100);
  display: grid; place-items: center;
  transition: transform .2s ease, background .2s ease;
  font-size: 14px; color: var(--sea-700);
}
.faq-item[open] summary .chev { transform: rotate(45deg); background: var(--sea-500); color: white; }
.faq-item p { color: var(--ink-soft); font-size: 15.5px; margin: 12px 0 2px; }

/* --- Form --- */
.form-wrap {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px;
  align-items: start;
}
@media (max-width: 1000px) { .form-wrap { grid-template-columns: 1fr; } }
.form-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-section {
  padding: 8px 0 28px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 28px;
}
.form-section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.form-section h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; margin-bottom: 4px;
}
.form-section h3 .n {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--sea-500); color: white;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
}
.form-section .desc { font-size: 14px; color: var(--ink-mute); margin: 4px 0 20px 40px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 680px) { .form-grid, .form-grid.three { grid-template-columns: 1fr; } }
.field.full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.02em;
}
.field label .req { color: var(--coral-600); margin-left: 2px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: white;
  transition: border-color .12s ease, box-shadow .12s ease;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--sea-500);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sea-500) 18%, transparent);
}
.field textarea { min-height: 86px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--coral-500); }
.field .hint { font-size: 12px; color: var(--ink-mute); }
.field .err { font-size: 12.5px; color: var(--coral-600); font-weight: 600; }

/* Option tiles (turn/horario/center) */
.opt-group { display: grid; gap: 10px; }
.opt-group.three { grid-template-columns: repeat(3, 1fr); display: grid; }
.opt-group.two { grid-template-columns: repeat(2, 1fr); display: grid; }
@media (max-width: 680px) { .opt-group.three, .opt-group.two { grid-template-columns: 1fr; } }
.opt {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: white;
  cursor: pointer;
  transition: border-color .12s ease, background .12s ease, transform .12s ease;
}
.opt:hover { border-color: var(--sea-400); }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt.selected {
  border-color: var(--sea-500);
  background: color-mix(in oklab, var(--sea-500) 8%, white);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sea-500) 14%, transparent);
}
.opt .top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.opt .name { font-weight: 800; font-size: 15px; }
.opt .sub { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-mute); }
.opt .price-tag {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  padding: 3px 8px; border-radius: 999px;
  background: var(--sand-100); color: var(--ink-soft);
}
.opt.selected .price-tag { background: var(--sea-500); color: white; }

.check {
  display: flex; gap: 10px; padding: 12px 14px;
  background: var(--sand-50); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: flex-start;
  cursor: pointer;
}
.check input { accent-color: var(--sea-600); margin-top: 3px; }
.check .txt { font-size: 14px; color: var(--ink-soft); }
.check .txt strong { color: var(--ink); }

/* Summary panel */
.summary {
  position: sticky; top: 88px;
  background: white; border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.summary h3 { font-size: 20px; margin-bottom: 4px; }
.summary .muted { font-size: 13px; color: var(--ink-mute); margin-bottom: 18px; }
.sum-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--line);
}
.sum-row.empty { color: var(--ink-mute); font-style: italic; justify-content: center; }
.sum-row .k { color: var(--ink-soft); }
.sum-row .v { font-family: var(--font-mono); font-weight: 700; color: var(--ink); }
.sum-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px; padding-top: 16px;
  border-top: 2px solid var(--ink);
}
.sum-total .k { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.sum-total .v { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--sea-700); }
.sum-note {
  margin-top: 12px; font-size: 12px; color: var(--ink-mute); line-height: 1.4;
}
.sum-bonif {
  margin-top: 10px; padding: 10px 12px;
  background: color-mix(in oklab, var(--sun-500) 30%, white);
  border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--sea-900); font-weight: 600;
}

/* Buttons row */
.form-actions {
  display: flex; gap: 12px; justify-content: space-between; align-items: center;
  margin-top: 8px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 700; font-size: 15px; border: 0;
  background: var(--sea-600); color: white;
}
.btn.primary {
  background: var(--coral-500);
  box-shadow: 0 10px 24px -10px color-mix(in oklab, var(--coral-500) 70%, transparent);
  padding: 14px 28px; font-size: 16px;
}
.btn.primary:hover { background: var(--coral-600); }
.btn.ghost { background: transparent; color: var(--sea-700); box-shadow: inset 0 0 0 1.5px var(--sea-200); }
.btn.ghost:hover { background: var(--sea-50); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: white; padding: 14px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex; gap: 10px; align-items: center;
  animation: slideUp .22s ease;
}
.toast.success { background: var(--leaf-500); }
.toast.error { background: var(--coral-600); }
@keyframes slideUp { from { transform: translate(-50%, 20px); opacity: 0; } }

/* --- Enrol timeline --- */
.enrol-timeline {
  display: grid;
  gap: 0;
  margin-top: 8px;
  position: relative;
}
.enrol-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 600px) {
  .enrol-step { grid-template-columns: 36px 1fr; gap: 12px; }
}
.enrol-marker {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 26px;
}
.enrol-marker .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--card);
  border: 4px solid var(--sea-500);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sea-500) 14%, transparent);
  z-index: 2;
  flex: 0 0 auto;
}
.enrol-step.c-sun .enrol-marker .dot {
  border-color: var(--sun-600);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sun-500) 22%, transparent);
}
.enrol-step.c-coral .enrol-marker .dot {
  border-color: var(--coral-500);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--coral-500) 18%, transparent);
}
.enrol-marker .line {
  flex: 1;
  width: 3px;
  background: linear-gradient(180deg, var(--sea-200), color-mix(in oklab, var(--sea-200) 0%, transparent));
  margin-top: 4px;
  margin-bottom: 0;
  border-radius: 2px;
}
.enrol-step:last-child .enrol-marker .line { display: none; }

.enrol-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  position: relative;
}
.enrol-step:last-child .enrol-card { margin-bottom: 0; }

.enrol-when {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  color: var(--sea-700);
  background: var(--sea-50);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.enrol-step.c-sun .enrol-when {
  color: oklch(40% 0.12 60);
  background: color-mix(in oklab, var(--sun-500) 22%, white);
}
.enrol-step.c-coral .enrol-when {
  color: var(--coral-600);
  background: color-mix(in oklab, var(--coral-500) 12%, white);
}
.enrol-when .ic { font-size: 12px; }

.enrol-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.enrol-head h3 {
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.02em;
}
.enrol-pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.enrol-step.c-sea .enrol-pill { background: var(--sea-50); color: var(--sea-700); border-color: var(--sea-200); }
.enrol-step.c-sun .enrol-pill { background: color-mix(in oklab, var(--sun-500) 30%, white); color: oklch(35% 0.12 60); border-color: transparent; }
.enrol-step.c-coral .enrol-pill { background: color-mix(in oklab, var(--coral-500) 14%, white); color: var(--coral-600); border-color: transparent; }

.enrol-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.enrol-mail {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sand-100);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--sea-700);
  border: 1px solid var(--line);
}
.enrol-mail:hover {
  background: var(--sea-50);
  text-decoration: none;
}

.enrol-warn {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(90deg, color-mix(in oklab, var(--coral-500) 12%, white), color-mix(in oklab, var(--coral-500) 6%, white));
  border: 1.5px solid color-mix(in oklab, var(--coral-500) 30%, white);
  border-radius: var(--radius-lg);
  display: flex; gap: 16px; align-items: flex-start;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.5;
}
.enrol-warn .ic {
  flex: 0 0 40px;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--coral-500); color: white;
  display: grid; place-items: center;
  font-size: 19px;
}
.enrol-warn strong { color: var(--coral-600); }

/* ADMIN */
.admin-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: color-mix(in oklab, var(--sea-900) 70%, transparent);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: fade .18s ease;
}
@keyframes fade { from { opacity: 0; } }
.admin-modal {
  background: white; border-radius: var(--radius-lg);
  width: 100%; max-width: 1100px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.admin-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 22px 28px; border-bottom: 1px solid var(--line);
}
.admin-head h2 { font-size: 26px; }
.admin-head .muted { color: var(--ink-mute); font-size: 13px; }
.admin-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; background: var(--sand-100); border: 0;
  font-size: 18px; color: var(--ink-soft);
}
.icon-btn:hover { background: var(--sand-200); }

.admin-body { overflow: auto; padding: 4px 0 0; }
table.adm {
  width: 100%; border-collapse: collapse; font-size: 13.5px;
}
table.adm thead th {
  text-align: left; position: sticky; top: 0; background: var(--sand-100);
  padding: 12px 16px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.adm tbody td {
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  vertical-align: top;
  white-space: nowrap;
}
table.adm tbody tr:hover { background: var(--sand-50); }
table.adm .pill {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700;
  background: var(--sea-50); color: var(--sea-700);
  margin-right: 4px; margin-bottom: 2px;
}
table.adm .pill.coral { background: color-mix(in oklab, var(--coral-500) 14%, white); color: var(--coral-600); }
table.adm .pill.sun { background: color-mix(in oklab, var(--sun-500) 30%, white); color: var(--sea-900); }
table.adm .trash {
  color: var(--coral-600); background: transparent; border: 0; cursor: pointer;
  font-size: 16px;
}
table.adm .trash:hover { background: color-mix(in oklab, var(--coral-500) 10%, transparent); border-radius: 6px; }

.empty-state {
  padding: 64px 24px; text-align: center; color: var(--ink-mute);
}
.empty-state .big { font-size: 42px; margin-bottom: 8px; }

/* footer */
footer.ft {
  background: var(--sea-900); color: color-mix(in oklab, white 75%, transparent);
  padding: 48px 0 28px;
  font-size: 14px;
}
footer.ft h4 { color: white; font-size: 15px; margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
footer.ft .ft-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { footer.ft .ft-grid { grid-template-columns: 1fr; } }
footer.ft a { color: color-mix(in oklab, white 85%, transparent); }
footer.ft .ft-bot {
  margin-top: 32px; padding-top: 18px;
  border-top: 1px solid color-mix(in oklab, white 10%, transparent);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px;
  color: color-mix(in oklab, white 55%, transparent);
}
footer.ft .ft-lopd {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, white 10%, transparent);
}
footer.ft .ft-lopd h4 {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in oklab, white 70%, transparent);
  margin-bottom: 10px;
}
footer.ft .ft-lopd p {
  font-size: 12px; line-height: 1.6;
  color: color-mix(in oklab, white 55%, transparent);
  max-width: 980px;
}

/* ---- Signature pad ---- */
.sigpad {
  position: relative;
  width: 100%; height: 180px;
  background: white;
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  overflow: hidden;
  touch-action: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 1px 0 var(--line);
}
.sigpad.error { border-color: var(--coral-500); }
.sigpad canvas {
  display: block; width: 100%; height: 100%;
  cursor: crosshair;
}
.sigpad-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: color-mix(in oklab, var(--ink-mute) 60%, transparent);
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}
.sigpad-placeholder::before, .sigpad-placeholder::after {
  content: ''; display: block;
  width: 36px; height: 1px;
  background: color-mix(in oklab, var(--ink-mute) 30%, transparent);
  margin: 0 14px;
}
.sigpad-clear {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 16px; line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.sigpad-clear:hover { color: var(--coral-600); border-color: var(--coral-500); }

.lk {
  background: transparent; border: 0; padding: 4px 6px;
  color: var(--sea-700); font-weight: 700; font-size: 13px;
  cursor: pointer; border-radius: 6px;
}
.lk:hover { background: color-mix(in oklab, var(--sea-500) 10%, transparent); }
.lk.danger { color: var(--coral-600); }
.lk.danger:hover { background: color-mix(in oklab, var(--coral-500) 10%, transparent); }

/* ---- Payment upload ---- */
.payment-upload .err {
  font-size: 12.5px; color: var(--coral-600); font-weight: 600;
}
.payment-pick {
  width: 100%;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--sand-50);
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}
.payment-pick:hover {
  border-color: var(--sea-500);
  background: color-mix(in oklab, var(--sea-500) 5%, white);
}
.payment-pick .icn {
  width: 40px; height: 40px; flex-shrink: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sea-700);
}
.payment-pick .name { font-weight: 800; font-size: 15px; color: var(--ink); }
.payment-pick .sub {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute);
  margin-top: 2px;
}
.payment-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px; align-items: center;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.payment-card .thumb {
  width: 56px; height: 56px;
  border-radius: 10px; overflow: hidden;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
}
.payment-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.payment-card .pdf-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--coral-500), oklch(70% 0.15 30));
  color: white;
  font-family: var(--font-mono); font-weight: 800; font-size: 14px;
  letter-spacing: 0.04em;
}
.payment-card .meta { min-width: 0; }
.payment-card .fn {
  font-weight: 700; font-size: 14px; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.payment-card .sz {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute);
  margin-top: 2px;
}
.payment-card .actions { display: flex; gap: 4px; flex-shrink: 0; }

/* ---- LOPD inline notice ---- */
.lopd-inline {
  margin-top: 14px;
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px;
  background: color-mix(in oklab, var(--sea-500) 5%, white);
  border: 1px solid color-mix(in oklab, var(--sea-500) 20%, var(--line));
  border-radius: 12px;
  font-size: 12.5px; line-height: 1.55;
  color: var(--ink-soft);
}
.lopd-inline .lopd-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: white;
  border: 1px solid color-mix(in oklab, var(--sea-500) 25%, var(--line));
  color: var(--sea-700);
}

/* Floating admin button */
.admin-fab {
  position: fixed; bottom: 20px; left: 20px;
  z-index: 60;
  background: white; color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
}
.admin-fab:hover { background: var(--sand-50); }
.admin-fab .count {
  background: var(--coral-500); color: white;
  padding: 2px 8px; border-radius: 999px; font-size: 12px;
  font-family: var(--font-mono);
}

/* Tweaks panel */
.tweaks {
  position: fixed; bottom: 20px; right: 20px;
  background: white; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 14px 16px;
  z-index: 70;
  min-width: 240px;
}
.tweaks h4 { font-size: 12px; margin-bottom: 8px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }

/* wavy separators */
.wave-sep { display: block; width: 100%; height: 60px; }
