/* ============================================================
   DENISA HRUBEŠOVÁ — Portfolio
   ============================================================ */

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

:root {
  --bg:     #F5F0E8;   /* warm cream */
  --hero1:  #F5F0E8;   /* slide 1 bg */
  --hero2:  #EDE8F5;   /* slide 2 bg */
  --hero3:  #E8E2F5;   /* slide 3 bg */
  --violet: #5500CC;   /* accent purple */
  --blue:   #0000FF;   /* slide 1 accent */
  --fg:     #1A0050;   /* dark navy */
  --muted:  #7A6E9C;   /* muted purple-gray */
  --strip1: #E5DEFC;   /* nav strip 1 */
  --strip2: #E4C5FB;   /* nav strip 2 */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'General Sans', 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .6s ease;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Placeholder boxes */
.placeholder {
  background: linear-gradient(140deg, #d8d4cb 0%, #c9c4ba 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   MAIN PAGE
   ============================================================ */
.page { min-height: 100vh; }

/* Non-hero sections keep beige regardless of body bg transition */
.s-cim,
.stats-bar,
.section,
.podcasty-section,
.site-footer {
  background: var(--bg);
}


/* ============================================================
   HEADER — lives inside .hero so it shares the slide bg
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 80px;
  position: sticky;
  top: 8px;
  z-index: 300;
  background: var(--bg);
  width: calc(100% - 32px);
  margin: 8px auto 0;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(26,0,80,.06);
}
.logo-link { display: block; line-height: 0; }
.logo-svg  { height: 28px; width: auto; display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;   /* hero bg changes per slide */
  padding-bottom: 100px;
  transition: background .6s ease;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
  /* horizontal padding clears the absolute strips: left 144px+gap, right 96px+gap */
  padding: 40px 120px 0 165px;
}

/* ---- Visual: photo + blob ---- */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 380px;
}


/* Photos — mix-blend-mode: multiply makes white bg transparent */
.hero-photo {
  width: 380px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s ease;
}
/* First photo stays in flow to set wrap height */
.hero-photo:first-of-type {
  position: relative;
}
.hero-photo.active { opacity: 1; }

/* ---- Hero text ---- */
.hero-text {
  flex: 1;
  position: relative;
}

.hero-slide { display: none; }
.hero-slide.active { display: block; }

.hero-h1 {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
}

/* Slide 1: italic blue accent */
.hero-em-blue {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

/* Slides 2-3: italic violet accent */
.hero-em-violet {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--violet);
}
/* Slide 2 italic */
.hero-slide:nth-child(2) .hero-em-violet {
  color: #6911F5;
}
/* Slide 3 italic */
.hero-slide:nth-child(3) .hero-em-violet {
  color: #941DF5;
}

.hero-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   SIDEBARS — fixed vertical nav strips, side-by-side
   Each strip: 48px wide, full viewport height, no overlap
   Left: strips 0..heroIdx from left edge
   Right: strips heroIdx+1..2 from right edge
   ============================================================ */
.sidebar-left,
.sidebar-right {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 200;
  pointer-events: none;  /* container transparent to clicks */
}
.sidebar-left  { left: 0;  width: 144px; }  /* 3 × 48px */
.sidebar-right { right: 0; width: 96px;  }  /* 2 × 48px */

/* ---- Strip tabs ---- */
.sb-tab {
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  /* border-radius: CSS top corners become visual BOTTOM corners after rotate(180deg) */
  border-radius: 12px 12px 0 0;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  user-select: none;
  pointer-events: all;
  transition: opacity .2s;
}
.sb-tab:hover { opacity: .7; }

/* Arrow shown at the visual bottom of each strip */
.tab-arrow {
  position: absolute;
  top: 20px;               /* CSS top = visual bottom (strip is rotated 180deg) */
  left: 50%;
  transform: translateX(-50%) rotate(180deg);  /* counter-rotate so arrow points right */
  writing-mode: horizontal-tb;
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
}

/* Left strips: index 0 at far-left, 1 next, 2 furthest right */
.sidebar-left .sb-tab[data-sb-index="0"] {
  left: 0;
  background: var(--bg);   /* always beige — never changes with slide */
  color: var(--fg);
}
.sidebar-left .sb-tab[data-sb-index="1"] {
  left: 48px;
  background: var(--strip1);
  color: var(--fg);
}
.sidebar-left .sb-tab[data-sb-index="2"] {
  left: 96px;
  background: var(--strip2);
  color: var(--violet);
}

/* Right strips: index 1 further from edge, 2 at far-right */
.sidebar-right .sb-tab[data-sb-index="1"] {
  right: 48px;
  background: var(--strip1);
  color: var(--fg);
}
.sidebar-right .sb-tab[data-sb-index="2"] {
  right: 0;
  background: var(--strip2);
  color: var(--violet);
}


/* ---- Slide-in animation for newly visible left tabs ---- */
@keyframes sbSlideIn {
  from { transform: translateX(60px) rotate(180deg); opacity: 0; }
  to   { transform: rotate(180deg); opacity: 1; }
}
.sb-animate-in {
  animation: sbSlideIn .4s cubic-bezier(.25, .75, 0, 1.1) forwards;
}

/* ============================================================
   S ČÍM VÁM POMŮŽU
   ============================================================ */
.s-cim {
  padding: 10px 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-cim-h {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.squiggle {
  width: 160px;
  height: 22px;
  margin-bottom: 56px;
}

/* S čím vám pomůžu — body text */
.s-cim-body {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 40px;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid var(--fg);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--fg);
  background: transparent;
  cursor: pointer;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  transition: background .2s, color .2s, transform .2s;
}
.cta-btn:hover {
  background: var(--fg);
  color: white;
  transform: translateY(-2px);
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section {
  padding: 60px 120px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-h2 {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-body {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 16px;
}
.violet-link {
  color: var(--violet);
  font-weight: 600;
  transition: opacity .2s;
}
.violet-link:hover { opacity: .7; }

/* ============================================================
   STREAMING BUTTONS
   ============================================================ */
.podcast-thumb {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  margin: 32px 0;
}
.stream-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  color: white;
  transition: transform .15s, opacity .15s;
}
.stream-btn:hover { transform: translateY(-2px); opacity: .9; }
.btn-spotify  { background: #1DB954; }
.btn-youtube  { background: #FF0000; }
.btn-apple    { background: linear-gradient(135deg, #9B59B6, #8E44AD); }

/* Icon-only stream buttons */
.stream-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  transition: transform .15s, opacity .15s;
}
.stream-icon:hover { transform: translateY(-2px); opacity: .85; }

/* ============================================================
   TATTOO GRID
   ============================================================ */
.tattoo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-top: 36px;
}
.tattoo-img {
  aspect-ratio: 1;
  border-radius: 8px;
}

/* ============================================================
   PRESS / NAPSALI O MNĚ
   ============================================================ */
.press-list {
  width: 100%;
  max-width: 860px;
  margin: 32px 0 24px;
  text-align: left;
}
.press-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,0,80,.1);
  transition: opacity .2s;
  cursor: pointer;
}
.press-row:first-child { border-top: 1px solid rgba(26,0,80,.1); }
.press-row:hover { opacity: .6; }
.press-src {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 90px;
  flex-shrink: 0;
}
.press-t {
  font-size: .9rem;
  color: var(--fg);
  flex: 1;
  line-height: 1.4;
}
.press-arr {
  font-size: .85rem;
  color: var(--muted);
  flex-shrink: 0;
}
/* Press cards */
.press-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin-top: 32px;
}
.press-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,0,80,.1);
}
.press-card-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}
.press-card-info {
  padding: 14px 16px;
}
.press-card-src {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.press-card-title {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}

/* ============================================================
   PODCAST CARDS
   ============================================================ */
.podcast-cards {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.podcast-card {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 16px;
}

/* ============================================================
   PROJEKTY
   ============================================================ */
/* --- Projekty cards ---------------------------------------- */
.projekt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin-top: 36px;
}

.projekt-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.projekt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 0, 80, .08);
}

