:root {
  --tan: #c9a272;
  --tan-dark: #b3895a;
  --black: #1a1a1a;
  --gray-bg: #f7f5f2;
  --white: #ffffff;
  --text: #2b2b2b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.placeholder-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--tan-dark);
  border: 1px dashed var(--tan-dark);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

/* Coming soon page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 18px;
  background: var(--gray-bg);
}

.coming-soon-logo { width: 140px; margin-bottom: 8px; }

.coming-soon h1 { font-size: 1.8rem; color: var(--black); max-width: 600px; }

.coming-soon p { color: #555; max-width: 480px; }

.coming-soon-contact {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
}

.coming-soon-contact strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tan-dark);
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  z-index: 100;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-link img { height: 56px; }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--tan-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}

/* Hero */
.hero {
  margin-top: 76px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #3a3a3a 100%);
  color: var(--white);
  padding: 70px 20px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.2;
  text-wrap: balance;
}

.hero h1 span { color: var(--tan); }

.hero p {
  font-size: 1.1rem;
  color: #ddd;
  margin: 0 auto 30px;
  max-width: 620px;
}

.btn {
  display: inline-block;
  background: var(--tan);
  color: var(--black);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: var(--tan-dark); }

/* Showcase / carousel section */
.showcase {
  background: var(--black);
  padding: 0 20px 70px;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.carousel-pane { position: relative; overflow: hidden; }
.carousel-pane img { width: 100%; height: 100%; object-fit: cover; }

.carousel-pane .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(0,0,0,0.55);
}

.carousel-pane .tag.after { background: var(--tan); color: var(--black); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-arrow:hover { background: rgba(0,0,0,0.75); }
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel-dots .dot.active { background: var(--tan); }

.carousel-caption {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #bbb;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
section { padding: 80px 20px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  color: var(--tan-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

h2 { font-size: 2rem; margin-bottom: 24px; color: var(--black); }

.bg-gray { background: var(--gray-bg); }

/* O firme */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-grid p { margin-bottom: 16px; color: #444; }

.facts {
  background: var(--white);
  border: 1px solid #e6e1d8;
  border-radius: 10px;
  padding: 24px;
}

.facts dt { font-weight: 700; color: var(--black); margin-top: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.facts dt:first-child { margin-top: 0; }
.facts dd { color: #555; }

/* Co od nas muzete cekat */
.expect { margin-top: 60px; }

.expect h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 22px;
}

.expect-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px 32px;
}

.expect-list li {
  border-top: 2px solid var(--tan);
  padding-top: 14px;
  font-size: 0.92rem;
  color: #555;
}

.expect-list strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Novinky */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card {
  background: var(--white);
  border: 1px solid #e6e1d8;
  border-radius: 10px;
  overflow: hidden;
}

.news-thumb {
  height: 150px;
  background: repeating-linear-gradient(45deg, #ece7de, #ece7de 10px, #e3ddd0 10px, #e3ddd0 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.news-card-body { padding: 18px 20px; }

.news-date {
  font-size: 0.78rem;
  color: var(--tan-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.news-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--black); }
.news-card p { font-size: 0.92rem; color: #555; }

/* Sluzby */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

.offer-card {
  background: var(--gray-bg);
  border: 1px solid #e6e1d8;
  border-radius: 10px;
  padding: 26px 24px;
}

.offer-icon { font-size: 1.8rem; margin-bottom: 12px; }

.offer-card p { font-size: 0.93rem; color: #444; }

.services-subheading { margin-bottom: 18px; }
.services-subheading h3 { font-size: 1.3rem; color: var(--black); margin-bottom: 8px; }
.services-subheading p { font-size: 0.93rem; color: #555; }

.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.services-table th {
  background: var(--black);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.services-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
  font-size: 0.93rem;
  vertical-align: top;
}

.services-table tr:last-child td { border-bottom: none; }

.price-tag { color: var(--tan-dark); font-weight: 700; white-space: nowrap; }

.services-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

/* Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-list { list-style: none; }
.contact-list li { margin-bottom: 18px; }
.contact-list strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--tan-dark); margin-bottom: 4px; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form textarea { min-height: 110px; resize: vertical; }

/* Past na roboty - lidem se nezobrazuje */
.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.form-status.ok { background: #e8f3ea; color: #1f5c2e; border: 1px solid #b8dcc1; }
.form-status.chyba { background: #fbeaea; color: #7d2222; border: 1px solid #e3b8b8; }

/* Footer */
footer {
  background: var(--black);
  color: #bbb;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
}

footer strong { color: var(--white); }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .carousel { aspect-ratio: 3/4; }
  .carousel-slide { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hamburger { display: flex; }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 12px rgba(0,0,0,0.08);
  }

  nav ul.open { max-height: 400px; }

  nav ul li { border-top: 1px solid #eee; }
  nav ul li a { display: block; padding: 16px 24px; }

  .hero h1 { font-size: 2rem; }
}
