/* ==========================================================================
   Bambo Nature CZ — one page
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --sand:        #E7E5DD;
  --cream:       #F6F5F0;
  --white:       #FDFCFA;
  --line:        #DAD7CC;

  --ink:         #3A2A40;
  --ink-2:       #5A4C60;
  --ink-3:       #655670;
  --ink-muted:   #B9A7BE;
  --ink-soft:    #CFC3D4;

  --plum:        #632E69;
  --plum-deep:   #4A1F52;
  --plum-soft:   #DCC8DF;
  --plum-tint:   #E3D2E6;

  --green:       #07543C;
  --green-soft:  #D5E3DA;
  --green-mint:  #A8CDBB;

  --blue-soft:   #CBDCE6;
  --sun:         #EFE3B8;

  /* Type */
  --font-head: "Signika", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 72px;

  /* Radii */
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 26px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(35, 25, 44, .07);
  --shadow-md: 0 12px 30px rgba(35, 55, 44, .14);
  --shadow-lg: 0 28px 60px rgba(35, 25, 44, .18);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-back: cubic-bezier(.34, 1.4, .5, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), opacity .2s var(--ease);
}

button, input { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--plum);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
}

.section { padding: clamp(56px, 8vw, 96px) var(--gutter); }
.section--sand   { background: var(--sand); }
.section--cream  { background: var(--cream); }
.section--plum   { background: var(--plum-deep); color: var(--sand); }

.eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.2;
}
.eyebrow--solid {
  border-color: transparent;
  background: var(--plum-soft);
  color: var(--ink);
}
.eyebrow--sun { border-color: transparent; background: var(--sun); color: var(--ink); }
.eyebrow--glass {
  border-color: transparent;
  background: rgba(255, 255, 255, .75);
  color: var(--plum);
  font-size: 13px;
  letter-spacing: 1.2px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 32px);
  flex-wrap: wrap;
}
.section__head--center { justify-content: center; text-align: center; }

h2.title {
  margin-top: 18px;
  font-size: clamp(32px, 5.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}
h2.title--plum { color: var(--plum); }
h2.title--sm { font-size: clamp(30px, 4.8vw, 48px); letter-spacing: -1.1px; }

.lead {
  margin-top: 16px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--ink-3);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--sm { padding: 13px 24px; font-size: 15px; }
.btn--dark:hover { --btn-bg: var(--green); }
.btn--light { --btn-bg: var(--sand); --btn-fg: var(--ink); }
.btn--light:hover { --btn-bg: var(--white); }
.btn--sun { --btn-bg: var(--sun); --btn-fg: var(--ink); }
.btn--sun:hover { --btn-bg: var(--white); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .6); }
.btn--ghost-sand:hover { --btn-bg: var(--sand); }

/* ==========================================================================
   Header + navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding: 12px var(--gutter);
  background: rgba(246, 245, 240, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck {
  padding: 8px var(--gutter);
  box-shadow: 0 6px 24px rgba(35, 25, 44, .09);
  background: rgba(246, 245, 240, .95);
}

/* hlavička nad otevřeným menu — logo zesvětlí, burger se změní na X */
.header.is-menu-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header.is-menu-open .logo img { filter: brightness(0) invert(1); }
.logo img { transition: height .25s var(--ease), filter .3s var(--ease); }

.header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img {
  height: 40px;
  width: auto;
  transition: height .25s var(--ease);
}
.header.is-stuck .logo img { height: 34px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--plum); }

.header__cta { flex: 0 0 auto; }

