/* Krídlové — pixel-perfect homepage podľa vizuálu z 2026-05-23 */

:root {
  --bg: #faf6ef;
  --bg-cream-2: #f5ede0;
  --teal: #2c4a4a;
  --teal-dark: #1f3838;
  --teal-deep: #142828;
  --gold: #c9a96e;
  --gold-dark: #a8895a;
  --gold-light: #d9bb83;
  --brown: #8b6e4f;
  --text: #2c4a4a;
  --text-muted: #6b7d7d;
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Italianno", "Snell Roundhand", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ LOGO (mixed serif + script) ============ */
.logo {
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.logo-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.logo-script {
  font-family: var(--script);
  font-size: 1.5em;
  color: var(--gold);
  margin-left: -0.15em;
  transform: translateY(0.12em);
}

/* ============ HEADER ============ */
.header {
  background: var(--bg);
  border-bottom: 1px solid rgba(44, 74, 74, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--teal);
  padding: 4px 0;
  position: relative;
  transition: color .15s;
}
.nav a:hover { color: var(--gold-dark); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.header-icons { display: flex; gap: 6px; }
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--teal);
  position: relative;
  border-radius: 6px;
  transition: background .15s;
}
.icon-btn:hover { background: rgba(44, 74, 74, 0.06); }
.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
  align-items: center;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* ============ HERO ============ */
.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px 280px;
  gap: 40px;
  align-items: center;
}
.hero-left { position: relative; }
.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 76px;
  line-height: 1.02;
  color: var(--teal);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero-title span { display: block; }
.hero-title .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.55em;
  color: var(--gold);
  line-height: 0.9;
  margin-top: 0.08em;
}
.hero-sub {
  font-size: 16px;
  color: var(--text);
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 360px;
}
.hero-right .parrot-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 40px rgba(44, 74, 74, 0.12);
  background: var(--teal-dark);
}
.parrot-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============ TESTIMONIAL CARD ============ */
.testimonial {
  background: var(--teal-dark);
  color: var(--bg);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  font-family: var(--serif);
  align-self: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 16px;
}
.testimonial .quote-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 16px;
}

/* ============ FEATHERS (decorative) ============ */
.feather {
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}
.feather-tl {
  width: 60px; height: 140px;
  top: -10px; left: -40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 140'><path d='M30 0 C45 30 50 60 45 90 L40 130 L25 130 L20 100 C15 70 18 30 30 0 Z' fill='%23c9a96e' opacity='0.4'/><path d='M30 10 L30 130' stroke='%23a8895a' stroke-width='1.5' opacity='0.6'/></svg>") no-repeat center/contain;
}
.feather-tr {
  width: 50px; height: 110px;
  top: -10px; right: -20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 140'><path d='M30 0 C45 30 50 60 45 90 L40 130 L25 130 L20 100 C15 70 18 30 30 0 Z' fill='%23c9a96e' opacity='0.5'/><path d='M30 10 L30 130' stroke='%23a8895a' stroke-width='1.5' opacity='0.6'/></svg>") no-repeat center/contain;
  transform: rotate(180deg);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: all .2s;
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* ============ USP SECTION ============ */
.usp { padding: 0 0 80px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usp-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 74, 0.08);
}
.usp-card--featured {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.usp-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.usp-card--featured .usp-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.usp-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  color: var(--teal);
}
.usp-card--featured h3 { color: var(--white); }
.usp-card p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--text-muted);
}
.usp-card--featured p { color: rgba(255, 255, 255, 0.92); }
.usp-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  text-decoration: none;
  display: inline-block;
}
.usp-card--featured .usp-link { color: var(--white); }
.usp-link:hover { color: var(--teal); }
.usp-card--featured .usp-link:hover { color: var(--teal-dark); }

