/* ============================================
   A CAMP — Shared Stylesheet
   Brand palette + modern responsive multi-page
   ============================================ */

@font-face {
  font-family: 'Peace Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/peace-sans.woff') format('woff');
}

:root {
  --cream: #F4EEFB;
  --cream-2: #E7DAF7;
  --paper: #FFFBF0;
  --sky: #C9BCEC;
  --sky-2: #DCD0F1;
  --ink: #2A1C44;
  --ink-soft: rgba(42, 28, 68, 0.72);
  --leaf: #2E9B85;
  --leaf-2: #1F7666;
  --grass: #BEE6DD;
  --purple: #6B3FA0;
  --purple-2: #8E6FB8;
  --purple-deep: #4B2685;
  --gold: #6B3FA0;
  --coral: #E8675D;
  --coral-dark: #C0463E;
  --pink: #F4ABB6;
  --sand: #E7DAF7;
  --blue: #8E6FB8;
  --water: #C9BCEC;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(42, 38, 32, 0.08);
  --shadow-md: 0 8px 24px rgba(42, 38, 32, 0.12);
  --shadow-lg: 0 18px 48px rgba(42, 38, 32, 0.18);
  --shadow-stamp: 0 5px 0 var(--ink);

  --max-w: 1280px;
  --page-pad: clamp(16px, 4vw, 40px);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }

/* ─── Typography ─── */
.font-bubble { font-family: 'Fredoka', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
.font-hand { font-family: 'Caveat', cursive; font-weight: 700; }
.font-marker { font-family: 'Patrick Hand', 'Neucha', sans-serif; }
.font-peace { font-family: 'Peace Sans', 'Fredoka', sans-serif; font-weight: 700; letter-spacing: 0.01em; }

.bubble {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  display: inline-block;
  -webkit-text-stroke: 8px var(--paper);
  paint-order: stroke fill;
  filter: drop-shadow(0 4px 0 rgba(42, 38, 32, 0.22));
  line-height: 0.9;
}
.bubble-sm { -webkit-text-stroke: 5px var(--paper); filter: drop-shadow(0 3px 0 rgba(42, 38, 32, 0.2)); }
.bubble-xs { -webkit-text-stroke: 3.5px var(--paper); filter: drop-shadow(0 2px 0 rgba(42, 38, 32, 0.18)); }

/* ─── Layout helpers ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--sky { background: var(--sky-2); }
.section--sand { background: var(--cream-2); }

.eyebrow {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--coral);
  display: block;
  margin-bottom: 8px;
}

.title-xl {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.title-lg { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); }
.title-md { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 30px); }

.lead {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-soft);
  max-width: 640px;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.btn--coral { background: var(--coral); color: var(--paper); }
.btn--gold { background: var(--purple); color: var(--paper); }
.btn--purple { background: var(--purple); color: var(--paper); }
.btn--blue { background: var(--blue); color: var(--paper); }
.btn--leaf { background: var(--leaf); color: var(--paper); }
.btn--wa { background: #25D366; color: var(--paper); }
.btn--sm { padding: 9px 18px; font-size: 14px; box-shadow: 0 3px 0 var(--ink); border-width: 2.5px; }
.btn--sm:hover { box-shadow: 0 5px 0 var(--ink); }

/* ─── Header / Nav ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 239, 217, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(42, 38, 32, 0.06);
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px var(--page-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.site-header .nav > nav { margin-right: auto; }
@media (max-width: 980px) {
  .site-header .nav > nav { margin-right: 0; margin-left: auto; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  display: block;
}
@media (max-width: 640px) {
  .brand img { height: 46px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--paper); }
.nav-links a.active { background: var(--ink); color: var(--paper); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: inline-flex;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  overflow: hidden;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.lang-switch button {
  padding: 6px 12px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-switch button.active { background: var(--ink); color: var(--paper); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ─── Mobile nav ─── */
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px var(--page-pad) 30px;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 30px -10px rgba(42, 38, 32, 0.18);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 17px; border-radius: var(--radius-md); }
  .menu-toggle { display: inline-flex; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 38, 32, 0.25) 0%, rgba(42, 38, 32, 0.05) 35%, rgba(248, 239, 217, 0.0) 60%, rgba(248, 239, 217, 0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(60px, 12vw, 120px) 0 clamp(80px, 14vw, 160px);
}
.hero__logo {
  display: block;
  margin: 0 auto 18px;
  width: clamp(110px, 16vw, 170px);
  height: auto;
  border-radius: 50%;
  border: 5px solid var(--paper);
  box-shadow: 0 14px 36px rgba(42, 38, 32, 0.35);
  background: var(--paper);
}
.hero__logo--big {
  width: clamp(300px, 52vw, 680px);
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 24px;
  filter: drop-shadow(0 22px 40px rgba(42, 38, 32, 0.5));
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: var(--shadow-stamp);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 18px;
}
.hero__headline {
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 96px);
  line-height: 1.02;
  color: var(--paper);
  text-shadow: 0 4px 0 rgba(42, 28, 68, 0.5), 0 14px 30px rgba(42, 28, 68, 0.5);
  margin: 0 0 22px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.hero__badge::before,
