/* ═════════════════════════════════════════════════════════════
   ANCIENT INTELLIGENCE — dark luxury design system
   Zlato #b57e10→#fff3a6 · Platina #e3e3e1 · Noc #08070a
   ═════════════════════════════════════════════════════════════ */

:root {
  --bg: #060504;
  --bg-2: #0a0806;
  --surface: #14100a;
  --surface-2: #1b150c;
  --line: rgba(201, 162, 75, 0.18);
  --line-strong: rgba(201, 162, 75, 0.4);
  --gold: #c9a24b;
  --gold-bright: #f9df7b;
  --gold-deep: #b57e10;
  --platinum: #e3e3e1;
  --text: #d2ccc0;
  --text-dim: #97907e;
  --grad-gold: linear-gradient(105deg, #b57e10 0%, #f9df7b 38%, #fff3a6 52%, #f9df7b 66%, #b57e10 100%);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Avenir Next", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(201, 162, 75, 0.35); color: #fff; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--platinum); margin: 0; }
p { margin: 0 0 1.2em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

.container { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.container--narrow { width: min(820px, calc(100% - 3rem)); }
.only-desktop { display: none; }
@media (min-width: 760px) { .only-desktop { display: inline; } }

/* ── Zlaté akcenty ─────────────────────────────────────────── */
.text-gold, .section__title em, .hero__title .line--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.i-spark { width: 11px; height: 11px; flex: none; }

/* ═══════════ PRELOADER ═══════════ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: grid; place-items: center;
}
.loader__mark { display: grid; place-items: center; gap: 1.6rem; }
.loader__monogram { width: 108px; height: 108px; opacity: 0; transform: scale(0.92); }
.loader__line {
  width: 148px; height: 1px; background: rgba(227, 227, 225, 0.12);
  overflow: hidden; border-radius: 1px;
}
.loader__line-fill {
  display: block; height: 100%; width: 100%;
  background: var(--grad-gold);
  transform: translateX(-100%);
}

/* ═══════════ NAVIGACE ═══════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--nav-h);
  transition: background 0.5s ease, border-color 0.5s ease, height 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 66px;
  background: rgba(6, 5, 4, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1320px, calc(100% - 3rem));
  margin-inline: auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.85rem; }
.nav__monogram { width: 44px; height: 44px; transition: transform 0.4s var(--ease-out); }
.nav__brand:hover .nav__monogram { transform: rotate(8deg) scale(1.05); }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.22rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--platinum); white-space: nowrap;
}
.nav__wordmark em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim); position: relative; padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--platinum); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 7px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
}
.nav__toggle span {
  display: block; height: 1px; background: var(--platinum);
  transition: transform 0.35s var(--ease-out);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobmenu {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(6, 5, 4, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.mobmenu.is-open { opacity: 1; visibility: visible; }
.mobmenu__links { display: grid; gap: 2rem; text-align: center; }
.mobmenu__links a {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.1em; color: var(--platinum);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
}
.mobmenu.is-open .mobmenu__links a { opacity: 1; transform: none; }
.mobmenu__links a:nth-child(2) { transition-delay: 0.05s; }
.mobmenu__links a:nth-child(3) { transition-delay: 0.1s; }
.mobmenu__links a:nth-child(4) { transition-delay: 0.15s; }
.mobmenu__links a:nth-child(5) { transition-delay: 0.2s; }
.mobmenu__links a:nth-child(6) { transition-delay: 0.25s; }
.mobmenu__cta { color: var(--gold-bright) !important; }

/* ═══════════ TLAČÍTKA ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05rem 2.4rem;
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
  will-change: transform;
}
.btn--gold {
  color: #14100a;
  background: var(--grad-gold);
  background-size: 200% 100%;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(249, 223, 123, 0.25), 0 12px 34px -12px rgba(201, 162, 75, 0.45);
  transition: background-position 0.6s var(--ease-out), box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}
.btn--gold:hover {
  background-position: 100% 0;
  box-shadow: 0 0 0 1px rgba(249, 223, 123, 0.45), 0 18px 44px -12px rgba(201, 162, 75, 0.6);
}
.btn--ghost {
  color: var(--platinum);
  border-color: var(--line-strong);
  background: rgba(227, 227, 225, 0.02);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(201, 162, 75, 0.06); }
.btn--sm { padding: 0.72rem 1.6rem; font-size: 0.72rem; }
.btn--lg { padding: 1.2rem 3.2rem; }
.btn--full { width: 100%; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright); outline-offset: 3px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 6rem;
  overflow: hidden;
}
.hero__stars, .contact__stars {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 50% -8%, rgba(249, 223, 123, 0.09), transparent 62%),
    radial-gradient(ellipse 62% 46% at 50% 42%, rgba(181, 126, 16, 0.1), transparent 70%),
    radial-gradient(ellipse 120% 90% at 50% 110%, rgba(6, 5, 4, 0.95) 20%, transparent 60%),
    radial-gradient(ellipse 150% 120% at 50% 50%, transparent 40%, rgba(6, 5, 4, 0.85) 100%);
}
.hero__content { position: relative; text-align: center; max-width: 900px; }
.hero__monogram {
  width: clamp(120px, 16vw, 170px); height: clamp(120px, 16vw, 170px);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 34px rgba(201, 162, 75, 0.35));
}
.hero__eyebrow {
  font-size: 0.75rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.hero__title {
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1.08; letter-spacing: 0.01em;
  margin-bottom: 1.8rem; font-weight: 500;
}
.line-mask { display: block; overflow: hidden; padding-block: 0.06em; }
.line { display: block; }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--text-dim);
  max-width: 640px; margin-inline: auto; margin-bottom: 2.8rem;
}
.hero__cta { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 0.7rem;
}
.hero__scroll-label {
  font-size: 0.68rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-dim);
}
.hero__scroll-line {
  width: 1px; height: 52px; overflow: hidden; position: relative;
  background: rgba(227, 227, 225, 0.12);
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-gold);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 1.35rem 0; overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 16, 23, 0.65), rgba(13, 11, 16, 0.65));
  position: relative; z-index: 2;
}
.marquee__track {
  display: flex; align-items: center; gap: 3.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem; letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(227, 227, 225, 0.42); white-space: nowrap; padding-left: 0.55em;
}
.marquee__spark { width: 13px; height: 13px; opacity: 0.75; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SEKCE — společné ═══════════ */
.section { padding: clamp(5.5rem, 11vw, 9.5rem) 0; position: relative; }
.section__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.section__eyebrow::before {
  content: ""; width: 42px; height: 1px; background: var(--grad-gold); flex: none;
}
.section__title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.14; margin-bottom: 1.6rem;
}
.section__title--center { text-align: center; }
.section__head { max-width: 700px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.section__desc { color: var(--text-dim); font-size: 1.05rem; max-width: 620px; }
.section__desc--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.16rem; color: var(--text); }

/* ═══════════ FILOZOFIE ═══════════ */
.philosophy { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.philosophy__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.philosophy__visual {
  position: relative; aspect-ratio: 1;
  display: grid; place-items: center;
}
.philosophy__geometry { width: 100%; height: 100%; position: relative; z-index: 2; }
.philosophy__halo {
  position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 126, 16, 0.14), transparent 65%);
  filter: blur(6px);
}
.philosophy__stats {
  display: flex; gap: clamp(1.8rem, 4vw, 3.4rem);
  margin-top: 2.8rem; padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat__num, .stat__unit {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  display: block; font-size: 0.74rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 0.3rem;
}

/* ═══════════ RITUÁLY ═══════════ */
.rituals { position: relative; }
.rituals__embers {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.rituals > .container { position: relative; z-index: 1; }
.rituals__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.ritual-card {
  position: relative;
  padding: 2.4rem 1.9rem 2rem;
  background: linear-gradient(165deg, var(--surface) 0%, rgba(19, 16, 23, 0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.ritual-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(201, 162, 75, 0.1), transparent 45%);
  opacity: 0; transition: opacity 0.45s ease;
  pointer-events: none;
}
.ritual-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 26px 54px -28px rgba(0, 0, 0, 0.8); }
.ritual-card:hover::before { opacity: 1; }
.ritual-card__glyph {
  font-size: 1.9rem; line-height: 1; margin-bottom: 1.4rem;
  font-family: var(--font-display);
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ritual-card h3 { font-size: 1.42rem; margin-bottom: 0.8rem; }
.ritual-card p { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 1.6rem; }
.ritual-card__more {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════ PROCES ═══════════ */
.process { background: var(--bg-2); }
.process__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem; counter-reset: step;
  position: relative;
}
.process__steps::before {
  content: ""; position: absolute; top: 1.35rem; left: 3%; right: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 15%, var(--line-strong) 85%, transparent);
}
.process__step { position: relative; padding-top: 3.4rem; }
.process__num {
  position: absolute; top: 0; left: 0;
  width: 2.7rem; height: 2.7rem;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--gold-bright);
  border: 1px solid var(--line-strong); border-radius: 50%;
  background: var(--bg-2);
  box-shadow: 0 0 22px -6px rgba(201, 162, 75, 0.4);
}
.process__step h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.process__step p { font-size: 0.93rem; color: var(--text-dim); margin: 0; }

/* ═══════════ BALÍČKY ═══════════ */
.pricing { overflow: hidden; }
.pricing__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 34% at 50% 12%, rgba(181, 126, 16, 0.08), transparent 70%);
}
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; align-items: stretch;
  perspective: 1400px;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.8rem 2.3rem 2.3rem;
  background: linear-gradient(170deg, var(--surface) 0%, rgba(13, 11, 16, 0.72) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.5s ease;
  will-change: transform;
}
.price-card:hover { border-color: var(--line-strong); box-shadow: 0 32px 70px -30px rgba(0, 0, 0, 0.85); }
.price-card--featured {
  background: linear-gradient(170deg, #1e170c 0%, #110d07 100%);
  border-color: rgba(201, 162, 75, 0.45);
  box-shadow: 0 0 60px -18px rgba(181, 126, 16, 0.35);
}
.price-card__badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  padding: 0.42rem 1.3rem;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
  color: #14100a; background: var(--grad-gold);
  border-radius: 999px; white-space: nowrap;
}
.price-card__name {
  font-size: 2rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.price-card__tag {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 2.3rem; color: var(--platinum);
  padding-bottom: 1.6rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.price-card__from, .price-card__cur { font-size: 1.05rem; color: var(--text-dim); }
.price-card__list {
  list-style: none; margin: 0 0 2.2rem; padding: 0;
  display: grid; gap: 0.85rem; flex: 1;
}
.price-card__list li {
  position: relative; padding-left: 1.6rem;
  font-size: 0.95rem; color: var(--text);
}
.price-card__list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  font-size: 0.7rem; color: var(--gold);
}

/* ═══════════ ČLENSTVÍ ═══════════ */
.membership { background: var(--bg-2); }
.membership__card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: clamp(2.6rem, 5.5vw, 4.5rem);
  background: linear-gradient(150deg, #1a1409 0%, #0d0a06 55%, #171106 100%);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
}
.membership__glow {
  position: absolute; top: -40%; right: -12%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 126, 16, 0.16), transparent 65%);
  pointer-events: none;
}
.membership__list {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: grid; gap: 1rem;
}
.membership__list li { display: flex; align-items: baseline; gap: 0.9rem; }
.membership__offer {
  display: grid; align-content: center; justify-items: start; gap: 1.3rem;
  padding-left: clamp(0rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}
.membership__price {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--platinum); margin: 0;
}
.membership__per { font-size: 1.05rem; color: var(--text-dim); }
.membership__note { font-size: 0.9rem; color: var(--text-dim); margin: 0; }

