/* ═════════════════════════════════════════════════════════════
   TIRÁNCI.CZ — pojízdné Tatry 1:3 z Jindřiše
   Brand: rodinný řemeslník · vintage manufactory · friendly Czech
   ═════════════════════════════════════════════════════════════ */

:root {
  /* base */
  --red:        #C7342E;
  --red-d:      #9D2723;
  --red-l:      #E25049;
  --red-soft:   #FFF1F0;

  --ink:        #1F1B17;
  --ink-soft:   #3F3833;
  --mute:       #6E6660;
  --mute-l:     #A29B95;

  --line:       #E8E2D3;
  --line-d:     #D5CCB8;

  --paper:      #F8F4EA;
  --paper-2:    #FCFAF3;
  --paper-d:    #EFE8D6;
  --white:      #FFFFFF;
  --dark:       #221E1B;
  --dark-2:     #2F2925;

  /* warm vintage accents */
  --amber:      #D4933A;
  --amber-d:    #A26F22;
  --amber-soft: #FBE9C8;
  --moss:       #5B6B3A;
  --moss-soft:  #E0E5CF;
  --rust:       #7B1F1B;
  --brand-blue: #1FA0DC;
  --brand-blue-d: #1581B5;

  --ff:         "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-disp:    "Bricolage Grotesque", "Inter", sans-serif;
  --ff-serif:   "Fraunces", Georgia, serif;

  --max:        1180px;
  --gutter:     clamp(20px, 5vw, 56px);
  --r:          14px;
  --r-sm:       8px;
  --r-lg:       20px;

  --ease:       cubic-bezier(.2,.7,.2,1);
  --shadow-sm:  0 2px 8px -3px rgba(31,27,23,.10);
  --shadow:     0 18px 40px -22px rgba(31,27,23,.20);
  --shadow-lg:  0 32px 60px -30px rgba(31,27,23,.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--red); color: var(--white); }

/* paper grain dropped for cleaner profi look */

h1, h2, h3, h4 {
  font-family: var(--ff-disp);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.4vw, 60px); line-height: 1.06; }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -.015em; }
h4 { font-size: 16px; letter-spacing: -.01em; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───────── BUTTON ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-d);
  border-color: var(--red-d);
}
.btn--ghost {
  background: var(--white);
  border-color: var(--line-d);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-d);
  border-color: var(--amber-d);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1EBE59;
  border-color: #1EBE59;
}
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--full { display: flex; justify-content: center; width: 100%; }

/* ───────── EYEBROW ───────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
}
.tag--amber { color: var(--amber-d); }
.tag--moss { color: var(--moss); }
.tag--bone { color: var(--paper); }
.tag::before {
  content: "";
  width: 18px; height: 1.5px;
  background: currentColor;
}

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 234, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 0;
  text-decoration: none; color: inherit;
  position: relative;
  padding: 4px 0;
}
.nav__brand-tir {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--brand-blue, #1FA0DC);
  padding: 7px 8px 6px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}
.nav__brand-rest {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: #000;
  letter-spacing: -0.01em;
  margin-left: 1px;
}
.nav__brand-tld {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: #000;
  letter-spacing: -0.01em;
  margin-left: 0;
}
.nav__brand:hover .nav__brand-tir { background: var(--brand-blue-d, #1581B5); }
.nav__brand:hover .nav__brand-rest,
.nav__brand:hover .nav__brand-tld { color: #000; }
.nav__brand small {
  display: block;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--mute);
  margin-top: -2px;
}
.nav__menu {
  display: flex; gap: clamp(14px, 2vw, 26px);
  margin-left: auto;
}
.nav__menu a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav__menu a:hover { color: var(--red); border-bottom-color: var(--red); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.nav__cta:hover { background: var(--red-d); }
.nav__phone {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--amber-soft);
  border: 1px solid #F0D7A4;
  transition: all .2s var(--ease);
}
.nav__phone:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }
.nav__burger {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 4px;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__brand small { display: none; }
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 0 var(--gutter);
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px -15px rgba(0,0,0,.15);
    transition: max-height .3s var(--ease), padding .3s var(--ease);
  }
  .nav.is-open .nav__menu { max-height: 70vh; padding: 14px var(--gutter); }
  .nav__menu a { font-size: 17px; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__menu a:last-child { border: none; }
  .nav__cta { display: none; }
  .nav__phone { margin-left: auto; }
  .nav__burger { display: flex; }
}
@media (max-width: 540px) {
  .nav__phone span { display: none; }
  .nav__phone::after { content: "Volat"; }
}

/* ───────── HERO ───────── */
.hero {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--gutter) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  z-index: 2;
}

