/* ====================================================
   GLOW — Design System (inšpirovaný Laser & Me)
   ==================================================== */

/* ─────────────────────────────────────
   PREMENNÉ
───────────────────────────────────── */
:root {
  --bg:        #F4EDE4;   /* teplá slonová kosť */
  --bg-alt:    #EDE5D8;   /* o niečo tmavšia krémová */
  --bg-dark:   #1C1A18;   /* takmer čierna teplá */
  --bg-white:  #FFFFFF;

  --text:      #1C1A18;
  --text-muted:#6B6057;
  --text-light:#F4EDE4;
  --text-faded:#9A8F85;

  --gold:      #B5903F;   /* primárna zlatá */
  --gold-light:#C9A96E;
  --gold-dark: #9A7A32;
  --gold-pale: #F0E6D0;   /* veľmi svetlá zlatá */

  --border:    #D8CDBF;
  --border-dk: #2C2924;

  --font-h:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'DM Sans', system-ui, sans-serif;

  --max-w:     1200px;
  --max-w-sm:  760px;
  --r:         0px;       /* bez border-radius — štýl Laser & Me */
  --ease:      0.2s ease;
}

/* ─────────────────────────────────────
   RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─────────────────────────────────────
   TYPOGRAFIA
───────────────────────────────────── */
.section__headline {
  font-family: var(--font-h);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section__headline--center { text-align: center; }
.section--dark .section__headline { color: var(--text-light); }

.text-gold { color: var(--gold); }

/* ─────────────────────────────────────
   SECTION LABEL  (——— LABEL ———)
───────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   LAYOUT
───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: var(--max-w-sm); }

.section       { padding: 112px 0; background: var(--bg); }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }
.section--white{ background: var(--bg-white); }

.section__header { max-width: 640px; margin-bottom: 60px; }
.section__header .section__headline { margin-bottom: 16px; }
.section__note {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────
   TLAČIDLÁ
───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--r);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.btn--outline:hover {
  background: var(--text);
  color: var(--bg);
}
.btn--outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(244,237,228,0.5);
}
.btn--outline-light:hover {
  background: rgba(244,237,228,0.1);
}
.btn--lg  { padding: 18px 44px; font-size: 12px; }
.btn--sm  { padding: 11px 24px; font-size: 10px; }

/* ─────────────────────────────────────
   NAVIGÁCIA
───────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--ease), box-shadow var(--ease);
}
#nav.is-scrolled {
  background: rgba(244,237,228,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav__logo {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 26px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: color var(--ease);
}
#nav.is-scrolled .nav__logo { color: var(--text); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,237,228,0.75);
  transition: color var(--ease);
}
.nav__links a:hover { color: var(--text-light); }
#nav.is-scrolled .nav__links a { color: var(--text-muted); }
#nav.is-scrolled .nav__links a:hover { color: var(--text); }

#nav-cta { padding: 10px 22px; font-size: 10px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-light);
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
  transform-origin: center;
}
#nav.is-scrolled .nav__toggle span { background: var(--text); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────
   HERO — split layout
───────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54% 46%;
}
.hero__text-side {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 48px;
  max-width: none;
}
.hero__img-side {
  position: relative;
  overflow: hidden;
}
.hero__img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  animation: heroFade 0.7s ease 0.1s both;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: heroFade 0.7s ease 0.2s both;
}
.hero__headline {
  font-family: var(--font-h);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
  animation: heroFade 0.7s ease 0.35s both;
}
.hero__headline .text-gold { color: var(--gold); }
.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: heroFade 0.7s ease 0.5s both;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: heroFade 0.7s ease 0.65s both;
}
.hero__scarcity {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  animation: heroFade 0.7s ease 0.8s both;
}
.hero__scarcity strong { color: var(--text); }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────
   WHY — PILIERE
───────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.pillar {
  background: var(--bg-white);
  padding: 36px 28px;
  transition: background var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar:hover { background: var(--gold-pale); }
.pillar__icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pillar__title {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}
.pillar__text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────
   STORY — portrét v kruhu
───────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.story__portrait-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.portrait-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  outline: 4px solid var(--bg);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px var(--border);
}
.portrait-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-name {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
}
.portrait-role {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}
.story__text .section__headline { margin-bottom: 24px; }
.body-text { color: var(--text-muted); }
.body-text--muted { color: var(--text-faded); }
.section--dark .body-text { color: var(--text-faded); }
.section--dark .body-text strong,
.section--dark .body-text em { color: var(--text-light); }
.story__quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px;
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────
   PROBLÉM
───────────────────────────────────── */
#problem .section__headline { margin-bottom: 20px; }
#problem .section-label { color: rgba(181,144,63,0.8); }
#problem .section-label::before { background: rgba(181,144,63,0.8); }

/* ─────────────────────────────────────
   FEATURES — karty
───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 8px;
}
.feat-card {
  background: var(--bg-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--ease), transform var(--ease);
}
.feat-card:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.feat-card__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.feat-card__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; }
.feat-card__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}
.feat-card__divider {
  height: 1px;
  background: var(--border);
}
.feat-card__benefits { display: flex; flex-direction: column; gap: 10px; }
.feat-card__col-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.feat-card__col-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────── */
#how .section__headline--center { margin-bottom: 60px; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.how__part {
  background: var(--bg);
  padding: 48px 44px;
}
.section--alt .how__part { background: var(--bg-white); }
.how__part-num {
  font-family: var(--font-h);
  font-size: 64px;
  font-weight: 300;
  color: rgba(181,144,63,0.18);
  line-height: 1;
  margin-bottom: 8px;
}
.how__part-title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.3;
}
.how-steps {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.how-step {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.how-step::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2px;
  background: var(--bg-white);
}
.how__note {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────
   PRÍSĽUBY
───────────────────────────────────── */
#promises .section__headline--center { margin-bottom: 56px; }
.promises-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dk);
  border: 1px solid var(--border-dk);
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  padding: 32px 32px;
}
.promise-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
}
.promise-text {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.3;
}