/* ═══════════ DŮVĚRA ═══════════ */
.trust__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-bottom: clamp(3rem, 6vw, 5rem);
}
.trust-pillar {
  padding: 2.5rem 2.1rem;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(165deg, rgba(19, 16, 23, 0.85), rgba(13, 11, 16, 0.4));
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease;
}
.trust-pillar:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.trust-pillar__icon { width: 46px; height: 46px; margin-bottom: 1.5rem; }
.trust-pillar h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.trust-pillar p { font-size: 0.95rem; color: var(--text-dim); margin: 0; }

.trust__quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.quote {
  margin: 0; padding: 2.2rem 2rem;
  border-left: 1px solid var(--line-strong);
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.05), transparent 60%);
  border-radius: 0 14px 14px 0;
}
.quote blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.18rem; line-height: 1.55; color: var(--text);
}
.quote figcaption {
  font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}

/* ═══════════ FAQ ═══════════ */
.faq { background: var(--bg-2); }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.7rem 0.4rem;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--platinum);
  transition: color 0.3s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-bright); }
.faq__icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--gold); transition: transform 0.4s var(--ease-out);
}
.faq__icon::before { width: 14px; height: 1px; }
.faq__icon::after { width: 1px; height: 14px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__body { overflow: hidden; }
.faq__body p {
  padding: 0 0.4rem 1.8rem; margin: 0;
  color: var(--text-dim); max-width: 640px;
}

/* ═══════════ KONTAKT ═══════════ */
.contact { overflow: hidden; }
.contact__inner { position: relative; z-index: 2; }
.contact__monogram {
  width: 92px; height: 92px; margin: 0 auto 2rem;
  filter: drop-shadow(0 0 26px rgba(201, 162, 75, 0.3));
}
.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  margin-top: 3rem;
}
.field { display: grid; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim);
}
.field__opt { text-transform: none; letter-spacing: 0.05em; opacity: 0.7; }
.field input, .field textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: rgba(227, 227, 225, 0.025);
  border: 1px solid var(--line); border-radius: 10px;
  color: var(--platinum); font: inherit; font-size: 1rem;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201, 162, 75, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}