/* hero stamp top-right */
.hero__stamp {
  position: absolute;
  top: 30px;
  right: clamp(-20px, -2vw, -40px);
  width: clamp(80px, 10vw, 130px);
  transform: rotate(-12deg);
  opacity: .45;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 920px) { .hero__stamp { display: none; } }

.hero__copy { max-width: 580px; }
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line-d);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  margin: 0 0 22px;
  box-shadow: var(--shadow-sm);
}
.hero__location .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
}
.hero__location .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  opacity: .35;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(2); opacity: 0; }
}

.hero__title {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 400;
  color: var(--red);
}
.hero__title br { display: block; }
.hero__title-mark {
  position: relative;
  white-space: nowrap;
}
.hero__title-mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 8px;
  background: var(--amber-soft);
  z-index: -1;
  transform: skew(-3deg);
}
.hero__lede {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero__cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__price {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--mute);
  flex-wrap: wrap;
}
.hero__price strong {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
}
.hero__price-divider {
  width: 1px; height: 24px;
  background: var(--line-d);
}

/* hero meta strip — 4 facts */
.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 18px;
  padding-top: 8px;
}
.hero__meta-item {
  display: flex; flex-direction: column;
  gap: 2px;
}
.hero__meta-item strong {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.1;
  white-space: nowrap;
}
.hero__meta-item span {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.3;
  white-space: nowrap;
}
.hero__meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line-d);
  align-self: center;
}
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 14px 22px; }
  .hero__meta-divider { display: none; }
}

/* hero art — video */
.hero__art {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero__video-frame {
  position: relative;
  width: 100%;
  max-width: 780px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.55), 0 8px 22px -6px rgba(0,0,0,.25);
  border: 1px solid var(--line);
  transform: rotate(-1deg);
  transition: transform .6s var(--ease);
}
.hero__video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.hero__video-frame:hover { transform: rotate(0deg) scale(1.005); }
.hero__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--dark);
}
/* Floating accent cards — bento depth */
.hero__accent {
  position: absolute;
  border-radius: 14px;
  background-color: var(--white);
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.30), 0 4px 10px -2px rgba(0,0,0,.15);
  z-index: 2;
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}
.hero__accent--tr {
  width: 200px; height: 150px;
  top: -28px; right: -28px;
  transform: rotate(5deg);
}
.hero__accent--bl {
  width: 170px; height: 130px;
  bottom: -22px; left: -34px;
  transform: rotate(-6deg);
}
.hero__video-frame { z-index: 1; }
@media (max-width: 1100px) {
  .hero__accent--tr { width: 150px; height: 110px; top: -14px; right: -14px; }
  .hero__accent--bl { width: 130px; height: 100px; bottom: -14px; left: -14px; }
}
@media (max-width: 720px) {
  .hero__accent { display: none; }
}
.polaroid {
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  position: relative;
  border: 1px solid var(--line);
}
.polaroid::after { display: none; }
.polaroid img, .polaroid > .polaroid__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--dark);
  border-radius: 4px;
}
.polaroid--play {
  cursor: pointer;
  display: block;
  position: relative;
}
.polaroid--play::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  aspect-ratio: 4/3;
  background: rgba(31,27,23,.20);
  z-index: 2;
  transition: background .25s var(--ease);
  border-radius: 4px;
}
.polaroid--play:hover::before { background: rgba(31,27,23,.05); }
.polaroid__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 16px 40px -10px rgba(199,52,46,.7);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.polaroid--play:hover .polaroid__play { transform: translate(-50%, -50%) scale(1.08); background: var(--red-d); }
.polaroid--main {
  z-index: 3;
  max-width: 520px;
  width: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.polaroid--main:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 70px -28px rgba(31,27,23,.4);
}
.polaroid--side {
  position: absolute;
  width: 180px;
  z-index: 1;
}
.polaroid--side-1 {
  top: 0; left: -10px;
  transform: rotate(-9deg);
}
.polaroid--side-2 {
  bottom: 0; right: -10px;
  transform: rotate(7deg);
  z-index: 4;
}
.polaroid--side-2 .polaroid__img-tatra {
  background: var(--moss-soft);
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__art { order: -1; max-width: 460px; min-height: 320px; margin: 0 auto; }
  .polaroid--main { max-width: 360px; }
  .polaroid--side { width: 140px; }
}
@media (max-width: 600px) {
  .polaroid--side-1, .polaroid--side-2 { display: none; }
}