/* ---------- Mobile menu trigger (hamburger → X) ---------- */
.burger {
  display: none;
  position: relative;
  z-index: 110;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.burger:hover { transform: scale(1.05); }
.burger__bar {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2.5px;
  margin-left: -10px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform .38s var(--ease-back), opacity .2s var(--ease), width .3s var(--ease);
}
.burger__bar:nth-child(1) { top: 18px; }
.burger__bar:nth-child(2) { top: 24px; width: 14px; }
.burger__bar:nth-child(3) { top: 30px; }

.burger[aria-expanded="true"] { background: var(--plum); }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  /* podbarvení sahá i pod hlavičku, která zůstává nad panelem */
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 64, .5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.mobile-menu__panel {
  position: relative;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  padding: calc(var(--header-h) + 24px) clamp(24px, 7vw, 40px) 32px;
  background: linear-gradient(165deg, var(--plum-deep) 0%, #3A1B42 55%, var(--ink) 100%);
  color: var(--sand);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .48s var(--ease);
  clip-path: inset(0 0 0 0);
}

/* decorative blobs inside the panel */
.mobile-menu__panel::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  top: -70px; right: -60px;
  border-radius: 50%;
  background: var(--plum);
  filter: blur(46px);
  opacity: .5;
  pointer-events: none;
}

.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__scrim { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__label {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green-mint);
}

.mobile-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-head);
  font-size: clamp(24px, 6.5vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  /* staggered entrance */
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .2s var(--ease);
}
.mobile-nav a .num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--plum-soft);
  opacity: .65;
}
.mobile-nav a:hover,
.mobile-nav a:active { color: var(--green-mint); }

.mobile-menu.is-open .mobile-nav a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(90ms + var(--i) * 55ms);
}

.mobile-menu__foot {
  position: relative;
  margin-top: auto;
  padding-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease) .4s, transform .45s var(--ease) .4s;
}
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__foot .btn { width: 100%; }
.mobile-menu__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.mobile-menu__contact a {
  flex: 1 1 140px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.mobile-menu__contact a:hover { background: rgba(255, 255, 255, .2); color: var(--white); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) var(--gutter) 0;
  background: linear-gradient(180deg, var(--green-soft) 0%, #E0E9E1 60%, var(--sand) 100%);
}
.hero__grid {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.hero__copy { padding-bottom: clamp(48px, 7vw, 80px); }
.hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.6px;
}
.hero h1 .dot { color: var(--plum); }
.hero__lead {
  margin-top: 22px;
  max-width: 460px;
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 32px);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 28px);
  margin-top: clamp(28px, 4vw, 40px);
}
.hero__stats dt {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1;
}
.hero__stats dd { margin: 2px 0 0; font-size: 14px; color: var(--ink-3); }

.hero__media {
  position: relative;
  min-width: 0;
  height: clamp(340px, 52vw, 600px);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 28px;
}
.hero__badge {
  position: absolute;
  left: clamp(-24px, -2vw, 12px);
  bottom: clamp(20px, 5vw, 52px);
  padding: 14px 18px;
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow-md);
  max-width: 230px;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 17px);
}
.hero__badge span { font-size: 13px; color: var(--ink-3); }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  padding: clamp(48px, 7vw, 80px) 0 4px;
  background: var(--sand);
}
/* pás jde přes celou šířku okna — bez kontejneru i bez bočních okrajů */
.marquee__wrap { width: 100%; overflow: hidden; }
.marquee__row {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 8px 0;
}
.marquee__row--l { animation: marquee-l 34s linear infinite; }
.marquee__row--r { animation: marquee-r 40s linear infinite; }
.marquee__wrap:hover .marquee__row { animation-play-state: paused; }

.chip {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(14px, 1.7vw, 16px);
  white-space: nowrap;
}
.chip--plum  { background: var(--plum);      color: var(--cream); }
.chip--blue  { background: var(--blue-soft); }
.chip--lilac { background: var(--plum-soft); }
.chip--sun   { background: var(--sun); }
.chip--ink   { background: var(--ink);       color: var(--cream); }
.chip--green { background: var(--green-soft); }

@keyframes marquee-l { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); }  to { transform: translateX(0); } }