.consent {
  display: flex; gap: 0.9rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--text-dim); cursor: pointer;
}
.consent input { margin-top: 0.28em; accent-color: var(--gold); }
.contact__submit { display: grid; justify-items: center; gap: 1rem; margin-top: 0.6rem; }
.contact__hint { min-height: 1.4em; margin: 0; font-size: 0.9rem; color: var(--gold-bright); }
.contact__alt {
  margin-top: 1.7rem; text-align: center;
  font-size: 0.94rem; line-height: 1.6; color: var(--text-dim);
}
.contact__alt a {
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  padding-bottom: 1px; white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.contact__alt a:hover { color: #fff3a6; border-bottom-color: var(--gold-bright); }

/* ═══════════ PATIČKA ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 3rem;
  background: #040302;
}
.footer__grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem; align-items: start;
}
.footer__monogram { width: 64px; height: 64px; margin-bottom: 1.1rem; }
.footer__wordmark {
  font-family: var(--font-display); font-size: 1.3rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--platinum);
  margin-bottom: 0.4rem;
}
.footer__wordmark em { font-style: normal; color: var(--gold); }
.footer__tagline {
  font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-dim); margin: 0;
}
.footer__nav { display: grid; gap: 0.9rem; }
.footer__nav a {
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.3s ease; width: fit-content;
}
.footer__nav a:hover { color: var(--gold-bright); }
.footer__meta { font-size: 0.85rem; color: var(--text-dim); }
.footer__legal { font-size: 0.75rem; opacity: 0.65; margin: 0.6rem 0 0; }

/* ═══════════ FILMOVÉ ZRNO ═══════════ */
.grain {
  position: fixed; inset: -100%; z-index: 1200;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4%, -6%); }
  30% { transform: translate(5%, -3%); }
  50% { transform: translate(-6%, 4%); }
  70% { transform: translate(4%, 6%); }
  90% { transform: translate(-3%, 2%); }
}

