/* ============================================================
   LUUUNA.CZ – Hlavní stylesheet
   Mobile-first | 8px grid | CSS custom properties
   ============================================================ */

/* ── 1. PROMĚNNÉ ─────────────────────────────────────────── */
:root {
  /* Barvy */
  --c-primary:    #f19a62;
  --c-secondary:  #75284a;
  --c-gold:       #c9a065;
  --c-glow:       rgba(241,154,98,.22);
  --c-bg:         #f6f1eb;
  --c-text:       #333333;
  --c-white:      #ffffff;
  --c-dark:       #2a0d1d;

  /* Přechody */
  --grad-warm:    linear-gradient(135deg, #f6f1eb 0%, #fce8d5 100%);
  --grad-dark:    linear-gradient(150deg, #3d1528 0%, #1a0a12 100%);
  --grad-hero:    linear-gradient(to bottom, rgba(42,13,29,.25) 0%, rgba(117,40,74,.55) 100%);
  --grad-brand:   linear-gradient(135deg, #f19a62 0%, #75284a 100%);

  /* Typografie */
  --ff-heading:   'Lora', Georgia, serif;
  --ff-body:      'DM Sans', system-ui, sans-serif;

  /* Spacing (8px grid) */
  --s-1: .5rem;   /* 8px  */
  --s-2: 1rem;    /* 16px */
  --s-3: 1.5rem;  /* 24px */
  --s-4: 2rem;    /* 32px */
  --s-5: 2.5rem;  /* 40px */
  --s-6: 3rem;    /* 48px */
  --s-8: 4rem;    /* 64px */
  --s-10: 5rem;   /* 80px */
  --s-12: 6rem;   /* 96px */

  /* Zaoblení */
  --r-sm:   .75rem;
  --r-md:   1.25rem;
  --r-lg:   1.5rem;
  --r-xl:   2rem;
  --r-pill: 100px;

  /* Stíny */
  --sh-sm: 0 2px  8px rgba(117,40,74,.07);
  --sh-md: 0 4px 20px rgba(117,40,74,.11);
  --sh-lg: 0 8px 40px rgba(117,40,74,.14);

  /* Glass */
  --glass-bg:     rgba(255,255,255,.55);
  --glass-border: rgba(255,255,255,.72);
  --glass-blur:   14px;

  /* Přechody animace */
  --t-fast:   .2s ease;
  --t-mid:    .35s ease;
  --t-slow:   .6s ease;

  /* Šířka webu */
  --site-width: 85%;
  --site-max:   1380px;
}

/* ── 2. RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }

ul, ol { list-style: none; }

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

button { cursor: pointer; border: none; background: none; font: inherit; }

address { font-style: normal; }

/* ── 3. TYPOGRAFIE ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-secondary);
}

h1 { font-size: clamp(1.8rem,  4.5vw, 3.2rem);  letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem,  2.6vw, 2.2rem);  }
h3 { font-size: clamp(1.05rem, 1.7vw, 1.5rem);  }
h4 { font-size: clamp(1rem,    1.4vw, 1.25rem); }

p { max-width: 68ch; }

strong { font-weight: 600; }

/* ── 4. LAYOUT ──────────────────────────────────────────── */
.container {
  width: var(--site-width);
  max-width: var(--site-max);
  margin-inline: auto;
}

.section {
  padding-block: var(--s-10);
}

.section--dark {
  background: var(--grad-dark);
  color: rgba(255,255,255,.9);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-primary);
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.3rem;
}

.sec-eyebrow svg {
  opacity: 0.55;
  flex-shrink: 0;
}

.sec-eyebrow .crescent-deco {
  opacity: 0.75;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.3rem;
}

.section-label--light {
  color: rgba(241,154,98,.85);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}

.section-title--centered {
  text-align: center;
}

.section-subtitle {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: #666;
  margin-bottom: var(--s-6);
  max-width: 60ch;
}

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

.section-subtitle--light {
  color: rgba(255,255,255,.65);
}

/* ── 5. KOMPONENTY ──────────────────────────────────────── */

/* Tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 18px rgba(241,154,98,.4);
}
.btn--primary:hover {
  background: #e0854a;
  box-shadow: 0 6px 24px rgba(241,154,98,.55);
}

.btn--outline {
  background: transparent;
  color: var(--c-secondary);
  border: 1.5px solid var(--c-secondary);
}
.btn--outline:hover {
  background: var(--c-secondary);
  color: var(--c-white);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2.6rem;
  letter-spacing: .04em;
}

.btn--light {
  background: var(--c-white);
  color: var(--c-secondary);
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.btn--light:hover {
  background: #fdf6ef;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

/* Glass karta */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.94); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered delay pro potomky */
[data-reveal-group] > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-group] > *:nth-child(2) { transition-delay: .1s; }
[data-reveal-group] > *:nth-child(3) { transition-delay: .2s; }
[data-reveal-group] > *:nth-child(4) { transition-delay: .3s; }

/* ── 6. NAVIGACE ────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  background: transparent;
  transition: background var(--t-mid), box-shadow var(--t-mid);
}

.site-header.is-scrolled {
  background: rgba(246,241,235,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(117,40,74,.07);
}

/* ════════════════════════════════════════════════
   NAVIGACE – tiché, průhledné, spirituální
   ════════════════════════════════════════════════ */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-3);
}

