:root {
  --c-primary: #f2c300;
  --c-ink: #111;
  --c-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font: 16px/1.65 DIN, "DIN Pro", "FF DIN", Bahnschrift, ui-sans-serif,
    system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--c-ink);
  background: #fff;
}

/* Anchor offset kvůli fixnímu headeru – větší, aby nadpis nebyl pod lištou */
section[id] {
  scroll-margin-top: 80px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Header */
header.site {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.2s;
}
header.site.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.brandbar {
  height: 5px;
  background: linear-gradient(90deg, var(--c-primary), #111);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-img {
  height: 44px;
  width: auto;
}
@media (min-width: 900px) {
  .logo-img {
    height: 52px;
  }
}

/* Nav + burger */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.nav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 0.8rem;
  border-radius: 10px;
  font-weight: 800;
  opacity: 0.9;
  transition: background 0.2s;
}
.nav a:hover {
  opacity: 1;
  background: #f6f7f9;
  box-shadow: inset 0 -2px 0 var(--c-primary);
}
.nav a.active {
  background: #f4f5f7;
  box-shadow: inset 0 -2px 0 var(--c-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--c-border);
  cursor: pointer;
  font-weight: 900;
  transition: background 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease, border-color 0.15s ease;
}
.btn.primary {
  background: var(--c-primary);
  color: #111;
  border-color: transparent;
  box-shadow: 0 1px 0 #00000010, 0 6px 16px #f2c30033;
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #00000010, 0 10px 22px #f2c30055;
}
.btn.outline {
  background: #fff;
}
.btn.outline:hover {
  background: #f8fafc;
  border-color: #d1d5db;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 60px 12px auto 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    height: 44px;
    padding: 0 12px;
  }
}

/* Layout & typografie */
section {
  padding: 60px 0 40px;
  position: relative;
}
section:first-of-type {
  border-top: none;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.6rem 0;
}
h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  margin: 0 0 1.1rem 0;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--c-primary);
  border-radius: 4px;
  margin-top: 14px;
}
h4 {
  margin: 0 0 0.6rem 0;
}

p.lead {
  font-size: clamp(1rem, 2.7vw, 1.15rem);
  max-width: 70ch;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* HERO */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-inline: auto;
  background: linear-gradient(180deg, #fff9d1, #facc15);
  border-radius: 22px;
  box-shadow: 0 16px 40px #0000001f, inset 0 -20px 60px #0000000f;
}
.selfie {
  position: absolute;
  bottom: 0;
  right: -6%;
  height: 105%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.7));
  mask-image: radial-gradient(
    140% 140% at 60% 45%,
    #000 68%,
    rgba(0, 0, 0, 0) 100%
  );
}
.shine {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: radial-gradient(
    600px 260px at 30% 10%,
    rgba(255, 255, 255, 0.4),
    transparent 60%
  );
}
.badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 900;
}

/* Split sekce */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.accent {
  position: relative;
  padding-left: 22px;
}
.accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--c-primary), #ffe58a);
}

.muted {
  color: #64748b;
}

/* Jednoduché odrážkové seznamy */
.key-points {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.key-points li {
  position: relative;
  padding-left: 1.4rem;
  color: #475569;
}
.key-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-weight: 900;
  color: var(--c-primary);
}
.key-points strong {
  font-weight: 800;
}

/* Služby – grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 16px;
}
@media (max-width: 1200px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.svc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: #d1d5db;
}

.svc-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.svc-ic {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: radial-gradient(circle at 0 0, #ffffff, #fef3c7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-ic svg {
  width: 22px;
  height: 22px;
}
.svc-title {
  margin: 0 0 2px 0;
  font-weight: 900;
  line-height: 1.25;
}
.svc-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}
.svc ul {
  margin: 0.4rem 0 1rem 1.1rem;
  padding: 0;
  color: #475569;
  font-size: 0.95rem;
}
.svc li {
  margin-bottom: 0.18rem;
}
.svc .more {
  display: inline-flex;
  margin-top: auto;
  font-weight: 800;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--c-primary);
  padding-bottom: 1px;
}

/* Postup spolupráce */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 32px 20px 24px;
  position: relative;
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -22px;
  left: 18px;
  background: var(--c-primary);
  color: #111;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 6px #0002;
}
.steps .step h3 {
  margin: 6px 0 0.4rem;
}

