:root {
  --green: #172f19;
  --green-deep: #0f2414;
  --olive: #6e7a47;
  --sage: #d8d7c9;
  --cream: #f5f1e8;
  --paper: #fffaf1;
  --ink: #11180f;
  --muted: #4e574c;
  --line: rgba(23, 47, 25, .18);
  --white-soft: rgba(255, 250, 241, .92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Lato, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 24px clamp(24px, 6vw, 84px);
  color: white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.brand-mark {
  width: 34px;
  height: 46px;
  flex: 0 0 auto;
}

.icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a { opacity: .92; }
.main-nav a:hover { opacity: 1; }
.lang {
  display: flex;
  gap: 10px;
  padding-left: 6px;
}
.lang strong, .lang a { color: white; }
.lang strong { opacity: 1; }
.lang a { opacity: .72; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 4px;
  background: rgba(17, 24, 15, .18);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 505px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 15, .74) 0%, rgba(11, 18, 15, .44) 36%, rgba(11, 18, 15, .05) 72%),
    linear-gradient(0deg, rgba(11, 18, 15, .36), rgba(11, 18, 15, .06) 45%);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
  padding: 138px clamp(24px, 6vw, 84px) 46px;
}

h1, h2, h3 {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 {
  max-width: 530px;
  color: white;
  font-family: Caveat, "Brush Script MT", cursive;
  font-size: clamp(66px, 9vw, 100px);
  font-weight: 500;
  line-height: .82;
}
h2 { font-size: clamp(38px, 4.4vw, 52px); }
h3 { font-size: 25px; }
p { margin: 0 0 18px; color: var(--muted); }
.hero p {
  max-width: 470px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .95);
  font-size: 18px;
  line-height: 1.42;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn.primary { background: #234b24; color: white; border: 1px solid rgba(255, 255, 255, .15); }
.btn.secondary { background: var(--green); color: white; }
.btn.ghost { border: 1px solid rgba(255, 255, 255, .72); color: white; }

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.benefits div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 105px;
  padding: 22px 24px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
}
.benefits span { max-width: 190px; }
.benefits .icon { width: 43px; height: 43px; color: #314125; }

.section {
  padding: clamp(54px, 6.5vw, 86px) clamp(24px, 7vw, 88px);
}
.section.flush { padding: 0; }
.split {
  display: grid;
  grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}
.section-copy { max-width: 485px; }
.section-copy h2 { margin-bottom: 18px; }

.icon-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.icon-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 16px 0;
  color: #172015;
}
.icon-list .icon { width: 34px; height: 34px; margin-top: 2px; color: #304223; }

.check-list, .terms {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 11px 0;
  color: #344033;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 900;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}
.photo-mosaic img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}
.photo-mosaic img:first-child {
  grid-column: 1 / -1;
  height: 250px;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: stretch;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 74px) clamp(24px, 7vw, 70px);
}
.locality-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.locality-icons div {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--green);
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
}
.locality-icons .icon { width: 38px; height: 38px; }

.location {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}
.location figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}
.location img { width: 100%; }
figcaption { padding: 12px 4px 0; color: var(--muted); font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--green); background: var(--cream); font-weight: 700; font-size: 14px; }