/* Logo */
.nav__logo img {
  width: 80px;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.nav__logo:hover img {
  transform: scale(1.04) rotate(1deg);
  opacity: 0.9;
}

/* Hamburger – vždy viditelný na mobilu */
.nav__burger {
  z-index: 210;
  width: 26px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--c-secondary);
  border-radius: 1px;
  transition: transform var(--t-mid), opacity var(--t-mid), background var(--t-fast);
  transform-origin: center;
}
.site-header.is-scrolled .nav__burger span { background: var(--c-secondary); }
.nav__burger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobilní menu */
.nav__links {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #faf8f5;
  background-image: radial-gradient(circle at 70% 20%, rgba(241,154,98,0.06) 0%, rgba(117,40,74,0.03) 60%, transparent 100%);
  padding: 7rem var(--s-6) var(--s-6);
  z-index: 190;
  transform: translateX(100%);
  transition: transform var(--t-mid);
}
.nav__links::before {
  content: '☽';
  position: absolute;
  bottom: 8%;
  right: 8%;
  font-size: 9rem;
  color: rgba(201, 160, 101, 0.08);
  font-family: var(--ff-heading);
  pointer-events: none;
}
.nav__links.is-open { display: flex; transform: translateX(0); }

.nav__link {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--c-secondary);
  padding-block: 0.85rem;
  border-bottom: 1px dashed rgba(201, 160, 101, 0.2);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__link:hover {
  color: var(--c-primary);
  padding-left: 0.5rem;
}
.nav__link::after {
  content: '→';
  font-size: 1.2rem;
  font-style: normal;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--c-primary);
}
.nav__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.nav__link--cta {
  border-bottom: none;
  margin-top: var(--s-4);
  color: var(--c-primary);
  font-style: normal;
  font-family: var(--ff-body);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(201, 160, 101, 0.45);
  padding: 0.8rem var(--s-4);
  border-radius: var(--r-pill);
  text-align: center;
  justify-content: center;
}
.nav__link--cta::after {
  display: none;
}
.nav__link--cta:hover {
  background: var(--c-primary);
  color: var(--c-white) !important;
  border-color: var(--c-primary);
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .nav__burger { display: none; }

  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    transform: none;
    gap: 1.8rem;
  }

  .nav__link {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(117, 40, 74, 0.75);
    padding: 0.4rem 0;
    border-bottom: none;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    white-space: nowrap;
    position: relative;
  }

  /* Zlatá linka expandující ze středu */
  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a065 50%, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .nav__link:hover {
    color: var(--c-secondary);
    letter-spacing: 0.22em;
  }
  .nav__link:hover::after {
    transform: scaleX(1);
  }

  .nav__link--cta {
    margin-top: 0;
    border: 1px solid rgba(201, 160, 101, 0.45);
    padding: 0.5rem 1.4rem;
    border-radius: var(--r-pill);
    color: var(--c-secondary) !important;
    transition: all 0.3s ease;
  }
  .nav__link--cta::after {
    display: none;
  }
  .nav__link--cta:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-white) !important;
    letter-spacing: 0.18em;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 154, 98, 0.15);
  }
}

/* ── 7. HERO – časopisecký (editorial) layout s celoplošným pozadím ── */
.hero-editorial {
  position: relative;
  min-height: 100svh;
  background: #0c0207;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Celoplošné fotografické pozadí */
.editorial__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 10%;
  transform: scaleX(-1);
  opacity: 0.95;
}

.bg-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(12, 2, 7, 0.80) 0%,
    rgba(12, 2, 7, 0.48) 45%,
    rgba(12, 2, 7, 0.12) 80%,
    rgba(12, 2, 7, 0.16) 100%
  );
}

.editorial__side-label {
  position: absolute;
  left: var(--s-3);
  top: 82%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(246, 241, 235, 0.45);
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  z-index: 10;
}
.editorial__side-label .dot {
  color: var(--c-primary);
}

.editorial__container {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: var(--s-8);
  position: relative;
  z-index: 2;
}

/* Levá strana: text a typografie */
.editorial__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding-left: 0;
  margin-top: var(--s-10);
}

.editorial__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: calc(-1 * var(--s-3));
}

.editorial__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin: 0;
  text-shadow: 0 0 10px rgba(241, 154, 98, 0.3);
}

.editorial__title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin: 0;
}

.title-huge {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.title-sub {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  font-weight: 400;
  color: #faf8f5;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.accent-word {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 500;
  color: var(--c-primary);
}

.editorial__lead {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 48ch;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* Kintsugi linka */
.kintsugi-thread {
  position: relative;
  color: #faf8f5;
  font-style: italic;
  display: inline-block;
}
.kintsugi-thread::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #f19a62, #c9a065, #f19a62);
  transform: translateY(-50%) rotate(-1deg);
  box-shadow: 0 0 6px rgba(201, 160, 101, 0.9);
  border-radius: 50%;
}

.btn--editorial {
  border-radius: var(--r-pill);
  transition: background var(--t-fast), transform var(--t-fast);
}

/* Pravá strana je prázdná pro vyniknutí fotky */
.editorial__placeholder {
  min-height: 200px;
}

/* Vertikální scroll lišta */
.editorial__scroll {
  position: absolute;
  right: var(--s-3);
  bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  pointer-events: none;
}

.scroll__text {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
  transform-origin: center;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.scroll__bar {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll__bar-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 20px;
  background: var(--c-primary);
  animation: scroll-fill-move 2s ease-in-out infinite;
}
@keyframes scroll-fill-move {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(60px); }
}

/* Kruh v horní části – mizí doztracena */
.hero__ghost-ring {
  position: absolute;
  right: 22%;
  top: -14%;
  width: clamp(280px, 32vw, 480px);
  height: clamp(280px, 32vw, 480px);
  z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 80%);
}

