:root {
  --paper: #f7f6f1;
  --paper-soft: #fbfaf6;
  --card: rgba(255, 255, 252, 0.84);
  --ink: #3d4e37;
  --ink-deep: #2d3b2a;
  --muted: #727c68;
  --muted-soft: #9ba393;
  --line: rgba(77, 91, 69, 0.18);
  --line-strong: rgba(77, 91, 69, 0.28);
  --sage: #53664a;
  --sage-dark: #35472f;
  --sage-pale: #e8eddf;
  --cream: #efeee6;
  --shadow: 0 20px 54px rgba(45, 59, 42, 0.12);
  --soft-shadow: 0 12px 34px rgba(49, 63, 44, 0.08);
  --container: min(100% - clamp(32px, 7vw, 110px), 1320px);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
}
body {
  color: var(--ink-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 9% 14%, rgba(255,255,255,0.96), transparent 25rem),
    radial-gradient(circle at 83% 42%, rgba(226,232,214,0.55), transparent 34rem),
    linear-gradient(180deg, #f8f7f3 0%, #f7f6f1 52%, #f6f4ee 100%);
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button,
input,
select { font: inherit; }
button { cursor: pointer; }
button, a, input, select, textarea { transition-timing-function: cubic-bezier(.22, 1, .36, 1); }
img { display: block; max-width: 100%; }
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sprite,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: var(--container); margin-inline: auto; }
h1,
h2,
h3,
p { margin: 0; }
h1,
h2,
h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.04; letter-spacing: -0.035em; }
h2 { color: var(--ink); font-size: clamp(25px, 2.15vw, 34px); }
h3 { color: var(--ink); }
p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 247, 243, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(77, 91, 69, 0.08);
}
.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--ink);
}
.brand svg { width: 34px; height: 34px; color: #708066; stroke-width: 1.65; }
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.2vw, 38px);
  color: #536049;
  font-size: 13px;
  font-weight: 600;
}
.nav a,
.footer a,
.text-link,
.map-card a,
.package-card button { transition: color .2s ease, transform .2s ease; }
.nav a:hover,
.footer a:hover,
.text-link:hover,
.map-card a:hover,
.package-card button:hover { color: var(--sage-dark); transform: translateY(-1px); }
.header-contact { text-align: right; min-width: max-content; }
.phone { display: block; color: #34432f; font-weight: 650; font-size: 15px; line-height: 1.1; }
.header-contact small { display: block; color: var(--muted-soft); font-size: 10px; margin-top: 4px; }
.outline-button {
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid #7b886f;
  border-radius: 3px;
  background: rgba(255,255,255,0.52);
  color: #415039;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.outline-button:hover { background: #415439; color: #fff; transform: translateY(-1px); box-shadow: var(--soft-shadow); }
.menu-toggle { display: none; width: 43px; height: 38px; border: 1px solid var(--line-strong); background: transparent; border-radius: 5px; color: var(--ink); }
.menu-toggle span { display: block; width: 19px; height: 1.5px; background: currentColor; margin: 6px auto; }
.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  padding: 8px clamp(18px, 5vw, 40px) 16px;
  background: rgba(248,247,243,0.98);
}
.mobile-nav a,
.mobile-nav button {
  padding: 13px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(77,91,69,.12);
  background: transparent;
  text-align: left;
  font-weight: 650;
}

.hero {
  position: relative;
  z-index: 10;
  min-height: clamp(500px, 40vw, 600px);
  overflow: visible;
  background:
    linear-gradient(90deg, #faf9f4 0%, rgba(250,249,244,.98) 34%, rgba(250,249,244,.54) 57%, rgba(250,249,244,.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,.2), transparent 64%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 142px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(247,246,241,0) 0%, rgba(247,246,241,0.86) 76%, var(--paper) 100%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(91,108,80,.13) 26px 27px, transparent 27px 58px);
  opacity: .8;
}
.hero-bg {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - 1450px) / 2));
  width: min(59vw, 920px);
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-bg::before { background: linear-gradient(90deg, var(--paper) 0%, rgba(247,246,241,.64) 10%, rgba(247,246,241,.12) 33%, rgba(247,246,241,0) 68%); }
.hero-bg::after { background: linear-gradient(180deg, rgba(247,246,241,.86) 0, rgba(247,246,241,0) 12%, rgba(247,246,241,0) 74%, var(--paper) 100%); }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.98) contrast(1.02);
}
.hero-inner {
  position: relative;
  z-index: 4;
  min-height: clamp(500px, 40vw, 600px);
  display: flex;
  align-items: center;
}
.hero-copy { width: min(650px, 57vw); padding: 46px 0 54px; }
h1 {
  color: var(--ink);
  font-size: clamp(54px, 5.45vw, 86px);
  max-width: 700px;
}
.lead {
  margin-top: 22px;
  color: #43503d;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.62;
}
.stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  max-width: 620px;
}
.stats div {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "icon num" "icon txt";
  align-items: center;
  column-gap: 13px;
  min-width: 0;
  padding-right: clamp(18px, 2.8vw, 46px);
  margin-right: clamp(18px, 2.8vw, 42px);
  border-right: 1px solid var(--line);
}
.stats div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.stats svg { grid-area: icon; width: 34px; height: 34px; color: #748268; stroke-width: 1.55; }
.stats b { grid-area: num; font-family: Georgia, "Times New Roman", serif; color: var(--ink); font-size: 26px; line-height: .95; font-weight: 400; white-space: nowrap; }
.stats span { grid-area: txt; color: #5d6955; font-size: 13px; white-space: nowrap; }
.search-card {
  position: relative;
  z-index: 9;
  margin-top: 38px;
  width: min(650px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(91,104,82,.18);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(50,58,45,.15);
  backdrop-filter: blur(10px);
}
.search-card label { display: grid; gap: 7px; min-width: 0; }
.search-card > label > span { color: #8b9483; font-size: 11px; }
.search-card input:not([type="hidden"]),
.search-card select {
  height: 44px;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(91,104,82,.16);
  border-radius: 4px;
  background: #fff;
  color: #596252;
  padding: 0 12px;
  outline: none;
}
.search-card input:not([type="hidden"]):focus,
.search-card select:focus,
.subscribe input:focus,
.booking-grid input:focus,
.booking-grid select:focus,
.booking-grid textarea:focus { border-color: rgba(83,102,74,.7); box-shadow: 0 0 0 3px rgba(83,102,74,.12); }
.search-card > button[type="submit"],
.estimate button,
.booking-submit {
  height: 44px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, #637458, #3e5236);
  color: #fff;
  padding: 0 25px;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 9px 22px rgba(49,65,43,.16);
  transition: transform .2s ease, filter .2s ease;
}
.search-card > button[type="submit"]:hover,
.estimate button:hover,
.booking-submit:hover { transform: translateY(-1px); filter: brightness(1.05); }
.date-control {
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(91,104,82,.16);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfaf6);
  color: #596252;
  padding: 0 12px;
  font-weight: 600;
  box-shadow: none;
  transition: border-color .26s cubic-bezier(.22,1,.36,1), box-shadow .26s cubic-bezier(.22,1,.36,1), transform .26s cubic-bezier(.22,1,.36,1), background .26s ease;
}
.date-control b { font-weight: 600; }
.date-control svg { width: 18px; height: 18px; color: #5d7354; stroke-width: 1.9; }
.date-control:hover,
.date-control:focus-visible { border-color: rgba(83,102,74,.62); box-shadow: 0 0 0 4px rgba(83,102,74,.1); transform: translateY(-1px); outline: none; }
.date-popover[hidden] { display: none; }
.date-popover {
  position: absolute;
  left: 12px;
  top: calc(100% + 12px);
  width: min(650px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(83,102,74,.16);
  border-radius: 26px;
  z-index: 70;
  background: #fffefb;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(35,45,31,.2), inset 0 1px 0 rgba(255,255,255,.75);
  opacity: 0;
  transform: translateY(-8px) scale(.985);
  pointer-events: none;
  transform-origin: 40px top;
  transition: opacity .26s cubic-bezier(.22,1,.36,1), transform .26s cubic-bezier(.22,1,.36,1);
}
.date-popover.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.date-popover.drop-up { top: auto; bottom: calc(100% + 12px); transform-origin: 40px bottom; }
.date-picker-head,
.date-picker-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.date-picker-head { margin-bottom: 14px; }
.date-picker-head span { display: block; color: #8b9483; font-size: 12px; margin-bottom: 3px; }
.date-picker-head b { color: #3f5138; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.date-picker-nav { display: flex; gap: 8px; }
.date-picker-nav button,
.date-picker-foot button {
  border: 0;
  border-radius: 999px;
  background: #eef3e8;
  color: #465840;
  height: 38px;
  min-width: 38px;
  padding: 0 14px;
  font-weight: 700;
  transition: background .24s ease, color .24s ease, transform .24s cubic-bezier(.22,1,.36,1);
}
.date-picker-nav button { font-size: 25px; line-height: 1; padding: 0; }
.date-picker-nav button:hover,
.date-picker-foot button:hover { background: #5d7354; color: #fff; transform: translateY(-1px); }
.picker-months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.picker-month { padding: 14px; border-radius: 20px; background: linear-gradient(180deg, #fbfaf6, #f5f4ee); border: 1px solid rgba(83,102,74,.1); }
.picker-month strong { display: block; margin-bottom: 12px; color: #3f5138; text-align: center; font-weight: 800; }
.picker-week,
.picker-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.picker-week span { color: #9aa391; font-size: 11px; font-weight: 700; }
.picker-days { margin-top: 7px; }
.picker-days .empty { min-height: 34px; }
.picker-days button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #56634f;
  font-size: 13px;
  transition: background .22s cubic-bezier(.22,1,.36,1), color .22s cubic-bezier(.22,1,.36,1), transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s cubic-bezier(.22,1,.36,1);
}
.picker-days button:hover:not(:disabled) { background: rgba(83,102,74,.11); transform: translateY(-1px); }
.picker-days .in-range { background: #e8efdf; color: #41513b; border-radius: 8px; }
.picker-days .selected { background: linear-gradient(135deg, #6b7f61, #3d5236); color: #fff; box-shadow: 0 9px 19px rgba(61,82,54,.22); }
.picker-days .start { border-radius: 999px 9px 9px 999px; }
.picker-days .end { border-radius: 9px 999px 999px 9px; }
.picker-days .busy { opacity: .38; text-decoration: line-through; cursor: not-allowed; }
.date-picker-foot { margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(83,102,74,.1); }
.date-picker-foot [data-picker-close] { background: #3f5138; color: #fff; padding-inline: 22px; }

.comfort-strip {
  position: relative;
  z-index: 5;
  background: rgba(250,249,244,.82);
  border-top: 1px solid rgba(91,104,82,.1);
  border-bottom: 1px solid rgba(91,104,82,.12);
}
.comfort-grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.comfort-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 2.4vw, 42px);
  border-right: 1px solid var(--line);
}
.comfort-grid article:first-child { padding-left: 0; }
.comfort-grid article:last-child { border-right: 0; padding-right: 0; }
.comfort-grid svg { width: 45px; height: 45px; color: #65775b; stroke-width: 1.45; }
.comfort-grid h3 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 14px; font-weight: 650; letter-spacing: 0; color: #526048; margin-bottom: 8px; }
.comfort-grid p { color: #687360; font-size: 13px; line-height: 1.45; }

.section { position: relative; padding-top: clamp(28px, 3.3vw, 46px); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.text-link,
.package-card button {
  border: 0;
  background: transparent;
  color: #465840;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.text-link svg,
.map-card a svg,
.package-card button svg { width: 19px; height: 19px; }
.side-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #738067;
  font-size: 42px;
  line-height: .75;
}
.side-arrow.left { left: max(8px, calc((100vw - 1460px) / 2)); }
.side-arrow.right { right: max(8px, calc((100vw - 1460px) / 2)); }
.house-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.5vw, 44px);
}
.house-card {
  overflow: hidden;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(82,97,73,.15);
  border-radius: 5px;
  box-shadow: 0 9px 25px rgba(47,59,42,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.house-card:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); }
.house-card img { width: 100%; aspect-ratio: 1.56; height: auto; object-fit: cover; }
.house-card div { padding: 17px 18px 20px; }
.house-card h3 { color: #34422f; font-size: 19px; }
.house-card p { display: flex; gap: 10px; align-items: center; color: #7a8372; font-size: 13px; margin-top: 8px; }
.house-card p span { width: 3px; height: 3px; border-radius: 999px; background: #9ca591; }
.house-card b { display: block; margin-top: 19px; color: #4c5b43; font-size: 16px; font-weight: 650; }
.house-card small { color: #7e8776; font-size: 12px; font-weight: 500; }

.gallery { padding-top: clamp(30px, 3.8vw, 52px); }
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.04fr 1fr 1.32fr 0.98fr;
  gap: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(82,97,73,.14);
  background: #fff;
}
.gallery-strip img {
  width: 100%;
  height: clamp(132px, 11.5vw, 176px);
  object-fit: cover;
  border-right: 1px solid rgba(255,255,255,.45);
}
.gallery-strip img:last-child { border-right: 0; }
.dots { display: flex; justify-content: center; gap: 10px; margin-top: 17px; }
.dots span { width: 7px; height: 7px; border-radius: 999px; background: #d7d8cf; }
.dots .active { background: #69795f; }

.utility { padding-top: clamp(28px, 3.2vw, 44px); }
.utility-grid {
  display: grid;
  grid-template-columns: 1fr .94fr 1.03fr;
  gap: clamp(14px, 1.8vw, 26px);
}
.info-card {
  min-height: 330px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(82,97,73,.15);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(47,59,42,.045);
  padding: 23px 25px;
  overflow: hidden;
}
.info-card h2 { font-size: clamp(24px, 1.85vw, 30px); margin-bottom: 18px; }
.map-card { position: relative; }
.map-card p { font-size: 14px; line-height: 1.55; color: #64705d; }
.map-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; color: #495a43; font-weight: 600; }
.map-illustration {
  position: absolute;
  right: 4%;
  bottom: -8px;
  width: 72%;
  max-width: 350px;
  aspect-ratio: 1.28;
  opacity: .96;
  overflow: hidden;
  border-radius: 42% 58% 38% 62% / 48% 41% 59% 52%;
  background:
    radial-gradient(circle at 68% 24%, rgba(83,102,74,.22) 0 10px, transparent 11px),
    radial-gradient(circle at 73% 31%, rgba(83,102,74,.14) 0 22px, transparent 23px),
    radial-gradient(circle at 32% 70%, rgba(176,205,218,.95) 0 42%, transparent 43%),
    linear-gradient(145deg, rgba(230,235,220,.96), rgba(245,244,237,.5));
  box-shadow: inset 0 0 0 1px rgba(82,97,73,.08);
}
.map-illustration::before,
.map-illustration::after,
.map-illustration span { position: absolute; content: ""; display: block; }
.map-illustration::before {
  inset: 14% 8% 6% 36%;
  border-radius: 45% 55% 30% 70%;
  background: rgba(214,225,203,.8);
  transform: rotate(-13deg);
}
.map-illustration::after {
  left: 51%; top: 24%; width: 98px; height: 120px;
  border-left: 2px solid rgba(134,148,126,.34);
  border-top: 2px solid rgba(134,148,126,.25);
  border-radius: 60% 30% 50% 40%;
  transform: rotate(22deg);
}
.map-illustration .lake { left: -10%; bottom: -13%; width: 62%; height: 73%; border-radius: 52% 48% 58% 42%; background: rgba(180,210,224,.86); }
.map-illustration .forest { right: 10%; bottom: 12%; width: 42%; height: 30%; border-radius: 50%; background: radial-gradient(circle, rgba(190,210,177,.72) 0 3px, transparent 4px); background-size: 17px 17px; }
.map-illustration .pin {
  right: 25%; top: 26%; width: 36px; height: 36px;
  border-radius: 50% 50% 50% 0;
  background: #5d7354;
  transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(50,65,45,.18);
  z-index: 3;
}
.map-illustration .pin::after { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #fff; }
.map-illustration .road { height: 2px; background: rgba(130,143,121,.32); border-radius: 999px; transform-origin: left center; z-index: 2; }
.map-illustration .road.one { width: 58%; right: 8%; top: 47%; transform: rotate(-18deg); }
.map-illustration .road.two { width: 44%; right: 28%; top: 58%; transform: rotate(18deg); }
.calendar-card { border-radius: 24px; background: rgba(255,255,252,.76); }
.month { display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; gap: 6px; margin-bottom: 18px; }
.month button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #65735c;
  font-size: 27px;
  transition: background .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1);
}
.month button:hover { background: rgba(83,102,74,.1); transform: translateY(-1px); }
.month strong { color: var(--ink); text-align: center; font-weight: 650; }
.week,
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 4px; }
.week { color: #8b9483; font-size: 12px; margin-bottom: 9px; }
.calendar-days { min-height: 171px; align-content: start; }
.calendar-days .empty { min-height: 31px; }
.calendar-days button {
  position: relative;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #69735f;
  font-size: 13px;
  transition: background .26s cubic-bezier(.22,1,.36,1), color .26s cubic-bezier(.22,1,.36,1), transform .26s cubic-bezier(.22,1,.36,1), box-shadow .26s cubic-bezier(.22,1,.36,1);
}
.calendar-days button:hover:not(:disabled) { background: rgba(83,102,74,.1); transform: translateY(-1px); }
.calendar-days .in-range { background: #edf2e6; color: #465840; }
.calendar-days .selected { background: #94a584; color: #fff; box-shadow: 0 8px 18px rgba(83,102,74,.16); }
.calendar-days .start { border-radius: 999px 8px 8px 999px; }
.calendar-days .end { border-radius: 8px 999px 999px 8px; }
.calendar-days .start.end { border-radius: 999px; }
.calendar-days .busy { color: #a8aba3; text-decoration: line-through; cursor: not-allowed; opacity: .58; }
.calendar-hint { min-height: 18px; width: fit-content; max-width: 100%; margin: 14px auto 0; padding: 7px 13px; border-radius: 999px; background: #eef3e8; text-align: center; color: #53664a; font-size: 12px; transition: opacity .24s ease; }
.legend { display: flex; gap: 18px; align-items: center; justify-content: center; margin-top: 20px; color: #8b9483; font-size: 12px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 12px; height: 12px; border-radius: 3px; background: #dfe8d4; }
.legend .sel { background: #94a584; }
.legend .busy { background: #deded8; }
.calc-card h2 { margin-bottom: 34px; }
.range-label { display: flex; align-items: center; justify-content: space-between; color: #828b7a; font-size: 13px; }
.range-label b { color: #41513b; font-weight: 650; }
input[type="range"] {
  width: 100%;
  margin: 19px 0 5px;
  accent-color: #64775b;
}
.range-scale { display: flex; justify-content: space-between; color: #989f90; font-size: 12px; }
.estimate {
  margin-top: 30px;
  display: grid;
  gap: 5px;
  padding: 22px;
  background: #faf9f4;
  border: 1px solid rgba(82,97,73,.16);
  border-radius: 5px;
}
.estimate span { color: #8b9483; font-size: 12px; }
.estimate strong { color: #405038; font-family: Georgia, "Times New Roman", serif; font-size: 33px; font-weight: 400; line-height: 1; }
.estimate small { color: #818a78; margin-bottom: 13px; }
.estimate button { width: 100%; }

.packages { padding-top: clamp(26px, 3.1vw, 40px); }
.packages h2 { margin-bottom: 20px; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.7vw, 22px);
}
.package-card {
  min-height: 184px;
  display: grid;
  grid-template-columns: .92fr 1fr;
  overflow: hidden;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(82,97,73,.15);
  border-radius: 6px;
}
.package-card div { padding: 20px 18px; display: flex; flex-direction: column; align-items: flex-start; }
.package-card h3 { font-size: 21px; margin-bottom: 10px; }
.package-card p { color: #66715f; font-size: 13px; line-height: 1.35; }
.package-card b { margin-top: 13px; color: #44533c; font-weight: 650; }
.package-card button { margin-top: auto; font-size: 13px; }
.package-card img { width: 100%; height: 100%; object-fit: cover; }

.activities { padding-top: clamp(24px, 3vw, 38px); }
.activity-grid {
  min-height: 90px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(82,97,73,.13);
  border-bottom: 1px solid rgba(82,97,73,.13);
}
.activity-grid article {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 20px clamp(12px, 1.8vw, 26px);
  border-right: 1px solid rgba(82,97,73,.13);
}
.activity-grid article:first-child { padding-left: 0; }
.activity-grid article:last-child { border-right: 0; padding-right: 0; }
.activity-grid svg { width: 42px; height: 42px; color: #65775b; flex: 0 0 auto; }
.activity-grid b { display: block; color: #465540; font-weight: 650; line-height: 1.2; }
.activity-grid span { display: block; color: #727c68; font-size: 13px; margin-top: 4px; }

.faq-section { padding-top: clamp(24px, 2.8vw, 36px); padding-bottom: 0; }
.faq-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: end;
}
.faq-layout h2 { margin-bottom: 20px; }
.faq-grid { display: block; column-count: 2; column-gap: 16px; }
.faq-item {
  position: relative;
  min-height: 43px;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(82,97,73,.16);
  border-radius: 4px;
  background: rgba(255,255,255,.58);
  color: #536049;
  text-align: left;
  overflow: hidden;
  transition: background .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), border-color .32s cubic-bezier(.22,1,.36,1);
}
.faq-item span { display: flex; align-items: center; min-height: 43px; font-size: 13px; }
.faq-item i { position: absolute; right: 15px; top: 8px; font-size: 25px; color: #7f8a77; transition: transform .32s cubic-bezier(.22,1,.36,1); font-style: normal; }
.faq-item p {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  padding: 0;
  color: #727c68;
  font-size: 13px;
  line-height: 1.45;
  transition: max-height .34s cubic-bezier(.22,1,.36,1), opacity .26s ease, transform .34s cubic-bezier(.22,1,.36,1), padding .34s cubic-bezier(.22,1,.36,1);
}
.faq-item.active { background: #fff; border-color: rgba(82,97,73,.22); box-shadow: 0 8px 22px rgba(47,59,42,.05); }
.faq-item.active i { transform: rotate(90deg); }
.faq-item.active p { max-height: var(--faq-height, 140px); opacity: 1; transform: translateY(0); padding: 0 0 14px; }
.pay-card {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  padding: 28px 30px 24px;
  background: linear-gradient(135deg, #f3f2ea, #faf9f4);
  border: 1px solid rgba(82,97,73,.14);
  border-radius: 6px 6px 0 0;
}
.pay-card h2 { font-size: clamp(24px, 1.85vw, 31px); margin-bottom: 17px; }
.pay-card ul { list-style: none; padding: 0; margin: 0; color: #63705d; font-size: 13px; }
.pay-card li { margin: 5px 0; }
.pay-card li::before { content: "✓"; margin-right: 8px; color: #65775b; }
.cards { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.cards b:nth-child(1) { color: #204e9e; }
.cards b:nth-child(2) { color: #e65a2a; letter-spacing: -4px; }
.cards b:nth-child(3) { color: #138a54; }
.pay-leaf { position: absolute; right: 28px; bottom: 18px; width: 92px; height: 92px; color: #9da892; opacity: .75; stroke-width: 1.15; }

.footer {
  position: relative;
  margin-top: clamp(26px, 3.2vw, 44px);
  padding: 34px 0 38px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.1), transparent 18rem),
    linear-gradient(135deg, #273820, #405238);
  color: rgba(255,255,255,.82);
}
.footer::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.16) .6px, transparent .7px); background-size: 5px 5px; opacity: .06; pointer-events: none; }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .55fr .85fr 1fr;
  gap: clamp(24px, 5vw, 86px);
}
.footer .brand { color: #fff; margin-bottom: 42px; }
.footer .brand svg { color: rgba(255,255,255,.86); }
.footer .brand small { color: rgba(255,255,255,.58); }
.footer p,
.footer a { color: rgba(255,255,255,.74); }
.footer h3 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) a { display: flex; align-items: center; gap: 8px; margin: 8px 0; }
.footer-grid > div:nth-child(3) p { display: grid; grid-template-columns: auto 1fr; gap: 8px; line-height: 1.5; margin-top: 8px; }
.footer svg { width: 17px; height: 17px; flex: 0 0 auto; }
.socials { display: flex; gap: 10px; margin-top: 13px; }
.socials a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
}
.subscribe { position: relative; display: grid; grid-template-columns: 1fr 48px; align-content: start; gap: 10px; }
.subscribe h3,
.subscribe p,
.subscribe .check,
.subscribe small { grid-column: 1 / -1; }
.subscribe p { font-size: 13px; line-height: 1.5; margin-bottom: 8px; }
.subscribe .check a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.subscribe input[type="email"] {
  height: 48px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: #34432f;
  padding: 0 17px;
  outline: none;
}
.subscribe > button {
  height: 48px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  color: #4f6047;
  font-size: 28px;
}
.check {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  margin-top: 5px;
}
.check input { width: 14px; height: 14px; accent-color: #e4edd5; }
.form-status { color: #eef5dd; min-height: 17px; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s cubic-bezier(.22,1,.36,1), visibility .28s step-end;
}
.modal.is-open { opacity: 1; visibility: visible; transition: opacity .28s cubic-bezier(.22,1,.36,1), visibility 0s step-start; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 38, 27, .48);
  backdrop-filter: blur(7px);
  opacity: 0;
  transition: opacity .34s cubic-bezier(.22,1,.36,1);
}
.modal.is-open .modal-backdrop { opacity: 1; }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100vw - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  overflow: auto;
  background: #fbfaf6;
  border: 1px solid rgba(82,97,73,.18);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(25,34,23,.28);
  padding: clamp(24px, 3vw, 38px);
  opacity: 0;
  transform: translateY(18px) scale(.982);
  transition: opacity .34s cubic-bezier(.22,1,.36,1), transform .34s cubic-bezier(.22,1,.36,1);
}
.modal.is-open .modal-card { opacity: 1; transform: translateY(0) scale(1); }
.modal-card.gallery-modal { width: min(1120px, calc(100vw - 40px)); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(82,97,73,.18);
  border-radius: 999px;
  background: #fff;
  color: #405038;
  font-size: 27px;
  line-height: .8;
  z-index: 2;
}
.modal h2 { font-size: clamp(30px, 3vw, 42px); margin-bottom: 10px; }
.modal-intro { color: #65715d; max-width: 650px; margin-bottom: 24px; }
.policy-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.policy-panel article {
  padding: 18px;
  border: 1px solid rgba(82,97,73,.14);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f6f5ef);
}
.policy-panel b {
  display: block;
  margin-bottom: 8px;
  color: #3f5138;
  font-size: 15px;
}
.policy-panel p {
  color: #68745f;
  font-size: 14px;
  line-height: 1.55;
}
.policy-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef3e8;
  color: #53664a;
  font-size: 13px;
  line-height: 1.5;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.booking-grid label { display: grid; gap: 7px; color: #596651; font-weight: 600; }
.booking-grid input,
.booking-grid select,
.booking-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(82,97,73,.18);
  border-radius: 6px;
  background: #fff;
  color: #3a4735;
  padding: 0 14px;
  outline: none;
}
.booking-grid input,
.booking-grid select { height: 50px; }
.booking-grid textarea { min-height: 104px; padding-top: 13px; resize: vertical; }
.booking-grid .full { grid-column: 1 / -1; }
.booking-submit { height: 52px; width: 100%; margin-top: 7px; }
.modal-status { min-height: 18px; color: #53664a; margin-top: 11px; }
.modal-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.modal-gallery-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 6px; }
.modal-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.modal-list article { padding: 18px; border: 1px solid rgba(82,97,73,.16); border-radius: 7px; background: #fff; }
.modal-list h3 { font-size: 22px; margin-bottom: 8px; }
.modal-list p { font-size: 14px; }
.price-list { margin-top: 18px; }
.price-row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: end; padding: 10px 0; color: #4a5942; }
.price-row i { border-bottom: 1px dotted rgba(82,97,73,.45); transform: translateY(-5px); }
.price-row b { font-weight: 650; }
.policy-text { color: #65715d; line-height: 1.65; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .comfort-grid { grid-template-columns: repeat(2, 1fr); }
  .comfort-grid article { border-bottom: 1px solid var(--line); }
  .comfort-grid article:nth-child(2n) { border-right: 0; }
  .house-grid { gap: 18px; }
  .utility-grid { grid-template-columns: 1fr 1fr; }
  .calc-card { grid-column: 1 / -1; }
  .activity-grid { grid-template-columns: repeat(3, 1fr); }
  .activity-grid article:nth-child(3) { border-right: 0; }
  .activity-grid article:nth-child(n+4) { border-top: 1px solid rgba(82,97,73,.13); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 176px; grid-template-columns: 1fr 1.05fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 34px, 720px); }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto auto; }
  .header-contact,
  .site-header .outline-button { display: none; }
  .hero { min-height: auto; }
  .hero-bg {
    position: relative;
    right: auto;
    width: 100%;
    height: 330px;
    order: 2;
    opacity: .96;
  }
  .hero { display: flex; flex-direction: column-reverse; }
  .hero-bg::before { background: linear-gradient(180deg, rgba(247,246,241,0) 0%, var(--paper) 100%); }
  .hero-inner { min-height: auto; display: block; }
  .hero-copy { width: 100%; padding: 42px 0 0; }
  .stats { flex-wrap: wrap; gap: 18px; }
  .stats div { border-right: 0; padding-right: 0; margin-right: 12px; }
  .search-card { grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
  .search-card > button[type="submit"] { grid-column: 1 / -1; }
  .comfort-strip { padding-top: 14px; }
  .house-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(5, minmax(210px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .gallery-strip img { height: 165px; scroll-snap-align: start; }
  .utility-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .date-popover { width: min(520px, calc(100vw - 34px)); }
  .picker-months { grid-template-columns: 1fr; }
  .picker-months .picker-month:nth-child(2) { display: none; }
  .pay-card { border-radius: 6px; }
  .modal-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 24px, 430px); }
  body { font-size: 13px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 10px; }
  .brand svg { width: 29px; height: 29px; }
  h1 { font-size: clamp(46px, 13vw, 62px); }
  h2 { font-size: 27px; }
  .lead br { display: none; }
  .hero-copy { padding-top: 32px; }
  .hero-bg { height: 260px; }
  .stats { display: grid; grid-template-columns: 1fr; margin-top: 25px; }
  .stats div { grid-template-columns: 38px auto; margin: 0; }
  .search-card { grid-template-columns: 1fr; padding: 13px; }
  .date-popover { left: 8px; right: 8px; width: auto; padding: 14px; border-radius: 22px; }
  .date-picker-head { align-items: flex-start; }
  .date-picker-head b { font-size: 18px; }
  .search-card > button[type="submit"] { grid-column: auto; }
  .comfort-grid { grid-template-columns: 1fr; }
  .comfort-grid article { padding: 18px 0; border-right: 0; }
  .comfort-grid article:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .side-arrow { display: none; }
  .house-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(5, minmax(230px, 1fr)); }
  .info-card { min-height: auto; padding: 21px 18px; }
  .map-card { min-height: 300px; }
  .map-illustration { width: 80%; }
  .legend { flex-wrap: wrap; justify-content: flex-start; }
  .package-card { grid-template-columns: 1fr; }
  .package-card img { height: 178px; order: -1; }
  .activity-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .activity-grid article { border-right: 0; border-bottom: 1px solid rgba(82,97,73,.13); padding: 16px 0; }
  .activity-grid article:nth-child(n+4) { border-top: 0; }
  .faq-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer .brand { margin-bottom: 18px; }
  .subscribe { grid-template-columns: 1fr 46px; }
  .modal { padding: 12px; }
  .modal-card { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); padding: 19px; }
  .policy-panel { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .modal-gallery-grid,
  .modal-list { grid-template-columns: 1fr; }
  .modal-gallery-grid img { height: 210px; }
}

@media (min-width: 1800px) {
  .hero-bg { width: min(55vw, 960px); }
  .hero-copy { width: 650px; }
  .gallery-strip img { height: 182px; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