/* ============ PRÍBEH SECTION (image left full-bleed + features right) ============ */
.pribeh {
  background: var(--teal-dark);
  color: var(--bg);
}
.pribeh-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 460px;
}
.pribeh-image {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20,40,40,0.4) 0%, rgba(31,56,56,0.6) 100%),
    radial-gradient(ellipse at 30% 40%, #4a5e5e 0%, #1f3838 60%, #142828 100%);
  overflow: hidden;
}
.pribeh-overlay {
  position: absolute;
  inset: 0;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(31,56,56,0.45) 0%, rgba(31,56,56,0.15) 50%, rgba(31,56,56,0.45) 100%);
}
.pribeh-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.05;
  color: var(--bg);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.pribeh-title .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.4em;
  color: var(--gold-light);
  line-height: 0.9;
}
.btn-light {
  background: var(--bg);
  color: var(--teal-dark);
  border-color: var(--bg);
  align-self: flex-start;
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.pribeh-features {
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: center;
}
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 187, 131, 0.12);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--bg);
}
.feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gold-light);
  opacity: 0.85;
}

/* ============ SECTION TITLES ============ */
.section-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--teal);
  margin: 0;
  letter-spacing: -0.01em;
}
.section-title .script {
  font-family: var(--script);
  font-size: 1.3em;
  color: var(--gold);
  font-weight: 400;
  font-style: normal;
}
.section-title--light { color: var(--bg); }
.section-title--light .script { color: var(--gold-light); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.link-arrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--teal);
  white-space: nowrap;
}
.link-arrow:hover { color: var(--gold-dark); }
.link-arrow--light { color: var(--bg); }
.link-arrow--light:hover { color: var(--gold-light); }

/* ============ PRODUKTY SECTION ============ */
.produkty { padding: 80px 0; }
.produkty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(44, 74, 74, 0.10);
}
.product-image-link { display: block; }
.product-image {
  aspect-ratio: 1;
  background: var(--bg-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder {
  font-size: 64px;
  opacity: 0.4;
}
.product-meta { padding: 16px 18px 20px; }
.product-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--teal);
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--gold-dark); }
.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
}

/* ============ BLOG SECTION ============ */
.blog {
  background: var(--teal-dark);
  color: var(--bg);
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--teal);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-image {
  aspect-ratio: 4/3;
  background: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card--video .blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.blog-placeholder {
  font-size: 48px;
  opacity: 0.5;
}
.blog-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  padding: 12px 16px 4px;
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--bg);
  margin: 0;
  padding: 0 16px 8px;
}
.blog-meta {
  font-size: 11px;
  opacity: 0.6;
  padding: 0 16px 16px;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--bg-cream-2);
  padding: 70px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-text .section-title { font-size: 40px; }
.newsletter-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 16px 0 0;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(44, 74, 74, 0.06);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: var(--teal);
}
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ============ FOOTER ============ */
.footer {
  background: var(--teal-deep);
  color: var(--bg);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo {
  font-size: 36px;
}
.footer-brand .logo-serif { color: var(--bg); }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  margin: 16px 0 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 187, 131, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: all .15s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-deep);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--gold-light);
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: var(--bg);
  opacity: 0.8;
  transition: opacity .15s, color .15s;
}
.footer-col a:hover { opacity: 1; color: var(--gold-light); }

.footer-papagaj {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 160px;
  opacity: 0.4;
  pointer-events: none;
}
.footer-papagaj img { width: 100%; height: auto; }