.hero__ghost-ring .hero__ring--1 {
  width: 100%; height: 100%;
  border: 1px solid rgba(241, 154, 98, 0.9);
}

.hero__ghost-ring .hero__ring--2 {
  width: 68%; height: 68%;
  border: 1px solid rgba(201, 160, 101, 0.7);
}

@media (max-width: 1024px) {
  .hero__ghost-ring { display: none; }
}

/* Levitující kruh v hero */
.hero__float-ring {
  position: absolute;
  right: 8%;
  bottom: 6%;
  width: clamp(320px, 34vw, 520px);
  height: clamp(320px, 34vw, 520px);
  z-index: 3;
  pointer-events: none;
  animation: hero-ring-float 9s ease-in-out infinite;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 80%);
}

@keyframes hero-ring-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-26px); }
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero__ring--1 {
  width: 100%; height: 100%;
  border: 1.5px solid rgba(241, 154, 98, 0.72);
  box-shadow: 0 0 60px rgba(241, 154, 98, 0.18), inset 0 0 60px rgba(241, 154, 98, 0.08);
}

.hero__ring--2 {
  width: 73%; height: 73%;
  border: 1px solid rgba(201, 160, 101, 0.50);
}

.hero__ring--3 {
  width: 47%; height: 47%;
  border: 1px solid rgba(241, 154, 98, 0.32);
  background: radial-gradient(circle, rgba(241,154,98,0.10) 0%, transparent 70%);
}

@media (max-width: 1024px) {
  .hero__float-ring { display: none; }
}

/* ── Adaptivní chování hlavičky na tmavém pozadí hero sekce ── */
.site-header:not(.is-scrolled) .nav__burger span {
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 1024px) {
  .site-header:not(.is-scrolled) .nav__link {
    color: rgba(255, 255, 255, 0.85);
  }
  .site-header:not(.is-scrolled) .nav__link--cta {
    color: #ffffff !important;
    border-color: var(--c-primary);
    background: var(--c-primary);
    box-shadow: 0 4px 16px rgba(241, 154, 98, 0.35);
  }
  .site-header:not(.is-scrolled) .nav__logo img {
    filter: brightness(0) invert(1);
  }
}

/* Barva burger křížku při otevřeném menu na mobilu */
.nav__burger.is-active span {
  background: var(--c-secondary) !important;
}

/* Responzivní zalamování a adaptivita */
@media (max-width: 1024px) {
  .editorial__side-label,
  .editorial__scroll {
    display: none;
  }
  .editorial__content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .editorial__container {
    grid-template-columns: 1fr;
    padding-top: calc(80px + var(--s-6));
    padding-bottom: var(--s-10);
    gap: var(--s-8);
  }
  .editorial__content {
    text-align: center;
    align-items: center;
  }
  .editorial__eyebrow-wrap {
    justify-content: center;
  }
  .editorial__title {
    align-items: center;
  }
  .title-huge {
    font-size: clamp(2.8rem, 10vw, 4.2rem);
  }
  .editorial__placeholder {
    display: none;
  }
  .bg-photo__overlay {
    background: linear-gradient(to bottom, rgba(12,2,7,0.58) 0%, rgba(12,2,7,0.48) 100%);
  }
}



/* ── 8. EMPATHY ──────────────────────────────────────────── */
.empathy {
  background: #f2ebe2;
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}

.empathy .container {
  position: relative;
  z-index: 1;
}

.empathy__atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.emp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.emp-orb--1 {
  width: 52%;
  aspect-ratio: 1.6;
  background: radial-gradient(ellipse, rgba(241,154,98,.12) 0%, transparent 70%);
  top: -12%;
  left: -6%;
  animation: orb-a 26s ease-in-out infinite;
}

.emp-orb--2 {
  width: 44%;
  aspect-ratio: 1.3;
  background: radial-gradient(ellipse, rgba(201,160,101,.10) 0%, transparent 70%);
  bottom: -18%;
  right: -4%;
  animation: orb-b 33s ease-in-out infinite;
}

.emp-orb--3 {
  width: 36%;
  aspect-ratio: 1.1;
  background: radial-gradient(ellipse, rgba(117,40,74,.06) 0%, transparent 70%);
  top: 35%;
  left: 52%;
  animation: orb-c 21s ease-in-out infinite;
}

.empathy .sec-eyebrow { justify-content: center; }
.empathy .section-label { display: block; text-align: center; }

.empathy__heading {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.3rem 0 var(--s-4);
  color: var(--c-secondary);
  text-align: center;
}

.empathy__intro {
  max-width: 62ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.85;
  color: rgba(80,40,55,.78);
}

.empathy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 640px) {
  .empathy__grid { grid-template-columns: 1fr; }
}

.emp-card {
  background: #ffffff;
  border-radius: var(--r-lg);
  padding: var(--s-4);
  border-top: 2px solid rgba(201,160,101,0.35);
  box-shadow: 0 2px 12px rgba(117,40,74,0.06);
}

.emp-card__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  font-weight: 500;
  color: var(--c-secondary);
  line-height: 1.25;
  margin: 0 0 var(--s-2);
}

.emp-card p {
  font-family: var(--ff-body);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 400;
  color: rgba(58,31,42,.72);
  line-height: 1.7;
  margin: 0;
}

/* Motto box pod kartami */
.empathy__motto {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: var(--s-8);
}

