/* =========================================================
   JANA KRAUSOVÁ — HYPNOTERAPIE
   Design tokens & global styles
   ========================================================= */

:root {
  /* Blues — midnight navy with depth */
  --blue-900: oklch(0.13 0.06 265);
  --blue-850: oklch(0.16 0.07 265);
  --blue-800: oklch(0.20 0.08 265);
  --blue-700: oklch(0.26 0.09 265);
  --blue-600: oklch(0.34 0.10 265);
  --blue-500: oklch(0.45 0.11 265);
  --blue-glow: oklch(0.55 0.14 265);

  /* Gold — warm antique */
  --gold-100: oklch(0.96 0.04 85);
  --gold-300: oklch(0.88 0.09 82);
  --gold-500: oklch(0.78 0.12 80);
  --gold-600: oklch(0.70 0.13 75);
  --gold-700: oklch(0.58 0.12 70);

  /* Text — warm cream + cool white */
  --cream: oklch(0.94 0.012 80);
  --cream-dim: oklch(0.82 0.015 80);
  --cream-faint: oklch(0.68 0.020 80);
  --white-cool: oklch(0.98 0.005 250);

  /* Surfaces */
  --surface-deep: oklch(0.11 0.05 265);
  --surface-card: oklch(0.18 0.07 265 / 0.85);
  --surface-elev: oklch(0.22 0.08 265 / 0.9);
  --hairline: oklch(0.55 0.05 265 / 0.25);
  --hairline-gold: oklch(0.78 0.12 80 / 0.30);

  /* Type */
  --font-serif: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif; /*"Cormorant Garamond", "Cormorant", Georgia, serif;*/
  --font-sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 10px 40px -10px oklch(0.05 0.05 265 / 0.6);
  --shadow-glow: 0 0 60px -10px oklch(0.55 0.14 265 / 0.45);
  --shadow-gold: 0 0 30px -5px oklch(0.78 0.12 80 / 0.35);

  /* Motion */
  --breath-intensity: 1;
}

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

html, body {
  background: var(--blue-900);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* =========================================================
   BACKGROUND — breathing radial gradients (hypnotic)
   ========================================================= */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-field::before,
.bg-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: calc(0.55 * var(--breath-intensity));
  animation: breathe 14s ease-in-out infinite;
}
.bg-field::before {
  width: 70vw; height: 70vw;
  left: -20vw; top: -10vw;
  background: radial-gradient(circle, var(--blue-glow), transparent 65%);
}
.bg-field::after {
  width: 60vw; height: 60vw;
  right: -15vw; bottom: -10vw;
  background: radial-gradient(circle, oklch(0.45 0.12 285), transparent 65%);
  animation-delay: -7s;
}
.bg-grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 25% 32%, oklch(0.85 0.02 265 / 0.30) 0, transparent 50%),
    radial-gradient(1px 1px at 75% 68%, oklch(0.85 0.02 265 / 0.20) 0, transparent 50%),
    radial-gradient(1px 1px at 50% 15%, oklch(0.85 0.02 265 / 0.25) 0, transparent 50%),
    radial-gradient(1px 1px at 10% 80%, oklch(0.85 0.02 265 / 0.20) 0, transparent 50%),
    radial-gradient(1px 1px at 90% 40%, oklch(0.85 0.02 265 / 0.20) 0, transparent 50%);
  background-size: 800px 800px, 700px 700px, 600px 600px, 500px 500px, 900px 900px;
  opacity: 0.7;
}

@keyframes breathe {
  0%, 100% { transform: scale(1) translateY(0); opacity: calc(0.45 * var(--breath-intensity)); }
  50%      { transform: scale(1.12) translateY(-2%); opacity: calc(0.65 * var(--breath-intensity)); }
}