.footer-bottom {
  border-top: 1px solid rgba(217, 187, 131, 0.15);
  padding: 16px 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--gold-light);
  opacity: 0.7;
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 320px; }
  .testimonial { grid-column: 1 / -1; max-width: 480px; }
  .hero-title { font-size: 60px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav { display: none; }
  .burger { display: flex; }
  .header-icons { gap: 0; }
  .header-inner { padding: 12px 16px; }

  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-title { font-size: 56px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-right { justify-self: center; }
  .hero-right .parrot-circle { width: 280px; height: 280px; }
  .testimonial { max-width: 100%; text-align: left; }

  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .usp { padding: 0 0 60px; }

  .pribeh-grid { grid-template-columns: 1fr; }
  .pribeh-image { min-height: 320px; }
  .pribeh-overlay { padding: 24px 24px; }
  .pribeh-title { font-size: 36px; }
  .pribeh-features { padding: 40px 24px; gap: 20px; }

  .section-title { font-size: 36px; }
  .section-head { flex-direction: column; align-items: flex-start; }

  .produkty { padding: 60px 0; }
  .produkty-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .blog { padding: 60px 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .newsletter { padding: 50px 0; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form { flex-direction: column; padding: 12px; }
  .newsletter-form .btn { justify-content: center; }

  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-papagaj { width: 100px; bottom: 80px; opacity: 0.25; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 30px; }
  .usp-grid { grid-template-columns: 1fr; }
  .produkty-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ O NÁS ============ */
.onas-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.onas-hero-inner { position: relative; }
.onas-hero-inner .feather-tl {
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  opacity: 0.35;
}
.onas-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.onas-hero-title .onas-italic { font-style: italic; }
.onas-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.6;
}
.onas-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.onas-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.onas-misia { padding: 60px 0 80px; }
.onas-misia-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.onas-misia-text .section-title { margin-bottom: 24px; }
.onas-misia-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}
.onas-quote {
  background: var(--teal-dark);
  color: var(--bg);
  padding: 36px 32px;
  border-radius: 4px;
  font-family: var(--serif);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.onas-quote .quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}
.onas-quote p {
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.onas-quote .quote-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
}

.onas-hodnoty { padding: 80px 0; background: var(--bg-cream-2); }
.onas-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.onas-section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 12px 0 0;
  max-width: 520px;
}
.onas-hodnoty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hodnota-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.hodnota-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 74, 0.08);
}
.hodnota-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.hodnota-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--teal);
}
.hodnota-card p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: var(--text-muted);
}

.onas-tim {
  padding: 80px 0;
  background: var(--teal-dark);
  color: var(--bg);
}
.onas-tim .onas-section-sub { color: var(--gold-light); opacity: 0.85; }
.onas-tim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tim-card {
  background: var(--teal);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s;
}
.tim-card:hover { transform: translateY(-4px); }
.tim-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid rgba(217, 187, 131, 0.25);
}
.tim-initials {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--white);
  font-weight: 500;
}
.tim-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--bg);
}
.tim-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.tim-card p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: var(--bg);
  opacity: 0.8;
}

.onas-pribeh { padding: 80px 0; }
.onas-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.onas-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 10%, var(--gold) 90%, transparent 100%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 32px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-dark);
  text-align: right;
  line-height: 1;
  padding-top: 6px;
}
.timeline-content {
  padding-left: 32px;
}
.timeline-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--teal);
}
.timeline-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.onas-cta {
  background: var(--teal-deep);
  color: var(--bg);
  padding: 80px 0;
  text-align: center;
}
.onas-cta-inner { max-width: 640px; margin: 0 auto; }
.onas-cta .section-title { margin-bottom: 16px; }
.onas-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gold-light);
  margin: 0 0 32px;
}

@media (max-width: 1080px) {
  .onas-misia-grid { grid-template-columns: 1fr; gap: 40px; }
  .onas-hodnoty-grid { grid-template-columns: repeat(2, 1fr); }
  .onas-tim-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .onas-hero { padding: 50px 0 40px; }
  .onas-hero-title { font-size: 64px; }
  .onas-hero-sub { font-size: 15px; }

  .onas-misia { padding: 50px 0 60px; }
  .onas-quote { padding: 28px 24px; min-height: 0; }
  .onas-quote p { font-size: 18px; }

  .onas-hodnoty, .onas-tim, .onas-pribeh, .onas-cta { padding: 60px 0; }

  .onas-timeline::before { left: 14px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
  .timeline-item::before { left: 8px; top: 28px; }
  .timeline-year { text-align: left; font-size: 22px; padding-top: 0; }
  .timeline-content { padding-left: 0; }
}

@media (max-width: 480px) {
  .onas-hero-title { font-size: 48px; }
  .onas-hodnoty-grid { grid-template-columns: 1fr; }
  .onas-tim-grid { grid-template-columns: 1fr; }
}

/* ============ E-SHOP LISTING ============ */

/* Sub-hero (kratší ako homepage hero) */
.sub-hero {
  padding: 48px 0 36px;
  background: var(--bg);
  border-bottom: 1px solid rgba(44, 74, 74, 0.06);
}
.breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color .15s;
}
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb-sep {
  color: var(--gold);
  font-size: 14px;
}
.breadcrumb-current {
  color: var(--teal);
}
.sub-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.sub-hero-title .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.35em;
  color: var(--gold);
  line-height: 0.9;
  margin-left: 0.04em;
}
.sub-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

/* Visually hidden helper */
.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;
}