.empathy__motto p {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  text-align: center;
  color: rgba(255,242,230,.95);
  margin: 0;
  max-width: none;
  white-space: nowrap;
  padding: clamp(2rem, 4vw, 3rem) clamp(2.5rem, 6vw, 5rem);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #75284a 0%, #2a0d1d 100%);
  box-shadow: 0 16px 48px rgba(117,40,74,.28);
}

/* ── Citát – full-screen typografie ─────────────────────── */
.quote-section {
  background: #0c0207;
  min-height: 65svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(241,154,98,.09) 0%, transparent 70%);
  pointer-events: none;
}

.qs-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--s-8) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.qs-line {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255,242,228,.88);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: none;
}

.qs-line--accent { color: var(--c-primary); }

.qs-line[data-reveal] { transition-delay: 0s; }
.qs-line--accent[data-reveal] { transition-delay: 0.22s; }

/* ── INFO STRIP ──────────────────────────────────────────── */
.info-strip {
  background: var(--c-secondary);
  padding-block: clamp(0.9rem, 1.5vw, 1.1rem);
  margin: 0;
}
.info-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.info-strip__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-body);
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.info-strip__item i {
  color: var(--c-primary);
  font-size: 0.85em;
}
.info-strip__sep {
  width: 1px;
  height: 0.9rem;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 440px) {
  .info-strip__sep { display: none; }
  .info-strip__inner { gap: 0.8rem; }
}

/* ── Section arrow (přechod služby → témata) ────────────── */
.section-arrow {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-block: -48px;
  padding-block: 14px;
  pointer-events: none;
}

.sa-moon {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow:
    inset -14px 0 0 var(--c-primary),
    0 0 22px 8px  rgba(241,154,98,.32),
    0 0 52px 18px rgba(241,154,98,.13);
  animation: sa-glow 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes sa-glow {
  0%, 100% {
    box-shadow:
      inset -14px 0 0 var(--c-primary),
      0 0 22px 8px  rgba(241,154,98,.32),
      0 0 52px 18px rgba(241,154,98,.13);
  }
  50% {
    box-shadow:
      inset -14px 0 0 var(--c-primary),
      0 0 34px 13px rgba(241,154,98,.52),
      0 0 72px 28px rgba(241,154,98,.22);
  }
}

.sa-dot {
  display: block;
  width: var(--sz, 4px);
  height: var(--sz, 4px);
  border-radius: 50%;
  background: var(--c-gold);
  opacity: var(--op, 0.5);
}

.sa-star {
  position: absolute;
  left: calc(50% + var(--x, 0px));
  top: var(--y, 50%);
  width: var(--s, 3px);
  height: var(--s, 3px);
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  transform: translateX(-50%);
  animation: sa-twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--dl, 0s);
}

@keyframes sa-twinkle {
  0%, 100% { opacity: .15; transform: translateX(-50%) scale(.6); }
  50%       { opacity: .9;  transform: translateX(-50%) scale(1); }
}

/* ── 9. TOPICS (Právě teď řeším) ─────────────────────────── */
.topics {
  background: var(--c-bg);
  padding-block-start: clamp(2.5rem, 4vw, 4rem);
  padding-block-end: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Atmosférické orby – světlo pod vodou / aurora */
.topics__atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.atmo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  will-change: transform;
}

.atmo-orb--1 {
  width: 55%;
  aspect-ratio: 1.7;
  background: radial-gradient(ellipse, rgba(241,154,98,.12) 0%, transparent 70%);
  top: -15%;
  left: -8%;
  animation: orb-a 24s ease-in-out infinite;
}
.atmo-orb--2 {
  width: 48%;
  aspect-ratio: 1.4;
  background: radial-gradient(ellipse, rgba(117,40,74,.08) 0%, transparent 70%);
  bottom: -20%;
  right: -6%;
  animation: orb-b 31s ease-in-out infinite;
}
.atmo-orb--3 {
  width: 38%;
  aspect-ratio: 1.1;
  background: radial-gradient(ellipse, rgba(201,160,101,.10) 0%, transparent 70%);
  top: 35%;
  left: 50%;
  animation: orb-c 20s ease-in-out infinite;
}
.atmo-orb--4 {
  width: 42%;
  aspect-ratio: 2;
  background: radial-gradient(ellipse, rgba(252,200,165,.1) 0%, transparent 70%);
  top: 5%;
  right: 8%;
  animation: orb-d 27s ease-in-out infinite;
}

@keyframes orb-a {
  0%   { transform: translate(0,    0)    scale(1);    }
  30%  { transform: translate(10%,  22%)  scale(1.15); }
  65%  { transform: translate(4%,   8%)   scale(0.9);  }
  100% { transform: translate(0,    0)    scale(1);    }
}
@keyframes orb-b {
  0%   { transform: translate(0,    0)    scale(1);    }
  40%  { transform: translate(-14%, -18%) scale(1.2);  }
  72%  { transform: translate(-4%,  -7%)  scale(0.95); }
  100% { transform: translate(0,    0)    scale(1);    }
}
@keyframes orb-c {
  0%   { transform: translate(0,    0)    scale(1);    }
  50%  { transform: translate(-18%, 14%)  scale(1.3);  }
  100% { transform: translate(0,    0)    scale(1);    }
}
@keyframes orb-d {
  0%   { transform: translate(0,   0)    scale(1);    }
  35%  { transform: translate(-8%, 18%)  scale(0.85); }
  75%  { transform: translate(4%,  4%)   scale(1.1);  }
  100% { transform: translate(0,   0)    scale(1);    }
}

.topics .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.topics .section-label { color: var(--c-primary); }