/* ==========================================================================
   Products
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(30px, 4vw, 44px);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--cream);
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--ink); }
.card__media {
  position: relative;
  height: clamp(180px, 22vw, 230px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .5);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card h3 {
  margin: 18px 0 6px;
  font-size: clamp(20px, 2.4vw, 24px);
}
.card p { font-size: 15px; line-height: 1.5; color: var(--ink-3); }
.card__link { margin-top: 14px; font-weight: 700; color: var(--green); }

.card--green { background: var(--green-soft); }
.card--green p { color: var(--ink-2); }
.card--green .card__link { color: var(--ink); }
.card--blue { background: var(--blue-soft); }
.card--blue p { color: var(--ink-2); }
.card--blue .card__link { color: var(--ink); }
.card--sun { background: var(--sun); }
.card--sun p { color: var(--ink-2); }
.card--sun .card__link { color: var(--ink); }
.card--plum { background: var(--plum-deep); color: var(--sand); }
.card--plum:hover { color: var(--sand); }
.card--plum p { color: var(--plum-tint); }
.card--plum .card__link { color: var(--plum-soft); }
.card--plum .card__media { background: rgba(255, 255, 255, .06); }

/* ==========================================================================
   Why / bento grid
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 4.5vw, 48px);
}
.bento__box {
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: var(--r-lg);
}
.bento__box h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.9vw, 32px);
  line-height: 1.12;
}
.bento__box p { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.6; }
.bento__box--wide { grid-column: span 2; background: var(--green); color: var(--sand); }
.bento__box--wide p { color: #DDD3E0; }
.bento__box--blue { background: var(--blue-soft); }
.bento__box--blue h3 { font-size: clamp(21px, 2.6vw, 28px); }
.bento__box--blue p { color: var(--ink-2); }
.bento__box--lilac { background: var(--plum-soft); }
.bento__box--lilac h3 { font-size: clamp(21px, 2.6vw, 28px); }
.bento__box--lilac p { color: var(--plum-deep); }

.bento__media {
  position: relative;
  min-height: 260px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.bento__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bento__media--tall { min-height: 300px; }

/* ==========================================================================
   Dreamy
   ========================================================================== */
.dreamy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.dreamy h2 {
  margin-top: 20px;
  font-size: clamp(34px, 5.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -1.4px;
}
.dreamy__lead {
  margin-top: 22px;
  max-width: 520px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--plum-tint);
}
.dreamy__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  max-width: 560px;
}
.dreamy__fact {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.dreamy__fact:hover { background: rgba(255, 255, 255, .14); transform: translateY(-3px); }
.dreamy__fact strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
}
.dreamy__fact span { display: block; margin-top: 4px; font-size: 14px; color: #CDB6D2; }
.dreamy__media {
  position: relative;
  min-width: 0;
  height: clamp(340px, 55vw, 620px);
  border-radius: 28px;
  overflow: hidden;
}
.dreamy__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; }
.dreamy__note {
  margin: clamp(36px, 6vw, 56px) auto 0;
  max-width: 820px;
  text-align: center;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.6;
  color: #CDB6D2;
}

/* ==========================================================================
   Packaging
   ========================================================================== */
.packs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(30px, 4vw, 44px);
}
.pack {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--r-lg);
  background: var(--cream);
}
.pack--green { background: var(--green-soft); }
.pack__media {
  height: clamp(220px, 28vw, 300px);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .45);
}
.pack__media img { width: 100%; height: 100%; object-fit: contain; }
.pack h3 { margin: 22px 0 8px; font-size: clamp(22px, 2.8vw, 28px); }
.pack > p { margin-bottom: 18px; font-size: 16px; line-height: 1.6; color: var(--ink-3); }
.pack--green > p { color: var(--ink-2); }
.pack ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pack li { display: flex; gap: 10px; font-size: 16px; }
.pack li::before { content: "✓"; color: var(--green); font-weight: 700; flex: 0 0 auto; }

/* ==========================================================================
   Size finder
   ========================================================================== */
.sizer {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(28px, 4.5vw, 56px);
  border-radius: var(--r-xl);
  background: var(--ink);
  color: #EFE9F1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}
.sizer h2 {
  margin-top: 20px;
  font-size: clamp(34px, 5.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: var(--white);
}
.sizer__lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.sizer__value { display: flex; align-items: baseline; gap: 8px; }
.sizer__value output {
  font-family: var(--font-head);
  font-size: clamp(44px, 8vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.sizer__value span { font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-soft); }
.sizer__control { margin-top: clamp(26px, 4vw, 36px); }

.sizer__range {
  width: 100%;
  height: 34px;
  margin-top: 16px;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.sizer__range::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-mint) var(--fill, 25%), rgba(255, 255, 255, .16) var(--fill, 25%));
}
.sizer__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px; height: 30px;
  margin-top: -10px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  transition: transform .18s var(--ease-back);
}
.sizer__range:active::-webkit-slider-thumb { transform: scale(1.18); }
.sizer__range::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}
.sizer__range::-moz-range-progress {
  height: 10px;
  border-radius: 999px;
  background: var(--green-mint);
}
.sizer__range::-moz-range-thumb {
  width: 22px; height: 22px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}
