/* ============================================================
   NutriCore — luxusní šedo-růžový design v3 (světlý)
   Světlé stříbřité šedé + růžové zlato · Cormorant Garamond + Jost
   ============================================================ */

:root {
  /* Růžová podle loga (jablko #DE1261 → #FA327F) */
  --rose:        #E82070;
  --rose-dark:   #DE1261;
  --rose-deep:   #B50E4F;
  --rose-light:  #FC6FA4;
  --rose-pale:   #FBC9DD;
  --blush:       #FBE7F0;
  --blush-2:     #FDF4F8;

  /* Šedé podle textu loga (#414246) — světlé neutrální plochy */
  --graphite:    #414246;
  --graphite-2:  #4C4D52;
  --ink:         #414246;
  --ink-2:       #4A4B50;
  --muted:       #75767C;
  --muted-2:     #9C9DA3;
  --silver:      #CBCBD0;

  --paper:       #EDEDEF;   /* hlavní světle šedé pozadí */
  --paper-2:     #E2E2E5;   /* tmavší šedá plocha (hero, pásy) */
  --paper-3:     #D8D8DC;   /* nejtmavší ze světlých šedých */
  --card:        #FFFFFF;
  --line:        #D4D4D9;
  --line-soft:   #E4E4E8;

  --success:     #7D9B76;
  --danger:      #C2185B;

  /* Aliasy pro zděděné šablony (blog, cookies) */
  --wine:        #DE1261;
  --wine-dark:   #B50E4F;
  --gold:        #E82070;
  --gold-light:  #FC6FA4;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-pill: 999px;
  --shadow-sm: 0 2px 12px rgba(58, 52, 56, .07);
  --shadow-md: 0 10px 32px rgba(58, 52, 56, .12);
  --shadow-lg: 0 22px 60px rgba(58, 52, 56, .18);
  --shadow-rose: 0 10px 30px rgba(222, 18, 97, .26);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--rose-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rose); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink-2);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(40px, 5.8vw, 66px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: clamp(22px, 2.6vw, 28px); }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--rose); }