.testimonial .section-title,
.collab .section-title,
.services .section-title {
  color: rgba(255,242,230,.92);
}

.topics .section-title,
.empathy .section-title,
.why .section-title,
.about .section-title {
  color: var(--c-secondary);
}

.topics__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.topics__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  text-align: center;
  align-items: center;
}

.topics__text .section-label { margin-bottom: 0; }

.topics__desc {
  color: rgba(80,40,55,.72);
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.75;
  margin: 0;
}

.topics__pebbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 1.3vw, 1rem);
}

@media (max-width: 768px) {
  .topics__split {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }
}

.pebble {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-size: clamp(0.8rem, 1.1vw, 0.92rem);
  font-weight: 400;
  color: rgba(117,40,74,.85);
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(117,40,74,.16);
  box-shadow: 0 2px 10px rgba(117,40,74,.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: default;
  animation: pebble-float var(--d, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: background .4s ease, box-shadow .4s ease, color .4s ease;
}

.pebble:nth-child(1)  { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
.pebble:nth-child(2)  { border-radius: 45% 55% 60% 40% / 50% 62% 38% 52%; }
.pebble:nth-child(3)  { border-radius: 70% 30% 45% 55% / 60% 40% 65% 35%; }
.pebble:nth-child(4)  { border-radius: 40% 60% 38% 62% / 55% 45% 50% 60%; }
.pebble:nth-child(5)  { border-radius: 55% 45% 68% 32% / 45% 58% 42% 55%; }
.pebble:nth-child(6)  { border-radius: 35% 65% 50% 50% / 62% 38% 55% 48%; }
.pebble:nth-child(7)  { border-radius: 60% 40% 42% 58% / 48% 65% 35% 60%; }
.pebble:nth-child(8)  { border-radius: 50% 50% 65% 35% / 38% 55% 62% 45%; }
.pebble:nth-child(9)  { border-radius: 42% 58% 38% 62% / 58% 42% 68% 32%; }
.pebble:nth-child(10) { border-radius: 68% 32% 55% 45% / 42% 65% 38% 58%; }
.pebble:nth-child(11) { border-radius: 38% 62% 70% 30% / 65% 35% 52% 48%; }
.pebble:nth-child(12) { border-radius: 58% 42% 35% 65% / 48% 55% 45% 62%; }
.pebble:nth-child(13) { border-radius: 48% 52% 62% 38% / 60% 40% 58% 42%; }
.pebble:nth-child(14) { border-radius: 65% 35% 48% 52% / 35% 62% 48% 55%; }

.pebble--warm {
  color: rgba(217,120,60,.95);
  background: rgba(255,255,255,.55);
  border-color: rgba(241,154,98,.22);
}

.pebble--lg {
  font-size: clamp(0.84rem, 1.15vw, 0.96rem);
  padding: 0.5rem 1.05rem;
}

.pebble:hover {
  background: rgba(117,40,74,.12);
  box-shadow: 0 0 22px rgba(201,160,101,.22), 0 0 6px rgba(241,154,98,.15);
  color: var(--c-secondary);
  animation-play-state: paused;
}

@keyframes pebble-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot1, 0deg)); }
  50%       { transform: translateY(var(--rise, -6px)) rotate(var(--rot2, 0deg)); }
}

/* ── 10. SERVICES (Právě teď potřebuju) ─────────────────── */
.services {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-title {
  margin-bottom: var(--s-6);
}

.services .sec-eyebrow { justify-content: center; }
.services .section-label { display: block; text-align: center; }

/* Motto kamínek */
.services__motto {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services__motto p {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.8;
  text-align: center;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 60ch;
}

.services__bento {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services__bento {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s-5) var(--s-4) var(--s-4);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.service-card__circle {
  width: clamp(140px, 18vw, 175px);
  height: clamp(140px, 18vw, 175px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f3ee;
  border: 1.5px solid rgba(201,160,101,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(117,40,74,0.08);
  margin-bottom: var(--s-4);
}

.service-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  flex: 1;
  width: 100%;
}

.service-card__title {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  color: var(--c-secondary);
}

.service-card__text {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  flex: 1;
  max-width: none;
  margin: 0;
}

.btn--svc {
  width: 100%;
  justify-content: center;
  margin-top: var(--s-3);
  background: var(--c-secondary);
  color: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: none;
  animation: none;
}

.btn--svc:hover {
  background: #5a1e38;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(117,40,74,0.25);
}

/* ── 11. TESTIMONIAL ─────────────────────────────────────── */
.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
}

.testimonial__bg,
.services__bg,
.collab__bg,
.footer__bg,
.why__bg,
.about__bg,
.topics__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonial__bg-img,
.services__bg-img,
.collab__bg-img,
.footer__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .18;
}

.topics__bg-img,
.why__bg-img,
.about__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .35;
}

.testimonial__bg-overlay,
.services__bg-overlay,
.collab__bg-overlay,
.footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,13,29,.92), rgba(117,40,74,.88));
}

.topics__bg-overlay,
.why__bg-overlay,
.about__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(246,241,235,.7);
}

/* ── Akvarelové pozadí s&nbsp;fázemi měsíce v&nbsp;sekci empatie ──── */
.empathy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.empathy__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .35;
}

.empathy__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(246,241,235,.7);
}

.testimonial .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.testimonial .sec-eyebrow { justify-content: center; }

.testimonial .section-title { margin-bottom: var(--s-6); }

.testimonial .section-subtitle { margin-inline: auto; }

.testimonial__slider {
  position: relative;
}

.testimonial__track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-3);
  align-items: stretch;
  cursor: grab;
  user-select: none;
}