.sizer__scale {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-muted);
}
.sizer__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.sizer__chip {
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 16px);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.sizer__chip.is-active {
  background: var(--green-mint);
  color: #22301F;
  font-weight: 700;
  transform: translateY(-2px);
}

.sizer__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3vw, 32px);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .07);
  text-align: center;
}
.sizer__result-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-mint);
}
.sizer__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 44vw, 272px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.sizer__disc img {
  width: 66%;
  height: 66%;
  object-fit: contain;
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}
.sizer__disc img.is-swapping { opacity: 0; transform: scale(.9); }
.sizer__name {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 700;
  color: var(--white);
}
.sizer__range-text { margin-top: 6px; font-size: 16px; color: var(--ink-soft); }
.sizer__hint { font-size: 14px; color: var(--ink-muted); max-width: 280px; }
.sizer__cta { animation: pulse 2.6s ease-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 46, 105, .45); }
  50%      { box-shadow: 0 0 0 16px rgba(99, 46, 105, 0); }
}

/* ==========================================================================
   Certificates strip
   ========================================================================== */
.certs {
  padding: clamp(40px, 6vw, 64px) var(--gutter);
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.certs__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.certs h3 { margin-bottom: 8px; font-size: clamp(22px, 2.6vw, 26px); }
.certs p { font-size: 15px; line-height: 1.55; color: var(--ink-3); }
.certs__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}
.certs__logos img {
  width: 100%;
  height: clamp(64px, 9vw, 96px);
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.certs__logos img:hover { transform: scale(1.08); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: clamp(30px, 4vw, 44px); }
.review {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--r-lg);
  background: var(--cream);
}
.review--green { background: var(--green-soft); }
.review__stars { font-size: 18px; letter-spacing: 2px; color: var(--plum); }
.review--green .review__stars { color: var(--green); }
.review blockquote { margin: 14px 0 20px; font-size: clamp(16px, 2vw, 17px); line-height: 1.6; }
.review cite { display: block; font-style: normal; font-weight: 700; }
.review small { color: var(--ink-3); font-size: 14px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: clamp(30px, 4vw, 44px); }
.post { display: block; color: var(--ink); }
.post:hover { color: var(--ink); }
.post__media {
  height: clamp(190px, 24vw, 230px);
  border-radius: var(--r-md);
  overflow: hidden;
}
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__date { margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--green); }
.post h3 {
  margin: 8px 0;
  font-size: clamp(19px, 2.2vw, 22px);
  line-height: 1.25;
  transition: color .2s var(--ease);
}
.post:hover h3 { color: var(--plum); }
.post p { font-size: 15px; line-height: 1.55; color: var(--ink-3); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__list { display: grid; gap: 12px; margin-top: clamp(28px, 4vw, 40px); }
.faq__item {
  border-radius: var(--r-md);
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.faq__item:has(.faq__q[aria-expanded="true"]) { box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(18px, 2.4vw, 24px) clamp(20px, 3vw, 28px);
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--green-soft);
  transition: background-color .3s var(--ease), transform .35s var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 13px; height: 2px;
  margin: -1px 0 0 -6.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease-back), opacity .25s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--plum); transform: rotate(180deg); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--white); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); opacity: 0; }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 2.8vw, 26px);
  max-width: 720px;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.6;
  color: var(--ink-3);
}

/* ==========================================================================
   Instagram
   ========================================================================== */
.ig__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ig__head h2 { font-size: clamp(28px, 4vw, 40px); letter-spacing: -.8px; }
.ig__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.ig__grid a {
  position: relative;
  height: clamp(110px, 15vw, 180px);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.ig__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig__grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(99, 46, 105, 0);
  transition: background-color .3s var(--ease);
}
.ig__grid a:hover img { transform: scale(1.08); }
.ig__grid a:hover::after { background: rgba(99, 46, 105, .22); }

/* ==========================================================================
   Final CTA + newsletter
   ========================================================================== */