p { margin: 0 0 1em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(68px, 9vw, 116px) 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}
.kicker--gold { color: var(--rose-dark); }
.kicker::after { content: ""; width: 52px; height: 1px; background: var(--rose); opacity: .55; }
.sec-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .kicker::before { content: ""; width: 52px; height: 1px; background: var(--rose); opacity: .55; }
.sec-lead { color: var(--muted); font-size: 17.5px; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 0;
  border: 1px solid transparent; cursor: pointer;
  transition: all .25s ease; text-decoration: none; line-height: 1.1;
}
.btn-rose, .btn-gold, .btn-wine, .btn-primary {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff; box-shadow: var(--shadow-rose);
}
.btn-rose:hover, .btn-gold:hover, .btn-wine:hover, .btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 16px 40px rgba(222, 18, 97, .36); color: #fff;
}
.btn-dark { background: var(--graphite); color: #F4EFF1; }
.btn-dark:hover { background: var(--graphite-2); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink-2); border-color: var(--ink-2); }
.btn-outline:hover { background: var(--ink-2); color: #fff; }
.btn-ghost { background: var(--blush); color: var(--rose-deep); }
.btn-ghost:hover { background: var(--rose-pale); color: var(--rose-deep); }
.btn-sm { padding: 12px 24px; font-size: 12.5px; }
.btn-lg { padding: 19px 46px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Infobar ---------- */
.infobar { position: relative; z-index: 60; font-size: 14px; }
.infobar-inner {
  max-width: 1180px; margin: 0 auto; padding: 10px 44px 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.infobar a { text-decoration: underline; font-weight: 500; }
.infobar-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 22px; cursor: pointer; opacity: .75;
}
.infobar-close:hover { opacity: 1; }

/* ---------- Hlavička — světlá ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
header.site .wrap {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: baseline; gap: 2px; }
.b-nutri {
  font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--ink-2);
  letter-spacing: .01em;
}
.b-core {
  font-family: var(--font-head); font-size: 30px; font-weight: 500; font-style: italic;
  color: var(--rose);
}
nav.main { margin-left: auto; }
nav.main ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
nav.main a {
  font-size: 13px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 6px 0;
}
nav.main a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--rose); transition: width .25s ease;
}
nav.main a:hover { color: var(--rose-dark); }
nav.main a:hover::after { width: 100%; }
.nav-r { display: flex; align-items: center; gap: 18px; }
.langs { display: flex; align-items: center; gap: 8px; }
.lang-btn { display: inline-flex; padding: 2px; border-radius: 5px; line-height: 0; opacity: .45; filter: saturate(.6); transition: all .2s ease; border: 1px solid transparent; }
.lang-btn:hover { opacity: 1; filter: none; }
.lang-btn.active { opacity: 1; filter: none; border-color: var(--rose); box-shadow: 0 0 0 1px rgba(222, 18, 97, .18); }
.lang-btn .flag { display: block; border-radius: 3px; }
.lang-sep { display: none; }
.burger { display: none; background: none; border: none; color: var(--ink-2); cursor: pointer; padding: 6px; }

/* ---------- Mobilní menu ---------- */
.mm-overlay {
  position: fixed; inset: 0; background: rgba(58, 52, 56, .4); opacity: 0;
  pointer-events: none; transition: opacity .25s ease; z-index: 98;
}
.mm-overlay.open { opacity: 1; pointer-events: auto; }
.mm-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 360px);
  background: var(--card); z-index: 99; transform: translateX(102%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.mm-drawer.open { transform: none; }
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line-soft);
}
.mm-head .b-nutri, .mm-head .b-core { font-size: 24px; }
.mm-close { background: var(--blush); border: none; border-radius: 50%; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer; color: var(--ink-2); }
.mm-body { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; }
.mm-body a {
  padding: 15px 0; font-size: 15px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); border-bottom: 1px solid var(--line-soft);
}
.mm-body a:hover { color: var(--rose-dark); }
.mm-foot { padding: 18px 22px; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 14px; }
.mm-phone { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; color: var(--muted); }

/* ---------- Scroll-reveal — sekce a bloky nabíhají postupně ----------
   Element s třídou .nc-reveal začne skrytý; IntersectionObserver v layoutu
   mu při vstupu do viewportu přidá .in. Zpoždění přes .nc-d1…nc-d6. */
.nc-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22, .8, .36, 1), transform .7s cubic-bezier(.22, .8, .36, 1); }
.nc-reveal.nc-left { transform: translateX(-30px); }
.nc-reveal.nc-right { transform: translateX(30px); }
.nc-reveal.nc-zoom { transform: scale(.94); }
.nc-reveal.in { opacity: 1; transform: none; }
.nc-d1 { transition-delay: .1s; } .nc-d2 { transition-delay: .2s; }
.nc-d3 { transition-delay: .3s; } .nc-d4 { transition-delay: .4s; }
.nc-d5 { transition-delay: .5s; } .nc-d6 { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) {
  .nc-reveal { opacity: 1; transform: none; transition: none; }
}
/* Animace donut grafu talíře — výseče se „dokreslí" */
@keyframes ncPlateSweep { from { opacity: 0; transform: scale(.6) rotate(-18deg); } to { opacity: 1; transform: none; } }
.plate-svg.in .plate-seg { transform-origin: 100px 100px; animation: ncPlateSweep .8s cubic-bezier(.22, .8, .36, 1) both; }
.plate-svg.in .plate-seg:nth-of-type(2) { animation-delay: .18s; }
.plate-svg.in .plate-seg:nth-of-type(3) { animation-delay: .36s; }
.plate-svg .plate-txt { opacity: 0; transition: opacity .5s .7s ease; }
.plate-svg.in .plate-txt { opacity: 1; }