.testimonial__track.is-dragging {
  cursor: grabbing;
}

.testimonial__track.is-dragging .testimonial__card {
  pointer-events: none;
}

@media (max-width: 700px) {
  .testimonial__track {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
  }
}

.testimonial__card {
  padding: var(--s-5) var(--s-4);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  display: none;
  animation: testimonial-fade .5s ease;
}

.testimonial__card.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@keyframes testimonial-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial__quote-mark {
  font-family: var(--ff-heading);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--c-primary);
  opacity: .4;
  display: block;
  margin-bottom: var(--s-2);
}

.testimonial__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  flex: 1;
}

.testimonial__text p {
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.testimonial__author-line {
  width: 40px;
  height: 1px;
  background: var(--c-primary);
  opacity: .6;
}

.testimonial__name {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-primary);
}

@media (min-width: 768px) {
  .testimonial__card { padding: var(--s-6) var(--s-5); }
}

/* ── Navigace referencí: šipky ────────────────────────── */
.testimonial__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.testimonial__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--c-primary);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
}

.testimonial__arrow:hover {
  background: rgba(241,154,98,.14);
  border-color: rgba(241,154,98,.4);
}

.testimonial__arrow:active {
  transform: scale(.92);
}

/* ── 12. WHY (Proč si vybrat zrovna mě?) ───────────────── */
.why {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why .sec-eyebrow { justify-content: center; }
.why .section-label { display: block; text-align: center; }

.why .section-title {
  text-align: center;
  margin-bottom: var(--s-6);
}

.why__grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}

.why__card {
  padding: var(--s-4) var(--s-4);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.why__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #f19a62, #75284a);
  color: var(--c-white);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(241,154,98,.35);
}

.why__icon--img {
  background: none;
  box-shadow: none;
  width: 136px;
  height: 72px;
  align-self: flex-start;
}

.why__icon--lg {
  width: 152px;
  height: 80px;
}

.why__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.why__title {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--c-secondary);
}

.why__text {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
}

@media (min-width: 640px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
}

/* ── 13. SPOLUPRÁCE ─────────────────────────────────────── */
.collab {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.collab .section-title {
  margin-inline: auto;
}

.collab__lead {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.48);
  letter-spacing: .03em;
  margin-top: calc(-1 * var(--s-3));
  margin-bottom: var(--s-8);
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
}

.collab__journey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

.collab__node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 26ch;
  padding: var(--s-5) var(--s-4);
  background: #ffffff;
  border-radius: var(--r-xl);
}

.collab__node-icon {
  height: 110px;
  display: flex;
  align-items: flex-end;
  margin-bottom: var(--s-3);
}

.collab__node-icon img {
  height: 110px;
  width: auto;
  display: block;
}

.collab__node-icon--lg img {
  height: 126px;
}

.collab__node-icon--sm img {
  height: 74px;
}

.collab__node-icon--md img {
  height: 90px;
}

.collab__node-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--c-primary);
  margin-bottom: var(--s-2);
}

.collab__node-text {
  font-size: .92rem;
  line-height: 1.82;
  color: rgba(58,31,42,.72);
}

.collab__connector {
  display: none;
}

@media (min-width: 768px) {
  .collab__journey {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: stretch;
    gap: 0;
  }
  .collab__node {
    max-width: none;
  }
  .collab__connector {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── 14. O MNĚ ──────────────────────────────────────────── */
.about {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.about .about__inner {
  position: relative;
  z-index: 1;
}

.about__inner {
  display: grid;
  gap: var(--s-1);
  align-items: start;
  padding-inline: var(--s-6);
}

.about__photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.about__photo-glow {
  position: absolute;
  inset: -60px -40px -40px -60px;
  background: radial-gradient(ellipse at 45% 50%, rgba(241,154,98,.22) 0%, rgba(117,40,74,.10) 55%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 48% 52% 58% 42% / 44% 46% 54% 56%;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 48px rgba(117,40,74,.18), 0 4px 16px rgba(117,40,74,.10);
}

.about__quote-card {
  position: absolute;
  bottom: 0;
  right: -var(--s-3);
  background: #fff;
  border-left: 3px solid var(--c-gold);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-lg);
  box-shadow: 0 6px 24px rgba(117,40,74,.13);
  z-index: 2;
  max-width: 200px;
  margin: 0;
}

.about__quote-card p {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--c-secondary);
  margin: 0;
  max-width: none;
}

.about__name {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-secondary);
  margin-bottom: 0;
}

.about__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--c-primary);
  font-style: italic;
  font-weight: 400;
  margin-top: calc(-1 * var(--s-2));
}

.about__role {
  font-size: .85rem;
  color: var(--c-primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--s-2);
  max-width: none;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-4);
}


.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(58,31,42,.7);
}

.about__content .btn { align-self: flex-start; }

@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
  .about__photo { max-width: 460px; margin-inline: 0; }
  .about__quote-card { right: -24px; }
}

/* ── 15. PATIČKA ─────────────────────────────────────────── */
.footer {
  background: var(--grad-dark);
  color: rgba(255,255,255,.75);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s-8);
  padding-block: var(--s-12) var(--s-10);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-link { display: inline-block; }

.footer__logo {
  width: 84px;
  height: auto;
  opacity: .95;
  margin-bottom: var(--s-4);
}

.footer__name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,242,230,.92);
  margin: 0 0 .25rem;
}

.footer__role {
  font-size: .85rem;
  color: var(--c-gold);
  letter-spacing: .02em;
  margin: 0 0 var(--s-4);
  max-width: 32ch;
}

