/* ============================================================
   Bio Rošt — Warm Craft redesign
   Kompaktní, útulný, řemeslný. Žádné full-bleed panely.
   Palette: warm off-white · forest green · clay · cream
   Type: Lora (serif headlines) · Plus Jakarta Sans (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg:       #F9F7F4;
  --surface:  #FFFFFF;
  --chalk:    #EDE9E3;
  --sand:     #D6CFC4;
  --stone:    #8C8279;
  --ink:      #2E2B27;
  --forest:   #810404;   /* hlavní akcent — tmavá zelená, jako byliny */
  --forest-lt:#f0eae1;
  --clay:     #B85C38;   /* sekundární teplo */
  --clay-lt:  #F5E8E2;

  --fSerif: 'Lora', Georgia, serif;
  --fSans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 12px;
  --ease:   cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fSans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1400px; margin-inline: auto; padding-inline: 32px; }
.wrap--narrow { max-width: 720px; }

/* ── Type ──────────────────────────────────────────────── */
.t-hero {
  font-family: var(--fSerif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.02em;
}
.t-hero em { font-style: italic; color: var(--forest); }

.t-h2 {
  font-family: var(--fSerif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.015em;
}
.t-h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.t-body { font-size: 1rem; color: var(--stone); line-height: 1.75; font-weight: 400; }
.t-small { font-size: .8rem; color: var(--stone); }
.t-tag {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--forest);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--fSans); font-size: .88rem; font-weight: 600;
  border: 2px solid transparent;
  transition: background .16s var(--ease), transform .14s var(--ease), box-shadow .16s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--forest); color: #fff;
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(129, 4, 4, 0.25);
}
.btn--primary:hover {
  background: #fff; color: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 8px 22px rgba(129, 4, 4, 0.15);
}
.btn--outline { border-color: var(--sand); color: var(--ink); }
.btn--outline:hover { border-color: var(--forest); color: var(--forest); background: var(--forest-lt); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: #9c4c2e; }
.btn--sm { padding: 9px 18px; font-size: .82rem; }
.btn--lg { padding: 15px 30px; font-size: .95rem; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,247,244,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--chalk);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fSerif); font-size: 1.2rem;
  color: var(--ink); font-weight: 700;
}
.brand__icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--forest); display: grid; place-items: center;
  flex-shrink: 0;
}
.brand__icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: .85rem; font-weight: 500; color: var(--stone);
  transition: background .14s, color .14s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--forest-lt); color: var(--forest); }
.nav-links .btn { margin-left: 10px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1.5px solid var(--chalk); background: var(--surface);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 19px; height: 1.5px; background: var(--ink); transition: .2s; }
.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); }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 32px 20px;
  border-top: 1px solid var(--chalk); background: var(--bg);
}
.nav-mobile a { padding: 11px 14px; border-radius: 10px; font-weight: 500; color: var(--stone); }
.nav-mobile a:hover { background: var(--forest-lt); color: var(--forest); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ── Hero ──────────────────────────────────────────────── */
.hero { padding: 72px 0 80px; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.hero__tag-row {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest-lt); border-radius: 999px;
  padding: 6px 14px 6px 10px; margin-bottom: 28px;
}
.hero__tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
}
.hero__sub {
  font-size: 1.05rem; color: var(--stone); line-height: 1.75;
  max-width: 46ch; margin-top: 22px; font-weight: 400;
}
.hero__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero__card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--chalk), 0 20px 60px -16px rgba(46,43,39,.14);
  border: 1px solid var(--chalk);
}
.hero__card-img { aspect-ratio: 4/5; overflow: hidden; height: 80%;}
.hero__card-img img { width: 100%; height: 90%; object-fit: cover; }
.hero__card-foot {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--chalk);
}
.hero__card-price { font-family: var(--fSerif); font-size: 1.5rem; color: var(--ink); }
.hero__card-label { font-size: .75rem; color: var(--stone); font-weight: 500; }

/* ── Sekce základ ──────────────────────────────────────── */
.section { padding-block: 80px; }
.section--alt { background: var(--chalk); }
.section--green { background: var(--forest); color: #fff; }

.sec-eyebrow { margin-bottom: 12px; }
.sec-head { margin-bottom: 52px; }
.sec-head .t-body { margin-top: 14px; max-width: 54ch; }

/* ── Proč my — horizontální karty ─────────────────────── */
.pillars { display: flex; flex-direction: column; gap: 1px; background: var(--chalk); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--chalk); }
.pillar {
  display: grid; grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 28px;
  padding: 28px 32px;
  background: var(--surface);
  transition: background .15s;
}
.pillar:hover { background: var(--forest-lt); }
.pillar__num {
  font-family: var(--fSerif); font-size: 1.8rem;
  color: var(--chalk); font-weight: 700; line-height: 1;
  transition: color .15s;
}
.pillar:hover .pillar__num { color: var(--forest); }
.pillar__body { }
.pillar__body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.pillar__body p { font-size: .9rem; color: var(--stone); line-height: 1.55; margin: 0; }
.pillar__ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--forest-lt); display: grid; place-items: center;
  flex-shrink: 0; font-size: 1.2rem;
  transition: background .15s;
}
.pillar:hover .pillar__ico { background: var(--forest);}

