:root {
  --bg: #e7d1aa;
  --bg-soft: #f0dfbd;
  --card: rgba(255, 246, 225, .76);
  --card-solid: #f7ead0;
  --ink: #2d2114;
  --muted: #7a6547;
  --line: rgba(88, 61, 31, .16);
  --accent: #5f6b35;
  --accent-dark: #3f4a20;
  --accent-2: #a36d2f;
  --shadow: 0 18px 48px rgba(65, 43, 18, .20);
  --shadow-soft: 0 10px 28px rgba(65, 43, 18, .14);
  --radius: 24px;
  --radius-sm: 17px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 245, 206, .75), transparent 32rem),
    linear-gradient(180deg, #dcc093 0%, var(--bg) 32%, #d8bd8f 100%);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
body::selection { background: rgba(95, 107, 53, .25); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(44, 31, 18, .10), transparent 22%, transparent 78%, rgba(44, 31, 18, .10)),
    radial-gradient(circle at 90% 12%, rgba(128, 85, 30, .22), transparent 18rem);
  z-index: -1;
}
.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}
.header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 18px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-shadow: 0 1px 10px rgba(255,255,255,.4);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(252, 237, 207, .72);
  border: 1px solid rgba(62, 42, 21, .12);
  box-shadow: 0 8px 22px rgba(64, 40, 16, .16);
}
.brand__mark svg { width: 22px; height: 22px; fill: none; stroke: #332313; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.brand__text { display: grid; line-height: 1.02; letter-spacing: -.02em; }
.brand__text b { font-size: 13px; font-weight: 850; }
.brand__text small { font-size: 11px; font-weight: 720; color: #59402a; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 244, 220, .34);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  color: rgba(45,33,20,.78);
}
.nav a { transition: opacity .2s ease, transform .2s ease; }
.nav a:hover { opacity: .74; transform: translateY(-1px); }
.btn {
  --btn-bg: var(--accent);
  --btn-color: #fff6df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 820;
  font-size: 13px;
  letter-spacing: -.01em;
  box-shadow: 0 10px 26px rgba(42, 55, 18, .20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(42, 55, 18, .24); }
.btn--primary { --btn-bg: linear-gradient(180deg, #73813e, #4f5d28); }
.btn--light { --btn-bg: rgba(255, 247, 227, .70); --btn-color: #2d2114; border: 1px solid rgba(73, 50, 23, .12); box-shadow: 0 8px 22px rgba(64, 40, 16, .10); }
.btn--glass { --btn-bg: rgba(255, 247, 227, .32); --btn-color: #322315; border: 1px solid rgba(69, 48, 24, .14); backdrop-filter: blur(16px); box-shadow: none; }
.btn--glass-dark { --btn-bg: rgba(255, 247, 227, .20); --btn-color: #fff1cf; border: 1px solid rgba(255,255,255,.22); box-shadow: none; }
.hero {
  position: relative;
  min-height: clamp(520px, 68vw, 720px);
  display: flex;
  align-items: stretch;
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 218, 178, .92) 0%, rgba(241, 218, 178, .58) 33%, rgba(241, 218, 178, .12) 62%),
    radial-gradient(circle at 16% 46%, rgba(255, 237, 181, .66), transparent 24rem);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 74px;
  padding-bottom: 90px;
}
.hero__content {
  width: min(680px, 96%);
  padding-top: 34px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #5f4a2f;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -.01em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 740px;
  margin-bottom: 17px;
  font-size: clamp(40px, 5.8vw, 86px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 920;
}
.hero p {
  max-width: 520px;
  margin-bottom: 26px;
  color: #4f3b25;
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 540;
}
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.lift { position: relative; z-index: 3; margin-top: -62px; }
.quick__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.info-card, .mini-card, .place-card, .contact-card, .price-card, .booking__copy, .seo-info__card {
  border: 1px solid rgba(255,255,255,.38);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.info-card {
  min-height: 138px;
  padding: 20px 18px 18px;
  border-radius: 22px;
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: #4f5d28;
  background: rgba(255, 249, 234, .56);
  border: 1px solid rgba(69, 47, 22, .08);
}
.icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3, .mini-card h3, .place-card h3 { margin-bottom: 5px; font-size: 18px; line-height: 1.05; letter-spacing: -.045em; font-weight: 900; }
.info-card p, .mini-card p, .place-card p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 560; }
.deal { padding: 16px 0 30px; }
.deal__grid {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.05fr;
  gap: 16px;
  align-items: stretch;
}
.price-card {
  min-height: 320px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff1d4;
  background:
    linear-gradient(160deg, rgba(83, 81, 42, .96), rgba(61, 70, 31, .96)),
    url("images/hero.webp") center/cover;
  border-color: rgba(255, 248, 221, .22);
  box-shadow: var(--shadow);
}
.label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff6df;
  font-size: 12px;
  font-weight: 800;
}
.price-card h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 940;
}
.price-card h2 span { font-size: .42em; letter-spacing: -.02em; opacity: .86; }
.price-card p { margin-bottom: 12px; color: rgba(255, 241, 212, .78); font-size: 13px; }
ul { padding-left: 18px; margin: 0; }
.price-card li { margin: 7px 0; color: rgba(255, 247, 228, .91); font-size: 13px; }
.deal__side { display: grid; gap: 16px; }
.mini-card { border-radius: var(--radius); padding: 22px; min-height: 152px; }
.photo-card, .gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #d6b681;
  box-shadow: var(--shadow-soft);
}
.photo-card img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .45s ease; }
.photo-card:hover img, .gallery__item:hover img { transform: scale(1.035); }
.gallery { padding: 8px 0 34px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
h2 { margin-bottom: 0; font-size: clamp(28px, 4vw, 48px); line-height: .98; letter-spacing: -.065em; font-weight: 930; }
.link-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(75, 50, 23, .12);
  border-radius: 999px;
  background: rgba(255, 246, 225, .58);
  color: #4d3a25;
  font-weight: 800;
  font-size: 13px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  grid-auto-rows: 158px;
  gap: 12px;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery__item--big { grid-row: span 2; }
.places { padding: 4px 0 36px; }
.places h2 { margin-bottom: 16px; }
.places__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.place-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.place-card img { width: 100%; height: 132px; object-fit: cover; }
.place-card div { padding: 14px 14px 16px; }

.seo-info { padding: 0 0 34px; }
.seo-info__card {
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
}
.seo-info__card h2 { margin-bottom: 12px; }
.seo-info__card p {
  max-width: 980px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 560;
}
.seo-info__card p:last-child { margin-bottom: 0; }

.booking { padding: 0 0 40px; }
.booking__grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.booking__copy {
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
}
.booking__copy h2 { margin-bottom: 12px; }
.booking__copy > p { margin-bottom: 20px; color: var(--muted); max-width: 620px; }
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.form label {
  display: grid;
  gap: 7px;
  color: #5a442d;
  font-size: 12px;
  font-weight: 820;
}
.form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(75, 50, 23, .12);
  border-radius: 16px;
  padding: 0 14px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 249, 234, .68);
  transition: border .2s ease, box-shadow .2s ease;
}
.form input:focus { border-color: rgba(95, 107, 53, .48); box-shadow: 0 0 0 4px rgba(95, 107, 53, .12); }
.form__btn { grid-column: 1 / -1; margin-top: 2px; width: max-content; }
.form__note { grid-column: 1 / -1; margin: 0; color: rgba(92, 70, 45, .72); font-size: 12px; }
.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff2d6;
  background:
    linear-gradient(180deg, rgba(73, 78, 38, .84), rgba(45, 54, 24, .94)),
    url("images/inside-view.webp") center/cover;
}
.contact-card__label { font-size: 13px; font-weight: 790; opacity: .84; }
.phone { display: block; margin: 10px 0 12px; font-size: clamp(28px, 4vw, 42px); line-height: .92; letter-spacing: -.055em; font-weight: 940; }
.contact-card p { color: rgba(255, 242, 214, .80); }
.contact-card .btn { width: max-content; }
.footer { padding: 0 0 32px; color: rgba(60, 45, 28, .76); font-size: 13px; }
.footer__inner { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(78, 52, 24, .13); padding-top: 18px; }
.footer p { margin: 0; }
.mobile-bar { display: none; }
.lightbox, .lead-dialog {
  max-width: min(92vw, 920px);
  max-height: 88vh;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.lightbox::backdrop, .lead-dialog::backdrop { background: rgba(34, 24, 12, .68); backdrop-filter: blur(12px); }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 26px; object-fit: contain; }