/* ───────── PROOF ───────── */
.proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.proof__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof__item {
  display: flex; flex-direction: column;
  position: relative;
}
.proof__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; top: 12%; bottom: 12%;
  width: 1px;
  background: var(--line-d);
}
.proof__num {
  font-family: var(--ff-disp);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1;
}
.proof__num em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-size: .65em;
  margin-left: 4px;
}
.proof__label {
  font-size: 13px;
  color: var(--mute);
  margin-top: 6px;
  line-height: 1.3;
}
@media (max-width: 720px) {
  .proof__inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .proof__item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .proof__inner { grid-template-columns: 1fr; gap: 16px; }
  .proof__item::after { display: none !important; }
}

/* ───────── VALUE / Co dostanete ───────── */
.value {
  background: var(--paper);
  padding: clamp(40px, 5vw, 60px) 0;
}
.value__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 5vw, 50px);
  align-items: center;
}
.value__head h2 { font-size: clamp(26px, 3vw, 32px); margin-bottom: 12px; }
.value__head p { color: var(--mute); margin: 0; font-size: 15px; }
.value__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}
.value__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
}
.value__list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.value__list li::after {
  content: "";
  position: absolute;
  margin-top: 8px;
  margin-left: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.value__list li {
  position: relative;
}
@media (max-width: 720px) {
  .value__inner { grid-template-columns: 1fr; }
  .value__list { grid-template-columns: 1fr; }
}

/* ───────── SECTION ───────── */
.section {
  padding: clamp(50px, 7vw, 80px) 0;
  position: relative;
  z-index: 1;
}
.section--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--moss { background: var(--moss-soft); border-top: 1px solid #C9D2B0; border-bottom: 1px solid #C9D2B0; }
.section--dark { background: var(--dark); color: var(--paper); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section__head {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 720px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .tag::before { display: none; }
.section__head--center .tag { display: inline-block; }
.section__lede {
  font-size: clamp(16px, 1.3vw, 17px);
  color: var(--mute);
  margin: 14px 0 0;
  max-width: 60ch;
}
.section--dark .section__lede { color: var(--mute-l); }

/* ───────── MODELS ───────── */
.models__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.model {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.model::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color .3s var(--ease);
}
.model:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(31,27,23,.25);
  border-color: transparent;
}
.model:hover::after { border-color: var(--red); }
.model:hover .model__media img { transform: scale(1.04); }
.model__media img { transition: transform .5s var(--ease); }
.model__media {
  background: var(--dark);
  aspect-ratio: 5/3;
  position: relative;
  overflow: hidden;
}
.model__media img { width: 100%; height: 100%; object-fit: cover; }
.model__num {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
}
.model__num--wip {
  background: var(--amber);
  color: var(--white);
}
.model__num--wip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2.4s var(--ease) infinite;
}
.model__num--new {
  background: var(--red);
  color: var(--white);
}
.model__num--new::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2.4s var(--ease) infinite;
}
.model__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.model__name {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.model__title {
  margin: 0 0 8px;
  font-size: 21px;
  font-family: var(--ff-disp);
  font-weight: 700;
  letter-spacing: -.018em;
}
.model__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--mute);
  display: block;
}
.model__desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 18px;
  flex: 1;
}
.model__specs {
  list-style: none;
  margin: 0; padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 6px;
}
.model__specs li {
  display: flex; justify-content: space-between;
  font-size: 14px;
  color: var(--mute);
}
.model__specs strong { color: var(--ink); font-weight: 600; }
@media (max-width: 1180px) {
  .models__grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .models__grid { grid-template-columns: 1fr; max-width: 520px; }
}

.models__note {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--amber-soft) 0%, var(--paper) 100%);
  border: 1px solid #ECC787;
  border-radius: var(--r);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.models__note h4 { margin: 0 0 6px; font-size: 19px; }
.models__note p { margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }
@media (max-width: 600px) { .models__note { grid-template-columns: 1fr; } }