/* ── Feature split ─────────────────────────────────────── */
.feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.feature--rev .feature__img { order: 1; }
.feature--rev .feature__body { order: 0; }
.feature__img { border-radius: 18px; overflow: hidden; box-shadow: 0 2px 0 var(--sand), 0 16px 48px -12px rgba(46,43,39,.15); }
.feature__img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.feature__body .t-tag { margin-bottom: 14px; }
.feature__body .t-h2 { margin-bottom: 18px; }
.feature__body .t-body { margin-bottom: 28px; }

.list--check { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.list--check li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .92rem; color: var(--stone);
}
.list--check li::before {
  content: '✓'; color: var(--forest); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* ── Zelený CTA banner ─────────────────────────────────── */
.cta-banner {
  border-radius: 20px; padding: 56px 60px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-banner h2 { color: #fff; font-family: var(--fSerif); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.25; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: .95rem; margin-top: 8px; }
.cta-banner .btn--outline { border-color: rgba(255,255,255,.4); color: #fff; }
.cta-banner .btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── Page banner (subpages) ────────────────────────────── */
.page-banner { padding: 56px 0 48px; border-bottom: 1px solid var(--chalk); }
.page-banner .t-tag { margin-bottom: 12px; }

/* ── Product page ──────────────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; padding-top: 60px;
}
.product-media {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 0 var(--sand), 0 16px 48px -12px rgba(46,43,39,.14);
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; background-color: white; }

.product-title { font-family: var(--fSerif); font-size: 1.9rem; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.price-box {
  margin: 24px 0;
  background: var(--forest-lt); border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: baseline; gap: 12px;
}
.price-num { font-family: var(--fSerif); font-size: 2.6rem; color: var(--forest); line-height: 1; }
.price-sub { font-size: .85rem; color: var(--stone); }

.size-pick__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 10px;
}
.size-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.size-btn {
  display: flex; flex-direction: column; gap: 3px;
  padding: 13px 18px; border-radius: var(--radius);
  border: 2px solid var(--chalk); background: var(--surface);
  flex: 1 1 0; min-width: 140px;
  font-family: var(--fSans); text-align: left;
  transition: border-color .14s, background .14s, box-shadow .14s;
}
.size-btn:hover { border-color: var(--forest); }
.size-btn.active {
  border-color: var(--forest); background: var(--forest-lt);
  box-shadow: 0 4px 14px rgba(45,80,22,.14);
}
.size-btn .s-main { font-weight: 700; font-size: .92rem; color: var(--ink); }
.size-btn .s-sub  { font-size: .78rem; color: var(--stone); }

.specs { border-top: 1px solid var(--chalk); margin-top: 28px; }
.specs__row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--chalk);
  font-size: .9rem;
}
.specs__key { color: var(--stone); }
.specs__val { font-weight: 600; }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start; padding-top: 56px;
}
.contact-info-box {
  background: var(--surface); border-radius: 18px;
  border: 1px solid var(--chalk); padding: 36px;
}
.contact-info-box .t-h3 { margin-bottom: 24px; }
.contact-detail { margin-bottom: 18px; }
.contact-detail dt { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--stone); margin-bottom: 4px; }
.contact-detail dd { font-size: .95rem; }
.contact-detail a:hover { color: var(--forest); }

.form-grid { display: grid; gap: 18px; }
.field label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--stone); margin-bottom: 7px; }
.field input,
.field textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--chalk); border-radius: var(--radius);
  background: var(--surface); font-family: var(--fSans);
  font-size: .95rem; color: var(--ink);
  transition: border-color .14s, box-shadow .14s;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 4px rgba(45,80,22,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 10px; font-size: .78rem; color: var(--stone); }

/* ── About ─────────────────────────────────────────────── */
.about-lead {
  font-family: var(--fSerif); font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4; color: var(--ink); font-weight: 600;
  font-style: italic; margin-bottom: 32px;
}
.prose p { margin-bottom: 18px; color: var(--stone); line-height: 1.78; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.5);
  padding-top: 56px;
}
.footer-grid { display: grid; gap: 2.5rem; padding: 3rem 0; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .footer-contact { text-align: right; } }
@media (min-width: 640px) { .footer-contact .footer-links { align-items: flex-end; } }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fSerif); font-size: 1.2rem; color: #fff; margin-bottom: 14px;
}
.footer-brand a {
  color: #fff; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.footer-brand a:hover { opacity: 0.85; }
.footer-brand-mark {
  display: grid; place-items: center;
  height: 2.1rem; width: 2.1rem;
  border-radius: 50%; background: #fff;
  overflow: hidden; padding: 0.2rem; flex-shrink: 0;
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-tagline { font-size: .88rem; line-height: 1.65; max-width: 28ch; }
.footer-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 0.2rem; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { font-size: .88rem; transition: color .14s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; display: flex; justify-content: space-between;
  font-size: .78rem; flex-wrap: wrap; gap: 8px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap { padding-inline: 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 420px; }
  .hero { padding: 48px 0 56px; }
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--rev .feature__img { order: 0; }
  .feature--rev .feature__body { order: 1; }
  .cta-banner { flex-direction: column; padding: 40px 32px; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding-block: 56px; }
  .pillar { grid-template-columns: 48px 1fr; }
  .pillar__ico { display: none; }
}

@media (max-width: 540px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
  .cta-banner { padding: 32px 24px; }
  .size-btn { flex: 1 1 100%; }
  .nav-mobile { padding: 12px 20px 18px; }
}
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    width: 17%;
}

.brand-logo{
    display:flex;
    align-items:center;
    gap:10px;
    width: 35%;
}

#heroSliderImg {
  transition: opacity 0.3s ease;
  object-fit: contain;
}