/* ---------- Hero animace — jemný pohyb při načtení ---------- */
@keyframes ncFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes ncFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ncPhotoIn {
  from { opacity: 0; transform: translateX(28px) scale(.985); }
  to { opacity: 1; transform: none; }
}
@keyframes ncBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero .kicker { animation: ncFadeUp .7s cubic-bezier(.22, .8, .36, 1) both; }
.hero h1 { animation: ncFadeUp .7s .12s cubic-bezier(.22, .8, .36, 1) both; }
.hero-lead { animation: ncFadeUp .7s .24s cubic-bezier(.22, .8, .36, 1) both; }
.hero-cta { animation: ncFadeUp .7s .36s cubic-bezier(.22, .8, .36, 1) both; }
.hero-quote { animation: ncFadeUp .7s .5s cubic-bezier(.22, .8, .36, 1) both; }
.hero-photo { animation: ncPhotoIn .9s .15s cubic-bezier(.22, .8, .36, 1) both; }
.hero-photo::before, .hero-photo::after { animation: ncFadeIn 1.2s .6s both; }
.hero-badge { animation: ncFadeUp .7s .7s cubic-bezier(.22, .8, .36, 1) both, ncBadgeFloat 5s 1.6s ease-in-out infinite; }
.hero-facts .fact { animation: ncFadeUp .7s cubic-bezier(.22, .8, .36, 1) both; }
.hero-facts .fact:nth-child(1) { animation-delay: .55s; }
.hero-facts .fact:nth-child(2) { animation-delay: .68s; }
.hero-facts .fact:nth-child(3) { animation-delay: .81s; }
@media (prefers-reduced-motion: reduce) {
  .hero .kicker, .hero h1, .hero-lead, .hero-cta, .hero-quote,
  .hero-photo, .hero-photo::before, .hero-photo::after, .hero-badge, .hero-facts .fact {
    animation: none;
  }
}

/* ---------- Hero — světle stříbřitý, luxusní ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 560px at 85% -5%, rgba(232, 32, 112, .1), transparent 62%),
    radial-gradient(760px 480px at -8% 108%, rgba(232, 32, 112, .07), transparent 58%),
    linear-gradient(155deg, #E9E5E7 0%, var(--paper-2) 55%, var(--paper-3) 100%);
}
/* jemná ornamentální linka přes hero */
.hero::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 55%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(222, 18, 97, .14), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: clamp(64px, 8.5vw, 110px) 24px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 6vw, 90px);
  align-items: center; position: relative;
}
.hero h1 { margin: 0 0 20px; }
.hero-lead { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 34px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-quote {
  margin-top: 48px; padding-left: 22px; border-left: 2px solid var(--rose);
  font-family: var(--font-head); font-style: italic; font-size: 21px; color: var(--ink-2);
  max-width: 470px; font-weight: 500;
}
.hero-photo { position: relative; }
.hero-photo::before {
  content: ""; position: absolute; inset: 30px -30px -30px 30px;
  border: 1px solid var(--rose-light); z-index: 0;
}
.hero-photo::after {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid rgba(58, 52, 56, .1); z-index: 0;
}
.hero-photo img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 3 / 3.7; object-fit: cover;
  display: block; box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; z-index: 2; left: -26px; bottom: 38px;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px);
  border: 1px solid var(--rose-pale); box-shadow: var(--shadow-md);
  padding: 15px 22px; display: flex; align-items: center; gap: 13px;
  cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease;
}
.hero-badge:hover { border-color: var(--rose); box-shadow: 0 14px 36px rgba(222, 18, 97, .22); }
.hero-badge .hb-arrow { color: var(--rose-dark); flex: none; opacity: 0; transform: translateX(-6px); transition: all .25s ease; }
.hero-badge:hover .hb-arrow { opacity: 1; transform: none; }
.hero-badge:hover .hb-t { color: var(--rose-dark); }
.hero-badge .hb-ic {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blush);
  border: 1px solid var(--rose-pale);
  display: grid; place-items: center; color: var(--rose-dark); flex: none;
}
.hero-badge .hb-t { font-weight: 500; font-size: 14px; color: var(--ink-2); line-height: 1.3; letter-spacing: .04em; }
.hero-badge .hb-s { font-size: 12px; color: var(--muted); }