/* Logo area — fixed height, centered, overflow hidden */
.projekt-logo {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.projekt-logo img {
  display: block;
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Text logos */
.plogo {
  color: var(--fg);
  text-align: center;
  line-height: 1.15;
}
.plogo-studio {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}
.plogo-hidn {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
}
.plogo-hidn small {
  display: block;
  font-size: .5em;
  font-weight: 700;
  letter-spacing: .25em;
  margin-top: 2px;
}
.plogo-veci {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--blue);
}
.plogo-jfz {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

/* Meta line: name + year */
.projekt-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 0 20px;
  border-top: 1px solid rgba(26, 0, 80, .06);
  padding-top: 14px;
}
.projekt-name {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
}
.projekt-year {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Brand-colored cards --- */
.projekt-card--forendors,
.projekt-card--rybiz,
.projekt-card--studio,
.projekt-card--hidn,
.projekt-card--giveup {
  color: #fff;
}
.projekt-card--forendors .projekt-logo,
.projekt-card--rybiz .projekt-logo,
.projekt-card--studio .projekt-logo,
.projekt-card--hidn .projekt-logo,
.projekt-card--giveup .projekt-logo {
  background: #fff;
}
.projekt-card--forendors .projekt-meta,
.projekt-card--rybiz .projekt-meta,
.projekt-card--studio .projekt-meta,
.projekt-card--hidn .projekt-meta,
.projekt-card--giveup .projekt-meta {
  border-top-color: transparent;
}
.projekt-card--forendors .projekt-name,
.projekt-card--rybiz .projekt-name,
.projekt-card--studio .projekt-name,
.projekt-card--hidn .projekt-name,
.projekt-card--giveup .projekt-name { color: #fff; }
.projekt-card--forendors .projekt-year,
.projekt-card--rybiz .projekt-year,
.projekt-card--studio .projekt-year,
.projekt-card--hidn .projekt-year,
.projekt-card--giveup .projekt-year { color: rgba(255,255,255,.5); }
.projekt-card--forendors .projekt-desc,
.projekt-card--rybiz .projekt-desc,
.projekt-card--studio .projekt-desc,
.projekt-card--hidn .projekt-desc,
.projekt-card--giveup .projekt-desc { color: rgba(255,255,255,.7); }

.projekt-card--forendors { background: #E51139; }
.projekt-card--rybiz     { background: rgb(33,83,68); }
.projekt-card--studio    { background: rgb(173,105,36); }
.projekt-card--hidn      { background: rgb(111,117,217); }
.projekt-card--giveup    { background: #000; }

/* Description */
.projekt-desc {
  font-size: .78rem;
  line-height: 1.45;
  color: var(--muted);
  padding: 6px 20px 18px;
  text-align: left;
}


/* ============================================================
   PODCASTY SECTION
   ============================================================ */
.podcasty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 960px;
  margin-top: 36px;
}
.podcast-col {
  text-align: left;
}
.podcast-col-title {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.podcast-col-desc {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
}
.podcast-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 16px;
}
.podcast-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.podcast-col .stream-btns {
  justify-content: flex-start;
}

/* ============================================================
   PRODUKTY
   ============================================================ */
.produkty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin-top: 36px;
}
.produkt-ebook,
.produkt-mentoring {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.produkt-ebook:hover,
.produkt-mentoring:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 0, 80, .08);
}
.mentoring-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--violet);
  background: rgba(255,255,255,.85);
  padding: 6px 16px;
  border-radius: 100px;
  z-index: 1;
}

