/* ──────────────────────────────────────────────────────────────────────────
   My Way Academy — stylesheet
   Brand: "Prostě jinak." · 2026
   Based on logomanuál MWA · Montserrat Alternates (display) + Montserrat (body)
   ────────────────────────────────────────────────────────────────────────── */


/* === 1. Design tokens === */
:root {
  /* Brand palette */
  --midnight:     #1E315A;
  --midnight-80:  #4B5A7B;
  --midnight-20:  #D2D6E0;
  --ocean:        #265CD0;
  --ocean-60:     #7C9AE2;
  --ocean-20:     #D4DEF6;
  --candy:        #FF98BE;
  --candy-80:     #FFADCB;
  --candy-20:     #FFE5EF;
  --candy-text:   #9B2E5E; /* readable candy for dark-on-light text use */
  --sun:          #FFD942;
  --sun-80:       #FFE168;
  --sun-20:       #FFF6CC;
  --cream:        #FBF7EE;
  --cream-deep:   #F2EBD8;
  --ink:          #1E315A;
  --ink-soft:     #4B5A7B;
  --ink-mute:     #6A7793; /* darkened from #8290AC for WCAG AA normal text on white */
  --line:         #E8E2D0;
  --line-soft:    #F0EADA;
  --white:        #ffffff;
  --danger:       #C3324E;
  --success:      #2F7E4E;

  /* Type */
  --f-display: "Montserrat Alternates", "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;
  --f-body:    "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Radius */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(30,49,90,.06);
  --sh-md: 0 8px 24px rgba(30,49,90,.08);
  --sh-lg: 0 20px 60px rgba(30,49,90,.12);

  /* Focus ring */
  --focus-color: #0B4FB8; /* stronger than --ocean for 3:1 against most BGs */
  --focus-ring: 0 0 0 3px var(--white), 0 0 0 6px var(--focus-color);

  /* Motion */
  --t-fast: .15s;
  --t-base: .2s;
  --t-slow: .4s;
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* === 2. Base / reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a {
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--t-base);
}
a:hover { color: var(--midnight); text-decoration: underline; text-underline-offset: 3px; }

/* Focus — visible, high-contrast, everywhere */
:where(a, button, [role="button"], input, select, textarea, summary, [tabindex]):focus { outline: none; }
:where(a, button, [role="button"], input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  color: var(--midnight);
  margin: 0 0 .4em;
  letter-spacing: -0.015em;
  font-weight: 700;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1em; padding: 0 0 0 1.2em; }

/* Section defaults */
section { padding: 120px 0; position: relative; }
@media (max-width: 960px) { section { padding: 72px 0; } }
@media (max-width: 600px) { section { padding: 56px 0; } }


/* === 3. Utilities === */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.wrap        { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-wide   { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px;  margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) {
  .wrap, .wrap-wide, .wrap-narrow { padding: 0 20px; }
}

.sec-cream    { background: var(--cream); }
.sec-midnight { background: var(--midnight); color: var(--white); }
.sec-midnight h1, .sec-midnight h2, .sec-midnight h3, .sec-midnight h4 { color: var(--white); }
.sec-ocean    { background: var(--ocean); color: var(--white); }
.sec-ocean h1, .sec-ocean h2, .sec-ocean h3, .sec-ocean h4 { color: var(--white); }

.muted     { color: var(--ink-soft); }
.hr-dots   { border: 0; height: 1px; background: repeating-linear-gradient(to right, var(--line) 0 4px, transparent 4px 10px); margin: 0; }

.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 32px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  font-family: var(--f-display);
}
.sec-midnight .eyebrow, .sec-ocean .eyebrow { color: var(--sun); }


/* === 4. Skip link === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--midnight);
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: top var(--t-base);
}
.skip-link:focus {
  top: 16px;
  color: var(--white);
  text-decoration: none;
}


/* === 5. Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast) var(--e-out), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  min-height: 48px; /* WCAG 2.5.8 target size */
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn .arr { transition: transform var(--t-base); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary  { background: var(--candy); color: var(--midnight); box-shadow: 0 6px 0 #E47FA5; }
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 0 #E47FA5; color: var(--midnight); text-decoration: none; }
.btn-primary:active { transform: translateY(3px);  box-shadow: 0 2px 0 #E47FA5; }

.btn-secondary { background: transparent; color: var(--midnight); border-color: var(--midnight); }
.btn-secondary:hover { background: var(--cream); color: var(--midnight); text-decoration: none; }

.btn-ghost { background: transparent; color: var(--midnight); padding: 10px 0; border-radius: 0; min-height: 0; }
.btn-ghost:hover { color: var(--ocean); }

.btn-sun  { background: var(--sun); color: var(--midnight); box-shadow: 0 6px 0 #DCB31E; }
.btn-sun:hover  { transform: translateY(-2px); box-shadow: 0 8px 0 #DCB31E; }
.btn-sun:active { transform: translateY(3px);  box-shadow: 0 2px 0 #DCB31E; }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.08); color: var(--white); text-decoration: none; }


/* === 6. Pill / badge === */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--cream);
  color: var(--midnight);
  font-family: var(--f-display);
}
.pill-new    { background: var(--sun); color: var(--midnight); }
.pill-ocean  { background: var(--ocean-20); color: var(--ocean); }
.pill-candy  { background: var(--candy-20); color: var(--candy-text); }
.pill-sm     { font-size: 11px; padding: 3px 9px; }


/* === 7. Navigation === */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1400px; margin: 0 auto;
  gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 24px; align-items: center;
  font-family: var(--f-display); font-size: 15px; font-weight: 500;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--midnight); text-decoration: none;
  position: relative; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--ocean); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--ocean); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--candy); border-radius: 2px;
}
.nav-dd { position: relative; }
.nav-dd > button {
  background: transparent; border: 0; padding: 8px 0;
  font: inherit; color: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-dd > button::after { content: "▾"; font-size: 10px; opacity: .55; }
.nav-dd[aria-expanded="true"] > button { color: var(--ocean); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 6px); left: -14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 260px; padding: 10px;
  list-style: none; margin: 0;
  display: none;
  z-index: 10;
}
.nav-dd[aria-expanded="true"] .nav-dd-menu { display: block; }
.nav-dd-menu li a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--midnight);
}
.nav-dd-menu li a:hover { background: var(--cream); color: var(--midnight); text-decoration: none; }