.equipment {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; margin-bottom: 28px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.feature-grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  color: var(--green);
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery button {
  display: block;
  height: 210px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #d7d0c2;
  cursor: zoom-in;
}
.gallery button:nth-child(1), .gallery button:nth-child(7) { grid-column: span 2; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery button:hover img { transform: scale(1.035); }

.prices {
  display: grid;
  grid-template-columns: .72fr 1fr .95fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  background: radial-gradient(circle at 80% 15%, rgba(110, 122, 71, .24), transparent 34%), var(--green-deep);
  color: white;
}
.prices h2 { color: white; margin-bottom: 24px; }
.price-items {
  display: grid;
  gap: 26px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.price-grid article {
  min-height: 140px;
  padding: 22px;
  border: 1px solid rgba(245, 241, 232, .32);
}
.price-grid span, .price-grid em {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-style: normal;
}
.price-grid strong {
  display: block;
  margin-top: 10px;
  color: white;
  font-size: 30px;
  line-height: 1;
}
.price-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.price-item .icon { color: var(--sage); }
.price-item span { display: block; color: rgba(255, 255, 255, .82); font-size: 15px; }
.price-item strong {
  display: block;
  margin-top: 2px;
  color: white;
  font-size: 29px;
  line-height: 1;
}
.terms {
  margin: 0;
  padding: 0;
  list-style: none;
}
.terms li {
  position: relative;
  padding-left: 27px;
  margin: 10px 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}
.terms li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-weight: 900;
}
.boat-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(245, 241, 232, .46);
  border-radius: 4px;
}
.boat-card img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}
.boat-card p { color: rgba(255, 255, 255, .78); font-size: 14px; margin: 6px 0 14px; }
.boat-card strong {
  display: block;
  color: white;
  font-size: 22px;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: .75fr 1fr 1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  background: var(--cream);
}
.contact-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-card > a {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(24px, 3vw, 36px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
.contact h2 { margin-bottom: 20px; }
.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.contact-links a, .map-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 700;
}
.contact-links .icon, .map-link .icon { width: 24px; height: 24px; }
.contact-note p { margin: 0; color: #242c22; }
.mini-map {
  display: block;
  position: relative;
}
.mini-map img {
  width: min(270px, 100%);
  margin-left: auto;
  opacity: .78;
}
.mini-map::after {
  content: "Otevřít mapu";
  position: absolute;
  right: 0;
  bottom: 4px;
  padding: 7px 11px;
  border-radius: 3px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 24px clamp(24px, 7vw, 88px);
  background: #102415;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 18;
  gap: 8px;
}
.mobile-cta a {
  flex: 1;
  padding: 13px 16px;
  border-radius: 4px;
  background: var(--green);
  color: white;
  text-align: center;
  font-weight: 900;
}
.mobile-cta a + a { background: var(--olive); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: rgba(8, 16, 10, .92);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox button {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: white;
  cursor: pointer;
}
.lightbox-close { top: 22px; right: 22px; width: 44px; height: 44px; font-size: 30px; }
.lightbox-prev, .lightbox-next { top: 50%; width: 52px; height: 52px; font-size: 42px; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 1050px) {
  .nav-toggle { display: block; }
  .site-header {
    position: absolute;
    min-height: 76px;
    padding: 18px 22px;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px 24px;
    background: rgba(17, 24, 15, .95);
    border: 1px solid rgba(255, 255, 255, .18);
  }
  .main-nav.is-open { display: flex; }
  .benefits, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .split, .location-band, .location, .prices, .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .boat-card { max-width: 560px; }
  .mini-map img { margin-left: 0; }
}

@media (max-width: 680px) {
  body { padding-bottom: 66px; }
  .brand { font-size: 12px; gap: 10px; }
  .brand-mark { width: 28px; height: 38px; }
  .hero { min-height: 570px; }
  .hero-content { padding: 118px 22px 38px; }
  h1 { font-size: 62px; }
  h2 { font-size: 38px; }
  .hero-actions { gap: 12px; }
  .btn { width: 100%; }
  .benefits, .feature-grid, .locality-icons, .gallery { grid-template-columns: 1fr; }
  .benefits div {
    justify-content: flex-start;
    min-height: 78px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 46px 22px; }
  .photo-mosaic { grid-template-columns: 1fr 1fr; }
  .photo-mosaic img, .photo-mosaic img:first-child { height: 170px; grid-column: auto; }
  .location-photo img { min-height: 260px; }
  .gallery button, .gallery button:nth-child(1), .gallery button:nth-child(7) {
    grid-column: auto;
    height: 280px;
  }
  .price-item, .boat-card { grid-template-columns: 1fr; }
  .boat-card img { width: 100%; height: 180px; }
  .mobile-cta { display: flex; }
  .lightbox { padding: 58px 14px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 20px; transform: none; }
}