.footer__tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 32ch;
  line-height: 1.75;
  margin: 0 0 var(--s-5);
}

/* Nadpisy se zlatou linkou */
.footer__col-title {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255,242,230,.92);
  margin-bottom: var(--s-3);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__link {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__link:hover {
  color: var(--c-primary);
  padding-left: .35rem;
}

/* Sociální kruhové ikony v brandu */
.footer__socials {
  display: flex;
  gap: var(--s-2);
}

.footer__social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.footer__social-btn:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Kontaktní pill rámečky */
.footer__contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__contact .footer__col-title { margin-bottom: 0; }

.footer__pill {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}

a.footer__pill:hover {
  border-color: rgba(241,154,98,.5);
  background: rgba(241,154,98,.06);
  transform: translateY(-1px);
}

.footer__pill--static { cursor: default; }

.footer__pill-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(241,154,98,.12);
  color: var(--c-primary);
  font-size: .95rem;
}

.footer__cta {
  margin-top: var(--s-2);
  text-align: center;
  justify-content: center;
}

.footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,160,101,.18);
}

.footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding-block: var(--s-4);
}

.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  max-width: none;
  margin: 0;
}

.footer__credit {
  font-size: .8rem;
  color: rgba(255,255,255,.32);
  text-align: center;
  max-width: none;
  margin: 0;
}

.footer__credit a {
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}

.footer__credit a:hover { color: var(--c-primary); }

@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1.7fr 1fr 1.4fr;
    gap: var(--s-10);
  }
}

/* ── 15b. PODSTRÁNKY – pevná hlavička ────────────────────── */
.subpage .site-header {
  background: rgba(246,241,235,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(117,40,74,.07);
}

@media (min-width: 1024px) {
  .subpage .site-header:not(.is-scrolled) .nav__link {
    color: rgba(117,40,74,.75);
  }
  .subpage .site-header:not(.is-scrolled) .nav__link--cta {
    color: var(--c-secondary) !important;
    background: transparent;
    border-color: rgba(201,160,101,.45);
    box-shadow: none;
  }
  .subpage .site-header:not(.is-scrolled) .nav__logo img {
    filter: none;
  }
}

/* ── 15c. CENÍK ──────────────────────────────────────────── */
.pricing.section {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  padding-block: calc(80px + clamp(3rem, 6vw, 5rem)) clamp(4rem, 8vw, 7rem);
}

.pricing__bg { position: absolute; inset: 0; z-index: 0; }

.pricing__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .35;
}

.pricing__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(246,241,235,.72);
}

.pricing__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-secondary);
  margin: var(--s-2) 0 var(--s-3);
}

.pricing__intro {
  max-width: 52ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.8;
  color: rgba(80,40,55,.75);
}

.pricing__grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  text-align: left;
  margin-bottom: var(--s-6);
}

@media (min-width: 720px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; }
}

.price-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-top: 3px solid rgba(201,160,101,.4);
  box-shadow: 0 8px 30px rgba(117,40,74,.08);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(117,40,74,.14);
}

.price-card--feature {
  border-top-color: var(--c-primary);
  background: linear-gradient(160deg, #fff 0%, #fdf3ea 100%);
}

.price-card__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--c-secondary);
  margin: 0 0 var(--s-2);
}

.price-card__desc {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(80,40,55,.7);
  margin: 0;
}

.price-card__rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: auto;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px dashed rgba(201,160,101,.3);
}

.price-row__label {
  font-size: .95rem;
  color: var(--c-text);
  font-weight: 500;
}

.price-row__meta {
  font-weight: 400;
  color: rgba(80,40,55,.55);
  font-size: .85rem;
}

.price-row__price {
  font-family: var(--ff-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--c-primary);
  white-space: nowrap;
}

.pricing__note {
  max-width: 60ch;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(80,40,55,.7);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(201,160,101,.22);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-4);
}

.pricing__note .fa-solid {
  color: var(--c-primary);
  margin-right: .4rem;
}

.pricing__cta { text-align: center; }

/* ── 16. RESPONZIVITA SEKCÍ ─────────────────────────────── */
@media (min-width: 1440px) {
  :root { --site-max: 1520px; }
  .section { padding-block: var(--s-12); }
}

@media (min-width: 2560px) {
  html { font-size: 18px; }
  :root { --site-max: 1680px; }
}

/* ── 17. UTILITY ────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Nedělitelné mezery před jednopísmennými spojkami – řešeno v HTML pomocí &nbsp; */


/* ══════════════════════════════════════════════════════════
   SPIRITUÁLNÍ ROZŠÍŘENÍ – Lunární, kosmické a posvátné prvky
   ══════════════════════════════════════════════════════════ */

/* ── Gradientní nadpisy ─────────────────────────────────── */
.heading-spirit {
  background: linear-gradient(130deg, var(--c-secondary) 0%, #c0664c 52%, var(--c-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hvězdné částice ────────────────────────────────────── */
.star-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: star-twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes star-twinkle {
  0%, 100% { opacity: .35; transform: scale(.7); }
  50%       { opacity: 1;   transform: scale(1); }
}

/* Větší hvězdy s měkkým zářením */
.star-glow-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: star-twinkle var(--d, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 0 var(--glow, 4px) var(--glow, 4px) var(--color, rgba(255,255,255,.15));
}


/* ── Pulzující záře CTA tlačítka ─────────────────────────── */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(117,40,74,.30); }
  50%       { box-shadow: 0 4px 32px rgba(117,40,74,.58), 0 0 56px rgba(241,154,98,.18); }
}
.btn--primary {
  animation: cta-glow 4s ease-in-out infinite;
}

