/* ═══════════════════════════════════════════════════
   POŽIČOVŇA KOTLÍKOV — style.css
   Premium Dark Design  ·  2026
   ═══════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ── */
:root {
  --crimson:      #8B1E2D;
  --crimson-d:    #6d1520;
  --crimson-a:    rgba(139,30,45,0.15);
  --forest:       #1F3D2B;
  --forest-d:     #162d1f;
  --gold:         #D4A017;
  --gold-d:       #b8881a;
  --gold-a:       rgba(212,160,23,0.15);
  --sapphire:     #1C3F73;
  --sapphire-d:   #152f57;
  --cream:        #F5F0E8;
  --dark:         #3D2E1A;
  --dark2:        #4A3822;
  --dark3:        #56422A;
  --dark4:        #624D33;
  --muted:        rgba(245,240,232,0.65);
  --border:       rgba(212,180,140,0.18);

  --ff-head: 'Montserrat', system-ui, sans-serif;
  --ff-body: 'Montserrat', system-ui, sans-serif;

  --max-w:    1200px;
  --r:        8px;
  --r-lg:     16px;
  --r-xl:     24px;
  --shadow:   0 4px 30px rgba(0,0,0,0.45);
  --shadow-lg:0 12px 60px rgba(0,0,0,0.55);
  --ease:     0.3s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--cream); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--ff-body); }