/* Fakta — bílý pás překrývající hero */
.hero-facts {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative; z-index: 3;
  transform: translateY(50%);
}
.hero { padding-bottom: 0; }
.fact {
  background: var(--card); border-right: 1px solid var(--line-soft);
  padding: 26px 30px; box-shadow: var(--shadow-md);
}
.fact:first-child { border-radius: 2px 0 0 2px; }
.fact:last-child { border-right: none; border-radius: 0 2px 2px 0; }
.fact .f-v { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--ink-2); line-height: 1.1; }
.fact .f-v::after { content: ""; display: block; width: 34px; height: 2px; background: var(--rose); margin-top: 8px; }
.fact .f-l { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* první sekce za hero potřebuje prostor pro překrývající fakta */
.hero + .section { padding-top: clamp(110px, 14vw, 160px); }

/* ---------- O mně ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.about-photos { position: relative; padding-bottom: 60px; }
.about-photos::before {
  content: ""; position: absolute; top: -22px; left: -22px; width: 46%; height: 60%;
  background: var(--paper-3); z-index: 0;
}
.about-photos .ap-main {
  position: relative; width: 88%; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: var(--shadow-md); display: block; z-index: 1;
}
.about-photos .ap-small {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1;
  object-fit: cover; border: 8px solid var(--paper);
  box-shadow: var(--shadow-lg); z-index: 2;
}
.about-body p { color: var(--muted); }
.about-sign { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.about-sign::before { content: ""; width: 44px; height: 1px; background: var(--rose); }
.about-sign .as-name { font-family: var(--font-head); font-style: italic; font-size: 26px; font-weight: 600; color: var(--ink-2); }
.about-sign .as-role { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-dark); }

/* ---------- Infografika: průběh spolupráce ---------- */
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  position: relative;
}
/* spojovací tečkovaná linka mezi kroky */
.proc-grid::before {
  content: ""; position: absolute; top: 34px; left: 9%; right: 9%; height: 0;
  border-top: 2px dashed var(--rose-pale); z-index: 0;
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-ic {
  position: relative; width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--card); border: 2px solid var(--rose);
  display: grid; place-items: center; color: var(--rose-dark);
  box-shadow: 0 8px 24px rgba(222, 18, 97, .14);
}
.proc-n {
  position: absolute; top: -7px; right: -7px; width: 26px; height: 26px;
  border-radius: 50%; background: linear-gradient(120deg, var(--rose), var(--rose-dark));
  color: #fff; font-size: 13px; font-weight: 500; display: grid; place-items: center;
}
.proc-step h3 { font-size: 21px; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Infografika: vyvážený talíř ---------- */
.plate { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.plate-svg { width: min(320px, 80vw); height: auto; }
.plate-legend { list-style: none; padding: 0; margin: 18px 0 0; }
.plate-legend li { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line-soft); }
.plate-legend li:last-child { border-bottom: none; }
.plate-dot { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.plate-legend .pl-t { font-weight: 500; color: var(--ink-2); }
.plate-legend .pl-d { font-size: 13.5px; color: var(--muted); }

/* ---------- Služby ---------- */
.sv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); box-shadow: var(--shadow-sm); }
.sv-card {
  background: var(--card); padding: 42px 36px; display: flex; flex-direction: column;
  transition: background .3s ease; position: relative;
}
.sv-card:hover { background: var(--blush-2); }
.sv-card.featured { background: linear-gradient(170deg, var(--blush-2) 0%, var(--blush) 100%); }
.sv-card.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
}
.sv-num {
  font-family: var(--font-head); font-style: italic; font-size: 52px; font-weight: 500;
  color: var(--rose-pale); line-height: 1; margin-bottom: 18px;
}
.sv-card.featured .sv-num { color: var(--rose-light); }
.sv-card h3 { margin-bottom: 12px; font-size: 25px; }
.sv-card .sv-desc { color: var(--muted); font-size: 15px; flex: 1; }
.sv-price { margin: 20px 0 22px; }
.sv-price .p-v { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--rose-dark); }
.sv-price .p-n { font-size: 12.5px; color: var(--muted-2); display: block; margin-top: 3px; }
.sv-more { font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-dark); }
.sv-more:hover { color: var(--rose); }