/* =========================================================
   TYPE
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(48px, 6vw, 88px); font-weight: 400; letter-spacing: 0.02em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 400; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
.eyebrow {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
  display: none;
}
p { color: var(--cream); }
.lead {
  font-size: 18px;
  color: var(--cream-dim);
  line-height: 1.7;
  text-wrap: pretty;
  max-width: 62ch;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.shell {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: 80px;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 56px;
}
.section-head .ornament {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold-500);
}
.section-head .ornament .line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.section-head .ornament .line.r { background: linear-gradient(-90deg, transparent, var(--gold-500)); }
.section-head .ornament svg { width: 14px; height: 14px; }
.section-head h2 { max-width: 18ch; }
.section-head .sub { color: var(--cream-dim); max-width: 56ch; text-wrap: pretty; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px;
  background: oklch(0.11 0.05 265 / 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
  transition: padding .35s ease, background .35s ease;
}
.nav.scrolled { padding: 12px 36px; background: oklch(0.10 0.05 265 / 0.92); }
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-serif);
  color: var(--white-cool);
  font-size: 19px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-brand .flourish {
  display: inline-flex;
  width: 26px; height: 26px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
}
.nav-brand .flourish::before,
.nav-brand .flourish::after {
  content: ""; width: 14px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
  margin: 0 4px;
}
.nav-brand .flourish::after { background: linear-gradient(-90deg, transparent, var(--gold-500)); }

.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: color .25s ease, background .25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active {
  color: var(--gold-500);
  background: oklch(0.78 0.12 80 / 0.08);
}
.nav-cta {
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.10em;
  border: 1px solid var(--gold-500);
  border-radius: var(--r-pill);
  color: var(--gold-300);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .25s ease;
}
.nav-cta:hover {
  background: var(--gold-500);
  color: var(--blue-900);
  box-shadow: var(--shadow-gold);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 80px;
  position: relative;
}
.hero .mandala {
  position: absolute;
  width: min(80vmin, 720px);
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.hero .mandala .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  opacity: 0.18;
}
.hero .mandala .ring:nth-child(1) { animation: pulse 9s ease-in-out infinite; }
.hero .mandala .ring:nth-child(2) { inset: 8%;  animation: pulse 9s ease-in-out infinite -1.5s; }
.hero .mandala .ring:nth-child(3) { inset: 18%; animation: pulse 9s ease-in-out infinite -3s; }
.hero .mandala .ring:nth-child(4) { inset: 30%; animation: pulse 9s ease-in-out infinite -4.5s; }
.hero .mandala .ring:nth-child(5) { inset: 42%; animation: pulse 9s ease-in-out infinite -6s; }
.hero .mandala .center-dot {
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-500);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px var(--gold-500);
  animation: pulse-dot 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.10; transform: scale(1); }
  50%      { opacity: 0.28; transform: scale(1.04); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.4); }
}

.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 12px;
}
.hero h1 .ampersand, h1 .ampersand {
  color: var(--gold-500);
  font-style: italic;
}
.hero .credentials {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 36px;
}
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream-dim);
  max-width: 56ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero-actions-page {
  margin-top: 12px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
  color: var(--blue-900);
  box-shadow: 0 4px 24px -4px oklch(0.78 0.12 80 / 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px -4px oklch(0.78 0.12 80 / 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--hairline);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}

/* =========================================================
   CARDS — common
   ========================================================= */
.card {
  background: linear-gradient(180deg, var(--surface-card), var(--surface-elev));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover {
  border-color: var(--hairline-gold);
}
.card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.service-card .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.service-card h3 { color: var(--gold-300); font-family: var(--font-serif); }
.service-card p { color: var(--cream-dim); font-size: 15px; line-height: 1.65; flex-grow: 1; }
.service-card .meta {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream-faint);
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}

/* "S čím Vám mohu pomoci" — pill grid */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.pill-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--cream);
}
.pill-item .dot {
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--gold-500);
}

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.testimonials {
  position: relative;
}
.t-stage {
  position: relative;
  height: 380px;
  max-width: 880px;
  margin: 0 auto;
}
.t-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px;
  background: linear-gradient(180deg, var(--surface-card), var(--surface-elev));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.t-card.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.t-quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--gold-500);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.6;
}
.t-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--cream);
  max-width: 56ch;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.t-author {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.t-author .age { color: var(--cream-faint); margin-left: 8px; }
.t-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-top: 32px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hairline);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.t-dot.active {
  background: var(--gold-500);
  width: 32px;
  border-radius: 4px;
}
.t-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--cream-dim);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.t-arrow:hover { border-color: var(--gold-500); color: var(--gold-500); }

/* =========================================================
   PRICING — 4-card row (rounded "bubble" cards)
   ========================================================= */
.cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 64px;
  align-items: stretch;
}
.cr-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.cr-card:hover {
  border-color: var(--hairline-gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px oklch(0 0 0 / 0.5);
}

/* Base rate card (left-most) — bluer, ornamental */
.cr-base {
  background:
    radial-gradient(circle at 50% 0%, oklch(0.78 0.12 80 / 0.10), transparent 60%),
    linear-gradient(180deg, var(--blue-700), var(--blue-850));
  border-color: var(--hairline-gold);
  text-align: center;
}
.cr-base::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid oklch(0.78 0.12 80 / 0.16);
  border-radius: 22px;
  pointer-events: none;
}
.cr-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
  position: relative;
}
.cr-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.cr-amount .num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--gold-300);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cr-amount .cur {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-500);
}
.cr-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 4px;
  position: relative;
}
.cr-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-gold), transparent);
  margin: 6px 0;
  position: relative;
}
.cr-card h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 20px;
  text-wrap: balance;
  position: relative;
}
.cr-base h3 { text-align: center; }
.cr-card p {
  color: var(--cream-dim);
  font-size: 13px;
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
}
.cr-base p { text-align: center; }
.cr-foot {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  color: var(--cream-faint);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  position: relative;
}
.cr-foot .dia { color: var(--gold-500); }

