
:root {
  --paper: #f3f0e8;
  --paper-light: #faf8f3;
  --ink: #20231f;
  --muted: #666b64;
  --line: rgba(32, 35, 31, 0.16);
  --green: #304638;
  --green-dark: #213229;
  --white: #fff;
  --radius: 22px;
  --max: 1460px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 270px;
  height: auto;
}

.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.site-header nav a {
  text-decoration: none;
  color: #474b46;
  font-size: 14px;
  letter-spacing: .04em;
}

.site-header nav a:hover { color: var(--green); }

.intro {
  width: min(calc(100% - 56px), 980px);
  margin: 0 auto;
  padding: 112px 0 126px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
}

.intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9vw, 128px);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.045em;
}

.lead {
  max-width: 720px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.scroll-cue span {
  font-size: 20px;
  transition: transform .2s ease;
}

.scroll-cue:hover span { transform: translateY(4px); }

.stays {
  padding: 92px 28px 110px;
  background: var(--paper-light);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 46px;
}

.section-heading h2,
.shared h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
}

.stay-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stay-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}

.stay-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(34, 42, 36, .13);
}

.stay-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.stay-card:hover .stay-image img { transform: scale(1.035); }

.stay-content { padding: 28px 30px 32px; }

.stay-type {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

.stay-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
}

.stay-content > p:not(.stay-type) {
  min-height: 82px;
  margin: 20px 0 24px;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.card-link span {
  font-size: 20px;
  transition: transform .2s ease;
}

.card-link:hover span { transform: translateX(5px); }

.shared {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  padding: 126px 0 132px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: start;
}

.shared-text {
  padding-top: 35px;
  color: var(--muted);
  font-size: 19px;
}

.shared-text p { margin: 0 0 24px; }

.contact {
  padding: 110px 28px 118px;
  text-align: center;
  color: var(--white);
  background: var(--green-dark);
}

.contact .eyebrow { color: #c8d4ca; }

.contact h2 { color: var(--white); }

.contact-links,
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
}

.contact-links {
  margin-top: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.contact-links a,
.social-links a { text-decoration: none; }

.social-links {
  margin-top: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact a:hover { text-decoration: underline; }

footer {
  padding: 28px;
  color: #666b64;
  background: var(--paper-light);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-main,
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a { text-decoration: none; }

.footer-links a:hover { text-decoration: underline; }

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 36px), var(--max));
  }

  .brand img { width: 230px; }

  .site-header nav { gap: 20px; }

  .stay-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .stay-card {
    display: grid;
    grid-template-columns: 48% 52%;
  }

  .stay-image { aspect-ratio: auto; min-height: 330px; }

  .stay-content > p:not(.stay-type) { min-height: 0; }

  .shared { gap: 52px; }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 30px);
    padding: 15px 0;
    justify-content: center;
  }

  .brand img { width: 215px; }

  .site-header nav { display: none; }

  .intro {
    width: calc(100% - 34px);
    padding: 80px 0 86px;
  }

  .intro h1 { font-size: clamp(56px, 18vw, 88px); }

  .lead {
    margin-top: 30px;
    font-size: 17px;
  }

  .stays { padding: 68px 16px 78px; }

  .section-heading { margin-bottom: 30px; }

  .stay-card { display: block; }

  .stay-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .stay-content { padding: 25px 24px 28px; }

  .stay-content h3 { font-size: 30px; }

  .shared {
    width: calc(100% - 34px);
    padding: 84px 0 92px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shared-text {
    padding-top: 0;
    font-size: 17px;
  }

  .contact { padding: 82px 18px 88px; }

  .contact-links {
    flex-direction: column;
    gap: 12px;
    font-size: 21px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main,
  .footer-links {
    justify-content: center;
  }
}


.legal-page {
  background: var(--paper-light);
}

.legal-page .legal-header,
.legal-page header {
  position: static;
}

.legal-page main,
.legal-page .legal-main {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 68px 0 100px;
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.legal-page h1 { font-size: clamp(42px, 6vw, 68px); line-height: 1.05; }
.legal-page h2 { margin-top: 44px; font-size: 30px; }
.legal-page p,
.legal-page li { color: #4f554f; }


/* v0.4 — compact desktop introduction, accommodation cards higher on screen */
@media (min-width: 1041px) {
  .intro {
    padding: 58px 0 66px;
  }

  .intro h1 {
    font-size: clamp(54px, 5.8vw, 88px);
    line-height: 0.96;
  }

  .lead {
    max-width: 760px;
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.65;
  }

  .scroll-cue {
    margin-top: 22px;
  }

  .stays {
    padding-top: 62px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 4.2vw, 64px);
  }
}


/* v0.5 — slightly smaller desktop intro */
@media (min-width: 1041px) {
  .intro {
    padding: 46px 0 54px;
  }

  .intro h1 {
    font-size: clamp(50px, 5.2vw, 78px);
  }

  .lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .scroll-cue {
    margin-top: 18px;
  }

  .stays {
    padding-top: 52px;
  }
}


/* v0.6 — homepage starts directly with the three accommodation options */
.stays {
  padding-top: 72px;
}

.section-heading {
  max-width: 980px;
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .stays {
    padding-top: 54px;
  }

  .section-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }
}


/* v0.7 — privacy content below cards and complete shared contact details */
.shared-inline {
  width: min(100%, var(--max));
  margin: 82px auto 0;
  padding-top: 68px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: start;
}

.shared-inline h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
}

.shared-inline-text {
  padding-top: 35px;
  color: var(--muted);
  font-size: 19px;
}

.shared-inline-text p {
  margin: 0 0 24px;
}