/* Detailní karty služeb (stránka Služby) */
.svd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--line); }
.svd:last-child { border-bottom: none; }
.svd img { box-shadow: var(--shadow-md); }
.svd-features { list-style: none; padding: 0; margin: 20px 0; }
.svd-features li { padding: 9px 0 9px 34px; position: relative; color: var(--ink-2); border-bottom: 1px dashed var(--line-soft); }
.svd-features li:last-child { border-bottom: none; }
.svd-features li::before {
  content: ""; position: absolute; left: 2px; top: 16px; width: 18px; height: 10px;
  border-left: 2px solid var(--rose); border-bottom: 2px solid var(--rose);
  transform: rotate(-48deg) scale(.85);
}
.svd-price { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--rose-dark); }
.svd-price small { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--muted); display: block; }

/* ---------- Ceník ---------- */
.pr-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 470px)); justify-content: center; gap: 30px; }
.pr-card {
  background: var(--card); border: 1px solid var(--line);
  padding: 46px 40px; text-align: center; box-shadow: var(--shadow-sm); position: relative;
}
.pr-card.featured {
  background: linear-gradient(175deg, #FFFFFF 55%, var(--blush-2));
  border-color: var(--rose-light); border-top: 3px solid var(--rose);
  box-shadow: var(--shadow-md);
}
.pr-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--rose), var(--rose-dark)); color: #fff; font-size: 10.5px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; padding: 7px 20px;
}
.pr-card h3 { margin-bottom: 6px; }
.pr-sub { color: var(--muted); font-size: 14.5px; min-height: 44px; }
.pr-price { font-family: var(--font-head); font-size: 56px; font-weight: 700; color: var(--ink-2); margin: 20px 0 2px; }
.pr-card.featured .pr-price { color: var(--rose-dark); }
.pr-price small { font-size: 22px; }
.pr-note { font-size: 13px; color: var(--muted-2); margin-bottom: 24px; }
.pr-list { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.pr-list li { padding: 10px 0 10px 30px; position: relative; font-size: 15px; color: var(--ink-2); border-bottom: 1px dashed var(--line-soft); }
.pr-list li:last-child { border-bottom: none; }
.pr-list li::before {
  content: ""; position: absolute; left: 2px; top: 17px; width: 14px; height: 8px;
  border-left: 2px solid var(--rose); border-bottom: 2px solid var(--rose);
  transform: rotate(-48deg) scale(.9);
}
.pr-foot { text-align: center; color: var(--muted); font-size: 14px; margin-top: 34px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  margin-bottom: -1px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 22px 30px; font-family: var(--font-head); font-size: 21px; font-weight: 600;
  color: var(--ink-2); transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; margin-left: auto; font-family: var(--font-body); font-size: 24px;
  font-weight: 200; color: var(--rose); transition: transform .25s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--rose-dark); }