/* Shop section + layout */
.shop {
  padding: 48px 0 80px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* Mobile filters toggle */
.filters-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid rgba(44, 74, 74, 0.12);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--teal);
  cursor: pointer;
  transition: all .15s;
  margin-bottom: 16px;
}
.filters-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* Filters sidebar */
.filters {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  position: sticky;
  top: 88px;
}
.filter-group {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(44, 74, 74, 0.08);
}
.filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}
.filter-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--teal);
  margin: 0 0 14px;
}
.filter-check,
.filter-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: color .15s;
  line-height: 1.4;
}
.filter-check:hover,
.filter-radio:hover {
  color: var(--gold-dark);
}
.filter-check input,
.filter-radio input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-price {
  padding-top: 4px;
}
.price-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: var(--bg-cream-2);
  border-radius: 2px;
  outline: none;
  margin: 8px 0 10px;
}
.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(44, 74, 74, 0.18);
}
.price-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(44, 74, 74, 0.18);
}
.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.price-range-values strong {
  color: var(--teal);
  font-weight: 600;
}
.filter-reset {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--teal);
  border-radius: 2px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--sans);
}
.filter-reset:hover {
  background: var(--teal);
  color: var(--white);
}

/* Shop main column */
.shop-main {
  min-width: 0;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(44, 74, 74, 0.08);
  flex-wrap: wrap;
}
.shop-count {
  font-size: 13px;
  color: var(--text-muted);
}
.shop-count strong {
  color: var(--teal);
  font-weight: 600;
}
.sort-select {
  padding: 10px 36px 10px 14px;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%232c4a4a' stroke-width='1.5'><path d='M1 1.5 6 6.5 11 1.5'/></svg>") no-repeat right 12px center / 10px;
  border: 1px solid rgba(44, 74, 74, 0.18);
  border-radius: 2px;
  font-size: 13px;
  color: var(--teal);
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  transition: border-color .15s;
}
.sort-select:hover,
.sort-select:focus { border-color: var(--gold); }

/* Shop grid — 3 stĺpce na desktop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pagination */
.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pagination a,
.pagination .pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(44, 74, 74, 0.10);
  border-radius: 2px;
  transition: all .15s;
}
.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.pagination .pagination-num.active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.pagination .pagination-dots {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: default;
}

/* CTA pod gridom */
.shop-cta {
  background: var(--bg-cream-2);
  padding: 64px 0;
  text-align: center;
}
.shop-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.shop-cta .section-title { font-size: 40px; }
.shop-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.6;
}

/* RESPONSIVE — E-shop */
@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .filters {
    position: static;
    display: none;
    padding: 20px 18px;
  }
  .filters.open { display: block; }
  .filters-toggle { display: inline-flex; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 768px) {
  .sub-hero { padding: 32px 0 24px; }
  .sub-hero-title { font-size: 48px; }
  .sub-hero-sub { font-size: 14px; }
  .shop { padding: 32px 0 60px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .shop-cta { padding: 48px 0; }
  .shop-cta .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; gap: 16px; }
  .sub-hero-title { font-size: 38px; }
  .pagination a,
  .pagination .pagination-dots { min-width: 34px; height: 34px; padding: 0 8px; font-size: 12px; }
}

/* ============ KONTAKT ============ */
.kontakt-hero {
  padding: 70px 0 50px;
  text-align: center;
  background: var(--bg);
}
.kontakt-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--teal);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.kontakt-hero-title .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.45em;
  color: var(--gold);
  line-height: 0.9;
}
.kontakt-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 520px;
  font-family: var(--serif);
  font-style: italic;
}

.kontakt-main { padding: 30px 0 80px; }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.kontakt-block-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--teal);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.kontakt-block-lead {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
  line-height: 1.55;
}

.kontakt-info {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
}
.kontakt-detail {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(44, 74, 74, 0.07);
}
.kontakt-detail:first-of-type { border-top: none; padding-top: 0; }
.kontakt-detail-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.kontakt-detail-value {
  font-size: 14px;
  color: var(--teal);
  line-height: 1.5;
}
.kontakt-detail-value a {
  color: var(--teal);
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  transition: color .15s, border-color .15s;
}
.kontakt-detail-value a:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.kontakt-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 74, 74, 0.07);
}
.kontakt-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(44, 74, 74, 0.15);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  transition: all .15s;
}
.kontakt-social-link:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--bg);
}