.lightbox__close, .lead-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 246, 225, .88);
  color: #2d2114;
  font-size: 28px;
  line-height: 1;
}
.lead-dialog {
  width: min(92vw, 560px);
  padding: 28px;
  background: #f4e2bf;
  color: var(--ink);
}
.lead-dialog h3 { margin: 0 44px 8px 0; font-size: 26px; letter-spacing: -.04em; }
.lead-dialog p { color: var(--muted); }
.lead-dialog textarea {
  width: 100%;
  min-height: 180px;
  margin-bottom: 14px;
  padding: 14px;
  resize: vertical;
  border: 1px solid rgba(75, 50, 23, .16);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
  color: var(--ink);
}
@media (max-width: 900px) {
  :root { --container: 720px; }
  .nav { display: none; }
  .quick__grid, .places__grid { grid-template-columns: repeat(2, 1fr); }
  .deal__grid { grid-template-columns: 1fr 1fr; }
  .price-card { grid-row: span 2; }
  .photo-card { grid-column: 1 / -1; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--big { grid-column: span 2; }
  .booking__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 430px); }
  .header { padding: 10px 0; }
  .header__inner { gap: 10px; min-height: 42px; }
  .brand__mark { width: 30px; height: 30px; border-radius: 10px; }
  .brand__text b { font-size: 12px; }
  .brand__text small { font-size: 10px; }
  .header__cta { min-height: 36px; padding: 0 12px; font-size: 11px; }
  .hero {
    min-height: 484px;
    background-position: 61% center;
  }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(235, 210, 167, .94) 0%, rgba(235, 210, 167, .70) 44%, rgba(235, 210, 167, .12) 100%),
      linear-gradient(180deg, rgba(231, 209, 170, .14), rgba(231, 209, 170, .34));
  }
  .hero__inner { align-items: flex-start; padding-top: 86px; padding-bottom: 72px; }
  .hero__content { width: 85%; padding-top: 0; }
  .eyebrow { margin-bottom: 8px; font-size: 11px; }
  .eyebrow::before { width: 18px; }
  h1 { margin-bottom: 10px; font-size: clamp(33px, 11.3vw, 45px); line-height: .93; letter-spacing: -.075em; }
  .hero p { margin-bottom: 15px; font-size: 13px; line-height: 1.32; }
  .btn { min-height: 38px; padding: 0 13px; font-size: 11px; }
  .hero__actions { gap: 8px; }
  .lift { margin-top: -64px; }
  .quick__grid { gap: 10px; }
  .info-card {
    min-height: 118px;
    padding: 14px 12px;
    border-radius: 18px;
  }
  .icon { width: 34px; height: 34px; margin-bottom: 8px; border-radius: 12px; }
  .icon svg { width: 19px; height: 19px; }
  .info-card h3, .mini-card h3, .place-card h3 { font-size: 15px; }
  .info-card p, .mini-card p, .place-card p { font-size: 11px; line-height: 1.28; }
  .deal { padding: 12px 0 24px; }
  .deal__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .price-card {
    min-height: 275px;
    padding: 17px;
    border-radius: 19px;
    grid-row: span 2;
  }
  .label { padding: 6px 9px; font-size: 10px; }
  .price-card h2 { font-size: 30px; }
  .price-card p, .price-card li { font-size: 11px; }
  .price-card li { margin: 5px 0; }
  .mini-card { min-height: 132px; padding: 15px 13px; border-radius: 19px; }
  .photo-card { grid-column: auto; min-height: auto; }
  .photo-card img { min-height: 275px; }
  .section-head { margin-bottom: 11px; }
  h2 { font-size: 23px; letter-spacing: -.055em; }
  .link-btn { min-height: 32px; padding: 0 10px; font-size: 11px; }
  .gallery { padding-bottom: 26px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 88px; gap: 8px; }
  .gallery__item { border-radius: 14px; }
  .gallery__item--big { grid-column: span 2; grid-row: span 2; }
  .places { padding-bottom: 26px; }
  .places__grid { gap: 9px; }
  .place-card { border-radius: 16px; }
  .place-card img { height: 86px; }
  .place-card div { padding: 11px 10px 12px; }
  .seo-info { padding-bottom: 22px; }
  .seo-info__card { border-radius: 20px; padding: 18px; }
  .seo-info__card p { font-size: 13px; line-height: 1.45; }
  .booking { padding-bottom: 92px; }
  .booking__grid { gap: 10px; }
  .booking__copy, .contact-card { border-radius: 20px; padding: 18px; }
  .booking__copy > p { font-size: 13px; margin-bottom: 14px; }
  .form { grid-template-columns: 1fr; gap: 10px; }
  .form input { min-height: 44px; border-radius: 14px; }
  .form__btn { width: 100%; }
  .contact-card { min-height: 232px; }
  .phone { font-size: 31px; }
  .footer { display: none; }
  .mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px;
    border-radius: 999px;
    background: rgba(67, 52, 30, .64);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(38, 24, 10, .28);
  }
  .mobile-bar .btn { flex: 1; min-height: 44px; font-size: 12px; }
  .mobile-bar__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 246, 225, .82);
    color: #2d2114;
    font-size: 12px;
    font-weight: 850;
  }
  .lead-dialog { padding: 22px; }
}
@media (max-width: 360px) {
  .container { width: calc(100% - 20px); }
  .hero__content { width: 92%; }
  .header__cta { display: none; }
  .quick__grid, .deal__grid, .places__grid { gap: 8px; }
  .info-card { padding: 12px 10px; }
  .price-card, .mini-card { padding: 13px 11px; }
  .photo-card img { min-height: 236px; }
  .gallery__grid { grid-auto-rows: 76px; }
}