.faq-item[open] { border-left: 2px solid var(--rose); }
.faq-body { padding: 0 30px 24px; color: var(--muted); font-size: 15.5px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------- E-book ---------- */
.eb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.eb-card {
  background: var(--card); border: 1px solid var(--line);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.eb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.eb-cover { aspect-ratio: 3 / 4; background: linear-gradient(160deg, var(--paper-2), var(--paper-3)); position: relative; overflow: hidden; }
.eb-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eb-cover .eb-ph {
  position: absolute; inset: 14px; display: grid; place-items: center;
  border: 1px solid var(--rose-light);
  font-family: var(--font-head); font-style: italic; font-size: 26px; color: var(--rose-deep);
  padding: 24px; text-align: center;
}
.eb-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.eb-body h3 { font-size: 22px; margin-bottom: 6px; }
.eb-sub { color: var(--muted); font-size: 14.5px; flex: 1; }
.eb-price { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--rose-dark); margin: 16px 0; }

/* Detail ebooku + objednávka */
.ebd { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 76px); align-items: start; }
.ebd-cover { position: relative; }
.ebd-cover::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--rose-light); }
.ebd-cover img { position: relative; width: 100%; box-shadow: var(--shadow-lg); display: block; }
.ebd-cover .eb-ph {
  position: relative; aspect-ratio: 3 / 4; background: linear-gradient(160deg, var(--paper-2), var(--paper-3));
  display: grid; place-items: center; font-family: var(--font-head); font-style: italic;
  font-size: 30px; color: var(--rose-deep); padding: 30px; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.ebd-desc { color: var(--muted); }
.ebd-price { font-family: var(--font-head); font-size: 46px; font-weight: 700; color: var(--rose-dark); margin: 22px 0; }

/* Formuláře */
.fm-card {
  background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--rose);
  padding: 38px 36px; box-shadow: var(--shadow-md);
}
.fm-card h3 { margin-bottom: 20px; }
.fm-row { margin-bottom: 20px; }
.fm-row label { display: block; font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.fm-row input, .fm-row textarea, .fm-row select {
  width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 15.5px;
  color: var(--ink); background: var(--blush-2); border: 1px solid var(--line);
  border-radius: 0; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.fm-row input:focus, .fm-row textarea:focus, .fm-row select:focus {
  border-color: var(--rose); box-shadow: 0 0 0 3px rgba(232, 32, 112, .12); background: #fff;
}
.fm-row textarea { min-height: 140px; resize: vertical; }
.fm-note { font-size: 13px; color: var(--muted-2); }

/* Platební stránka */
.pay-wrap { max-width: 880px; margin: 0 auto; }
.pay-grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 4vw, 52px); align-items: start; }
.pay-qr {
  background: #fff; border: 1px solid var(--line);
  padding: 20px; box-shadow: var(--shadow-md); text-align: center;
  border-top: 3px solid var(--rose);
}
.pay-qr img { width: 220px; height: 220px; display: block; margin: 0 auto; }
.pay-qr .pq-l { font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.pay-rows { border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); }
.pay-row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 24px; background: var(--card); border-bottom: 1px solid var(--line-soft); }
.pay-row:nth-child(even) { background: var(--blush-2); }
.pay-row:last-child { border-bottom: none; }
.pay-row .pr-l { color: var(--muted); font-size: 14px; letter-spacing: .04em; }
.pay-row .pr-v { font-weight: 500; color: var(--ink-2); text-align: right; }
.pay-row .pr-v.big { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--rose-dark); }
.pay-status {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 22px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
.pay-status.pending { background: #F6EEDE; color: #96682F; border: 1px solid #E5D2AC; }
.pay-status.paid { background: #E9F0E6; color: var(--success); border: 1px solid #C5D6BF; }

/* ---------- CTA pás — stříbřitý ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 340px at 12% -10%, rgba(232, 32, 112, .1), transparent 60%),
    linear-gradient(140deg, var(--paper-2) 0%, var(--paper-3) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; top: 50%; width: 180px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 18, 97, .3), transparent);
}
.cta-band::before { left: 4%; }
.cta-band::after { right: 4%; }
.cta-inner { max-width: 780px; margin: 0 auto; padding: clamp(72px, 9.5vw, 110px) 24px; position: relative; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--muted); margin-bottom: 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Blog ---------- */
.bli-wrap, .bl-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.bli-hero, .bl-hero { text-align: center; padding: clamp(48px, 7vw, 84px) 0 36px; }
.bli-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 20px 0 8px; }
.bli-pill {
  padding: 9px 22px; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--card); border: 1px solid var(--line); color: var(--ink-2);
}
.bli-pill:hover { border-color: var(--rose); color: var(--rose-dark); }
.bli-pill.on { background: var(--rose); border-color: var(--rose); color: #fff; }
.bli-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; padding-bottom: clamp(56px, 8vw, 90px); }
.bli-card {
  background: var(--card); border: 1px solid var(--line);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bli-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bli-card .im { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.bli-card .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bli-card:hover .im img { transform: scale(1.04); }
.bli-card .b { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.bli-card .cat { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 9px; }
.bli-card h3 { font-size: 22px; line-height: 1.25; }
.bli-card h3 a { color: var(--ink-2); }
.bli-card h3 a:hover { color: var(--rose-dark); }
.bli-card .ds { color: var(--muted); font-size: 14.5px; flex: 1; }
.bli-card .meta { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }
.bli-card .more { font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-dark); margin-top: 12px; }

.bl-content {
  max-width: 760px; margin: 0 auto; padding-bottom: clamp(56px, 8vw, 90px);
  font-size: 17px; line-height: 1.75;
}
.bl-content img { box-shadow: var(--shadow-md); }
.bl-meta { display: flex; gap: 14px; justify-content: center; color: var(--muted-2); font-size: 14px; margin-top: 10px; }
.bl-featured { max-width: 900px; margin: 0 auto 44px; }
.bl-featured img { width: 100%; box-shadow: var(--shadow-lg); }
.bl-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.bl-tag { padding: 7px 18px; background: var(--blush); color: var(--rose-deep); font-size: 12.5px; letter-spacing: .06em; }

/* ---------- Obecné stránky — světlý hero ---------- */
.page-hero, .page-hero-rt {
  text-align: center;
  background:
    radial-gradient(900px 380px at 82% -20%, rgba(232, 32, 112, .1), transparent 60%),
    linear-gradient(150deg, #E9E5E7 0%, var(--paper-2) 60%, var(--paper-3) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 92px) 24px clamp(46px, 6.5vw, 72px);
}
.ph-wrap { max-width: 820px; margin: 0 auto; }
.ph-wrap .kicker::before { content: ""; width: 52px; height: 1px; background: var(--rose); opacity: .55; }
.page-hero p, .page-hero-rt p { color: var(--muted); font-size: 17.5px; margin: 0; }
.page-content { max-width: 820px; margin: 0 auto; padding: clamp(44px, 6vw, 68px) 24px clamp(64px, 9vw, 100px); }

/* obsahové stránky navazující na hero */
.page-hero + .container, .page-hero + .kt-wrap, .page-hero + .pay-wrap { padding-top: clamp(44px, 6vw, 68px); }

/* ---------- Kontakt ---------- */
.kt-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px clamp(64px, 9vw, 100px); }
.kt-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start; }
.kt-card {
  background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--silver);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
}
.kt-card h3 { font-size: 25px; }
.kt-row { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0; border-bottom: 1px dashed var(--line-soft); }
.kt-row:last-child { border-bottom: none; }
.kt-ic {
  width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--blush);
  border: 1px solid var(--rose-pale);
  display: grid; place-items: center; color: var(--rose-dark);
}
.kt-l { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); }
.kt-v { font-weight: 400; color: var(--ink-2); }