.kontakt-form-wrap {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  box-shadow: 0 8px 32px rgba(44, 74, 74, 0.05);
}
.kontakt-form .form-row {
  margin-bottom: 18px;
}
.kontakt-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.kontakt-form .req { color: var(--gold-dark); }
.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form select,
.kontakt-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--teal);
  background: var(--bg);
  border: 1px solid rgba(44, 74, 74, 0.12);
  border-radius: 2px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.kontakt-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.kontakt-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%232c4a4a' stroke-width='1.5'><path d='M1 1.5 6 6.5l5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
  cursor: pointer;
}

.form-row--check { margin-top: 8px; }
.check-label {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-label a {
  color: var(--teal);
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
}
.check-label a:hover { color: var(--gold-dark); }

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.form-status {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 18px;
}
.form-status.is-ok { color: #2e7d5b; }
.form-status.is-err { color: #b04848; }

/* ============ FAQ (kontakt) ============ */
.kontakt-faq {
  padding: 30px 0 90px;
  background: var(--bg-cream-2);
}
.kontakt-faq .section-head { margin-top: 40px; margin-bottom: 32px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 8px 24px rgba(44, 74, 74, 0.08); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--gold-dark); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.faq-body p { margin: 0; }
.faq-body a {
  color: var(--teal);
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
}
.faq-body a:hover { color: var(--gold-dark); }

/* ============ KONTAKT — RESPONSIVE ============ */
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .kontakt-hero { padding: 50px 0 30px; }
  .kontakt-hero-title { font-size: 48px; }
  .kontakt-hero-sub { font-size: 16px; }
  .kontakt-main { padding: 20px 0 60px; }
  .kontakt-info, .kontakt-form-wrap { padding: 28px 22px; }
  .kontakt-block-title { font-size: 24px; }
  .kontakt-faq { padding: 20px 0 70px; }
  .faq-item summary { font-size: 16px; padding: 16px 18px; }
  .faq-body { padding: 0 18px 18px; font-size: 13.5px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .kontakt-hero-title { font-size: 38px; }
  .kontakt-social { flex-direction: column; align-items: stretch; }
}

/* ============ CLANKY + VIDEA ============ */

/* Listing hero */
.listing-hero {
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.listing-hero-inner {
  position: relative;
  text-align: center;
  padding: 24px 0;
}
.listing-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 78px;
  line-height: 1.02;
  color: var(--teal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.listing-italic {
  font-style: italic;
  font-weight: 400;
}
.listing-hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-muted);
  margin: 0 auto 24px;
  line-height: 1.5;
  max-width: 560px;
}
.listing-hero-divider {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto;
}
.listing-hero .feather-tl {
  width: 50px;
  height: 120px;
  top: -10px;
  left: 5%;
  opacity: 0.35;
}

/* Membership banner — zlatý highlighted box */
.membership-banner-section {
  padding: 0 0 12px;
  background: var(--bg);
}
.membership-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 8px 28px rgba(44, 74, 74, 0.12);
  position: relative;
  overflow: hidden;
}
.membership-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(201,169,110,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.membership-banner-text { color: var(--bg); position: relative; }
.membership-banner-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.membership-banner-text h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--bg);
}
.membership-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gold-light);
  opacity: 0.95;
}
.membership-banner-text strong { color: var(--white); font-weight: 600; }
.membership-banner-cta { position: relative; white-space: nowrap; }