.hero__badge::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}
.hero__title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-shadow: 0 4px 0 rgba(42, 38, 32, 0.35), 0 12px 28px rgba(42, 38, 32, 0.35);
}
.hero__title span { display: inline-block; }
.hero__sub {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 18px 28px;
  background: rgba(255, 251, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(42, 28, 68, 0.18);
  box-shadow: 0 10px 28px rgba(42, 28, 68, 0.22);
  text-shadow: none;
  letter-spacing: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero__center { text-align: center; }

/* Page hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 8vw, 80px);
  background: linear-gradient(180deg, var(--sky-2), var(--cream));
  border-bottom: 3px solid var(--ink);
  text-align: center;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.page-hero::before {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px; left: -80px;
}
.page-hero::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  bottom: -160px; right: -100px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 60px);
  margin-bottom: 12px;
}
.breadcrumbs {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 16px;
  color: var(--ink-soft);
}
.breadcrumbs a { color: var(--coral); }
.breadcrumbs span { margin: 0 6px; }

/* ─── Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.6vw, 32px);
  box-shadow: var(--shadow-stamp);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 9px 0 var(--ink); }
.card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 24px);
  margin-bottom: 8px;
}
.card p { font-family: 'Patrick Hand', 'Neucha', sans-serif; font-size: 17px; color: var(--ink-soft); margin: 0; }
.card__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--purple);
  border: 2.5px solid var(--ink);
  color: var(--paper);
}
.card__icon svg,
.card__icon i[data-lucide] {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
  display: block;
}
.card__icon.coral { background: var(--coral); color: var(--paper); }
.card__icon.blue { background: var(--blue); color: var(--paper); }
.card__icon.leaf { background: var(--leaf); color: var(--paper); }
.card__icon.pink { background: var(--pink); color: var(--ink); }
.card__icon.purple { background: var(--purple-deep); color: var(--paper); }
.card__icon.gold { background: var(--purple); color: var(--paper); }

/* Sticker price card */
.price-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-stamp);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--purple);
  color: var(--paper);
  transform: scale(1.03);
}
.price-card.featured h3,
.price-card.featured li,
.price-card.featured .price-unit { color: var(--paper); }
.price-card .ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 3px 0 var(--ink);
  letter-spacing: 0.04em;
}
.price-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 6px;
}
.price-card .price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--coral);
  line-height: 1;
  margin: 14px 0 4px;
}
.price-card .price-unit {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.price-card.featured .price { color: var(--paper); }
.price-card.featured li::before { color: var(--grass); }
.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card li {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 17px;
  padding-left: 28px;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--leaf-2);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; align-self: center; }
.price-card .price-old {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: var(--coral);
  margin-top: 4px;
}
.price-card .price-discount {
  display: inline-block;
  margin: 6px auto 0;
  padding: 4px 12px;
  background: var(--coral);
  color: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 0 var(--ink);
}
.price-card.featured .price-old { color: rgba(255,251,240,0.7); text-decoration-color: var(--gold); }
.price-card.featured .price-discount { background: var(--gold); color: var(--ink); }

.early-bird-banner {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-stamp);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.early-bird-banner__badge {
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
  padding: 8px 22px;
  background: var(--paper);
  color: var(--coral-dark);
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 0 var(--ink);
  transform: rotate(-3deg);
}
.early-bird-banner__text {
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
}

/* ─── Sections specific helpers ─── */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-stamp);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Media card — photo + content */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.media-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-stamp);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.media-card:hover { transform: translateY(-5px); box-shadow: 0 10px 0 var(--ink); }
.media-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
  border-bottom: 3px solid var(--ink);
}
.media-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.media-card:hover .media-card__photo img { transform: scale(1.06); }
.media-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 3px 0 var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.media-card__badge svg, .media-card__badge i[data-lucide] { width: 14px; height: 14px; stroke-width: 2.4; }
.media-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.media-card__body h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}
.media-card__body p {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
}
.media-card__body .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px dashed rgba(42, 38, 32, 0.18);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
}
.media-card__body .meta-row .tag-pill {
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  color: var(--ink);
}

/* Feature row — alternating image/text */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse > div:first-child { order: 2; }
.feature-row__media {
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-stamp);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.feature-row__media img,
.feature-row__media iframe,
.feature-row__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.feature-row__sticker {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 3px 0 var(--ink);
}
.feature-row h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.feature-row p { font-family: 'Patrick Hand', 'Neucha', sans-serif; font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); }
.feature-row ul { font-family: 'Patrick Hand', 'Neucha', sans-serif; font-size: 17px; line-height: 1.8; padding-left: 18px; }
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse > div:first-child { order: 0; }
}