/* ─────────────────────────────────────
   BONUS
───────────────────────────────────── */
.bonus__label {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bonus__label::before, .bonus__label::after {
  content: ''; display: block; width: 48px; height: 1px; background: var(--gold);
}
.bonus-card {
  border: 1px solid var(--border);
  padding: 52px 56px;
  text-align: center;
  background: var(--bg-white);
}
.bonus-card__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.bonus-card__icon { font-size: 28px; color: var(--gold); }
.bonus-card__tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.bonus-card__name {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
.bonus-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.bonus-card__value { font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; }

/* ─────────────────────────────────────
   CENNÍK
───────────────────────────────────── */
.pricing__anchor {
  font-size: 15px;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 12px;
  line-height: 1.65;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.pricing-card {
  background: var(--bg-white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: background var(--ease);
}
.pricing-card--featured {
  background: var(--bg-dark);
  position: relative;
  padding-top: 56px;
}
.pricing-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px;
  text-align: center;
}
.pricing-card__name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__name { color: rgba(244,237,228,0.55); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency { font-size: 20px; color: var(--text-muted); margin-top: 8px; }
.price-amount {
  font-family: var(--font-h);
  font-size: 60px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.price-period { font-size: 14px; color: var(--text-muted); }
.pricing-card--featured .price-currency,
.pricing-card--featured .price-amount,
.pricing-card--featured .price-period { color: var(--text-light); }
.pricing-card__setup {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 18px;
}
.pricing-card--featured .pricing-card__setup { color: var(--gold-light); font-weight: 500; }
.pricing-card__divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-card--featured .pricing-card__divider { background: var(--border-dk); }
.pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-feature::before { content: '✓'; flex-shrink: 0; color: var(--gold); font-weight: 600; margin-top: 1px; }
.pricing-card--featured .pricing-feature { color: rgba(244,237,228,0.7); }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing__risk {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}

/* ─────────────────────────────────────
   ZÁRUKY
───────────────────────────────────── */
#guarantees .section__headline--center { margin-bottom: 52px; }
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dk);
  border: 1px solid var(--border-dk);
}
.guarantee-card { background: rgba(255,255,255,0.04); padding: 44px 40px; }
.guarantee-card__icon { font-size: 24px; color: var(--gold); margin-bottom: 18px; display: block; }
.guarantee-card__title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 14px;
}
.guarantee-card__text { font-size: 15px; color: var(--text-faded); line-height: 1.7; }
.guarantee-card__text strong { color: var(--text-light); }

/* ─────────────────────────────────────
   O ČO SA STARÁM JA
───────────────────────────────────── */
#my-job .section__headline--center { margin-bottom: 52px; }
.myjob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.myjob-item {
  background: var(--bg-white);
  padding: 32px 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.myjob-item:hover { background: var(--gold-pale); }
.myjob-item:nth-child(3n) { border-right: none; }
.myjob-item:nth-child(4),
.myjob-item:nth-child(5),
.myjob-item:nth-child(6) { border-bottom: none; }
.myjob-item__title {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.myjob-item__title::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.myjob-item__text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─────────────────────────────────────
   CTA SEKCIA
───────────────────────────────────── */
#cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
  background-image: url('assets/images/kozmetologicka-osetrenie-injekcie-salon-krasy-slovensko.jpg');
  background-size: cover;
  background-position: center 30%;
}
#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,16,14,0.82);
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  max-width: 800px;
}
.cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.cta-label::before, .cta-label::after {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: var(--gold-light);
}
.cta-section__headline {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-section__text {
  font-size: 17px;
  color: rgba(244,237,228,0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section__trust {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(244,237,228,0.4);
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────
   ZÁVER
───────────────────────────────────── */
.closing__inner { text-align: center; }
#closing .section__headline { margin-bottom: 24px; }
.closing__availability { font-size: 14px; color: var(--text-faded); margin: 20px 0 32px; }
.closing__availability strong { color: var(--gold); }
#closing-cta { margin-bottom: 20px; }
.closing__subtext { font-size: 13px; color: rgba(154,143,138,0.6); letter-spacing: 0.03em; }

/* ─────────────────────────────────────
   BLOG
───────────────────────────────────── */
#blog { background: var(--bg); }

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.blog__title {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 8px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.blog-card {
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  transition: background var(--ease);
}
.blog-card:hover { background: var(--gold-pale); }
.blog-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.03); }
.blog-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.blog-card__category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card__readtime { font-size: 12px; color: var(--text-muted); }
.blog-card__title {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.blog-card__date { font-size: 12px; color: var(--text-muted); }
.blog-card__link { font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 0.08em; }
.blog-card__link:hover { color: var(--gold-dark); }

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────
   FOOTER (tmavý, multi-stĺpcový)
───────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dk);
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 28px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}
.footer__tagline { font-size: 14px; color: var(--text-faded); line-height: 1.65; margin-bottom: 28px; max-width: 220px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border-dk);
  color: var(--text-faded);
  font-size: 14px;
  transition: border-color var(--ease), color var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faded);
  margin-bottom: 20px;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 14px; color: rgba(244,237,228,0.55); transition: color var(--ease); }
.footer__nav a:hover { color: var(--gold); }

.footer__contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(244,237,228,0.55);
}
.footer__contact-item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; color: var(--gold); }
.footer__contact-item a { color: inherit; transition: color var(--ease); }
.footer__contact-item a:hover { color: var(--gold); }