/* Filter chips */
.listing-filter-section {
  padding: 24px 0 36px;
  background: var(--bg);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-chip {
  background: var(--white);
  color: var(--teal);
  border: 1px solid rgba(44, 74, 74, 0.15);
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-chip.is-active {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.filter-chip.is-active:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Listing grid — krémové pozadie, 3 stĺpce */
.listing-section {
  padding: 0 0 80px;
  background: var(--bg);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.listing-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(44, 74, 74, 0.06);
  display: flex;
  flex-direction: column;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(44, 74, 74, 0.10);
}
.listing-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.listing-image {
  aspect-ratio: 16/10;
  background: var(--bg-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.listing-placeholder {
  font-size: 64px;
  opacity: 0.45;
}
.listing-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.listing-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.listing-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  color: var(--teal);
  margin: 0 0 8px;
}
.listing-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.listing-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 18px;
  flex: 1;
}
.listing-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  align-self: flex-start;
  transition: color .15s;
}
.listing-card:hover .listing-cta { color: var(--teal); }

/* Video špecifiká */
.video-thumb {
  background:
    linear-gradient(135deg, rgba(20,40,40,0.5) 0%, rgba(31,56,56,0.7) 100%),
    radial-gradient(ellipse at center, #3a5252 0%, #1f3838 60%, #142828 100%);
}
.video-thumb .play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: transform .25s, opacity .2s;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.listing-card:hover .video-thumb .play-icon {
  transform: scale(1.08);
  opacity: 1;
}
.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 40, 40, 0.85);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 3px;
}
.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 3px;
}
.video-badge--free {
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
}
.video-badge--member {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}
.listing-card.is-locked .listing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,40,0.0) 50%, rgba(20,40,40,0.55) 100%);
  pointer-events: none;
}
.listing-card.is-locked .listing-cta { color: var(--gold-dark); }
.listing-card.is-locked:hover .listing-cta { color: var(--gold); }

/* Paginácia */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 16px 0 48px;
}
.pagination-link {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(44, 74, 74, 0.12);
  border-radius: 4px;
  text-decoration: none;
  transition: all .15s;
}
.pagination-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.pagination-link.is-active {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.pagination-link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pagination-dots {
  padding: 0 6px;
  color: var(--text-muted);
}

/* CTA na konci listingu */
.listing-cta-bottom {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-cream-2);
  border-radius: 6px;
}
.listing-cta-bottom p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--teal);
  margin: 0 0 18px;
}

/* Responsive */
@media (max-width: 1080px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .listing-hero-title { font-size: 64px; }
  .membership-banner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .membership-banner-cta { justify-self: center; }
}

@media (max-width: 768px) {
  .listing-hero { padding: 40px 0 24px; }
  .listing-hero-title { font-size: 52px; }
  .listing-hero-sub { font-size: 17px; }

  .membership-banner { padding: 24px 22px; }
  .membership-banner-text h2 { font-size: 22px; }

  .listing-filter-section { padding: 16px 0 28px; }
  .filter-chips { gap: 8px; }
  .filter-chip { padding: 9px 14px; font-size: 10px; }

  .listing-section { padding: 0 0 60px; }
  .listing-grid { grid-template-columns: 1fr; gap: 18px; }
  .listing-body { padding: 20px 20px 22px; }
  .listing-title { font-size: 20px; }

  .pagination { flex-wrap: wrap; }
  .listing-cta-bottom { padding: 32px 18px; }
  .listing-cta-bottom p { font-size: 17px; }
}

@media (max-width: 480px) {
  .listing-hero-title { font-size: 42px; }
  .listing-hero-sub { font-size: 15px; }
  .listing-title { font-size: 19px; }
}

/* ============ KOMUNITA ============ */

/* Center variant pre section-head (používané v komunite) */
.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.55;
}

/* Hero komunita */
.kom-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-cream-2) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.kom-hero-inner { max-width: 760px; margin: 0 auto; }
.kom-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 88px;
  line-height: 1;
  color: var(--teal);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.kom-hero-title em { font-style: italic; }
.kom-hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--teal);
  margin: 0 0 12px;
  line-height: 1.3;
}
.kom-hero-tagline .script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.5em;
  color: var(--gold);
  line-height: 0.8;
}
.kom-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Prečo sa pridať */
.kom-benefits { padding: 80px 0; }
.kom-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.kom-benefit {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  transition: transform .25s, box-shadow .25s;
}
.kom-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 74, 74, 0.08);
}
.kom-benefit-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-cream-2);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-dark);
}
.kom-benefit h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 10px;
  line-height: 1.3;
}
.kom-benefit p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Cenník — plány */
.kom-pricing {
  background: var(--bg-cream-2);
  padding: 80px 0;
}
.kom-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}
.kom-plan {
  background: var(--bg);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(44, 74, 74, 0.08);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.kom-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 74, 74, 0.12);
  border-color: var(--gold);
}
.kom-plan--featured {
  background: linear-gradient(160deg, var(--bg) 0%, #fdf6e6 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.18);
  transform: translateY(-8px);
}
.kom-plan--featured:hover {
  transform: translateY(-12px);
}
.kom-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.kom-plan-head {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 74, 74, 0.08);
  margin-bottom: 24px;
}
.kom-plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.kom-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.kom-plan-amount {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
}
.kom-plan-period {
  font-size: 13px;
  color: var(--text-muted);
}
.kom-plan-tag {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
}
.kom-plan-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.kom-plan-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.kom-plan-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.kom-plan-cta {
  justify-content: center;
  width: 100%;
}