/* Video feature (large) */
.video-feature {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-stamp);
  aspect-ratio: 16/9;
  background: var(--ink);
}
.video-feature iframe,
.video-feature video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mentor avatar */
.mentor-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.mentor {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 0 var(--ink);
  padding: 18px;
  text-align: center;
  transition: transform 0.2s ease;
}
.mentor:hover { transform: translateY(-4px); }
.mentor__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
}
.mentor h4 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 16px; margin: 0 0 4px; }
.mentor p { font-family: 'Patrick Hand', 'Neucha', sans-serif; font-size: 15px; color: var(--ink-soft); margin: 0; }

/* Schedule list */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 0 var(--ink);
}
.schedule-row .time {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--coral);
}
.schedule-row .label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 17px;
}
.schedule-row .desc {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.schedule-row .tag {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  border: 2px solid var(--ink);
}
@media (max-width: 600px) {
  .schedule-row { grid-template-columns: 90px 1fr; }
  .schedule-row .tag { grid-column: 1/-1; justify-self: start; margin-top: 6px; }
}

/* Gallery */
.gallery-grid {
  columns: 3 240px;
  column-gap: 16px;
}
.gallery-grid figure {
  margin: 0 0 16px;
  break-inside: avoid;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-stamp);
  background: var(--paper);
  transition: transform 0.25s ease;
}
.gallery-grid figure:hover { transform: translateY(-4px) rotate(-1deg); }
.gallery-grid img { width: 100%; height: auto; display: block; }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.video-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-stamp);
  transition: transform 0.2s ease;
}
.video-card:hover { transform: translateY(-4px); }
.video-card .ratio {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.video-card iframe,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .meta { padding: 16px 20px; }
.video-card h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.video-card p { font-family: 'Patrick Hand', 'Neucha', sans-serif; font-size: 15px; color: var(--ink-soft); margin: 0; }

/* Map */
.map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 340px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-stamp);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Form */
.form-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-stamp);
  padding: clamp(24px, 3vw, 36px);
  max-width: 540px;
  margin: 0 auto;
}
.form-card label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 16px;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--cream);
  font: inherit;
  margin-bottom: 16px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  background: var(--paper);
  box-shadow: 0 0 0 3px var(--gold);
}
.form-card textarea { min-height: 110px; resize: vertical; }

/* ─── Floating social + WA ─── */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 0 var(--ink), 0 14px 24px rgba(42, 38, 32, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--ink), 0 18px 28px rgba(42, 38, 32, 0.22); }
.float-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn--wa { background: #25D366; }
.float-btn--wa svg { fill: var(--paper); }

/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 24px;
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'><path d='M 0 30 L 0 12 Q 100 0 200 12 T 400 12 T 600 12 T 800 12 T 1000 12 T 1200 12 L 1200 30 Z' fill='%232A2620'/></svg>");
  background-size: 100% 100%;
  transform: translateY(-100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  color: var(--gold);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 16px;
}
.footer-grid a { transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--gold); }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 239, 217, 0.08);
  border: 2px solid var(--cream);
  transition: background 0.15s ease, transform 0.15s ease;
}
.footer-socials a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(248, 239, 217, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 14px;
  opacity: 0.7;
}

/* ─── Misc decorative ─── */
.deco-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 3px 0 var(--ink);
  margin: 4px;
}
.deco-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 3px solid var(--cream); border-radius: 6px; }

/* ─── Astanapolis lore ─── */
.lore-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 32px);
  box-shadow: var(--shadow-stamp);
  text-align: left;
}
.lore-card h3 {
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--purple);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.lore-card p {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink);
  margin: 0 0 10px;
}
.lore-glossary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.lore-glossary li {
  list-style: none;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: 17px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lore-glossary li strong {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--purple-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lore-glossary ul, .lore-glossary { padding: 0; margin: 14px 0 0; }

.coin-banner {
  margin-top: clamp(24px, 3vw, 36px);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-stamp);
  padding: clamp(22px, 3vw, 36px);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
}
.coin-banner__coin {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe69b, #d99c1a 70%, #7a5306);
  border: 4px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #4a2a06;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25), inset 0 -8px 14px rgba(0,0,0,0.18);
}
.coin-banner h3 {
  font-family: 'Peace Sans', 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.coin-banner p {
  font-family: 'Patrick Hand', 'Neucha', sans-serif;
  font-size: clamp(17px, 1.7vw, 19px);
  margin: 0;
  opacity: 0.95;
}
@media (max-width: 600px) {
  .coin-banner { grid-template-columns: 1fr; text-align: center; }
  .coin-banner__coin { margin: 0 auto; }
}

.section--lore {
  background:
    radial-gradient(circle at 12% 18%, rgba(142, 111, 184, 0.25), transparent 55%),
    radial-gradient(circle at 88% 82%, rgba(46, 155, 133, 0.22), transparent 60%),
    var(--cream);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; }
.hide-sm { display: initial; }
@media (max-width: 640px) { .hide-sm { display: none; } }
