:root {
  --bg: #f8f6f1;
  --surface: #ffffff;
  --surface-soft: #f0eee7;
  --text: #1f2b24;
  --muted: #59655f;
  --primary: #234034;
  --primary-2: #3f684e;
  --accent: #c49352;
  --line: rgba(35, 64, 52, 0.12);
  --shadow: 0 20px 45px rgba(24, 40, 32, 0.12);
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
}
* { 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(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.topbar {
  background: var(--primary);
  color: #f5efe4;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.92rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 246, 241, 0.82);
  border-bottom: 1px solid rgba(35, 64, 52, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(35, 64, 52, 0.12);
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; color: var(--muted); font-size: 0.9rem; }
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a { color: var(--muted); font-weight: 600; }
.site-nav a:hover { color: var(--primary); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 12px 24px rgba(35, 64, 52, 0.22);
}
.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-nav {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary) !important;
}
.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(15, 25, 20, 0.72) 0%, rgba(15, 25, 20, 0.55) 45%, rgba(15, 25, 20, 0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 64px 0;
  max-width: 760px;
}
.eyebrow, .section-label {
  display: inline-block;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 16px 0 18px;
}
.hero p { font-size: 1.12rem; max-width: 60ch; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-facts li {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.trust-strip {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}
.trust-grid {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px;
}
.trust-grid div {
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 4px;
}
.trust-grid span { color: var(--muted); font-size: 0.95rem; }
.section { padding: 96px 0; }
.section-soft { background: var(--surface-soft); }
.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.section h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.1; margin: 12px 0 18px; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-inline: auto auto; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.mini-card, .amenity-card, .price-card, .contact-card, .booking-info-card, .map-card-body, .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-card { padding: 22px; }
.stacked-images { display: grid; gap: 14px; }
.img-large {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.stack-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stack-row img, .room-showcase img, .highlight-images img, .map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity-card { padding: 26px; }
.amenity-card ul, .price-card ul, .booking-info-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}
.room-showcase {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.room-showcase img { aspect-ratio: 1 / 1; }
.highlight-panel {
  background: linear-gradient(135deg, #20392f, #315141);
  color: white;
  border-radius: 32px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.highlight-panel .section-label { color: #e6c69b; }
.text-link { color: #f2d5ae; font-weight: 700; }
.highlight-images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.price-card { padding: 30px; }
.price-card.featured {
  border-color: rgba(196, 147, 82, .45);
  box-shadow: 0 22px 40px rgba(35, 64, 52, .14);
}
.season { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .84rem; }
.price { font-size: 2.5rem; font-weight: 800; margin: 16px 0 6px; }
.price small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-note { text-align: center; color: var(--muted); margin-top: 18px; }
.location-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.location-list div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
}
.map-card { overflow: hidden; background: var(--surface); border-radius: 28px; box-shadow: var(--shadow); }
.map-card img { aspect-ratio: 16 / 10; }
.map-card-body { border: 0; border-top: 1px solid var(--line); border-radius: 0 0 28px 28px; padding: 26px; box-shadow: none; }
.map-card .btn-secondary { background: var(--surface-soft); color: var(--primary); border-color: var(--line); }
.section-gallery { background: linear-gradient(180deg, var(--surface) 0, #f7f3eb 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gallery-item:hover img { transform: translateY(-3px); }
.form-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.booking-info-card, .contact-card { padding: 24px; }
.contact-card {
  display: grid;
  gap: 6px;
}
.form-card { padding: 28px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: repeat(2, 1fr); }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(35, 64, 52, 0.15);
  background: #fff;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(196, 147, 82, .28);
  border-color: rgba(35, 64, 52, 0.28);
}
.estimate {
  margin: 16px 0;
  padding: 15px 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 600;
}
.btn-full { width: 100%; margin-top: 4px; }
.form-note { color: var(--muted); font-size: .92rem; }
.site-footer {
  background: #18261f;
  color: rgba(255,255,255,.88);
  padding-top: 46px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-grid p { color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 18px;
}
.lightbox {
  width: min(92vw, 980px);
  padding: 16px;
  border: 0;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
}
.lightbox::backdrop { background: rgba(10, 16, 13, .76); }
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
}
.lightbox-close {
  border: 0;
  background: var(--surface-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-left: auto;
  display: block;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .trust-grid, .amenities-grid, .room-showcase, .gallery-grid, .footer-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .highlight-panel, .form-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 80px;
    right: 16px;
    left: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .site-nav.open { display: flex; }
  .trust-grid, .amenities-grid, .room-showcase, .gallery-grid, .price-grid, .feature-cards, .footer-grid, .form-row.two, .form-row.three, .highlight-images, .stack-row { grid-template-columns: 1fr; }
  .hero { min-height: 82svh; }
  .section { padding: 76px 0; }
  .img-large { min-height: 300px; }
}