/* ───────── PACKAGES ───────── */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.pack {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.pack:hover {
  transform: translateY(-4px);
  border-color: var(--line-d);
  box-shadow: 0 24px 48px -28px rgba(31,27,23,.25);
}
.pack__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pack--featured {
  background: linear-gradient(180deg, #FFFAF0 0%, var(--white) 100%);
  border-color: var(--amber);
  border-width: 1.5px;
  box-shadow: 0 16px 36px -20px rgba(212,147,58,.45);
}
.pack--featured:hover {
  border-color: var(--amber-d);
  box-shadow: 0 24px 48px -24px rgba(212,147,58,.55);
}
.pack--featured .pack__icon { background: var(--amber-soft); color: var(--amber-d); }
.pack--featured::before {
  content: "Nejčastější";
  position: absolute;
  top: -11px; left: 22px;
  background: var(--amber);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px -3px rgba(162,111,34,.4);
}
.pack__title {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}
.pack__desc {
  color: var(--mute);
  font-size: 14px;
  margin: 0 0 22px;
  flex: 1;
  line-height: 1.5;
}
.pack__price {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.pack__price small {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 13px;
  color: var(--mute);
}
.pack--featured .pack__price { color: var(--amber-d); }
.pack__cta {
  display: inline-block;
  margin-top: auto;
  text-align: center;
  padding: 11px 16px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-d);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s var(--ease);
}
.pack__cta:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.pack--featured .pack__cta { background: var(--amber); border-color: var(--amber); color: var(--white); }
.pack--featured .pack__cta:hover { background: var(--amber-d); border-color: var(--amber-d); }

@media (max-width: 980px) {
  .packages__grid { grid-template-columns: 1fr; }
  .packages__grid .pack--featured { order: -1; }
}

.pricing-note {
  margin: 36px auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 26px;
  background: var(--cream, #F8F4EA);
  border: 1px dashed var(--line-d);
  border-radius: var(--r);
}
.pricing-note__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-note__item strong {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.pricing-note__item span {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.5;
}
@media (max-width: 780px) {
  .pricing-note { grid-template-columns: 1fr; gap: 18px; }
}

/* ───────── HOWTO ───────── */
.howto__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.howto__steps li {
  position: relative;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  counter-increment: step;
}
.howto__steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 8px;
}
.howto__steps h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.howto__steps p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}
@media (max-width: 880px) {
  .howto__steps { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 540px) {
  .howto__steps { grid-template-columns: 1fr; gap: 22px; }
}

/* ───────── STORY ───────── */
.story__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.story__portrait {
  margin: 0;
  position: sticky; top: 90px;
}
.story__portrait-frame {
  background: var(--white);
  padding: 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease);
}
.story__portrait-frame:hover { transform: translateY(-3px); }

.story__portrait--photo .story__portrait-frame {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.story__portrait--photo .story__portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
}
.story__portrait-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(180deg, rgba(26,22,17,0) 0%, rgba(26,22,17,0.92) 60%, rgba(26,22,17,0.98) 100%);
  color: var(--paper);
}
.story__portrait-caption .story__portrait-name {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--white);
}
.story__portrait-caption .story__portrait-role {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-top: 3px;
  font-weight: 500;
}
.story__portrait-caption .story__portrait-meta {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  padding: 0;
}