.nav-cta { padding: 12px 20px; min-height: 44px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--midnight);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { padding: 12px 20px; }

  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav.is-open .nav-links a { padding: 14px 0; font-size: 16px; width: 100%; }
  .nav.is-open .nav-dd { width: 100%; }
  .nav.is-open .nav-dd-menu {
    position: static; border: 0; box-shadow: none; padding: 0 0 0 16px;
    min-width: 0; display: block;
    background: transparent;
  }
  .nav.is-open .nav-cta {
    display: inline-flex; margin-top: 8px; align-self: flex-start;
  }
}


/* === 8. Card === */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--midnight-20);
}

.card-link {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.card-link:hover, .card-link:focus-visible {
  transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--midnight-20);
  text-decoration: none; color: inherit;
}


/* === 9. Grid helpers === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}


/* === 10. Credibility strip === */
.cred-strip {
  background: var(--cream);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred-strip-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 12px 28px; flex-wrap: wrap;
  font-family: var(--f-display); font-weight: 500; font-size: 14px;
  color: var(--midnight);
  list-style: none; margin: 0; padding: 0 32px;
}
.cred-strip-inner li { display: inline-flex; align-items: center; gap: 10px; }
.cred-strip-inner li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--sun);
  border-radius: 50%;
}


/* === 11. Marquee (credibility, motion-safe) === */
.marquee {
  background: var(--midnight);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  font-family: var(--f-display); font-size: 18px;
  animation: mwa-marq 42s linear infinite;
  width: max-content;
}
.marquee-group { display: flex; gap: 48px; align-items: center; padding-right: 48px; }
.marquee[aria-label]::before { /* hide text visually, screen readers read aria-label */
  content: ""; display: none;
}
@keyframes mwa-marq { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee-track { justify-content: center; flex-wrap: wrap; width: 100%; }
  .marquee-track .marquee-group + .marquee-group { display: none; }
}

.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }


/* === 12. Footer === */
.footer {
  background: var(--midnight);
  color: #B8C1D6;
  padding: 80px 0 32px;
}
.footer h2, .footer h3, .footer h4 { color: var(--white); }
.footer h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  margin: 0 0 20px; font-weight: 600;
}
.footer a { color: #B8C1D6; }
.footer a:hover { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 3; margin-bottom: 24px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
}
.footer-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px; font-size: 14px;
}
.footer-tagline {
  font-family: var(--f-display); color: var(--white);
  font-size: 20px; margin-top: 16px; font-weight: 600;
}
.footer-blurb {
  color: rgba(255,255,255,.7); font-size: 14px;
  margin-top: 20px; line-height: 1.6; max-width: 280px;
}
.footer-brand-logo { filter: brightness(0) invert(1); }
.footer-social {
  display: flex; gap: 10px; margin-top: 8px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: #B8C1D6;
  transition: background var(--t-base), border-color var(--t-base);
}
.footer-social a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  color: var(--sun); text-decoration: none;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-legal {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}


/* === 13. Reveal animation (motion-safe) === */
.reveal { opacity: 0; transform: translateY(14px); animation: mwa-reveal .7s ease forwards; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .15s; }
.reveal-3 { animation-delay: .25s; }
.reveal-4 { animation-delay: .35s; }
.reveal-5 { animation-delay: .45s; }
@keyframes mwa-reveal { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
}


/* === 14. Pattern watermark (decorative) === */
.pattern-bg {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: 0.08; user-select: none;
}


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: HOMEPAGE
   ────────────────────────────────────────────────────────────────────────── */

/* 15. Hero — Playful collage */
.hero {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #DCE7FA 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-size: 13px; font-weight: 600;
  box-shadow: var(--sh-sm);
  margin-bottom: 32px;
  color: var(--midnight);
}
.hero-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(47,126,78,.18);
}
.hero-h1 {
  font-size: clamp(56px, 11vw, 140px);
  line-height: .95;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}
.hero-h1 .word-1 {
  display: inline-block; transform: rotate(-2deg); color: var(--midnight);
}
.hero-h1 .word-2 {
  display: inline-block;
  background: var(--sun);
  padding: 0 .18em;
  border-radius: 20px;
  transform: rotate(2deg);
  font-style: italic; font-weight: 400;
  color: var(--midnight);
}
.hero-sub {
  font-size: clamp(18px, 2.1vw, 23px);
  max-width: 680px; margin: 24px auto 44px;
  color: var(--ink-soft); line-height: 1.5;
}
.hero-sub em { font-style: normal; font-weight: 600; color: var(--midnight); }
.hero-micro {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-collage {
  position: relative;
  max-width: 1100px; height: 460px;
  margin: 0 auto;
}
.hero-collage img { display: block; border-radius: var(--r-md); box-shadow: var(--sh-md); }
.hero-collage figure { margin: 0; }
.hero-collage figcaption {
  text-align: center;
  font-family: var(--f-display); font-size: 12px;
  margin-top: 10px; color: var(--ink-soft);
}
.collage-left {
  position: absolute; left: 2%; top: 8%; width: 28%;
  transform: rotate(-5deg); z-index: 2;
}
.collage-left img { width: 100%; height: 260px; object-fit: cover; }
.collage-left figcaption { font-style: italic; }
.collage-center {
  position: absolute; left: 34%; top: 0; width: 32%; z-index: 3;
}
.collage-center img { width: 100%; height: 400px; object-fit: cover; box-shadow: var(--sh-lg); }
.collage-right {
  position: absolute; right: 3%; top: 14%; width: 26%;
  transform: rotate(5deg); z-index: 2;
  background: var(--white); padding: 16px;
  border-radius: var(--r-md); box-shadow: var(--sh-md);
}
.collage-card {
  background: var(--candy);
  height: 180px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 22px;
  color: var(--midnight); text-align: center; padding: 16px;
}
.hero-sticker {
  position: absolute; z-index: 4;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 600;
  box-shadow: var(--sh-md);
}
.hero-sticker-candy {
  left: 22%; bottom: -2%;
  background: var(--candy); color: var(--midnight);
  transform: rotate(-4deg);
}
.hero-sticker-sun {
  right: 16%; bottom: 4%;
  background: var(--sun); color: var(--midnight);
  transform: rotate(3deg); font-size: 14px;
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 72px; }
  .hero-collage { height: auto; max-width: 520px; display: grid; grid-template-columns: 1fr; gap: 16px; }
  .hero-collage .collage-left,
  .hero-collage .collage-center,
  .hero-collage .collage-right,
  .hero-sticker { position: static; transform: none; width: auto; }
  .collage-center img { height: 320px; }
  .collage-left img { height: 220px; }
  .hero-sticker { display: inline-flex; margin: 8px auto 0; }
}