/* ═══════════ ANDĚLÉ ═══════════ */
.angels {
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.angels__rays {
  position: absolute; inset: 0; pointer-events: none;
  background:
    conic-gradient(from 176deg at 50% -14%,
      transparent 0deg,
      rgba(249, 223, 123, 0.11) 6deg, transparent 13deg,
      rgba(249, 223, 123, 0.07) 19deg, transparent 26deg,
      rgba(255, 243, 166, 0.14) 33deg, transparent 41deg,
      rgba(249, 223, 123, 0.08) 47deg, transparent 55deg,
      rgba(249, 223, 123, 0.12) 62deg, transparent 70deg,
      transparent 360deg),
    radial-gradient(ellipse 85% 68% at 50% -8%, rgba(249, 223, 123, 0.22), rgba(249, 223, 123, 0.07) 45%, transparent 75%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(255, 243, 166, 0.16), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 98%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 98%);
  animation: rays 11s ease-in-out infinite alternate;
}
@keyframes rays {
  from { opacity: 0.8; }
  to { opacity: 1; }
}
.angels__feathers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.feather {
  position: absolute; top: -8%;
  width: 26px; height: auto;
  opacity: 0;
  will-change: transform;
  filter: drop-shadow(0 0 8px rgba(249, 223, 123, 0.25));
}
.angels__inner { position: relative; max-width: 760px; margin-inline: auto; }
.angels .section__eyebrow { justify-content: center; }
.angels .section__eyebrow::after {
  content: ""; width: 42px; height: 1px; background: var(--grad-gold); flex: none;
}
.angels__principles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3.4rem;
}
.angels__principle {
  padding: 1.9rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201, 162, 75, 0.05), transparent 70%);
}
.angels__principle h3 { font-size: 1.3rem; margin-bottom: 0.55rem; }
.angels__principle p { font-size: 0.9rem; color: var(--text-dim); margin: 0; }
.angels__principle .i-spark { width: 15px; height: 15px; margin: 0 auto 1rem; }