.contact {
  text-align: left;
}

.contact > .eyebrow,
.contact > h2 {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.contact > h2 {
  margin-top: 0;
}

.contact-columns {
  width: min(100%, var(--max));
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr .9fr;
  gap: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.contact-column p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}

.contact-column p:first-child {
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
}

.contact-column a {
  color: inherit;
  text-decoration: none;
}

.contact-column a:hover {
  text-decoration: underline;
}

.contact-legal p:first-child {
  margin-bottom: 8px;
  font-weight: 400;
}

footer {
  justify-content: center;
}

@media (max-width: 1040px) {
  .shared-inline {
    gap: 52px;
  }

  .contact-columns {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .contact-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shared-inline {
    margin-top: 58px;
    padding-top: 50px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shared-inline-text {
    padding-top: 0;
    font-size: 17px;
  }

  .contact {
    text-align: center;
  }

  .contact-columns {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-legal {
    grid-column: auto;
  }

  .contact-column p {
    font-size: 14px;
  }
}


/* v0.8 — closing note under the accommodation overview */
.more-on-cards {
  margin-top: 8px !important;
}

.welcome-note {
  margin: 30px 0 0 !important;
  text-align: center;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .welcome-note {
    margin-top: 24px !important;
    font-size: 24px;
  }
}


/* v0.9 — only the closing welcome line remains under the three cards */
.shared-inline-welcome-only {
  display: block;
  margin-top: 64px;
  padding-top: 46px;
  text-align: center;
}

.welcome-note-only {
  margin: 0 !important;
  text-align: center;
  font-size: 32px;
}

@media (max-width: 720px) {
  .shared-inline-welcome-only {
    margin-top: 46px;
    padding-top: 36px;
  }

  .welcome-note-only {
    font-size: 26px;
  }
}


/* v0.12 — verified guest reviews directly below the three accommodation cards */
.reviews-section {
  padding: 106px 28px 112px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.reviews-heading {
  width: min(100%, var(--max));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 70px;
  align-items: end;
}

.reviews-heading .eyebrow {
  margin-bottom: 15px;
}

.reviews-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
}

.reviews-intro {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.review-overview {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.property-review {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
  display: flex;
  flex-direction: column;
}

.review-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.review-card-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.1;
  font-weight: 400;
}

.review-score {
  flex: 0 0 auto;
  min-width: 80px;
  padding: 9px 11px;
  border-radius: 14px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.score-value {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}

.score-stars {
  display: block;
  margin-top: 4px;
  color: #dfbe70;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.score-meta {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  line-height: 1.2;
}

.review-score-loading {
  opacity: .58;
}

.review-quote {
  flex: 1;
  margin: 28px 0 24px;
  padding: 0;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.55;
}

.review-quote::before {
  content: "“";
  display: block;
  height: 24px;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 54px;
  line-height: .7;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.review-verified,
.review-date {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.review-date {
  text-align: right;
}

.review-placeholder,
.review-empty,
.review-error {
  flex: 1;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}

.reviews-footer {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.reviews-footer p {
  margin: 0;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.reviews-link span {
  font-size: 20px;
  transition: transform .2s ease;
}

.reviews-link:hover span {
  transform: translateX(5px);
}

.reviews-noscript {
  width: min(100%, var(--max));
  margin: 24px auto 0;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-intro {
    max-width: 720px;
  }

  .review-overview {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .property-review {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .reviews-section {
    padding: 72px 16px 78px;
  }

  .reviews-heading {
    margin-bottom: 30px;
  }

  .reviews-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .reviews-intro {
    font-size: 16px;
  }

  .property-review {
    padding: 24px;
  }

  .review-card-heading h3 {
    font-size: 27px;
  }

  .review-quote {
    font-size: 19px;
  }

  .reviews-footer {
    display: block;
  }

  .reviews-link {
    margin-top: 14px;
  }
}

/* v0.13 — original property logos in review cards */
.review-property-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.review-property-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.review-property-icon-tent {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.review-property-wordmark {
  display: block;
  width: min(210px, 100%);
  height: auto;
}

.review-property-wordmark-stany {
  width: min(220px, 100%);
}

.review-property-brand:hover .review-property-wordmark {
  opacity: .72;
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .review-property-brand {
    gap: 8px;
  }

  .review-property-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .review-property-wordmark,
  .review-property-wordmark-stany {
    width: 160px;
  }
}

@media (max-width: 720px) {
  .review-card-heading {
    gap: 12px;
  }

  .review-property-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .review-property-wordmark,
  .review-property-wordmark-stany {
    width: min(190px, 52vw);
  }
}


/* v0.14 — tooltip nad logem objektu v recenzích */
.review-property-brand {
  position: relative;
}

.review-property-brand::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 8;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease;
}

.review-property-brand::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 8;
  width: 9px;
  height: 9px;
  background: var(--green-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity .18s ease;
}

.review-property-brand:hover::after,
.review-property-brand:hover::before,
.review-property-brand:focus-visible::after,
.review-property-brand:focus-visible::before {
  opacity: 1;
}

.review-property-brand:hover::after,
.review-property-brand:focus-visible::after {
  transform: translate(-50%, 0);
}

@media (hover: none) {
  .review-property-brand::before,
  .review-property-brand::after {
    display: none;
  }
}

/* v0.15 — three newest published reviews across all accommodation units */
.review-loading-card {
  min-height: 370px;
}

.reviews-state-message {
  grid-column: 1 / -1;
  min-height: 180px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}

.reviews-state-message a {
  color: var(--green);
  font-weight: 700;
}