/* === 16. "Co se u mě děje" — bento grid === */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
@media (max-width: 1080px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .bento { grid-template-columns: 1fr; } }

.bento-card {
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none;
  min-height: 200px;
  border: 1px solid transparent;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.bento-card:hover, .bento-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  text-decoration: none;
}
.bento-card[href]:focus-visible { outline-offset: 4px; }
.bento-card-title {
  font-size: 22px; margin: 4px 0 0; line-height: 1.2;
}
.bento-card-eyebrow {
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
}
.bento-card-date {
  text-align: right; font-family: var(--f-display);
}
.bento-card-date-day { font-weight: 700; font-size: 28px; line-height: 1; }
.bento-card-date-mo  { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.bento-card-more {
  margin-top: auto;
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

.bento-big {
  grid-row: 1 / 3;
  background: var(--ocean); color: var(--white);
  min-height: 440px;
  justify-content: space-between;
}
.bento-big h3 { color: var(--white); font-size: clamp(32px, 3.5vw, 42px); line-height: 1.05; margin: 0; letter-spacing: -0.02em; }
.bento-big p { color: #DDE5F5; margin: 16px 0 0; line-height: 1.5; max-width: 420px; }
.bento-big .pill-hl {
  background: var(--candy); color: var(--midnight);
  padding: 0 14px; border-radius: 10px;
  display: inline-block; transform: rotate(-1deg);
  margin-top: 8px;
}
@media (max-width: 1080px) { .bento-big { grid-row: auto; grid-column: 1 / -1; } }

.bento-candy   { background: var(--candy); color: var(--midnight); }
.bento-sun     { background: var(--sun);   color: var(--midnight); }
.bento-white   { background: var(--white); color: var(--midnight); border-color: var(--line); }
.bento-midnight{ background: var(--midnight); color: var(--white); }
.bento-midnight .bento-card-title { color: var(--white); }
.bento-midnight .bento-card-eyebrow { color: var(--sun); }
.bento-midnight .bento-card-more    { color: var(--sun); }
.bento-white .bento-card-eyebrow    { color: var(--ocean); }
.bento-white .bento-card-more       { color: var(--ocean); }


/* === 17. "Najděte svou cestu" — mosaic === */
.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
@media (max-width: 1080px) { .mosaic { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .mosaic { grid-template-columns: 1fr; } }

.mosaic-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none; color: var(--midnight);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.mosaic-card:hover, .mosaic-card:focus-visible {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: var(--midnight-20);
  text-decoration: none; color: var(--midnight);
}
.mosaic-card img { width: 100%; object-fit: cover; display: block; }
.mosaic-card-body {
  padding: 22px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.mosaic-card h3 { font-size: 24px; margin: 0 0 4px; }
.mosaic-card p  { font-size: 14px; color: var(--ink-soft); margin: 0; }
.mosaic-card-more {
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

.mosaic-big {
  grid-row: 1 / 3;
}
.mosaic-big img { aspect-ratio: 4/3; height: auto; }
.mosaic-big .mosaic-card-body { padding: 28px; gap: 14px; }
.mosaic-big h3 { font-size: 36px; line-height: 1.05; }

.mosaic-wide {
  grid-column: 2 / 4;
  display: grid; grid-template-columns: 240px 1fr;
}
.mosaic-wide img { width: 100%; height: 100%; min-height: 200px; aspect-ratio: auto; }
.mosaic-wide .mosaic-card-body { padding: 24px; }
.mosaic-wide h3 { font-size: 26px; margin: 0; }
.mosaic-wide-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }

@media (max-width: 1080px) {
  .mosaic-big { grid-row: auto; grid-column: 1 / -1; }
  .mosaic-wide { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .mosaic-wide { grid-template-columns: 1fr; }
  .mosaic-wide img { min-height: 180px; }
}

.std-img { aspect-ratio: 16/9; height: auto; }


/* === 18. Butterfly quote (midnight) === */
.butterfly-quote {
  text-align: center;
  padding: 96px 0;
  background: var(--midnight); color: var(--white);
  position: relative; overflow: hidden;
}
.butterfly-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../assets/icons/mwa-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(720px, 75%) auto;
  filter: brightness(0) invert(1);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.butterfly-quote > .wrap-narrow {
  position: relative;
  z-index: 1;
}
.butterfly-quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.25;
  color: var(--white);
  font-weight: 400; font-style: italic;
  margin: 28px 0 36px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.butterfly-quote cite {
  font-size: 14px; color: #B8C1D6;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-family: var(--f-display); font-weight: 600;
  font-style: normal;
}


/* === 19. Quote block — big Katka === */
.katka-quote {
  background: var(--ocean); color: var(--white);
  position: relative; overflow: hidden;
}
.katka-quote-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: center;
}
@media (max-width: 960px) {
  .katka-quote-grid { grid-template-columns: 1fr; gap: 40px; }
}
.katka-quote-photo { position: relative; }
.katka-quote-photo img {
  width: 100%; max-width: 380px;
  aspect-ratio: 3/4; height: auto; object-fit: cover;
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  transform: rotate(-3deg);
}
.katka-quote-sticker {
  position: absolute; bottom: -6%; right: 4%;
  background: var(--sun); color: var(--midnight);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  transform: rotate(4deg); box-shadow: var(--sh-md);
  font-size: 14px;
}
.katka-quote blockquote p {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  font-family: var(--f-display); font-weight: 500;
  color: var(--white); letter-spacing: -0.01em;
  margin: 0;
}
.katka-quote blockquote p mark {
  background: var(--candy); color: var(--midnight);
  padding: 0 14px; border-radius: 10px;
  display: inline-block; transform: rotate(-1deg);
}
.katka-quote blockquote p em {
  font-style: italic; color: var(--sun);
}
.katka-quote-big {
  font-size: 140px; line-height: .6;
  color: var(--sun); font-family: var(--f-display);
  margin-bottom: 12px;
  user-select: none;
}
.katka-quote-cite {
  margin-top: 32px;
  font-family: var(--f-display); font-size: 16px;
  color: #DDE5F5; font-style: normal;
}


/* === 20. Maskoti === */
.mascots { background: var(--cream); }
.mascot-card {
  padding: 0; overflow: hidden; text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.mascot-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.mascot-media {
  height: 240px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.mascot-media img { max-height: 100%; max-width: 100%; object-fit: contain; }
.mascot-m-max    { background: var(--candy-20); }
.mascot-m-molly  { background: var(--sun-20); }
.mascot-m-milo   { background: var(--ocean-20); }
.mascot-m-monkey { background: var(--cream-deep); }
.mascot-body { padding: 24px; }
.mascot-name {
  font-family: var(--f-display); font-weight: 700;
  font-size: 22px; color: var(--midnight); margin: 0 0 4px;
}
.mascot-role {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 10px;
}
.mascot-blurb { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }


/* === 21. References wall (quote grid) === */
.ref-wall {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 960px) { .ref-wall { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ref-wall { grid-template-columns: 1fr; } }
.ref-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.ref-card.bg-sun   { background: var(--sun);   border-color: transparent; }
.ref-card.bg-candy { background: var(--candy); border-color: transparent; }
.ref-card.bg-ocean { background: var(--ocean); color: var(--white); border-color: transparent; }
.ref-card.big { grid-row: span 2; }
.ref-card blockquote { margin: 0; }
.ref-card blockquote p {
  font-size: 20px; line-height: 1.4;
  font-family: var(--f-display); font-weight: 500;
  color: var(--midnight); margin: 0 0 16px;
}
.ref-card.big blockquote p { font-size: 24px; line-height: 1.3; }
.ref-card.bg-ocean blockquote p { color: var(--white); }
.ref-card blockquote footer {
  font-size: 14px; font-weight: 600; color: var(--midnight);
}
.ref-card.bg-ocean blockquote footer { color: #DDE5F5; }
.ref-card blockquote footer span { display: block; font-weight: 500; font-size: 13px; color: inherit; opacity: .8; }
.ref-card-mark {
  font-size: 90px; line-height: .7; margin-bottom: 10px;
  color: var(--midnight); font-family: var(--f-display);
}
.ref-card.with-logo {
  grid-column: span 2;
  display: flex; gap: 24px; align-items: center;
}
@media (max-width: 960px) { .ref-card.with-logo { grid-column: span 2; } }
@media (max-width: 600px) { .ref-card.with-logo { grid-column: span 1; flex-direction: column; align-items: flex-start; } }
.ref-card-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ocean-20);
  flex-shrink: 0;
  display: grid; place-items: center;
  overflow: hidden;
}


/* === 22. Final CTA block === */
.cta-final {
  background: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.cta-final-eyebrow { margin-bottom: 14px; }
.cta-final h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 20px;
}
.cta-final p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 40px;
}
.cta-final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: O MNĚ
   ────────────────────────────────────────────────────────────────────────── */

.about-hero {
  padding: 56px 0 48px;
  background: var(--cream);
}
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
}
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-hero img {
  width: 100%;
  aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
.about-hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  margin: 12px 0 20px;
}
.about-hero p {
  font-size: clamp(17px, 1.8vw, 19px);
}
@media (max-width: 900px) {
  .about-hero img { max-width: 680px; margin: 0 auto; aspect-ratio: 4/3; }
}
.about-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 16px 0 24px;
}
.about-hero p { font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); max-width: 560px; }

.about-story-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 72px; align-items: start;
}
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-story-grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
}

.about-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--midnight); color: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 600px) { .about-numbers { grid-template-columns: 1fr; } }
.about-number {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.about-number:last-child { border-right: 0; }
@media (max-width: 600px) { .about-number { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); } .about-number:last-child { border-bottom: 0; } }
.about-number-big {
  font-family: var(--f-display); font-size: 56px; font-weight: 700;
  color: var(--sun); line-height: 1;
}
.about-number-label {
  margin-top: 8px; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #B8C1D6;
}