.story__portrait-frame > div {
  background: linear-gradient(180deg, #2A2520 0%, #1A1611 100%);
  color: var(--paper);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 28px 24px;
  border-radius: 6px;
  position: relative;
}
.story__portrait-mark {
  width: 60px; height: 60px;
  color: var(--red-l);
  margin-bottom: 18px;
  display: inline-block;
}
.story__portrait-mark svg { width: 100%; height: 100%; }
.story__portrait-name {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--white);
}
.story__portrait-role {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  font-weight: 500;
}
.story__portrait-meta {
  font-size: 11px;
  color: rgba(255,255,255,.40);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.story__portrait figcaption {
  font-size: 12px;
  color: var(--mute);
  text-align: center;
  margin-top: 14px;
  font-family: var(--ff-serif);
  font-style: italic;
}

.story__copy h2 {
  margin-bottom: 18px;
  max-width: 22ch;
  font-size: clamp(28px, 3.6vw, 44px);
}
.story__lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}
.story__copy > p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.story__quote {
  margin: 24px 0 12px;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.story__quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.4;
}
.story__quote cite {
  font-size: 13px;
  color: var(--mute);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.story__sign {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story__sign img { height: 56px; width: auto; }
.story__sign small {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

@media (max-width: 880px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__portrait { position: static; max-width: 260px; }
}

/* ───────── TIMELINE ───────── */
.timeline {
  position: relative;
  padding: 10px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 90px;
  width: 2px;
  background: var(--line-d);
}
.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 18px 0;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 26px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--paper);
  z-index: 1;
}
.timeline__item--milestone::before {
  background: var(--amber);
  width: 14px; height: 14px;
  left: 84px;
  top: 24px;
}
.timeline__year {
  text-align: right;
  font-family: var(--ff-disp);
  font-weight: 800;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -.015em;
  padding-top: 14px;
}
.timeline__year small {
  display: block;
  font-family: var(--ff);
  font-size: 11px;
  color: var(--mute);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.timeline__body {
  padding-top: 14px;
  padding-left: 18px;
}
.timeline__body h3 {
  font-size: 18px;
  margin: 0 0 4px;
}
.timeline__body p {
  margin: 0;
  font-size: 14px;
  color: var(--mute);
}
@media (max-width: 600px) {
  .timeline::before { left: 50px; }
  .timeline__item { grid-template-columns: 50px 1fr; gap: 16px; }
  .timeline__item::before { left: 46px; }
  .timeline__item--milestone::before { left: 44px; }
  .timeline__year { font-size: 16px; padding-top: 16px; }
}

/* ───────── PRESS ───────── */
.press__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
.press__head h2 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 8px; }
.press__head p { color: var(--mute); margin: 0; font-size: 15px; }
.press__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.press__list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.press__list li:hover { border-color: var(--red); transform: translateY(-2px); }
.press__list strong {
  display: block;
  font-family: var(--ff-disp);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.press__list a {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 1px;
}
.press__list a:hover { color: var(--red); }
@media (max-width: 880px) {
  .press__inner { grid-template-columns: 1fr; }
  .press__list { grid-template-columns: 1fr; }
}

/* ───────── REVIEWS ───────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.review__stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 18px;
  flex: 1;
}
.review__by {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--moss);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.02em;
}
.review__name {
  font-weight: 600;
  font-size: 14px;
}
.review__name small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--mute);
}
@media (max-width: 880px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ───────── SPECS ───────── */
.specs__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.specs__row {
  display: grid;
  grid-template-columns: 220px 240px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.specs__row .label {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}
.specs__row .value {
  font-family: var(--ff-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.specs__row .desc {
  font-size: 14px;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .specs__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .specs__row .label { font-size: 12px; }
}

/* ───────── PROJECTS — Z dílny / Dokončené projekty ───────── */
.projects { margin-top: 18px; }
.projects__loading { color: var(--mute); font-style: italic; text-align: center; padding: 24px; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.project {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 28px -20px rgba(31,27,23,.18);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.project:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
  box-shadow: 0 22px 40px -22px rgba(212,147,58,.35);
}
.project__hero {
  display: block;
  width: 100%;
  background: var(--cream, #F8F4EA);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.project:not(:has(.project__thumb)) .project__hero {
  aspect-ratio: 5 / 3;
}
.project__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s var(--ease);
}
.project:not(:has(.project__thumb)) .project__hero img {
  object-fit: contain;
  background: var(--ink);
}
.project__hero:hover img { transform: scale(1.03); }
.project__body {
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project__name {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}
.project__subtitle {
  margin: 0;
  font-size: 14.5px;
  color: var(--amber-d, #A26F22);
  font-weight: 600;
  letter-spacing: .005em;
}
.project__desc {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.project__meta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.project__meta-row {
  font-size: 13px;
  color: var(--ink-soft);
}
.project__meta-row strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.project__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 0 24px 24px;
}
.project__thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--cream);
}
.project__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.project__thumb:hover img { transform: scale(1.05); opacity: .85; }

@media (max-width: 880px) {
  .projects__grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 540px) {
  .project__body { padding: 18px 18px 14px; }
  .project__name { font-size: 22px; }
  .project__thumbs { padding: 0 18px 18px; grid-template-columns: repeat(4, 1fr); }
}

/* ───────── EVENTS — Kde nás potkáte ───────── */
.events { margin-top: 18px; }
.events__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.event {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 14px 28px -20px rgba(31,27,23,.18);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.event:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
  box-shadow: 0 22px 40px -22px rgba(212,147,58,.35);
}
.event__poster {
  display: block;
  width: 100%;
  background: var(--cream, #F8F4EA);
  overflow: hidden;
  position: relative;
}
.event__poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s var(--ease);
}
.event__poster:hover img { transform: scale(1.02); }
.event__main {
  display: flex;
  gap: 18px;
  align-items: stretch;
  padding: 18px 20px;
}
.event--poster .event__main { padding: 16px 20px 20px; }
.event__date {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream, #F8F4EA);
  border-radius: 10px;
  padding: 10px 6px;
  border: 1px solid var(--line);
}
.event__date-day {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--red, #C7342E);
  letter-spacing: -.03em;
}
.event__date-mon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-soft, #4A4239);
  margin-top: 4px;
}
.event__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.event__name {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.015em;
  margin: 0;
  color: var(--ink);
}
.event__meta {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.event__meta strong { color: var(--ink); font-weight: 600; }
.event__range {
  margin: 0;
  font-size: 12.5px;
  color: var(--mute);
  font-style: italic;
  font-family: var(--ff-serif);
}
.event__link {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  align-self: flex-start;
}
.event__link:hover { text-decoration: underline; color: var(--ink); }

.events__empty {
  background: var(--cream, #F8F4EA);
  border: 1px dashed var(--line-d);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.events__empty p { margin: 0 0 8px; color: var(--ink-soft); }
.events__empty p:last-child { margin-bottom: 0; }
.events__empty strong { color: var(--ink); font-size: 16px; }
.events__empty a { color: var(--red); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.events__empty a:hover { color: var(--ink); }

@media (max-width: 540px) {
  .event { padding: 16px; gap: 14px; }
  .event__date { width: 56px; padding: 8px 4px; }
  .event__date-day { font-size: 26px; }
}

/* ───────── FAQ ───────── */
.faq__list {
  max-width: 800px;
}
.faq__list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq__list details:last-of-type { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::marker { content: ""; }
.faq__list summary > span {
  flex-shrink: 0;
  font-family: var(--ff);
  font-size: 22px;
  color: var(--mute);
  transition: transform .25s var(--ease), color .25s var(--ease);
  font-weight: 300;
}
.faq__list details[open] summary > span { transform: rotate(45deg); color: var(--red); }
.faq__list details > p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 64ch;
  line-height: 1.6;
}

/* ───────── FOLLOW (Social embed band) ───────── */
.follow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}
.follow__copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 12px; }
.follow__copy p { color: var(--ink-soft); font-size: 16px; max-width: 48ch; }
.follow__copy .btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.follow__feed {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.follow__feed-tile {
  background: var(--paper);
  border-radius: var(--r-sm);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  position: relative;
}
.follow__feed-tile img { width: 100%; height: 100%; object-fit: cover; }
.follow__feed-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(31,27,23,0);
  transition: background .25s var(--ease);
}
.follow__feed-tile:hover::after { background: rgba(31,27,23,.20); }
@media (max-width: 880px) {
  .follow__inner { grid-template-columns: 1fr; }
}

/* ───────── CTA / FORM ───────── */
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.cta__copy h2 { margin-bottom: 14px; }
.cta__copy > p { color: rgba(255,255,255,.72); margin: 0 0 28px; max-width: 46ch; }

.ctile__list {
  list-style: none;
  margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ctile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.ctile:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-1px);
}
.ctile__link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--white);
}
.ctile__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ctile__icon--red { background: rgba(199,52,46,.18); color: var(--red-l); }
.ctile__icon--green { background: rgba(37,211,102,.16); color: #4DD387; }
.ctile__icon--amber { background: rgba(212,147,58,.18); color: var(--amber); }
.ctile__text { display: flex; flex-direction: column; min-width: 0; }
.ctile__label {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.ctile__label em {
  font-style: normal;
  color: var(--amber);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
  font-size: 11px;
}
.ctile__value {
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  color: var(--white);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ctile__arrow {
  font-size: 20px;
  color: rgba(255,255,255,.40);
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.ctile:hover .ctile__arrow { transform: translateX(3px); color: var(--white); }

.cta__meta {
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: rgba(0,0,0,.20);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
}
.cta__meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.cta__meta-row svg { color: var(--amber); flex-shrink: 0; }
.cta__meta-row em {
  font-style: normal;
  color: rgba(255,255,255,.50);
  font-size: 12px;
}

.form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.form h3 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
}
.form__row {
  display: flex; flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form__row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
}
.form input, .form select, .form textarea {
  font: inherit;
  font-size: 15px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(199,52,46,.12);
}
.form textarea { resize: vertical; min-height: 90px; font-family: var(--ff); }
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__note {
  font-size: 12px;
  color: var(--mute);
  margin: 12px 0 0;
}
.form__success {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--moss-soft);
  border: 1px solid #B5C496;
  border-radius: 8px;
  font-size: 15px;
  color: var(--moss);
}
.form__success strong { color: var(--moss); }
.form__error {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--red-soft);
  border: 1px solid var(--red-l);
  border-radius: 8px;
  font-size: 15px;
  color: var(--red-d);
}
.form__error strong { color: var(--red-d); }
.form__error a { color: var(--red-d); font-weight: 600; }
.btn:disabled { opacity: .65; cursor: wait; }
/* honeypot — hide from real users */
input[name="botcheck"] { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 880px) {
  .cta__inner { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
}

/* ───────── KONTAKT ───────── */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 50px);
}
.kontakt__col h2 { margin-bottom: 22px; }
.kontakt__list { margin: 0; padding: 0; list-style: none; }
.kontakt__list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}
.kontakt__list li:last-child { border-bottom: 1px solid var(--line); }
.kontakt__list .label {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
}
.kontakt__list .value {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--ink);
}
.kontakt__list .value a { text-decoration: none; }
.kontakt__list .value a:hover { color: var(--red); }
.kontakt__list .value small {
  display: block;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  margin-top: 2px;
}
.kontakt__social {
  display: flex; gap: 8px;
  margin-top: 22px;
}
.kontakt__social a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s var(--ease);
}
.kontakt__social a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.kontakt__map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 360px;
  position: relative;
}
.kontakt__map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
}
.kontakt__map-link {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px -6px rgba(0,0,0,.15);
}

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