/* Galerie – Moje práce */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.tile {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.tile:hover img {
  transform: scale(1.04);
}

/* Kontakt */
#kontakt {
  background: #f6f7f9;
  padding-top: 36px;
  padding-bottom: 56px;
}
.kontakt-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.kontakt-head {
  padding: 0 0 20px;
}
.kontakt-head h2 {
  margin: 0 0 10px 0;
}
.kontakt-head p {
  color: #475569;
  max-width: 72ch;
  margin: 0;
}
.kontakt-lead {
  max-width: 640px;
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
@media (max-width: 1060px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}

.split-left {
  background: #f2c300;
  border-radius: 20px;
  padding: 28px 28px;
  display: grid;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.split-left .brand {
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}
.split-left .brand small {
  display: block;
  font-weight: 700;
  opacity: 0.85;
  margin-top: 3px;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.split-left .phone {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 1000;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.split-left .email {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 900;
  opacity: 1;
}
.split-left .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.split-left .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #111;
  color: #fff;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid #111;
  text-decoration: none;
  font-weight: 900;
}
.split-left .pill.secondary {
  background: transparent;
  color: #111;
  border-color: #111;
}
.split-left a {
  color: inherit;
  text-decoration: none;
}
.split-left a:hover {
  text-decoration: underline;
}
.split-left .pill.whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #111;
}
.split-left .pill.whatsapp:hover {
  filter: brightness(0.95);
}

.split-right {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.info-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px;
}
.info-row .ic {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f2c300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.info-row strong {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}
.info-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 620px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.info-row a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
}
.info-row a:hover {
  text-decoration: underline;
}

/* Dělící linka */
.section-divider {
  width: 100%;
  height: 4px;
  margin: 40px auto 24px;
  background: linear-gradient(
    to right,
    rgba(242, 195, 0, 0) 0%,
    rgba(242, 195, 0, 0.95) 20%,
    rgba(242, 195, 0, 0.95) 80%,
    rgba(242, 195, 0, 0) 100%
  );
  border-radius: 50px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .section-divider {
    height: 3px;
    margin: 32px auto 18px;
    background: linear-gradient(
      to right,
      rgba(242, 195, 0, 0) 0%,
      rgba(242, 195, 0, 1) 35%,
      rgba(242, 195, 0, 1) 65%,
      rgba(242, 195, 0, 0) 100%
    );
  }
}


/* Footer */
footer {
  position: relative;             
  background: #0f1113;
  color: #e5e7eb;
  padding: 40px 0 22px;
  margin-top: 0;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0f1113;
  z-index: -1;
}


footer .cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
@media (max-width: 980px) {
  footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 580px) {
  footer .cols {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.6rem;
}
.footer-text {
  color: #cbd5e1;
}
footer a {
  color: #e5e7eb;
  opacity: 0.9;
}
footer small {
  display: block;
  text-align: center;
  color: #9aa3af;
  margin-top: 14px;
}
.ai-note {
  display: block;
  text-align: center;
  color: #9aa3af;
  opacity: 0.7;
  margin-top: 8px;
  font-size: 0.9rem;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ sekce */

/* klasický jedno-sloupcový accordion */
.faq {
  max-width: 760px;
  margin: 1.8rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(250, 204, 21, 0.85);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 251, 232, 0.9),
    rgba(255, 243, 205, 0.96)
  );
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
  font-size: 0.97rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease,
    transform 0.18s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  border-color: #fbbf24;
}

.faq-item.is-open {
  background: linear-gradient(135deg, #fffdf3, #fff7d1);
  border-color: #f59e0b;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #facc15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-icon {
  background: #111;
  color: #fff;
  transform: rotate(90deg) scale(1.05);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  transition: max-height 0.28s ease, padding-top 0.25s ease,
    padding-bottom 0.25s ease;
}

.faq-item.is-open + .faq-a {
  padding-top: 10px;
  padding-bottom: 26px;
}

.faq-a p {
  margin: 0 0 0.55rem;
}
.faq-a p:last-child {
  margin-bottom: 0.25rem;
}

.faq-a ul {
  margin: 0 0 0.55rem 1.15rem;
  padding: 0;
}

/* Responsivita FAQ */
@media (max-width: 900px) {
  .faq {
    max-width: 100%;
    margin-top: 1.4rem;
  }
}

@media (max-width: 600px) {
  .faq {
    margin-top: 1.2rem;
  }
  .faq-item {
    padding: 11px 12px;
  }
}


/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: rgba(15, 17, 19, 0.97);
  color: #e5e7eb;
  z-index: 1400;
  padding: 10px 0 12px;
  font-size: 0.9rem;
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 220px;
  min-width: 0;
}
.cookie-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.cookie-text p {
  margin: 0.1rem 0;
  color: #e5e7eb;
}
.cookie-links a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-btn {
  font-size: 0.9rem;
  padding-inline: 1rem;
}
@media (max-width: 720px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .cookie-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
/* Cookie lišta */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;           /* dole přes celou šířku */
  z-index: 1200;
  background: rgba(15, 17, 19, 0.96);
  color: #e5e7eb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.35);
}

.cookie-banner .cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
}

.cookie-banner .cookie-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cookie-banner .cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cookie-banner .cookie-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner .cookie-btn {
  min-width: 120px;
  justify-content: center;
}

/* Schování bannery, dokud JS nevyhodnotí souhlas */
.is-hidden {
  display: none !important;
}

/* Responsivita cookie lišty */
@media (max-width: 800px) {
  .cookie-banner .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 16px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
  }
  .cookie-banner .cookie-btn {
    flex: 1 1 auto;
  }
}

