:root {
  --ink: #17211d;
  --muted: #66726b;
  --paper: #f6f1e8;
  --surface: #fffaf1;
  --line: rgba(23, 33, 29, 0.12);
  --leaf: #2f6b4f;
  --moss: #8b8f52;
  --clay: #bd6945;
  --sky: #d7e6ef;
  --shadow: 0 20px 60px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: #fff;
  background: rgba(23, 33, 29, 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-solid {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.12);
}

.brand,
.nav,
.hero-actions,
.location-layout,
.cta,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  min-width: max-content;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(135deg, var(--moss), var(--leaf));
  transform: rotate(45deg);
}

.nav {
  gap: 18px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.header-action {
  min-width: 132px;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  background: var(--clay);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-photo,
.gallery-item img {
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 22, 18, 0.76), rgba(14, 22, 18, 0.42) 48%, rgba(14, 22, 18, 0.16)),
    linear-gradient(180deg, rgba(14, 22, 18, 0.12), rgba(14, 22, 18, 0.22));
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: clamp(150px, 24vh, 230px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clay);
}

.hero .eyebrow {
  color: #ffd1a7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(760px, 100%);
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-text {
  width: min(640px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--clay);
  box-shadow: 0 10px 28px rgba(189, 105, 69, 0.28);
}

.button.primary.dark {
  background: var(--ink);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.button.is-disabled {
  opacity: 0.72;
  cursor: default;
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.quick-facts {
  width: min(1120px, calc(100% - 32px));
  margin: -46px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quick-facts article {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.quick-facts strong {
  font-size: 22px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  width: min(640px, 100%);
}

.about-grid,
.split,
.location-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 38px;
}

.about-copy {
  display: grid;
  gap: 12px;
}

.note-card {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.note-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--leaf);
  font-weight: 800;
}

.note-card p {
  margin-bottom: 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
  background: #e8eee3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--leaf);
  font-weight: 800;
}

.feature-grid p,
.rules-list p {
  margin-bottom: 0;
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.7fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-item,
.photo-placeholder {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--sky);
}

.gallery-item {
  padding: 0;
  cursor: zoom-in;
}

.gallery-item.is-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.booking-section {
  padding-top: 88px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.booking-panel,
.booking-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(23, 33, 29, 0.1);
}

.booking-panel {
  padding: 24px;
}

.booking-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.booking-panel-head span {
  font-size: 24px;
  font-weight: 800;
}

.booking-panel-head strong {
  color: var(--leaf);
  font-size: 14px;
}

.calendar-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: -2px 0 16px;
}

.calendar-toolbar button {
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #f3eee4;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.calendar-preview {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: 8px;
}

.calendar-preview span,
.calendar-preview button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 6px;
  font: inherit;
}

.calendar-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.calendar-preview button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #f3eee4;
  cursor: pointer;
}

.calendar-preview .is-outside {
  color: rgba(23, 33, 29, 0.28);
  background: rgba(243, 238, 228, 0.52);
}

.calendar-preview .is-free {
  border-color: rgba(47, 107, 79, 0.26);
  background: rgba(47, 107, 79, 0.12);
}

.calendar-preview .is-busy {
  color: rgba(23, 33, 29, 0.42);
  text-decoration: line-through;
  background: rgba(189, 105, 69, 0.14);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.calendar-legend i {
  width: 12px;
  height: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f3eee4;
}

.calendar-legend i.free {
  border-color: rgba(47, 107, 79, 0.26);
  background: rgba(47, 107, 79, 0.32);
}

.calendar-legend i.busy {
  border-color: rgba(189, 105, 69, 0.16);
  background: rgba(189, 105, 69, 0.32);
}

.booking-copy {
  padding: 26px;
}

.discount-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

.booking-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.booking-note {
  margin-bottom: 0;
  font-size: 14px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: rgba(23, 33, 29, 0.68);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.16), rgba(189, 105, 69, 0.16)),
    #edf2eb;
}

.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list article {
  padding: 22px;
  border-left: 4px solid var(--clay);
  border-radius: 0 8px 8px 0;
  background: var(--surface);
}

.location-layout {
  align-items: center;
}

.location-layout p {
  max-width: 650px;
  margin-bottom: 0;
}

.map-link {
  justify-self: end;
  padding: 16px 20px;
  border: 1px solid rgba(23, 33, 29, 0.14);
  border-radius: 8px;
  font-weight: 800;
  background: var(--surface);
}

.faq {
  display: grid;
  gap: 12px;
}

.ads-section {
  padding-top: 38px;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ad-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 230, 239, 0.72), rgba(255, 250, 241, 0.84)),
    var(--surface);
}

.ad-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--leaf);
  font-size: 13px;
  font-weight: 800;
}

.ad-card h3 {
  margin-bottom: 12px;
}

.ad-card p {
  margin-bottom: 20px;
  font-size: 15px;
}

.ad-link {
  color: var(--clay);
  font-weight: 800;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

details p {
  margin: -4px 24px 22px;
  font-size: 16px;
}

.cta {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 86px;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #203c31);
}

.cta .eyebrow,
.cta p,
.cta h2 {
  color: #fff;
}

.cta h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.site-footer {
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--leaf);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 14, 12, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .quick-facts,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .split,
  .location-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .map-link {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .brand span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-width: 98px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 132px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts article {
    min-height: auto;
    border-right: 0;
  }

  .section {
    padding: 70px 0;
  }

  .feature-grid,
  .gallery,
  .ads-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.is-large {
    grid-row: span 1;
  }

  .cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .booking-panel,
  .booking-copy {
    padding: 18px;
  }

  .booking-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .calendar-preview {
    gap: 6px;
  }

  .calendar-preview span,
  .calendar-preview button {
    min-height: 38px;
  }
}