/* ── 3. CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── 4. SECTION UTILITIES ── */
.section-header { text-align: center; margin-bottom: 60px; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--crimson { color: var(--crimson); }
.eyebrow--muted   { color: rgba(245,242,236,0.6); }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-title--dark  { color: var(--dark); }
.section-title--light { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

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

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg   { padding: 17px 38px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--crimson          { background: var(--crimson);   color: #fff;            border-color: var(--crimson); }
.btn--crimson:hover    { background: var(--crimson-d); border-color: var(--crimson-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,30,45,0.45); }

.btn--gold             { background: var(--gold);      color: var(--dark);     border-color: var(--gold); }
.btn--gold:hover       { background: var(--gold-d);    border-color: var(--gold-d);    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,0.4); }

.btn--ghost            { background: transparent;      color: var(--cream);    border-color: rgba(245,242,236,0.35); }
.btn--ghost:hover      { background: rgba(245,242,236,0.07); border-color: rgba(245,242,236,0.65); transform: translateY(-2px); }

.btn--ghost-white      { background: transparent;      color: #fff;            border-color: rgba(255,255,255,0.45); }
.btn--ghost-white:hover{ background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ── 6. FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset-block-start: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease), backdrop-filter var(--ease);
}
.header.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 32px rgba(0,0,0,0.55);
  padding: 10px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon     { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg      { width: auto; height: 52px; }
.logo-text     { display: flex; flex-direction: column; line-height: 1.1; gap: 0; }
.logo-name-green {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  line-height: 1;
}
.logo-name-red {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 800;
  color: #D4A017;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 1px;
}
.logo-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.06em; margin-top: 4px; }

/* Nav */
.nav__list { display: flex; gap: 2px; }
.nav__link {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(245,242,236,0.75);
  padding: 8px 14px;
  border-radius: 50px;
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--cream); background: rgba(245,242,236,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}
.hamburger.open span:nth-child(1) { transform: rotate(43deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-43deg); }

.header__actions { display: flex; align-items: center; gap: 14px; }


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}

/* Fire atmosphere glow */
.hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(212,160,23,0.22) 0%, transparent 62%),
    radial-gradient(ellipse 55% 40% at 15% 85%,  rgba(139,30,45,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 85%,  rgba(139,30,45,0.24) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 50% 30%,  rgba(80,50,20,0.35)  0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
}

/* Text side */
.hero__text { max-width: 580px; }

.hero__h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-block: 16px 14px;
}

.hero__tagline {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 1rem;
  color: rgba(245,242,236,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust { display: flex; align-items: center; gap: 22px; }
.hero__stat  { display: flex; flex-direction: column; gap: 2px; }
.hero__stat strong {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero__stat span {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__divider { width: 1px; height: 32px; background: var(--border); }

/* Cauldron visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cauldron-scene { position: relative; width: 100%; max-width: 480px; }
.cauldron-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow:
    0 0 60px rgba(212,130,20,0.35),
    0 0 120px rgba(212,100,10,0.15),
    0 24px 70px rgba(0,0,0,0.8);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.cauldron-halo {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 55px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.28) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(22px);
  animation: halo-pulse 5s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;    transform: translateX(-50%) scaleX(1.25); }
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-chevron {
  width: 18px; height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: chevron-bounce 2.2s ease-in-out infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}


/* ═══════════════════════════════════════════════════
   HOTOVÉ SETY
═══════════════════════════════════════════════════ */
.sety { padding: 108px 0; background: var(--dark2); }

.sety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.set-card {
  background: var(--dark3);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.set-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,160,23,0.25);
}
.set-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 10px 48px rgba(212,160,23,0.22);
  transform: scale(1.025);
}
.set-card--featured:hover { transform: scale(1.025) translateY(-10px); }

/* Badge */
.set-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  background: var(--sapphire);
  color: #fff;
}
.set-card__badge--gold { background: var(--gold);    color: var(--dark); }
.set-card__badge--blue { background: var(--sapphire); color: #fff; }

/* Visual area */
.set-card__visual { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.set-card__visual svg { width: 100%; height: 100%; display: block; }
.set-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.set-card:hover .set-card__img { transform: scale(1.05); }

/* Body */
.set-card__body { padding: 26px; }

.set-card__name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.set-card__list { margin-bottom: 22px; }
.set-card__list li {
  font-size: 0.88rem;
  color: rgba(245,242,236,0.7);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.set-card__list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.set-card__list li:last-child { border-bottom: none; }

.set-card__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}
.price-from { font-size: 0.85rem; color: var(--muted); }
.price-val  { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 500; color: var(--gold); line-height: 1; letter-spacing: 0.01em; }
.price-unit { font-size: 0.85rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════
   HORÁKY
═══════════════════════════════════════════════════ */
.horaky { padding: 100px 0; background: var(--dark3); }

.horaky__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.horak-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.horak-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.horak-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
}
.horak-card__icon--photo {
  width: 180px;
  height: 180px;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 16px;
}
.horak-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.75) saturate(0.8) sepia(0.15);
  transition: filter 0.3s ease;
}
.horak-card__photo:hover {
  filter: brightness(0.88) saturate(0.95) sepia(0.08);
}

.horak-card__title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin: 0;
}

.horak-card__desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.horak-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.horak-card__list li {
  color: var(--muted);
  font-size: 0.93rem;
  padding-left: 20px;
  position: relative;
}
.horak-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.btn--outline-gold {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
  margin-top: auto;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

.horak-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

@media (max-width: 768px) {
  .horaky__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   NEREZOVÉ HRNCE
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   OHNISKA
═══════════════════════════════════════════════════ */
.ohniska {
  padding: 100px 0;
  background: var(--dark);
}
.ohnisko__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.ohnisko__photo {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  filter: brightness(0.78) saturate(0.8) sepia(0.2);
  transition: filter 0.3s ease;
}
.ohnisko__photo:hover {
  filter: brightness(0.9) saturate(0.95) sepia(0.08);
}
.ohnisko__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
}
.ohnisko__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.ohnisko__specs {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ohnisko__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.ohnisko__specs li:last-child { border-bottom: none; }
.ohnisko__spec-label {
  font-size: 0.88rem;
  color: var(--muted);
}
.ohnisko__spec-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}
.ohnisko__cta { display: flex; }

@media (max-width: 768px) {
  .ohnisko__wrap { grid-template-columns: 1fr; gap: 36px; }
}

.hrnce { padding: 100px 0; background: var(--dark2); }

.hrnce__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}

.hrnce__desc {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hrnce__photo-wrap {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
}
.hrnce__photo {
  width: 100%;
  display: block;
  border-radius: 16px;
  filter: brightness(0.72) saturate(0.85) sepia(0.18);
  transition: filter 0.3s ease;
}
.hrnce__photo:hover {
  filter: brightness(0.82) saturate(0.95) sepia(0.1);
}

.hrnce__sizes {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hrnce__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.hrnce__size {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  flex: 1;
  min-width: 100px;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.hrnce__size:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.07);
}

.hrnce__size-icon { display: flex; justify-content: center; }

.hrnce__size-vol {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.hrnce__size-note {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.hrnce__features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.hrnce__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.5;
}

.hrnce__feature-icon {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .hrnce__wrap { grid-template-columns: 1fr; gap: 36px; }
  .hrnce__sizes { justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   AKO TO FUNGUJE
═══════════════════════════════════════════════════ */
.ako { padding: 108px 0; background: var(--cream); }
.ako .section-header .section-sub { color: rgba(17,17,17,0.6); }

.ako__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
/* Connector line */
.ako__grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--sapphire), var(--forest), var(--crimson));
  opacity: 0.22;
}

.step { text-align: center; position: relative; }

.step__circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative; z-index: 1;
}
.step:hover .step__circle { transform: translateY(-4px); }

.step__circle svg { width: 40px; height: 40px; }

.step__circle--blue   { background: rgba(28,63,115,0.1);  color: var(--sapphire); border: 2px solid rgba(28,63,115,0.22); }
.step__circle--forest { background: rgba(31,61,43,0.1);   color: var(--forest);   border: 2px solid rgba(31,61,43,0.22); }
.step__circle--crimson{ background: rgba(139,30,45,0.08); color: var(--crimson);  border: 2px solid rgba(139,30,45,0.18); }

.step__num {
  position: absolute;
  top: -6px;
  left: calc(50% + 28px);
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step__title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.step__text { font-size: 0.95rem; color: rgba(17,17,17,0.62); line-height: 1.72; }


/* ═══════════════════════════════════════════════════
   PRE KOHO
═══════════════════════════════════════════════════ */
.prekoho { padding: 108px 0; background: var(--forest); }

.prekoho__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.who-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  transition: transform var(--ease);
}
.who-card:hover { transform: translateY(-8px); }
.who-card:hover .who-card__bg  { transform: scale(1.06); }
.who-card:hover .who-card__overlay { opacity: 0.35; }

.who-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.who-card__bg--family  { background-image: linear-gradient(to bottom, rgba(30,15,5,0.25) 0%, rgba(20,10,0,0.72) 100%), url('who-rodiny.jpg'); background-size: cover; background-position: center; }
.who-card__bg--company { background-image: linear-gradient(to bottom, rgba(10,20,30,0.25) 0%, rgba(5,15,25,0.72) 100%), url('who-firmy.jpg'); background-size: cover; background-position: center; }
.who-card__bg--village { background-image: linear-gradient(to bottom, rgba(10,20,10,0.2) 0%, rgba(5,15,5,0.72) 100%), url('who-obce.jpg'); background-size: cover; background-position: center; }
.who-card__bg--event   { background-image: linear-gradient(to bottom, rgba(15,5,5,0.2) 0%, rgba(10,5,0,0.72) 100%), url('who-eventy.jpg'); background-size: cover; background-position: center; }

.who-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
  transition: opacity var(--ease);
}