/* ---------- Cookies stránka ---------- */
.ck-wrap { max-width: 900px; margin: 0 auto; padding: 0 24px clamp(56px, 8vw, 90px); }
.ck-hero { text-align: center; padding: clamp(48px, 7vw, 76px) 0 26px; }
.ck-sub { color: var(--muted); max-width: 640px; margin: 0 auto; }
.ck-manager { background: var(--card); border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.ck-cats { display: flex; flex-direction: column; gap: 14px; }
.ck-cat { border: 1px solid var(--line-soft); padding: 18px 20px; background: var(--blush-2); }
.ck-cat-locked { opacity: .75; }
.ck-block { margin-bottom: 26px; }
.ck-block-title { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--ink-2); }
.ck-block-desc { color: var(--muted); font-size: 15px; }
.ck-table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); }
.ck-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ck-table th { text-align: left; background: var(--paper-2); color: var(--ink-2); padding: 12px 16px; font-weight: 500; letter-spacing: .06em; }
.ck-table td { padding: 12px 16px; border-top: 1px solid var(--line-soft); }
.ck-cell-muted { color: var(--muted-2); }
.ck-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.ck-btn-outline { background: transparent; border: 1px solid var(--rose); color: var(--rose-dark); padding: 12px 24px; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.ck-tag { display: inline-block; padding: 3px 10px; background: var(--blush); color: var(--rose-deep); font-size: 12px; }
.ck-tick { color: var(--success); }
.ck-help { font-size: 13px; color: var(--muted-2); }

/* ---------- Patička — světle šedá ---------- */
footer.foot {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper-3) 100%);
  color: var(--muted); font-size: 15px;
  border-top: 1px solid var(--line);
}
footer.foot .b-nutri { color: var(--ink-2); }
footer.foot .b-core { color: var(--rose); }
.foot-cols {
  max-width: 1180px; margin: 0 auto; padding: clamp(56px, 7.5vw, 82px) 24px 44px;
  display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: clamp(30px, 5vw, 76px);
}
.foot-cols p { color: var(--muted); font-size: 14.5px; margin-top: 18px; }
.foot-h {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--rose-dark);
  margin-bottom: 18px;
}
.foot-h::after { content: ""; display: block; width: 30px; height: 1px; background: var(--rose-light); margin-top: 8px; }
.foot-list div { padding: 4px 0; color: var(--muted); }
.foot-list a { color: var(--ink-2); }
.foot-list a:hover { color: var(--rose-dark); }
.foot-note { font-size: 12.5px; color: var(--muted-2); margin-top: 6px; }
.foot-social { margin-top: 24px; }
.foot-social-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-social-links a { color: var(--ink-2); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--rose-light); padding-bottom: 3px; }
.foot-social-links a:hover { color: var(--rose-dark); border-color: var(--rose-dark); }
.foot-nl-text { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.foot-nl-row { display: flex; gap: 0; }
.foot-nl-row input {
  flex: 1; min-width: 0; padding: 13px 16px; font-family: var(--font-body); font-size: 14.5px;
  background: #fff; border: 1px solid var(--line); border-right: none;
  color: var(--ink); outline: none;
}
.foot-nl-row input::placeholder { color: var(--muted-2); }
.foot-nl-row input:focus { border-color: var(--rose); }
.foot-nl-row .btn { box-shadow: none; }
.foot-nl-msg {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 12px;
  padding: 11px 14px; font-size: 13.5px; line-height: 1.45;
  border: 1px solid transparent; animation: ncFadeUp .35s ease both;
}
.foot-nl-msg svg { flex: none; margin-top: 2px; }
.foot-nl-msg.is-success { background: #E9F0E6; border-color: #C5D6BF; color: #55703F; }
.foot-nl-msg.is-info { background: #F6EEDE; border-color: #E5D2AC; color: #96682F; }
.foot-nl-msg.is-error { background: #FBE3ED; border-color: #F3B9D0; color: #B50E4F; }
.foot-bottom {
  max-width: 1180px; margin: 0 auto; padding: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2);
}
.fb-l { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fb-links { display: flex; align-items: center; gap: 10px; }
.fb-links a, .foot-bottom a { color: var(--muted); }
.fb-links a:hover, .foot-bottom a:hover { color: var(--rose-dark); }
.fb-links .dot { color: var(--silver); }

/* ---------- Drobnosti ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.err-wrap { text-align: center; padding: clamp(80px, 12vw, 140px) 24px; }
.err-code { font-family: var(--font-head); font-style: italic; font-size: 100px; color: var(--silver); line-height: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav.main { display: none; }
  .nav-r .langs, .nav-r .btn { display: none; }
  .burger { display: block; margin-left: auto; }
  header.site .wrap { gap: 12px; }
  .sv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 440px; margin: 0 auto; }
  .hero-badge { left: 10px; }
  .hero-facts { grid-template-columns: 1fr; transform: none; padding-bottom: 0; margin-top: 34px; }
  .fact { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .hero { padding-bottom: 0; }
  .hero + .section { padding-top: clamp(64px, 9vw, 110px); }
  .about-grid, .svd, .ebd, .kt-grid, .pay-grid, .plate { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .proc-grid::before { display: none; }
  .pr-grid { grid-template-columns: 1fr; }
  .sv-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; gap: 36px; }
  .pay-qr { justify-self: center; }
  .cta-band::before, .cta-band::after { display: none; }
}