.cta-band { padding: 0 var(--gutter) clamp(56px, 8vw, 96px); background: var(--cream); }
.cta {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px) clamp(26px, 4.4vw, 56px);
  border-radius: var(--r-xl);
  background: var(--plum);
  color: var(--sand);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.cta h2 {
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.1px;
}
.cta > div > p {
  margin-top: 16px;
  max-width: 520px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #DDD3E0;
}
.cta .btn { margin-top: 26px; }

.newsletter {
  padding: clamp(22px, 3vw, 28px);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
}
.newsletter__title {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.25;
}
.newsletter p { margin: 8px 0 0; font-size: 15px; line-height: 1.55; color: #DDD3E0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; }
.newsletter input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  min-height: 52px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
}
.newsletter button {
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--sand);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.newsletter button:hover { background: var(--plum-deep); transform: translateY(-2px); }
.newsletter__note {
  margin-top: 12px;
  font-size: 14px;
  color: #CDB6D2;
  min-height: 20px;
}
.newsletter__note.is-error { color: var(--sun); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: clamp(48px, 7vw, 80px) var(--gutter) 28px;
  background: var(--ink);
  color: #DDD3E0;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
}
.footer__logo {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: var(--white);
}
.footer__logo img { height: 42px; width: auto; }
.footer__about { margin-top: 20px; max-width: 330px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.footer__social { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.footer__social a {
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.footer__social a:hover { background: rgba(255, 255, 255, .2); color: var(--white); }

.footer h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-mint);
  margin-bottom: 16px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: #DDD3E0; font-size: 15px; }
.footer__links a:hover { color: var(--white); }
.footer address { font-style: normal; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.footer__contact { display: grid; gap: 6px; margin-top: 14px; }
.footer__phone { color: var(--white); font-size: 17px; font-weight: 700; }
.footer__phone:hover { color: var(--green-mint); }
.footer__mail { color: #DDD3E0; font-size: 15px; }
.footer__mail:hover { color: var(--white); }

.footer__certs {
  margin-top: clamp(32px, 5vw, 52px);
  padding: 22px 26px;
  border-radius: var(--r-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  flex-wrap: wrap;
}
.footer__certs > span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.footer__certs div {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}
.footer__certs img { height: 44px; width: auto; object-fit: contain; }

.footer__bottom {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-muted);
}
.footer__bottom > div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.to-top {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #DDD3E0;
  font-weight: 600;
  white-space: nowrap;
}
.to-top:hover { border-color: #DDD3E0; color: var(--white); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav { gap: 0; font-size: 14px; }
  .nav a { padding: 8px 9px; }
  .certs__inner { grid-template-columns: 220px minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__about { max-width: none; }
}

/* ---- Tablet & mobile: switch to the burger menu ---- */
@media (max-width: 960px) {
  .nav,
  .header__cta { display: none; }
  .burger { display: block; }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__copy { padding-bottom: 8px; }
  .hero__media { order: -1; height: clamp(280px, 62vw, 420px); }
  .hero__badge { left: auto; right: 12px; bottom: 12px; }

  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento__box--wide { grid-column: span 2; }
  .bento__media { min-height: 240px; grid-column: span 2; }

  .dreamy__grid { grid-template-columns: minmax(0, 1fr); }
  .dreamy__media { order: -1; height: clamp(320px, 70vw, 460px); }

  .sizer { grid-template-columns: minmax(0, 1fr); }
  .sizer__result { order: -1; }

  .certs__inner { grid-template-columns: minmax(0, 1fr); }
  .certs__logos { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .reviews { grid-template-columns: minmax(0, 1fr); }
  .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ig__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .cta { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .hero__badge {
    max-width: 200px;
    padding: 11px 14px;
    border-radius: 16px;
  }
  .hero__badge span { font-size: 12px; line-height: 1.4; }

  .packs { grid-template-columns: minmax(0, 1fr); }
  .posts { grid-template-columns: minmax(0, 1fr); }
  .certs__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .section__head { align-items: flex-start; }
  .section__head > .btn { width: 100%; }

  .hero__actions .btn { flex: 1 1 100%; }
  .hero__stats { gap: 18px 24px; }

  .footer__certs { justify-content: center; text-align: center; }
  .footer__certs div { justify-content: center; }
  .footer__certs img { height: 38px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__bottom > div:last-child { justify-content: center; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: minmax(0, 1fr); }
  .bento { grid-template-columns: minmax(0, 1fr); }
  .bento__box--wide,
  .bento__media { grid-column: span 1; }
  .dreamy__facts { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .certs__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ig__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Ve sloupci platí flex-basis na VÝŠKU — pole by jinak narostlo na 180 px
     a s poloměrem 999px se z něj stal ovál. */
  .newsletter form { flex-direction: column; }
  .newsletter input[type="email"] { flex: 0 0 auto; width: 100%; }
  .newsletter button { width: 100%; }
}

/* ---- Motion preferences ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .mobile-menu__panel { transition: none; }
  .mobile-nav a { opacity: 1; transform: none; }
}

/* ---- Print ---- */
@media print {
  .header, .mobile-menu, .marquee, .ig__grid, .sizer__cta { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Blog — výpis a detail článku
   ========================================================================== */

/* ---------- Hlavička článku ---------- */
.article-head {
  padding: clamp(32px, 5vw, 64px) var(--gutter) clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, var(--green-soft) 0%, #E4EBE4 70%, var(--cream) 100%);
}
.article-head__inner { max-width: 840px; margin-inline: auto; }
.article-head h1 {
  margin-top: 18px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.2px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--green);
}
.article-meta span[aria-hidden] { color: var(--ink-muted); font-weight: 400; }
.article-perex {
  margin-top: 20px;
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
}

.article-cover {
  max-width: 1040px;
  margin: clamp(-20px, -2vw, 0px) auto 0;
  padding-inline: var(--gutter);
}
.article-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Text článku ---------- */
.prose {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(36px, 5vw, 64px) var(--gutter) clamp(40px, 6vw, 72px);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: var(--ink-2);
}
.prose > :first-child { margin-top: 0; }
.prose p { margin: 0 0 1.4em; }
.prose h2,
.prose h3 {
  margin: 2em 0 .6em;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.5px;
}
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); }
.prose h3 { font-size: clamp(20px, 2.8vw, 26px); }
.prose h2 strong,
.prose h3 strong { font-weight: 700; }
.prose strong { color: var(--ink); }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--plum); }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose figure { margin: 2em 0; }
.prose figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}
.prose figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}
.prose blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  border-left: 4px solid var(--green-mint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--cream);
  font-size: 1.05em;
}
.prose hr { margin: 2.5em 0; border: 0; border-top: 1px solid var(--line); }

/* ---------- Patička článku ---------- */
.article-foot {
  max-width: 760px;
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 80px);
}
.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(24px, 3.4vw, 34px);
  border-radius: var(--r-lg);
  background: var(--plum);
  color: var(--sand);
}
.article-cta strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.25;
}
.article-cta p { margin-top: 6px; font-size: 15px; color: #DDD3E0; }
.article-cta .btn { flex: 0 0 auto; }

/* ---------- Další články ---------- */
.more-posts { padding: clamp(48px, 7vw, 80px) var(--gutter); background: var(--cream); }
.more-posts h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -.7px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

/* ---------- Drobečky ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-3);
}
.crumbs a { color: var(--ink-3); font-weight: 600; }
.crumbs a:hover { color: var(--plum); }
.crumbs span[aria-current] { color: var(--ink); }

/* ---------- Výpis blogu ---------- */
.posts--all { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.posts--all .post {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: var(--r-lg);
  background: var(--cream);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.posts--all .post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.posts--all .post__media { border-radius: 18px; background: var(--sand); }
.posts--all .post__date { padding-inline: 6px; }
.posts--all .post h3,
.posts--all .post p { padding-inline: 6px; }
.posts--all .post p { margin-bottom: 12px; }

@media (max-width: 960px) {
  .posts--all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .posts--all { grid-template-columns: minmax(0, 1fr); }
  .article-cta { flex-direction: column; align-items: stretch; }
  .article-cta .btn { width: 100%; }
}

/* Vložená videa v článku — poměr 16:9, nikdy nepřetečou */
.prose .embed {
  position: relative;
  margin: 2em 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink);
}
.prose .embed::before { content: ""; display: block; padding-top: 56.25%; }
.prose .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