.timeline { position: relative; padding-left: 0; list-style: none; margin: 0; }
.timeline li {
  display: grid; grid-template-columns: 140px 24px 1fr;
  gap: 20px; padding-bottom: 32px;
  position: relative;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline-year {
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  color: var(--ink-soft); padding-top: 3px;
}
.timeline-dot-col { position: relative; }
.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--candy); margin-top: 6px;
  position: relative; z-index: 1;
}
.timeline li:not(:last-child) .timeline-dot-col::after {
  content: ""; position: absolute; top: 24px; left: 6px;
  width: 2px; bottom: -32px; background: var(--line);
}
.timeline-dot-sun { background: var(--sun); }
.timeline-dot-ocean { background: var(--ocean); }
.timeline-dot-midnight { background: var(--midnight); }
.timeline-dot-current {
  background: var(--candy);
  box-shadow: 0 0 0 6px var(--candy-20);
}
.timeline-body h3 { font-size: 19px; margin: 0 0 6px; }
.timeline-body p  { color: var(--ink-soft); margin: 0; font-size: 15px; }

@media (max-width: 600px) {
  .timeline li { grid-template-columns: 80px 20px 1fr; gap: 14px; }
  .timeline-year { font-size: 13px; }
}

.badge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.badge-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.badge-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  font-size: 20px; flex-shrink: 0;
}
.badge-item strong { font-family: var(--f-display); font-size: 15px; display: block; }
.badge-item span { font-size: 13px; color: var(--ink-soft); }