/* ───────── FOOTER ───────── */
.foot {
  background: linear-gradient(180deg, #16130F 0%, #0B0908 100%);
  color: var(--paper);
  padding: 60px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 12px 24px -20px rgba(0,0,0,0.7);
  position: relative;
}
.foot__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  margin-bottom: 30px;
  align-items: start;
}
.foot__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  line-height: 1;
}
.foot__brand-tir {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--brand-blue, #1FA0DC);
  padding: 6px 6px 5px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}
.foot__brand-rest {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-left: 1px;
}
.foot__brand strong {
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.025em;
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}
.foot__brand p { color: rgba(255,255,255,.70); font-size: 14px; max-width: 340px; line-height: 1.55; margin: 0; }
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foot__cols h4 {
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: var(--ff);
}
.foot__cols a, .foot__cols p {
  display: block;
  color: rgba(255,255,255,.70);
  text-decoration: none;
  margin: 0 0 8px;
  font-size: 14px;
}
.foot__cols a:hover { color: var(--white); }
.foot__stamp {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.foot__stamp img { width: 110px; height: 110px; opacity: .8; filter: brightness(1.7) saturate(.9); }
.foot__stamp small {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: center;
}
.foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
  color: rgba(255,255,255,.50);
}
.foot__bottom a { color: rgba(255,255,255,.75); text-decoration: none; }
.foot__bottom a:hover { color: var(--white); }
.foot__privacy {
  background: none; border: 0; padding: 0;
  color: rgba(255,255,255,.75); font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.foot__privacy:hover { color: var(--white); }
@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__stamp { flex-direction: row; }
}