.produkt-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.produkt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter .4s ease;
}
.produkt-mentoring .produkt-img {
  object-position: center 30%;
}
.produkt-ebook:hover .produkt-img,
.produkt-mentoring:hover .produkt-img {
  filter: grayscale(0%);
}
.ebook-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(255,255,255,.85);
  padding: 6px 16px;
  border-radius: 100px;
  z-index: 1;
}

.ebook-title {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ebook-desc {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 16px;
}
.ebook-price {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
}
.ebook-cta {
  align-self: center;
}

/* ============================================================
   BOTTOM GRID (Newsletter + Kontakt side by side)
   ============================================================ */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  width: 100%;
  max-width: 960px;
  text-align: left;
}
.bottom-col {
  display: flex;
  flex-direction: column;
}
.bottom-col .section-h2 {
  text-align: left;
}
.bottom-col .section-body {
  text-align: left;
}
/* Tighter spacing inside bottom grid */
.bottom-col .section-body {
  margin-bottom: 8px;
}
/* Vertical divider between columns */
.bottom-grid {
  position: relative;
}
.bottom-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -20px;
  bottom: 0;
  width: 1px;
  background: rgba(26,0,80,.08);
}
.bottom-newsletter {
  padding-right: 48px;
}
.bottom-kontakt {
  padding-left: 48px;
}
/* Social row below both columns */
.bottom-social {
  margin-top: 32px;
  justify-content: center;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.nl-form {
  display: flex;
  gap: 8px;
  margin-top: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.nl-input {
  padding: 12px 20px;
  border: 1.5px solid rgba(26,0,80,.2);
  border-radius: 100px;
  background: transparent;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--fg);
  outline: none;
  flex: 1;
  min-width: 0;
  transition: border-color .2s;
}
.nl-input:focus { border-color: var(--violet); }
.nl-input::placeholder { color: var(--muted); }
.nl-btn {
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--fg);
  background: transparent;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.nl-btn:hover { background: var(--fg); color: white; }
.nl-btn:disabled { opacity: .5; cursor: not-allowed; }
.nl-footer {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 120px;
  background: var(--bg);
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-number {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: rgb(0,0,224);
  line-height: 1;
}
.stat-label {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 200px;
}

/* ============================================================
   VĚCI PODCAST LAYOUT
   ============================================================ */
.veci-section .section-body {
  margin-bottom: 36px;
}
.veci-layout {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin-bottom: 36px;
}
.veci-main {
  flex: 1;
  min-width: 0;
}
.veci-main-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}
.veci-iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.veci-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.veci-sidebar {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.veci-sidebar-item {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .15s, opacity .15s;
}
.veci-sidebar-item:hover {
  transform: scale(1.03);
  opacity: .85;
}
.veci-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.veci-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  pointer-events: none;
}

/* ============================================================
   KONTAKT FORM
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 36px;
}
.contact-input {
  padding: 14px 20px;
  border: 1.5px solid rgba(26,0,80,.2);
  border-radius: 12px;
  background: transparent;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--fg);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.contact-input:focus { border-color: var(--violet); }
.contact-input::placeholder { color: var(--muted); }
.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A6E9C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-select:invalid {
  color: var(--muted);
}
.contact-textarea {
  min-height: 100px;
}
.contact-submit {
  align-self: flex-start;
}
.contact-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* Contact feedback messages */
.contact-msg {
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: 10px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.contact-msg--ok {
  background: #EDE8F5;
  color: var(--violet);
}
.contact-msg--err {
  background: #fde8e8;
  color: #b91c1c;
}

/* ============================================================
   KONTAKTY
   ============================================================ */
.contact-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--fg);
}
.contact-email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--violet);
  transition: opacity .2s;
  display: block;
  margin-bottom: 28px;
}
.contact-email:hover { opacity: .7; }
.social-row {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--violet);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
}
.social-icon:hover { opacity: .8; transform: scale(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 32px 80px 48px;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  border-top: 1px solid rgba(26,0,80,.08);
}
.footer-link {
  color: var(--violet);
  font-weight: 600;
  transition: opacity .2s;
}
.footer-link:hover { opacity: .7; }

/* Press "show more" button — hidden on desktop */
.press-more-btn {
  display: none;
  margin-top: 20px;
  padding: 10px 24px;
  border: 1.5px solid rgba(26,0,80,.2);
  border-radius: 100px;
  background: transparent;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.press-more-btn:hover {
  border-color: var(--fg);
  color: var(--fg);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { padding: 40px 80px 0 80px; gap: 40px; }
  .hero-visual { width: 300px; }
  .hero-photo  { width: 300px; }
}

@media (max-width: 680px) {
  .site-header { padding: 20px 20px 0; justify-content: flex-start; }
  .logo-svg { height: 22px; }

  .hero { padding-bottom: 60px; }
  .hero-inner {
    padding: 32px 20px 0 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .hero-visual { width: 260px; }
  .hero-photo  { width: 260px; }
  .hero-h1 { font-size: 1.45rem; text-align: center; }

  .sidebar-left,
  .sidebar-right { display: none; }

  .section { padding: 48px 24px 48px; }
  .s-cim   { padding: 48px 24px 48px; }
  .section-h2 { font-size: 2.2rem; }

  /* Stats bar */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
    gap: 32px 16px;
  }

  /* Produkty */
  .produkty-grid { grid-template-columns: 1fr; }

  /* Bottom grid (newsletter + kontakt) */
  .bottom-grid { grid-template-columns: 1fr; gap: 40px; }
  .bottom-col .section-h2,
  .bottom-col .section-body { text-align: center; }
  .bottom-grid::before { display: none; }
  .bottom-newsletter { padding-right: 0; }
  .bottom-kontakt { align-items: center; }
  .nl-form { justify-content: center; flex-wrap: wrap; }
  .nl-input { flex: 1 1 100%; }
  .nl-btn { width: 100%; }

  /* Contact form */
  .contact-form { max-width: 100%; }
  .contact-submit { align-self: stretch; }

  /* Podcasty */
  .podcasty-grid { grid-template-columns: 1fr; gap: 48px; }

  .press-cards { grid-template-columns: repeat(2, 1fr); }
  .press-cards .press-card:nth-child(n+3) { display: none; }
  .press-cards--expanded .press-card:nth-child(n+3) { display: block; }
  .press-more-btn { display: inline-block; }
  .press-cards--expanded + .press-more-btn { display: none; }
  .projekt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .projekt-logo { height: 100px; padding: 16px; }
  .projekt-logo img { max-width: 120px; max-height: 60px; }
  .site-footer { padding: 32px 20px 48px; }
}