.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .about-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .about-values { grid-template-columns: 1fr; } }
.about-value {
  padding: 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.about-value-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-family: var(--f-display); font-weight: 700;
}
.about-value h3 { font-size: 20px; margin: 0 0 8px; }
.about-value p  { margin: 0; font-size: 15px; color: var(--ink-soft); }


/* === 23. FAQ accordion === */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 24px 8px;
  background: transparent;
  border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--f-display); font-weight: 600; font-size: 19px;
  color: var(--midnight); text-align: left;
}
.faq-q-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t-base), background var(--t-base);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q-icon {
  background: var(--sun);
  transform: rotate(45deg);
}
.faq-q-icon svg { width: 14px; height: 14px; }
.faq-a {
  padding: 0 8px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 720px;
}
.faq-a p { margin: 0 0 .8em; }
.faq-a p:last-child { margin-bottom: 0; }


/* === 24. Akt (3-act story) layout pro O mně === */
.akt-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 48px; margin-bottom: 100px; align-items: start;
}
.akt-row:last-child { margin-bottom: 0; }
.akt-label {
  text-align: right;
  font-family: var(--f-display); font-weight: 500; font-size: 14px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.akt-num {
  font-family: var(--f-display); font-weight: 700; font-size: 80px;
  color: var(--midnight-20); line-height: 1; letter-spacing: -0.03em;
  margin-top: 6px;
}
.akt-body { max-width: 720px; }
.akt-body h3 { font-size: clamp(28px, 3.5vw, 40px); margin: 0 0 20px; line-height: 1.1; }
.akt-body p { font-size: 19px; line-height: 1.6; color: var(--ink); }
.akt-body p + p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.akt-quote {
  margin-top: 32px; padding: 28px 32px;
  background: var(--cream); border-radius: var(--r-md);
  border-left: 3px solid var(--ocean);
}
.akt-quote p {
  font-family: var(--f-display); font-size: 22px;
  font-style: italic; color: var(--midnight);
  margin: 0; line-height: 1.4; font-weight: 500;
}
.akt-flags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 720px) {
  .akt-row { grid-template-columns: 80px 1fr; gap: 24px; margin-bottom: 64px; }
  .akt-num { font-size: 56px; }
}


/* === 25. Value cards (O mně) === */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 40px; border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  color: var(--midnight);
}
.value-card.bg-candy   { background: var(--candy); }
.value-card.bg-sun     { background: var(--sun); }
.value-card.bg-ocean   { background: var(--ocean); color: var(--white); }
.value-card.bg-ocean h3{ color: var(--white); }
.value-card.bg-midnight{ background: var(--midnight); color: var(--white); }
.value-card.bg-midnight h3 { color: var(--white); }
.value-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.value-card-num {
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.15em;
}
.value-card h3 { font-size: 30px; margin: 0 0 16px; line-height: 1.1; }
.value-card p  { font-size: 16px; line-height: 1.6; margin: 0; opacity: .9; }


/* === 26. Qualification timeline (O mně) === */
.qual-list { display: grid; gap: 12px; }
.qual-item {
  display: grid;
  grid-template-columns: 90px 16px 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.qual-year {
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  color: var(--ink-soft); letter-spacing: 0.05em;
}
.qual-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.qual-dot.bg-candy   { background: var(--candy); }
.qual-dot.bg-sun     { background: var(--sun); }
.qual-dot.bg-ocean   { background: var(--ocean); }
.qual-dot.bg-ocean-60{ background: var(--ocean-60); }
.qual-dot.bg-midnight{ background: var(--midnight); }
.qual-dot.bg-midnight-80 { background: var(--midnight-80); }
.qual-body strong {
  font-family: var(--f-display); font-weight: 600;
  font-size: 17px; color: var(--midnight);
  display: block; margin-bottom: 2px;
}
.qual-body span { font-size: 13px; color: var(--ink-soft); }
.qual-item-icon { color: var(--ink-mute); flex-shrink: 0; }

@media (max-width: 720px) {
  .qual-item { grid-template-columns: 64px 12px 1fr; padding: 18px 16px; gap: 14px; }
  .qual-item-icon { display: none; }
  .qual-year { font-size: 12px; }
  .qual-body strong { font-size: 15px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: KONTAKT
   ────────────────────────────────────────────────────────────────────────── */

/* === 27. Contact hero === */
.kontakt-hero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
}
.kontakt-hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 14px 0 24px;
  text-wrap: balance;
}
.kontakt-hero p {
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--ink-soft);
  max-width: 620px;
}


/* === 28. Contact layout grid (info + form) === */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 960px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* === 29. Contact info cards === */
.kontakt-info { display: grid; gap: 16px; }
.kontakt-info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-base), transform var(--t-base);
  color: var(--midnight);
  text-decoration: none;
}
.kontakt-info-item:hover,
.kontakt-info-item:focus-visible {
  border-color: var(--candy);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--midnight);
}
.kontakt-info-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.kontakt-info-icon svg { width: 22px; height: 22px; color: var(--ocean); }
.kontakt-info-item strong {
  display: block;
  font-family: var(--f-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft); font-weight: 600;
  margin-bottom: 4px;
}
.kontakt-info-item span {
  font-family: var(--f-display); font-weight: 600; font-size: 17px;
  color: var(--midnight);
  word-break: break-word;
}

.kontakt-katka {
  margin-top: 8px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex; gap: 16px; align-items: center;
}
.kontakt-katka img {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: 50%;
  flex-shrink: 0;
}
.kontakt-katka p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.kontakt-katka strong {
  display: block;
  font-family: var(--f-display); font-weight: 600;
  font-size: 15px; color: var(--midnight);
  margin-bottom: 2px;
}


/* === 30. Form === */
.form {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 40px;
}
@media (max-width: 640px) { .form { padding: 28px 20px; } }