/* ───────── FLOATER ───────── */
.floater {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px -8px rgba(199,52,46,.55), 0 4px 0 var(--red-d);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.floater:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(199,52,46,.65), 0 6px 0 var(--red-d);
}
@media (max-width: 600px) {
  .floater span { display: none; }
  .floater { padding: 14px; }
}

/* ───────── LIGHTBOX ───────── */
.lb {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(15,15,15,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--white);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--ink);
}
.lb__frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--r);
  overflow: hidden;
}
.lb__frame iframe { width: 100%; height: 100%; border: 0; }

/* ───────── COUNTER (animated) ───────── */
.proof__num.is-counted .num-target { display: inline; }

/* ───────── REDUCED MOTION ───────── */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ───────── PROCESS — Co se stane po poptávce ───────── */
.process {
  margin-top: clamp(40px, 5vw, 60px);
  padding: 32px clamp(24px, 4vw, 40px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
}
.process__title {
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 22px;
}
.process__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.process__steps li {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.process__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,147,58,.18);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-disp);
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(212,147,58,.40);
}
.process__steps strong {
  display: block;
  font-family: var(--ff-disp);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.25;
}
.process__steps p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .process__steps { grid-template-columns: 1fr; gap: 18px; }
}

/* ───────── COOKIE / PRIVACY BANNER ───────── */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--ink, #221E1B);
  color: rgba(255,255,255,.88);
  padding: 12px 24px calc(12px + env(safe-area-inset-bottom));
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 28px -12px rgba(0,0,0,.30);
  animation: cookieSlideUp .35s var(--ease) .6s both;
}
.cookie[hidden] { display: none !important; }
.cookie p {
  margin: 0;
  color: rgba(255,255,255,.88);
  max-width: 720px;
  flex: 1 1 auto;
  min-width: 240px;
}
.cookie a {
  color: var(--amber, #D4933A);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cookie a:hover { color: #fff; }
.cookie__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie .btn {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 999px;
}
.cookie__link {
  background: none; border: 0; padding: 0;
  color: rgba(255,255,255,.55); font: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.cookie__link:hover { color: #fff; }
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .cookie {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .cookie p { min-width: 0; }
  .cookie__actions { justify-content: center; }
}
/* Push the call floater above the cookie strip while it's visible. */
body:has(.cookie:not([hidden])) .floater { bottom: 96px; }
@media (max-width: 720px) {
  body:has(.cookie:not([hidden])) .floater { bottom: 170px; }
}

/* ───────── PRIVACY MODAL ───────── */
.privacy {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(34, 30, 27, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: privacyFadeIn .25s var(--ease) both;
}
.privacy[hidden] { display: none !important; }
.privacy__panel {
  background: var(--white);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
  position: relative;
}
.privacy__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--cream, #F8F4EA);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s var(--ease);
}
.privacy__close:hover { background: var(--line-d); }
.privacy__panel h2 {
  margin: 0 0 8px;
  font-family: var(--font-display, inherit);
  font-size: 26px;
  line-height: 1.2;
}
.privacy__panel .privacy__lead {
  color: var(--ink-soft);
  margin: 0 0 24px;
  font-size: 14px;
}
.privacy__panel h3 {
  margin: 22px 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.privacy__panel p, .privacy__panel ul {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.privacy__panel ul { padding-left: 20px; }
.privacy__panel li { margin-bottom: 4px; }
.privacy__panel a { color: var(--red); text-decoration: underline; }
.privacy__panel strong { color: var(--ink); }
@keyframes privacyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .privacy { padding: 12px; }
  .privacy__panel { padding: 24px 20px; max-height: 90vh; }
  .privacy__panel h2 { font-size: 22px; }
}

/* ───────── REVEAL ───────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── GALLERY ───────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  background: var(--white);
  padding: 8px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), z-index 0s .25s;
}
.gallery__item:hover {
  transform: scale(1.03) rotate(0) !important;
  box-shadow: var(--shadow);
  z-index: 5;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), z-index 0s 0s;
}
.gallery__item:nth-child(3n+1) { transform: rotate(-1.5deg); }
.gallery__item:nth-child(3n+2) { transform: rotate(.8deg); }
.gallery__item:nth-child(3n+3) { transform: rotate(-.4deg); }
.gallery__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--paper-d);
  border-radius: 2px;
}
.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 20% 30%, rgba(199,52,46,.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,147,58,.10), transparent 50%),
    linear-gradient(135deg, var(--moss-soft) 0%, var(--paper-d) 100%);
  color: var(--moss);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  text-align: center;
  padding: 16px;
  line-height: 1.4;
  position: relative;
}
.gallery__placeholder::before {
  content: "";
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 1.5px dashed var(--moss);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235B6B3A' opacity='0.6'><path d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2M8.5 13.5l2.5 3.01L14.5 12l4.5 6H5z'/></svg>");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 4px;
}
.gallery__item-cap {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  pointer-events: none;
}
.gallery__more {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--mute);
}
.gallery__more a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* small inline yt-link */
.youtube-push {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF0000;
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s var(--ease);
}
.youtube-push:hover { background: #CC0000; }