.who-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}

.who-card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(212,160,23,0.18);
  border: 1px solid rgba(212,160,23,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.who-card__icon svg { width: 22px; height: 22px; }

.who-card__title {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 7px;
}
.who-card__text { font-size: 0.83rem; color: rgba(255,255,255,0.72); line-height: 1.5; }


/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 84px 0;
  background: var(--crimson);
  overflow: hidden;
}
.cta-band__deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 150% at -5% 50%,  rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 120% at 105% 50%, rgba(0,0,0,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band__title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.cta-band__sub  { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 7px; }
.cta-band__note { font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.cta-band__btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════ */
.kontakt { padding: 108px 0; background: var(--dark); }

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.kontakt__info-heading {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,242,236,0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.info-row svg { color: var(--gold); flex-shrink: 0; }
.info-row a:hover { color: var(--gold); transition: color var(--ease); }

.kontakt__hours {
  margin-top: 32px;
  padding: 20px;
  background: var(--dark2);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
}
.kontakt__hours h4 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.kontakt__hours p { font-size: 0.88rem; color: var(--muted); margin-bottom: 5px; }
.kontakt__hours strong { color: var(--cream); }

/* Form */
.kontakt__form {
  background: var(--dark2);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245,242,236,0.65);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,160,23,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,242,236,0.28); }
.form-group select option          { background: var(--dark2); color: var(--cream); }
.form-group textarea               { resize: vertical; min-height: 106px; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}


/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--dark); border-top: 1px solid var(--border); }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding: 64px 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo-svg   { width: auto; height: 60px; }
.footer__name-block{ display: flex; flex-direction: column; line-height: 1.15; }
.footer__name-green{
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.07em;
}
.footer__name-red  {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 800;
  color: #D4A017;
  letter-spacing: 0.07em;
}
.footer__tagline { font-size: 0.88rem; color: var(--gold); font-style: italic; margin-bottom: 14px; }
.footer__about {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}
.social-link:hover { color: var(--cream); border-color: rgba(245,242,236,0.3); background: rgba(245,242,236,0.05); }

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 9px; }
.footer__links a  { font-size: 0.88rem; color: var(--muted); transition: color var(--ease); }
.footer__links a:hover { color: var(--cream); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__ci {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer__ci svg { color: var(--gold); flex-shrink: 0; }
.footer__ci a:hover { color: var(--cream); transition: color var(--ease); }

.footer__bottom {
  border-top: 1px solid var(--border);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}
.footer__bottom-inner p { font-size: 0.78rem; color: rgba(245,242,236,0.38); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.78rem; color: rgba(245,242,236,0.38); transition: color var(--ease); }
.footer__legal a:hover { color: var(--muted); }


/* ═══════════════════════════════════════════════════
   STICKY MOBILE BAR
═══════════════════════════════════════════════════ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 890;
  background: rgba(17,17,17,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: opacity var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
}
.mobile-bar__btn:active { transform: scale(0.97); }
.mobile-bar__btn--call    { background: #25a244; color: #fff; border: 1.5px solid #1e8a38; }
.mobile-bar__btn--reserve { background: var(--crimson); color: #fff; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content { gap: 40px; }

  .sety__grid { gap: 18px; }

  .prekoho__grid { grid-template-columns: repeat(2, 1fr); }
  .who-card { aspect-ratio: 1/1; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__btns  { justify-content: center; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Fullscreen mobile nav */
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1000;
  }
  .nav.open { opacity: 1; pointer-events: all; }
  .nav__list { flex-direction: column; align-items: center; gap: 4px; }
  .nav__link { font-family: var(--ff-head); font-size: 1.6rem; padding: 14px 32px; }

  .hamburger { display: flex; }
  .header__cta-btn { display: none; }

  /* Hero */
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 80px;
    gap: 40px;
  }
  .hero__text { max-width: 100%; }
  .hero__desc { margin: 0 auto 36px; }
  .hero__btns { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .cauldron-scene { max-width: 230px; margin: 0 auto; }

  /* Sets */
  .sety__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .set-card--featured { transform: none; }
  .set-card--featured:hover { transform: translateY(-10px); }

  /* How it works */
  .ako__grid { grid-template-columns: 1fr; gap: 32px; }
  .ako__grid::before { display: none; }

  /* For whom */
  .prekoho__grid { grid-template-columns: 1fr 1fr; }
  .who-card { aspect-ratio: 3/4; }

  /* Contact */
  .kontakt__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt__form { padding: 24px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* Mobile bar */
  .mobile-bar { display: flex; }
  .kontakt { padding-bottom: 120px; }
  .footer__bottom { padding-bottom: 72px; }

  /* Reduce section padding on mobile */
  .sety    { padding: 36px 0; }
  .hrnce   { padding: 36px 0; }
  .horaky  { padding: 36px 0; }
  .ohniska { padding: 36px 0; }
  .ako     { padding: 48px 0; }
  .prekoho { padding: 48px 0; }
  .cta-band { padding: 40px 0; }
  .kontakt { padding-top: 40px; }
  .section-header { margin-bottom: 32px; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE 480px
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__btns         { flex-direction: column; align-items: stretch; }
  .hero__btns .btn    { justify-content: center; }
  .prekoho__grid      { grid-template-columns: 1fr; }
  .who-card           { aspect-ratio: 4/3; }
  .cta-band__btns     { flex-direction: column; width: 100%; }
  .cta-band__btns .btn{ justify-content: center; }
  .footer__social     { flex-wrap: wrap; }
}


/* ═══════════════════════════════════════════════════
   SMOGI STUDIO SIGNATURE
═══════════════════════════════════════════════════ */
.smogi-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0 24px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.smogi-signature:hover {
  opacity: 1;
}
.smogi-signature__line {
  display: block;
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.smogi-signature__text {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.75);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
}