/* ── Hvězdné pole – kontejner ────────────────────────────── */
.star-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

#heroStars {
  z-index: 2;
}


/* ── Glowing accent label ─────────────────────────────────── */
.section-label {
  position: relative;
}

/* ── Posvátné kruhy kolem fotky ──────────────────────────── */
.sacred-rings-wrap {
  position: absolute;
  inset: -48px;
  pointer-events: none;
  z-index: 0;
}
.s-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-breathe 10s ease-in-out infinite;
}
.s-ring:nth-child(1) {
  width: 100%; height: 100%;
  border: 1px solid rgba(241,154,98,.18);
  animation-delay: 0s;
}
.s-ring:nth-child(2) {
  width: 78%; height: 78%;
  border: 1px solid rgba(117,40,74,.14);
  animation-delay: -3.3s;
}
.s-ring:nth-child(3) {
  width: 56%; height: 56%;
  border: 1px solid rgba(241,154,98,.1);
  animation-delay: -6.6s;
}

@keyframes ring-breathe {
  0%, 100% { opacity: .4; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .9; transform: translate(-50%,-50%) scale(1.04); }
}

/* ── Srpek měsíce – CSS dekorace ─────────────────────────── */
.crescent-deco {
  display: inline-block;
  flex-shrink: 0;
  width: var(--cr, 24px);
  height: var(--cr, 24px);
  border-radius: 50%;
  box-shadow: inset calc(var(--cr, 24px) * -.27) 0 0 var(--c-primary);
  opacity: .65;
}

/* ── Mystická hranice glass karet při hoveru ─────────────── */
.why__card.glass-card {
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.why__card.glass-card:hover {
  border-color: rgba(241,154,98,.45);
  box-shadow: var(--sh-md), 0 0 30px var(--c-glow);
}

/* ── Konstelauce – tečkové dekorace ──────────────────────── */
.const-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: const-pulse var(--d, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes const-pulse {
  0%, 100% { opacity: .15; transform: scale(.7); }
  50%       { opacity: .65; transform: scale(1.2); }
}

/* ── Dekorativní svislý oddělovač s lunou ────────────────── */
.lunar-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-block: var(--s-5);
}
.lunar-divider::before,
.lunar-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(117,40,74,.25), transparent);
}
.lunar-divider .crescent-deco {
  --cr: 20px;
  flex-shrink: 0;
}

/* ── Shimmer efekt na primárním tlačítku ─────────────────── */
.btn--primary {
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
}
.btn--primary:hover::before {
  transform: translateX(100%);
  transition: transform .6s ease;
}
.btn--primary { position: relative; }


/* ── Glow na aktivních hvězdičkách v topics ──────────────── */
.topic-bubble:hover {
  box-shadow: 0 0 20px rgba(241,154,98,.25);
}

/* ── Hvězdná čárka u citátu ──────────────────────────────── */
.testimonial__quote-mark {
  text-shadow: 0 0 40px rgba(241,154,98,.4);
}

/* ── Jemné hvězdné záblesky u dark section headings ─────── */
.section--dark .section-title::after {
  content: ' ✦';
  font-size: .45em;
  color: var(--c-primary);
  opacity: .55;
  vertical-align: super;
}

.services .section-title::after,
.collab .section-title::after {
  content: none;
}

/* ── Star field extra: velká zářivá hvězda ───────────────── */
.star-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: star-glow-pulse var(--d, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, transparent 70%);
}

@keyframes star-glow-pulse {
  0%, 100% { opacity: .4; transform: scale(.75); }
  50%       { opacity: 1;  transform: scale(1); }
}

/* ── Overlay: tmavší nahoře (text) i dole, střed průhledný (postava) ── */


/* ══════════════════════════════════════════════════════════
   STICKER – Nemusíš hořet, abys mohla svítit.
   ══════════════════════════════════════════════════════════ */

.quote-sticker {
  position: absolute;
  bottom: 1.5rem;
  right: -2.5rem;
  width: clamp(128px, 15vw, 168px);
  aspect-ratio: 1 / 1.08;
  background: #1a0a12;
  border: 1px solid rgba(201, 160, 101, .22);
  border-radius: 45% 55% 60% 40% / 55% 48% 52% 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 0.9rem;
  z-index: 10;
  transform: rotate(-4deg);
  box-shadow: 0 5px 22px rgba(0, 0, 0, .22);
  transition: transform .5s ease, box-shadow .5s ease;
  cursor: default;
}

.quote-sticker:hover {
  transform: rotate(-2deg) translateY(-3px);
  box-shadow: 0 9px 30px rgba(0, 0, 0, .28);
}

.qst-l1 {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(0.58rem, 0.95vw, 0.7rem);
  color: rgba(255, 242, 228, .52);
  line-height: 1.4;
  margin: 0 0 0.18rem;
  max-width: none;
}

.qst-l2 {
  font-family: var(--ff-heading);
  font-size: clamp(0.52rem, 0.82vw, 0.62rem);
  color: rgba(255, 242, 228, .42);
  letter-spacing: 0.06em;
  margin: 0 0 0.22rem;
  max-width: none;
}

.qst-l3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  color: #c9a065;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  max-width: none;
  text-shadow: 0 0 12px rgba(201, 160, 101, .4);
}

@media (max-width: 768px) {
  .quote-sticker {
    right: 0.5rem;
    bottom: -2.5rem;
  }
}