/* Náhľad z komunity */
.kom-preview { padding: 80px 0; }
.kom-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.kom-post {
  background: var(--white);
  border-radius: 6px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(44, 74, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.kom-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(44, 74, 74, 0.08);
}
.kom-post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.kom-post-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.kom-post-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
  line-height: 1.2;
}
.kom-post-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.kom-post-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.kom-post-foot {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(44, 74, 74, 0.06);
  font-size: 12px;
  color: var(--text-muted);
}
.kom-post-likes, .kom-post-comments {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* FAQ accordion (komunita-špecifické, oddelené od .faq-item) */
.kom-faq {
  background: var(--bg-cream-2);
  padding: 80px 0;
}
.kom-faq-inner { max-width: 820px; }
.kom-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.kom-faq-item {
  background: var(--bg);
  border-radius: 4px;
  border: 1px solid rgba(44, 74, 74, 0.08);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.kom-faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(44, 74, 74, 0.06);
}
.kom-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--teal);
  position: relative;
  user-select: none;
  transition: background .15s;
}
.kom-faq-item summary::-webkit-details-marker { display: none; }
.kom-faq-item summary:hover { background: rgba(201, 169, 110, 0.05); }
.kom-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.kom-faq-item[open] summary::after {
  content: '−';
}
.kom-faq-body {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.kom-faq-body p { margin: 0 0 12px; }
.kom-faq-body p:last-child { margin-bottom: 0; }
.kom-faq-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kom-faq-body a:hover { color: var(--teal); }

/* Záverečný CTA */
.kom-cta {
  background: var(--teal-deep);
  color: var(--bg);
  padding: 70px 0;
}
.kom-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.kom-cta-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--bg);
}
.kom-cta-title em.script {
  font-family: var(--script);
  font-style: normal;
  font-size: 1.4em;
  color: var(--gold-light);
}
.kom-cta-title strong {
  color: var(--gold-light);
  font-weight: 600;
}
.kom-cta-sub {
  font-size: 14px;
  color: var(--gold-light);
  opacity: 0.85;
  margin: 0;
}
.kom-cta-form {
  display: flex;
  gap: 8px;
  background: var(--bg);
  padding: 8px;
  border-radius: 4px;
}
.kom-cta-form input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: var(--teal);
}
.kom-cta-form input::placeholder { color: var(--text-muted); }

/* Responsive komunita */
@media (max-width: 1080px) {
  .kom-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .kom-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .kom-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .kom-plan--featured { transform: none; }
  .kom-plan--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .kom-hero { padding: 60px 0 40px; }
  .kom-hero-title { font-size: 60px; }
  .kom-hero-tagline { font-size: 22px; }
  .kom-benefits { padding: 60px 0; }
  .kom-benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .kom-pricing { padding: 60px 0; }
  .kom-preview { padding: 60px 0; }
  .kom-preview-grid { grid-template-columns: 1fr; gap: 16px; }
  .kom-faq { padding: 60px 0; }
  .kom-faq-item summary { padding: 18px 48px 18px 20px; font-size: 16px; }
  .kom-faq-body { padding: 0 20px 20px; font-size: 14px; }
  .kom-cta { padding: 50px 0; }
  .kom-cta-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .kom-cta-title { font-size: 28px; }
  .kom-cta-form { flex-direction: column; padding: 12px; }
  .kom-cta-form .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .kom-hero-title { font-size: 48px; }
  .kom-hero-tagline { font-size: 18px; }
  .kom-plan { padding: 32px 24px; }
  .kom-plan-amount { font-size: 36px; }
}
