/* === 3TRAPOL — Akáciové téma === */

:root {
  --acacia-darkest: #1a120b;
  --acacia-dark: #2b1f15;
  --acacia: #5c3a21;
  --acacia-mid: #8b6f47;
  --acacia-light: #c68642;
  --cream: #f5e6d3;
  --cream-bright: #fff8e7;
  --text: #f5e6d3;
  --text-muted: rgba(245, 230, 211, 0.75);
  --text-faint: rgba(245, 230, 211, 0.5);
  --accent: #d4a574;
  --border: rgba(198, 134, 66, 0.25);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(198, 134, 66, 0.25);

  --max-w: 1200px;
  --pad: clamp(1rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--acacia-darkest);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--cream-bright); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream-bright);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { color: var(--text-muted); }

/* === NAVIGACE === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 18, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem var(--pad);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--cream-bright);
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream-bright);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--acacia-darkest) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--cream-bright);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

.nav-phone {
  color: var(--accent) !important;
  font-weight: 600;
  border: 1.5px solid rgba(198, 134, 66, 0.5);
  padding: 0.4rem 0.9rem !important;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.nav-phone:hover {
  background: rgba(198, 134, 66, 0.1);
  color: var(--cream-bright) !important;
  border-color: var(--accent);
}
.nav-phone::after { display: none !important; }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream-bright);
  cursor: pointer;
  font-size: 1.6rem;
  padding: 0.3rem;
}

@media (max-width: 768px) {
  .burger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--acacia-darkest);
    padding: 1.5rem var(--pad);
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* === HERO === */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 8rem var(--pad) 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(198, 134, 66, 0.15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(92, 58, 33, 0.3), transparent 60%),
    linear-gradient(180deg, var(--acacia-darkest), var(--acacia-dark));
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23c68642' opacity='0.15'/></svg>");
  opacity: 0.5;
}

.hero-inner {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-inner .hero-lead { margin-left: auto; margin-right: auto; }
.hero-inner .btn-row { justify-content: center; }
.hero-inner .hero-stats { justify-content: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.1em;
  height: 0.2em;
  background: rgba(198, 134, 66, 0.25);
  z-index: -1;
}

.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--acacia-darkest);
}
.btn-primary:hover {
  background: var(--cream-bright);
  color: var(--acacia-darkest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-bright);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--acacia-mid), var(--acacia)),
    var(--acacia-dark);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 18, 11, 0.6));
  pointer-events: none;
}

.hero-emblem {
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acacia-darkest);
  border: 3px solid var(--cream-bright);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 0 0 6px rgba(245, 230, 211, 0.08);
}

.hero-emblem-inner {
  text-align: center;
  color: var(--cream-bright);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}
.hero-emblem-inner span {
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.3em;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.4em;
}
.hero-emblem-tools {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3em;
  opacity: 0.9;
}

/* === SEKCE === */
.section {
  padding: 5rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: 5rem 0;
  background: var(--acacia-dark);
}
.section-full > .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: block;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }

/* === O MNĚ === */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--acacia), var(--acacia-dark));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; }
.about-text p:last-child { margin-bottom: 0; }

.value-list {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 500;
}
.value-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* === SLUŽBY GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--acacia-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(198, 134, 66, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-icon svg { display: block; }

.service-card h3 {
  margin-bottom: 0.6rem;
  color: var(--cream-bright);
}
.service-card p { font-size: 0.95rem; }

.service-card ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}
.service-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* === GALERIE === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--acacia-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  color: var(--cream-bright);
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 18, 11, 0.9));
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

/* === CTA BLOCK === */
.cta-block {
  background: linear-gradient(135deg, var(--acacia), var(--acacia-mid));
  border-radius: var(--radius-lg);
  padding: 3.5rem var(--pad);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 248, 231, 0.15), transparent 50%);
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
  margin-bottom: 0.75rem;
}
.cta-block p {
  color: rgba(255, 248, 231, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* === KONTAKT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
  display: grid;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(198, 134, 66, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream-bright);
}

.contact-form {
  background: var(--acacia-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--acacia-darkest);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-bright);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 0.75rem;
}

/* === FOOTER === */
.footer {
  background: var(--acacia-darkest);
  border-top: 1px solid var(--border);
  padding: 3rem var(--pad) 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream-bright);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer ul { list-style: none; display: grid; gap: 0.5rem; }
.footer ul a { color: var(--text-muted); font-size: 0.95rem; }
.footer ul a:hover { color: var(--accent); }

.footer-tag {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* === SERVICES LINE LIST === */
.services-line-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}
.service-line-item {
  display: grid;
  grid-template-columns: 3rem 1.2fr 1.8fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.2s;
}
.service-line-item:first-child { border-top: 1px solid var(--border); }
.service-line-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  padding-top: 0.3rem;
  letter-spacing: 0.05em;
}
.service-line-item h3 {
  font-size: 1.15rem;
  color: var(--cream-bright);
  font-weight: 600;
}
.service-line-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 700px) {
  .service-line-item {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }
  .service-line-item p { grid-column: 2 / -1; }
}

/* === REVEAL ANIMACE === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* === PAGE HEADER (podstránky) === */
.page-head {
  padding: 8rem var(--pad) 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(198, 134, 66, 0.15), transparent 60%),
    var(--acacia-darkest);
  border-bottom: 1px solid var(--border);
}
.page-head .eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.75rem;
}
.page-head p {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(.92);
  transition: transform .3s;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: var(--cream-bright);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-label {
  position: absolute;
  bottom: 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  text-align: center;
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.7);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* === REFERENCE PAGE === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--acacia-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.review-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}
.review-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(198, 134, 66, 0.12);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  color: var(--cream-bright);
  font-size: 0.93rem;
}
.review-loc {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.1rem;
}
.review-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(198, 134, 66, 0.1);
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stats-band-item:nth-child(even) { border-right: none; }
}
.stats-band-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stats-band-label {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-top: 0.4rem;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  background: var(--acacia-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--cream-bright);
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  gap: 1rem;
}
.faq-question:hover { background: rgba(198, 134, 66, 0.05); }
.faq-arrow {
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* === KATEGORIE PRACÍ (homepage) === */
.work-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) {
  .work-categories { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .work-categories { grid-template-columns: repeat(2, 1fr); }
}

.work-cat {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.work-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-cat:hover img { transform: scale(1.07); }
.work-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 18, 11, 0.88));
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1rem;
  transition: background 0.3s;
}
.work-cat:hover .work-cat-overlay {
  background: linear-gradient(180deg, rgba(26, 18, 11, 0.15) 0%, rgba(26, 18, 11, 0.92) 65%);
}
.work-cat-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: var(--cream-bright);
  line-height: 1.3;
}

/* === GALERIE — kategoriový nav === */
.cat-nav {
  background: var(--acacia-dark);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad);
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
  position: sticky;
  top: 64px;
  z-index: 50;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cat-nav a:hover,
.cat-nav a.active {
  color: var(--cream-bright);
  border-bottom-color: var(--accent);
}

/* Galerie — sekce odd/even pozadí */
.gallery-section { padding: 4rem 0; }
.gallery-section:nth-child(odd) { background: var(--acacia-darkest); }
.gallery-section:nth-child(even) { background: var(--acacia-dark); }
.gallery-section .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.gallery-section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.gallery-section-head h2 { margin: 0; }
.gallery-section-head .count {
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* === MAPA === */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}