.form-header { margin-bottom: 28px; }
.form-header h2 { font-size: 30px; margin: 0 0 8px; }
.form-header p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.field { display: grid; gap: 6px; margin-bottom: 20px; }
.field label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--midnight);
}
.field .hint {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  font-family: var(--f-body);
}
.field .req { color: var(--danger); font-family: var(--f-body); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--midnight);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  line-height: 1.4;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  min-height: 48px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--f-body);
}
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: var(--midnight-20); }
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px var(--ocean-20);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  opacity: 1;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.radio-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
  font-size: 15px; font-family: var(--f-body);
  color: var(--midnight);
  min-height: 48px;
}
.radio-option:hover { border-color: var(--midnight-20); background: var(--cream); }
.radio-option input[type="radio"] {
  accent-color: var(--ocean);
  width: 18px; height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.radio-option input[type="radio"]:focus-visible + span {
  color: var(--ocean);
}
.radio-option:has(input:checked) {
  border-color: var(--ocean);
  background: var(--ocean-20);
  color: var(--midnight);
}

.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 24px;
  padding: 12px 0;
}
.checkbox input[type="checkbox"] {
  accent-color: var(--ocean);
  width: 20px; height: 20px;
  margin-top: 2px; flex-shrink: 0;
  cursor: pointer;
}
.checkbox label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox label a { font-weight: 600; }

.form-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.form-note {
  font-size: 13px; color: var(--ink-soft);
}


/* === 31. Map / location card === */
.location-block {
  background: var(--midnight); color: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .location-block { grid-template-columns: 1fr; padding: 32px 24px; }
}
.location-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,217,66,.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.location-block h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 14px 0 12px;
  line-height: 1.1;
}
.location-block p { color: #B8C1D6; margin-bottom: 24px; }
.location-block address {
  font-family: var(--f-display); font-weight: 500; font-size: 19px;
  font-style: normal; color: var(--white);
  line-height: 1.5;
  margin-bottom: 28px;
}
.location-block .eyebrow { color: var(--sun); }

.location-map-preview {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 24px;
  color: var(--midnight);
  position: relative;
  z-index: 1;
}
.location-map-preview p {
  color: var(--midnight);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.location-map-links {
  display: flex; gap: 12px; flex-wrap: wrap;
}


/* === 32. Transport & hours === */
.kontakt-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 900px) { .kontakt-cols { grid-template-columns: 1fr; gap: 32px; } }

.hours-list {
  list-style: none; padding: 0; margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--midnight); font-weight: 600; }
.hours-list li span:last-child { color: var(--ink-soft); }
.hours-list li.is-closed span:last-child { color: var(--ink-mute); }

.transport-block {
  padding: 28px;
  background: var(--cream);
  border-radius: var(--r-md);
  border-left: 3px solid var(--candy);
}
.transport-block h3 { font-size: 18px; margin: 0 0 12px; }
.transport-block p + p { margin-top: 8px; }
.transport-block p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.6; }


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: REFERENCE
   ────────────────────────────────────────────────────────────────────────── */

.ref-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}
.ref-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 14px 0 20px;
}
.ref-hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  max-width: 620px; margin: 0 auto;
}

.ref-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--midnight); color: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 1240px;
  margin: 48px auto 0;
}
@media (max-width: 900px) { .ref-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ref-stats { grid-template-columns: 1fr; } }
.ref-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.ref-stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .ref-stat:nth-child(2n) { border-right: 0; }
  .ref-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 480px) {
  .ref-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ref-stat:last-child { border-bottom: 0; }
}
.ref-stat-big {
  font-family: var(--f-display); font-size: 52px;
  font-weight: 700; color: var(--sun); line-height: 1;
  letter-spacing: -0.02em;
}
.ref-stat-label {
  margin-top: 10px; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #B8C1D6;
}

/* Reference CTA card (na konci gridu) */
.ref-cta-card {
  background: var(--midnight);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 220px;
}
.ref-cta-card h3 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}
.ref-cta-card p {
  color: #B8C1D6;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.ref-cta-card .btn {
  align-self: flex-start;
}

/* Reference disclaimer */
.ref-disclaimer {
  margin: 48px auto 0;
  max-width: 720px;
  padding: 20px 28px;
  background: var(--cream);
  border-radius: var(--r-md);
  border-left: 3px solid var(--sun);
  text-align: left;
}
.ref-disclaimer p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.ref-disclaimer strong { color: var(--midnight); }


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: ANGLIČTINA PRO DĚTI (+ shared: service rozcestník cards)
   ────────────────────────────────────────────────────────────────────────── */

/* Service card grid (5 cards) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex; flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none; color: var(--midnight);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  min-height: 280px;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: var(--midnight-20);
  text-decoration: none; color: var(--midnight);
}
.service-card-tag {
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.service-card h3 { font-size: 22px; margin: 0 0 10px; line-height: 1.25; }
.service-card p  { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; flex: 1; }
.service-card-meta {
  margin-top: 16px;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-mute);
  font-family: var(--f-display); font-weight: 500;
}
.service-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.service-card-more {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  color: var(--midnight);
}
.service-card-accent {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-family: var(--f-display); font-weight: 700;
}
.service-card.bg-candy-soft  { background: var(--candy-20); border-color: transparent; }
.service-card.bg-sun-soft    { background: var(--sun-20);   border-color: transparent; }
.service-card.bg-ocean-soft  { background: var(--ocean-20); border-color: transparent; }
.service-card.featured-new   { background: var(--midnight); color: var(--white); border-color: transparent; }
.service-card.featured-new h3, .service-card.featured-new .service-card-more { color: var(--white); }
.service-card.featured-new p { color: #B8C1D6; }
.service-card.featured-new .service-card-tag { color: var(--sun); }


/* Service detail block (alternating) */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px dashed var(--line);
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail.reversed { direction: rtl; }
.svc-detail.reversed > * { direction: ltr; }
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .svc-detail.reversed { direction: ltr; }
}
.svc-detail-media {
  position: relative;
}
.svc-detail-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
}
.svc-detail-media-sticker {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--sun); color: var(--midnight);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  transform: rotate(-3deg); box-shadow: var(--sh-md);
  font-size: 14px;
}
.svc-detail-body h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 14px 0 18px;
  line-height: 1.1;
}
.svc-detail-body p { font-size: 17px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; }
.svc-detail-body p:last-of-type { color: var(--ink-soft); font-size: 16px; }
.svc-detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--r-md);
}
@media (max-width: 600px) { .svc-detail-specs { grid-template-columns: 1fr 1fr; } }
.svc-detail-spec strong {
  display: block;
  font-family: var(--f-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft); margin-bottom: 4px;
}
.svc-detail-spec span {
  font-family: var(--f-display); font-weight: 600; font-size: 15px;
  color: var(--midnight);
}
.svc-detail-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 10px;
}
.svc-detail-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.5;
}
.svc-detail-list li::before {
  content: "✓";
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sun); color: var(--midnight);
  display: inline-grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}


