:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-alt: #fcfaf7;
  --text: #1f2933;
  --muted: #667085;
  --line: #e7e0d6;
  --accent: #7a5a43;
  --accent-dark: #5f4433;
  --accent-soft: #efe7de;
  --shadow: 0 18px 40px rgba(31, 41, 51, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f3 0%, var(--bg) 180px, var(--bg) 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 243, 0.88);
  border-bottom: 1px solid rgba(122, 90, 67, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.header-cta,
.booking-button,
.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header-cta:hover,
.booking-button:hover,
.final-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding-top: 36px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 65ch;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-highlights span,
.chips span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--surface);
}

.section {
  padding: 48px 0 8px;
}
.section-heading {
  margin-bottom: 18px;
}
.section-heading.left { margin-bottom: 12px; }
.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}
.gallery-item {
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-large {
  grid-row: span 2;
  min-height: 420px;
}
.gallery-item:not(.gallery-large) {
  min-height: 200px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.content-card,
.booking-card,
.final-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.content-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 22px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.mini-stats div {
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.mini-stats strong {
  display: block;
  margin-bottom: 4px;
}
.mini-stats span { color: var(--muted); font-size: 0.92rem; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.amenities-grid article {
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.amenities-grid h3,
.review-card strong { margin-top: 0; }
.amenities-grid ul,
.trust-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.rating-big {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-card {
  border: 1px solid var(--line);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.review-card p,
.review-card span,
.booking-note,
.map-note,
.booking-links a,
.trust-list,
.content-card p,
.content-card li {
  color: var(--muted);
}
.review-card span { display: block; margin-top: 10px; font-size: 0.93rem; }

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  min-height: 360px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.booking-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: 24px;
}
.booking-kicker {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-weight: 700;
}
.booking-price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}
.booking-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}
.booking-form {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.booking-form label {
  display: grid;
  gap: 6px;
}
.booking-form span {
  font-size: 0.9rem;
  font-weight: 700;
}
.booking-form input,
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--surface-alt);
}
.booking-links {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.booking-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}
.final-cta {
  margin: 42px auto 60px;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.final-cta h2 { margin: 0 0 8px; }
.final-cta p { margin: 0; color: var(--muted); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.82);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 60;
}
.lightbox.active { display: grid; }
.lightbox-figure {
  margin: 0;
  max-width: min(1000px, 100%);
}
.lightbox-figure img {
  border-radius: 18px;
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.lightbox-figure figcaption {
  color: #fff;
  text-align: center;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .header-inner,
  .hero,
  .content-grid,
  .final-cta,
  .reviews-grid,
  .gallery-grid,
  .amenities-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }
  .header-inner {
    display: grid;
    padding: 14px 0;
  }
  .main-nav { gap: 12px; }
  .gallery-large,
  .gallery-item:not(.gallery-large) { min-height: auto; }
  .content-grid { display: grid; }
  .booking-card { position: static; }
  .reviews-grid,
  .mini-stats,
  .gallery-grid,
  .amenities-grid { display: grid; }
  .final-cta { align-items: flex-start; }
}