/* ═══════════ ŘEMESLO ═══════════ */
.craft { background: var(--bg-2); overflow: hidden; }
.craft__head { position: relative; }
.craft__seal {
  position: absolute; right: 0; top: -1.4rem;
  width: clamp(110px, 13vw, 158px); height: auto;
  will-change: transform;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
}
.craft__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.craft-item { position: relative; }
.craft-item__frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.craft-item__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.04) saturate(0.86) sepia(0.16);
  will-change: transform;
}
.craft-item__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.15) 0%, transparent 30%, rgba(6, 5, 4, 0.5) 78%, rgba(6, 5, 4, 0.86) 100%),
    radial-gradient(120% 90% at 50% 0%, rgba(201, 162, 75, 0.14), transparent 55%);
  mix-blend-mode: normal;
  transition: opacity 0.5s ease;
}
.craft-item__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 75, 0.16);
}
.craft-item:hover .craft-item__img { filter: brightness(0.92) contrast(1.05) saturate(0.95) sepia(0.12); }
.craft-item__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 1.5rem; text-align: center;
}
.craft-item__ph span {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(227, 227, 225, 0.35);
  border: 1px dashed rgba(201, 162, 75, 0.3);
  border-radius: 999px; padding: 0.7rem 1.2rem;
}
.craft-item__ph--wax { background: radial-gradient(ellipse 90% 70% at 30% 25%, #241a0b, #0c0906 70%); }
.craft-item__ph--wood { background: linear-gradient(115deg, #1a120a 0%, #0d0906 45%, #171009 100%); }
.craft-item__ph--herbs { background: radial-gradient(ellipse 80% 90% at 70% 80%, #141207, #0a0805 75%); }
.craft-item h3 { font-size: 1.35rem; margin: 1.3rem 0 0.45rem; }
.craft-item p { font-size: 0.92rem; color: var(--text-dim); margin: 0; }
.craft__note {
  margin-top: 2.6rem; font-size: 0.85rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 0.8rem;
}
.craft__note .i-spark { flex: none; }

/* ═══════════ SHIMMER zlatých slov ═══════════ */
.text-gold, .section__title em, .hero__title .line--gold {
  background-size: 200% 100%;
}

/* ═══════════ ANDĚLSKÝ KURZOR ═══════════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 1500;
  pointer-events: none; opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor__wingwrap {
  display: block;
  transition: transform 0.3s var(--ease-out), opacity 0.28s ease;
}
.cursor__wings {
  display: block; width: 48px; height: auto;
  filter: drop-shadow(0 0 8px rgba(201, 162, 75, 0.5));
  transform-origin: 50% 52%;
  animation: wingbeat 3.4s ease-in-out infinite;
}
@keyframes wingbeat {
  0%, 100% { transform: scaleX(1) scaleY(1) translateY(0); }
  50% { transform: scaleX(0.88) scaleY(1.05) translateY(-0.5px); }
}
.cursor__dot {
  position: absolute; top: 50%; left: 50%;
  width: 4px; height: 4px; margin: -2px 0 0 -2px;
  border-radius: 50%; background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(249, 223, 123, 0.95);
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover .cursor__wingwrap { transform: scale(1.32); }
.cursor.is-hover .cursor__dot { transform: scale(0.4); }
.cursor.on-field .cursor__wingwrap { opacity: 0; }
.cursor.on-field .cursor__dot { opacity: 0; }
body.wings-cursor,
body.wings-cursor a,
body.wings-cursor button,
body.wings-cursor summary,
body.wings-cursor label,
body.wings-cursor [data-magnetic] { cursor: none; }
body.wings-cursor input,
body.wings-cursor textarea,
body.wings-cursor select { cursor: auto; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ═══════════ REVEAL — výchozí stavy pro JS ═══════════ */
.js [data-reveal], .js [data-card], .js [data-step] { opacity: 0; }
.js .craft__seal { opacity: 0; }
.js [data-hero] { opacity: 0; }
.js .line-mask .line { transform: translateY(110%); }
.no-js [data-reveal], .no-js [data-card], .no-js [data-step], .no-js [data-hero] { opacity: 1; }

/* ═══════════ RESPONSIVITA ═══════════ */
@media (max-width: 1080px) {
  .rituals__grid { grid-template-columns: repeat(2, 1fr); }
  .craft__grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.4rem; }
  .process__steps::before { display: none; }
  .trust__pillars, .trust__quotes { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__visual { max-width: 420px; margin-inline: auto; order: -1; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .membership__card { grid-template-columns: 1fr; }
  .membership__offer { border-left: none; border-top: 1px solid var(--line); padding: 2rem 0 0; }
  .trust__pillars, .trust__quotes { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .trust__pillars { margin-bottom: 3rem; }
  .angels__principles { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .craft__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .craft__seal { position: static; margin: 0 0 1.6rem; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .nav__inner { width: calc(100% - 2rem); gap: 1rem; }
  .nav__brand { gap: 0.6rem; min-width: 0; }
  .nav__monogram { width: 38px; height: 38px; flex: none; }
  .nav__wordmark { font-size: clamp(0.78rem, 4vw, 1.05rem); letter-spacing: 0.1em; }
  .nav__toggle { width: 40px; height: 40px; flex: none; }
  .rituals__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }
  .marquee__track { gap: 2.2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js [data-reveal], .js [data-card], .js [data-step], .js [data-hero] { opacity: 1; }
  .js .line-mask .line { transform: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line::after { animation: none; }
  .grain { animation: none; }
  .angels__rays { animation: none; }
  .feather { display: none; }
  .js .craft__seal { opacity: 1 !important; transform: none !important; }
  .cursor { display: none !important; }
  body.wings-cursor, body.wings-cursor * { cursor: auto !important; }
}

/* ═══ NAV FIX — jednořádková lišta se 7 položkami ═══ */
.nav__links { gap: clamp(1rem, 1.6vw, 2.2rem); flex-wrap: nowrap; }
.nav__links a { white-space: nowrap; font-size: clamp(0.66rem, 0.35vw + 0.52rem, 0.78rem); letter-spacing: 0.16em; }
.nav__actions .btn { white-space: nowrap; }
.nav__wordmark { font-size: clamp(1rem, 0.9vw + 0.6rem, 1.22rem); }
@media (max-width: 1140px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
}

/* ═══ Sjednocení s podstránkami: středová vodicí osa + centrování ═══ */
.axis-thread{position:relative;width:1px;height:clamp(70px,9vw,120px);margin:0 auto;background:linear-gradient(180deg,transparent,var(--gold) 35%,var(--gold) 65%,transparent)}
.axis-thread::after{content:"";position:absolute;left:50%;bottom:6px;transform:translateX(-50%);width:7px;height:7px;border-radius:50%;background:var(--gold-bright);box-shadow:0 0 12px rgba(249,223,123,.85)}
.section__head{margin-inline:auto;text-align:center}
.section__head .section__eyebrow{justify-content:center}
.section__head .section__eyebrow::after{content:"";width:42px;height:1px;background:var(--grad-gold);flex:none}
.section__desc{margin-inline:auto}
.section__title{text-wrap:balance}