/* Process steps (1-2-3) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: stp;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.process-step-num {
  counter-increment: stp;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  color: var(--midnight);
  margin-bottom: 20px;
}
.process-step-num::before { content: counter(stp, decimal-leading-zero); }
.process-step-num.bg-candy { background: var(--candy); }
.process-step-num.bg-sun   { background: var(--sun); }
.process-step-num.bg-ocean { background: var(--ocean); color: var(--white); }
.process-step h3 { font-size: 22px; margin: 0 0 12px; }
.process-step p  { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }


/* Detailed maskot card */
.mascot-card-big {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (max-width: 720px) {
  .mascot-card-big { grid-template-columns: 1fr; gap: 20px; text-align: center; }
}
.mascot-card-big-media {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.mascot-card-big-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mascot-card-big-name {
  font-family: var(--f-display); font-size: 32px; font-weight: 700;
  color: var(--midnight); margin: 0 0 6px;
}
.mascot-card-big-role {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); font-family: var(--f-display); font-weight: 600;
  margin-bottom: 16px;
}
.mascot-card-big p { font-size: 16px; color: var(--ink); line-height: 1.6; margin: 0; }
.mascot-card-big.bg-candy  { background: var(--candy-20); border-color: transparent; }
.mascot-card-big.bg-sun    { background: var(--sun-20); border-color: transparent; }
.mascot-card-big.bg-ocean  { background: var(--ocean-20); border-color: transparent; }
.mascot-card-big.bg-cream  { background: var(--cream-deep); border-color: transparent; }


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: KALENDÁŘ AKCÍ
   ────────────────────────────────────────────────────────────────────────── */

.kalendar-hero {
  padding: 80px 0 32px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
}
.kalendar-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 14px 0 20px;
}
.kalendar-hero p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 620px; margin: 0 auto;
}

.filter-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.filter-pill {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--midnight);
  cursor: pointer;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.filter-pill:hover { background: var(--cream); border-color: var(--midnight-20); }
.filter-pill.is-active {
  background: var(--midnight); color: var(--white); border-color: var(--midnight);
}

/* Event grid */
.events-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.event-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none; color: var(--midnight);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.event-card:hover, .event-card:focus-visible {
  transform: translateY(-4px); box-shadow: var(--sh-lg);
  border-color: var(--midnight-20);
  text-decoration: none; color: var(--midnight);
}
.event-card-banner {
  padding: 28px;
  position: relative;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--midnight);
}
.event-card-banner.bg-candy   { background: var(--candy); }
.event-card-banner.bg-sun     { background: var(--sun); }
.event-card-banner.bg-ocean   { background: var(--ocean); color: var(--white); }
.event-card-banner.bg-midnight{ background: var(--midnight); color: var(--white); }
.event-card-banner-type {
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-block; margin-bottom: 18px;
}
.event-card-date {
  font-family: var(--f-display); font-weight: 700;
  line-height: 1; text-align: right;
  position: absolute; top: 28px; right: 28px;
}
.event-card-date-day { font-size: 40px; display: block; }
.event-card-date-mo  { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; display: block; }
.event-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.event-card h3 { font-size: 22px; margin: 0; line-height: 1.25; }
.event-card-meta {
  display: flex; gap: 6px 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--f-display); font-weight: 500;
}
.event-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.event-card-desc { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; flex: 1; }
.event-card-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: 12px; margin-top: auto;
  border-top: 1px solid var(--line);
}
.event-card-status {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--f-display); font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
}
.event-card-status.open      { background: rgba(47,126,78,.12); color: var(--success); }
.event-card-status.low       { background: rgba(255,217,66,.35); color: #9A7A00; }
.event-card-status.full      { background: rgba(195,50,78,.15); color: var(--danger); }
.event-card-status.running   { background: var(--ocean-20); color: var(--ocean); }
.event-card-more {
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--midnight);
}

.event-empty {
  padding: 56px 28px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--r-lg);
  color: var(--ink-soft);
}
.event-empty h3 { font-size: 22px; margin: 0 0 8px; }
.event-empty p  { margin: 0; font-size: 15px; }


/* Decorative media block (for service details without a photo) */
.svc-decor {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  padding: 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.svc-decor.bg-candy   { background: var(--candy);   color: var(--midnight); }
.svc-decor.bg-sun     { background: var(--sun);     color: var(--midnight); }
.svc-decor.bg-ocean   { background: var(--ocean);   color: var(--white); }
.svc-decor.bg-midnight{ background: var(--midnight); color: var(--white); }
.svc-decor-emoji {
  font-size: 72px; line-height: 1;
  margin-bottom: 20px;
  opacity: .9;
}
.svc-decor h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05; margin: 0 0 12px;
  color: inherit;
}
.svc-decor p {
  font-family: var(--f-display); font-weight: 500;
  font-size: 17px; margin: 0;
  opacity: .85;
}
.svc-decor-sticker {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--sun); color: var(--midnight);
  padding: 12px 18px; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700;
  transform: rotate(-3deg); box-shadow: var(--sh-md);
  font-size: 14px;
}
.svc-decor-sticker.bg-candy { background: var(--candy); }
.svc-decor-sticker.bg-white { background: var(--white); color: var(--midnight); }


/* ──────────────────────────────────────────────────────────────────────────
   LEGAL PAGES (Prohlášení o přístupnosti, Podmínky rušení, Ochrana údajů, Cookies)
   ────────────────────────────────────────────────────────────────────────── */

