/* GREAT PATH a.s. – statická kópia pôvodného Wix webu */
:root {
  --orange: #f3541c;
  --black: #000;
  --white: #fff;
  --grey: #ececec;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --header-h: 120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { font-family: var(--serif); font-weight: 600; color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { width: 100%; max-width: 980px; margin: 0 auto; padding: 0 20px; }

/* Typografia (hodnoty z pôvodného webu) */
.t-xl { font-size: 88px; line-height: 1.2; font-weight: 600; }
.t-lg { font-size: 50px; line-height: 1.34; font-weight: 600; }
.t-md { font-size: 40px; line-height: 1.35; font-weight: 700; }
.t-body { font-size: 22px; line-height: 1.41; font-weight: 600; }
.t-body p + p { margin-top: 31px; }
.center { text-align: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: var(--black); }
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 306px; height: auto; }
.nav { display: flex; gap: 26px; list-style: none; }
.nav a { font-family: var(--sans); font-weight: 400; font-size: 14px; color: var(--white); text-decoration: none; transition: color .2s; }
.nav a:hover, .nav a:focus-visible { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0; }

/* Hero */
.hero { min-height: 900px; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; text-align: center; color: var(--white); padding: 170px 20px 80px;
  background: #000 url("images/hero.jpg") center / cover no-repeat; }
.hero h1 { font-weight: 700; }
.hero .t-md { margin-top: 25px; }

/* O nás */
.about { background: var(--orange); color: var(--white); padding: 120px 0 130px; }
.about .portrait { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin: 0 auto 70px; }
.about h2 { margin-bottom: 22px; }
.about .t-body { max-width: 780px; margin: 0 auto; }

/* Služby */
.services-intro { padding: 120px 0 78px; }
.services-intro h2 { margin-bottom: 22px; }
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; background: var(--black); color: var(--white); }
.split .media { background-size: cover; background-position: center; min-height: 100%; }
.split .text { display: flex; flex-direction: column; justify-content: center; padding: 60px 20px; max-width: 490px; }
.split .text h3 { margin-bottom: 24px; }
.split.reverse .text { justify-self: start; }
.split:not(.reverse) .text { justify-self: end; width: 100%; }

.hours { min-height: 480px; background: var(--orange); }
.hours .text { text-align: left; }

/* Kontakt */
.contact { background: var(--grey); padding: 60px 0 0; }
.contact h2 { color: var(--orange); margin-bottom: 22px; }
.contact .t-body { padding-bottom: 60px; }
.contact .t-body p + p { margin-top: 24px; }
.contact a { text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.map { display: block; width: 100%; height: 345px; border: 0; }

/* Footer */
.site-footer { background: var(--grey); font-family: var(--sans); font-weight: 400; padding: 40px 0 10px; font-size: 15px; line-height: 1.875; }
.site-footer .row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 0 58px; }
.social { display: flex; gap: 10px; list-style: none; }
.social a { display: block; width: 20px; height: 20px; color: var(--black); }
.social a:hover { color: var(--orange); }
.social svg { width: 20px; height: 20px; fill: currentColor; }
.site-footer a { text-decoration: none; }
.copyright { text-align: center; font-size: 14px; margin-top: 22px; }

/* Responzivita */
@media (max-width: 900px) {
  :root { --header-h: 80px; }
  .logo img { width: 220px; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; gap: 0; background: var(--black); padding: 10px 20px 20px; }
  .nav.open { display: flex; }
  .nav a { display: block; padding: 12px 0; font-size: 16px; }
  .t-xl { font-size: 52px; }
  .t-lg { font-size: 38px; }
  .t-md { font-size: 28px; }
  .t-body { font-size: 20px; }
  .hero { min-height: 70vh; padding: 60px 16px; }
  .about { padding: 70px 0; }
  .about .portrait { margin-bottom: 40px; }
  .services-intro { padding: 70px 0 50px; }
  .split, .hours { grid-template-columns: 1fr; min-height: 0; }
  .split .media { min-height: 300px; order: -1; }
  .split .text, .split:not(.reverse) .text { max-width: none; padding: 50px 16px; justify-self: stretch; }
  .site-footer .row { padding: 0 16px; justify-content: center; text-align: center; flex-direction: column; gap: 6px; }
  .wrap { padding: 0 16px; }
}
@media (max-width: 480px) {
  .t-xl { font-size: 42px; }
}