/* ─────────────────────────────────────
   BOTTOM BAR
───────────────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.footer__copy { font-size: 12px; color: rgba(244,237,228,0.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 12px; color: rgba(244,237,228,0.3); transition: color var(--ease); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────
   REVEAL ANIMÁCIE
───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.42s; }

/* ─────────────────────────────────────
   RESPONZÍVNOSŤ
───────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 260px 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text-side { padding: 120px 32px 64px; }
  .hero__img-side { height: 50vw; min-height: 280px; }
  .hero__img-side::after { background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story__portrait-wrap { position: static; flex-direction: row; justify-content: flex-start; }
  .portrait-circle { width: 160px; height: 160px; }
  .how-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .myjob-grid { grid-template-columns: 1fr 1fr; }
  .myjob-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .myjob-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__inner { padding: 0 20px; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(244,237,228,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 28px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; gap: 0; width: 100%; }
  .nav__links a {
    display: block;
    padding: 13px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
  }
  .nav__links a:hover { color: var(--text); }
  #nav-cta { margin-top: 18px; width: 100%; justify-content: center; }

  /* Hero */
  .hero__text-side { padding: 100px 20px 60px; }
  .hero__img-side { display: none; }
  .hero__headline { font-size: 38px; }

  /* Grids */
  .pillars { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; background: none; border: none; gap: 12px; }
  .pricing-card { border: 1px solid var(--border); }
  .pricing-card--featured { order: -1; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .promises-list { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .myjob-grid { grid-template-columns: 1fr; }
  .myjob-item { border-right: none !important; }
  .myjob-item:last-child { border-bottom: none; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .bonus-card { padding: 36px 24px; }
  .cta-section__inner { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 32px; }
  .section__headline { font-size: 26px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