.legal-page { padding: 72px 0 96px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 56px); margin: 14px 0 24px; line-height: 1.05; }
.legal-page .legal-lead {
  font-size: 18px; color: var(--ink-soft); margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 28px;
  margin: 48px 0 16px;
  padding-top: 8px;
  scroll-margin-top: 100px;
}
.legal-page h3 {
  font-size: 19px;
  margin: 32px 0 10px;
  color: var(--midnight);
}
.legal-page p, .legal-page li {
  font-size: 16px; line-height: 1.7;
}
.legal-page ul, .legal-page ol { padding-left: 22px; margin: 0 0 16px; }
.legal-page li + li { margin-top: 6px; }
.legal-page code {
  background: var(--cream); padding: 2px 6px;
  border-radius: 4px; font-size: 0.9em;
  font-family: "JetBrains Mono", Menlo, monospace;
}
.legal-page kbd {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.85em;
  font-family: "JetBrains Mono", Menlo, monospace;
  color: var(--midnight);
}

.legal-toc {
  background: var(--cream); padding: 24px 28px;
  border-radius: var(--r-md); margin-bottom: 40px;
}
.legal-toc h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  padding-top: 0;
  color: var(--ink-soft);
}
.legal-toc ol { margin: 0; padding-left: 20px; }
.legal-toc li { font-size: 15px; line-height: 1.8; }

.legal-contact {
  background: var(--cream); padding: 24px 28px;
  border-left: 3px solid var(--candy); border-radius: var(--r-md);
  margin: 32px 0;
}
.legal-contact p { margin: 0 0 8px; }
.legal-contact p:last-child { margin-bottom: 0; }

.legal-callout {
  background: var(--sun-20);
  border-left: 3px solid var(--sun);
  padding: 20px 24px;
  border-radius: var(--r-md);
  margin: 24px 0;
}
.legal-callout p { margin: 0 0 8px; font-size: 15px; }
.legal-callout p:last-child { margin-bottom: 0; }
.legal-callout strong { color: var(--midnight); }

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
@media (max-width: 720px) { .legal-rights-grid { grid-template-columns: 1fr; } }
.legal-right-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.legal-right-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--midnight);
  margin-bottom: 6px;
}
.legal-right-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: CENÍK (price table)
   ────────────────────────────────────────────────────────────────────────── */

.price-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
  justify-content: center;
}
.price-section { margin-bottom: 56px; }
.price-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.price-section-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0; line-height: 1.1;
}
.price-section-header p {
  margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 520px;
}
.price-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: var(--cream); }
.price-row-name {
  display: flex; flex-direction: column;
}
.price-row-name strong {
  font-family: var(--f-display); font-weight: 600;
  font-size: 16px; color: var(--midnight);
}
.price-row-name span {
  font-size: 13px; color: var(--ink-soft); margin-top: 2px;
}
.price-row-dur {
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--f-display); font-weight: 500;
  min-width: 80px;
}
.price-row-ppl {
  font-size: 13px; color: var(--ink-soft);
  min-width: 90px;
}
.price-row-price {
  font-family: var(--f-display);
  font-weight: 700; font-size: 18px;
  color: var(--midnight);
  white-space: nowrap;
  text-align: right;
  min-width: 120px;
}
.price-row-price small {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: 0.08em; margin-top: 2px;
}

@media (max-width: 720px) {
  .price-row { grid-template-columns: 1fr auto; gap: 12px; padding: 18px 20px; }
  .price-row-dur, .price-row-ppl { display: none; }
}


/* ──────────────────────────────────────────────────────────────────────────
   PAGE: AKCE DETAIL (event detail page)
   ────────────────────────────────────────────────────────────────────────── */

.akce-detail-hero {
  padding: 48px 0 24px;
}
.akce-detail-breadcrumbs {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 24px;
  font-family: var(--f-display); font-weight: 500;
}
.akce-detail-breadcrumbs a { color: var(--ink-soft); }
.akce-detail-breadcrumbs a:hover { color: var(--ocean); }
.akce-detail-breadcrumbs span[aria-current] { color: var(--midnight); font-weight: 600; }

.akce-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .akce-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

.akce-detail-main h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 20px;
}
.akce-detail-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.akce-detail-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 32px;
}
.akce-detail-banner {
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
  overflow: hidden;
  background: var(--cream);
}
.akce-detail-banner.decor {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 72px;
}
.akce-detail-banner.bg-candy   { background: var(--candy); }
.akce-detail-banner.bg-sun     { background: var(--sun); }
.akce-detail-banner.bg-ocean   { background: var(--ocean); color: var(--white); }
.akce-detail-banner.bg-midnight{ background: var(--midnight); color: var(--white); }

.akce-detail-content h2 { font-size: 24px; margin: 32px 0 12px; }
.akce-detail-content h3 { font-size: 18px; margin: 24px 0 8px; }
.akce-detail-content p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.akce-detail-content ul { padding-left: 22px; margin: 0 0 16px; }
.akce-detail-content li { font-size: 16px; line-height: 1.7; }

.akce-sidebar {
  position: sticky; top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-sm);
}
@media (max-width: 960px) {
  .akce-sidebar { position: static; }
}
.akce-sidebar-meta {
  display: grid; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.akce-sidebar-meta-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
}
.akce-sidebar-meta-row-icon {
  font-size: 18px;
  color: var(--ocean);
  margin-top: 2px;
}
.akce-sidebar-meta-row strong {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.akce-sidebar-meta-row span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--midnight);
}

.akce-sidebar-cta { display: grid; gap: 10px; }
.akce-sidebar-status {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
  font-size: 13px; font-family: var(--f-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.akce-sidebar-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.akce-sidebar-status.open .akce-sidebar-status-dot { background: var(--success); box-shadow: 0 0 0 4px rgba(47,126,78,.15); }
.akce-sidebar-status.low .akce-sidebar-status-dot  { background: #D4A300; box-shadow: 0 0 0 4px rgba(212,163,0,.15); }
.akce-sidebar-status.full .akce-sidebar-status-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(195,50,78,.15); }
.akce-sidebar-status.open  { color: var(--success); }
.akce-sidebar-status.low   { color: #9A7A00; }
.akce-sidebar-status.full  { color: var(--danger); }