/* Package cards (right three) */
.cr-pack { padding-top: 28px; }
.cr-count {
  align-self: flex-start;
  width: 64px; height: 64px;
  border: 1px solid var(--hairline-gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 1;
  background: oklch(0.78 0.12 80 / 0.04);
}
.cr-count .num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-300);
}
.cr-count .lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 3px;
}
.cr-pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.cr-total { display: flex; align-items: baseline; gap: 6px; }
.cr-total .amt {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--gold-500);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.cr-total .cur { font-size: 13px; color: var(--cream-faint); }
.cr-per {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--cream-faint);
}
.cr-save {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--hairline);
}
.save-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.save-amt {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold-300);
  font-style: italic;
}

/* Featured pack card */
.cr-pack.is-featured {
  background:
    linear-gradient(180deg, oklch(0.78 0.12 80 / 0.06), transparent 60%),
    var(--surface-card);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px oklch(0.78 0.12 80 / 0.18);
}
.cr-pack.is-featured .cr-count {
  background: oklch(0.78 0.12 80 / 0.10);
  border-color: var(--gold-500);
}
.cr-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--blue-850);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px oklch(0.78 0.12 80 / 0.30);
}

/* Terms */
.terms-block { margin-top: 32px; }
.terms-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.terms-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-300);
  white-space: nowrap;
}
.tb-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-gold), transparent);
}
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.terms-col {
  border-top: 1px solid var(--hairline-gold);
  padding-top: 18px;
}
.terms-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.tl-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}
.tl-text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--cream);
  font-style: italic;
}
.terms-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.terms-col li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
}
.terms-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold-500);
}

/* =========================================================
   ABOUT — split
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.portrait {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-gold);
  overflow: hidden;
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.78 0.12 80 / 0.05),
      oklch(0.78 0.12 80 / 0.05) 8px,
      oklch(0.78 0.12 80 / 0.10) 8px,
      oklch(0.78 0.12 80 / 0.10) 16px
    ),
    linear-gradient(180deg, var(--blue-700), var(--blue-850));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.portrait .placeholder-glyph {
  width: 80px; height: 80px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
}
.portrait .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cream-faint);
  text-transform: uppercase;
}
.about-text p {
  margin-bottom: 16px;
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}
.about-text p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 56px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--gold-500);
}
.signature {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-500);
}

/* =========================================================
   QUALIFICATIONS
   ========================================================= */
.degrees-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.degree-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, oklch(0.78 0.12 80 / 0.06), transparent 70%),
    var(--surface-card);
  border: 1px solid var(--hairline-gold);
  border-radius: var(--r-lg);
  position: relative;
}
.degree-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid oklch(0.78 0.12 80 / 0.10);
  border-radius: calc(var(--r-lg) - 4px);
  pointer-events: none;
}
.degree-abbr {
  flex-shrink: 0;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold-300);
  font-style: italic;
  border-right: 1px solid var(--hairline-gold);
  letter-spacing: -0.01em;
}
.degree-body { padding: 4px 0; }
.degree-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.degree-field {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--cream);
  line-height: 1.5;
  text-wrap: pretty;
}

.qualifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.qual-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline-gold);
}
.qh-num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-500);
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.05em;
}
.qual-head h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 4px;
  border: none;
  padding: 0;
}
.qh-sub {
  font-size: 13px;
  color: var(--cream-faint);
  font-style: italic;
}
.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.qual-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.qual-list li:last-child { border-bottom: none; }
.qual-list li::before {
  content: none;
}
.ql-kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding-top: 4px;
  border-left: 1px solid var(--hairline-gold);
  padding-left: 14px;
}
.ql-body { display: flex; flex-direction: column; gap: 4px; }
.ql-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--cream);
  line-height: 1.35;
  text-wrap: balance;
}
.ql-sub {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.5;
}
.ql-org {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
  margin-top: 2px;
}

/* =========================================================
   LOCATION
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.location-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface-card);
  aspect-ratio: 4/3;
  display: flex; align-items: stretch;
  flex-direction: column;
}
.location-img {
  flex: 1;
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.30 0.08 265 / 0.4),
      oklch(0.30 0.08 265 / 0.4) 10px,
      oklch(0.20 0.07 265 / 0.4) 10px,
      oklch(0.20 0.07 265 / 0.4) 20px
    ),
    linear-gradient(135deg, var(--blue-700), var(--blue-800));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.location-img-exterior {
  flex: 1;
  background-image: url("/images/exterier.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.location-img .pin {
  width: 48px; height: 48px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold-500);
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px -4px oklch(0.78 0.12 80 / 0.5);
}
/*.location-img .pin::after {
  background-image: ("foto-pracovna.jpg");
  content: ""; width: 12px; height: 12px;
  background: var(--blue-900);
  border-radius: 50%;
}*/
.location-img .label-overlay {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  background: oklch(0.10 0.05 265 / 0.7);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
}
.location-info {
  padding: 20px 24px;
  background: oklch(0.10 0.05 265 / 0.85);
  border-top: 1px solid var(--hairline-gold);
}
.location-info h3 { font-size: 18px; color: var(--cream); margin-bottom: 4px; }
.location-info .addr { font-size: 13px; color: var(--cream-dim); }
.location-info .addr a { color: var(--gold-500); text-decoration: none; }

/* =========================================================
   BOOKING FORM
   ========================================================= */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.booking-info h3 {
  font-family: var(--font-serif);
  color: var(--gold-300);
  margin-bottom: 16px;
}
.booking-info p {
  color: var(--cream-dim);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.contact-row .label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-faint); }
.contact-row .val { color: var(--cream); font-size: 15px; }
.contact-row .val a { color: var(--cream); text-decoration: none; transition: color .2s; }
.contact-row .val a:hover { color: var(--gold-500); }

.form-card {
  background: linear-gradient(180deg, var(--surface-card), var(--surface-elev));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 36px;
}
.form-step-indicator {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 28px;
}
.step-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cream-faint);
  transition: all .3s ease;
}
.step-dot.active {
  border-color: var(--gold-500);
  color: var(--gold-500);
  box-shadow: 0 0 0 4px oklch(0.78 0.12 80 / 0.12);
}
.step-dot.done { background: var(--gold-500); color: var(--blue-900); border-color: var(--gold-500); }
.step-line { flex: 1; height: 1px; background: var(--hairline); }
.step-line.done { background: var(--gold-500); }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: oklch(0.10 0.05 265 / 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 80 / 0.12);
}
.field.error input,
.field.error textarea,
.field.error select {
  border-color: oklch(0.65 0.18 25);
}
.field .err-msg {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: oklch(0.75 0.15 25);
}
.field.error .err-msg { display: block; }
.field textarea { min-height: 100px; resize: vertical; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice {
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  color: var(--cream-dim);
  text-align: center;
  transition: all .2s ease;
  background: oklch(0.10 0.05 265 / 0.4);
}
.choice:hover { border-color: var(--hairline-gold); }
.choice.selected {
  border-color: var(--gold-500);
  color: var(--gold-300);
  background: oklch(0.78 0.12 80 / 0.08);
}

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }

.form-confirm {
  text-align: center;
  padding: 24px 8px;
}
.form-confirm .check-circle {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  position: relative;
}
.form-confirm .check-circle::before {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  opacity: 0.3;
  animation: pulse 3s ease-in-out infinite;
}
.form-confirm h3 { font-family: var(--font-serif); margin-bottom: 12px; color: var(--gold-300); }
.form-confirm p { color: var(--cream-dim); margin-bottom: 20px; }
.form-confirm .summary {
  background: oklch(0.10 0.05 265 / 0.5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
}
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; }
.summary-row .k { color: var(--cream-faint); letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; }
.summary-row .v { color: var(--cream); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  font-weight: 500;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold-300); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hairline-gold);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s ease, background .25s ease;
  font-family: var(--font-mono);
  font-size: 14px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: oklch(0.78 0.12 80 / 0.10);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--cream-dim);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.foot {
  padding: 56px 32px 32px;
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
  text-align: center;
  position: relative;
  z-index: 2;
}
footer.foot .foot-flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  color: var(--gold-500);
  margin-bottom: 24px;
}
footer.foot .foot-flourish .line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500)); }
footer.foot .foot-flourish .line.r { background: linear-gradient(-90deg, transparent, var(--gold-500)); }
footer.foot p { color: var(--cream-faint); font-size: 13px; }
footer.foot .ds-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 2px;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .cards-row { grid-template-columns: 1fr; gap: 32px; }
  .terms-grid { grid-template-columns: 1fr; gap: 32px; }
  .degrees-row { grid-template-columns: 1fr; }
  .pill-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .qualifications { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .nav, .nav.scrolled { padding: 14px 18px; }
}

#kde .hero-actions-page { margin-top: 64px; margin-bottom: 64px; }
