:root {
  --paper: #f7f2eb;
  --paper-deep: #efe8dd;
  --ink: #171715;
  --muted: #746e63;
  --line: #d9cec1;
  --olive: #5f5b35;
  --olive-dark: #4b3b22;
  --sand: #d3c5aa;
  --soft: rgba(255, 255, 255, 0.54);
  --shadow: 0 24px 70px rgba(45, 36, 24, 0.12);
  --container: min(1420px, calc(100% - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 1px solid rgba(75, 59, 34, 0.58);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: var(--container);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 58px);
  min-height: 96px;
}

.logo {
  display: inline-grid;
  gap: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.4vw, 28px);
  line-height: 1.05;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.1vw, 62px);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #11110f;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: rgba(75, 59, 34, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a,
.footer-col a,
.mobile-panel a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.footer-col a:hover,
.mobile-panel a:hover {
  color: var(--olive-dark);
}

.outline-btn,
.outline-light,
.solid-btn {
  border-radius: 4px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--olive-dark);
  background: transparent;
  color: var(--olive-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.outline-btn:hover,
.outline-light:hover,
.solid-btn:hover {
  transform: translateY(-1px);
}

.solid-btn {
  background: linear-gradient(135deg, #746139, #4d4028);
  color: #fff;
  border-color: transparent;
}

.solid-btn svg {
  width: 30px;
  height: 30px;
}

.outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(111, 83, 48, 0.74);
}

.outline-light:hover {
  background: rgba(92, 70, 42, 0.9);
}

.icon-btn,
.icon-square,
.modal-close {
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-btn {
  width: 54px;
  height: 54px;
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 1px solid rgba(75, 59, 34, 0.22);
  border-radius: 50%;
  background: rgba(247, 242, 235, 0.28);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.menu-btn:hover {
  border-color: rgba(75, 59, 34, 0.5);
  background: rgba(247, 242, 235, 0.58);
  transform: translateY(-1px);
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(620px, 48vw, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 28%),
    var(--paper);
}

.hero-media {
  position: absolute;
  right: max(0px, calc((100vw - 1620px) / 2));
  top: 0;
  bottom: 0;
  width: min(68vw, 1013px);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 8%, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 8%, #000 24%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(247, 242, 235, 0.98) 28%, rgba(247, 242, 235, 0.56) 44%, rgba(247, 242, 235, 0.08) 70%),
    linear-gradient(0deg, rgba(247, 242, 235, 0.02), rgba(247, 242, 235, 0.12));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  padding-top: clamp(150px, 11vw, 188px);
}

.eyebrow {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.35vw, 25px);
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 590px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5.4vw, 108px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rule {
  width: 78px;
  height: 1px;
  margin: 44px 0 32px;
  background: var(--olive-dark);
}

.hero-copy {
  max-width: 400px;
  margin: 0;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.42;
}

.benefits {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  background: rgba(250, 246, 239, 0.82);
}

.benefit {
  position: relative;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 16px;
  text-align: center;
  color: var(--olive-dark);
}

.benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 54px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(92, 76, 54, 0.24), transparent);
}

.benefit svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.55;
  opacity: 0.92;
}

.benefit span {
  color: var(--ink);
  max-width: 190px;
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 500;
  line-height: 1.35;
}

.section {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(46px, 4.8vw, 68px) 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 2.7vw, 46px);
  line-height: 1.08;
  font-weight: 400;
}

.plots-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(30px, 3.8vw, 58px);
  align-items: start;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.filter {
  min-width: 82px;
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 7px;
  color: #1d1b18;
  padding: 0 18px;
}

.filter.active {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.map-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
}

.map-wrap img {
  width: 100%;
  border-radius: 3px;
  filter: drop-shadow(0 20px 34px rgba(89, 75, 48, 0.12));
  pointer-events: none;
}

.map-open-btn {
  display: none;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(75, 59, 34, 0.42);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--olive-dark);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

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

.legend i {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
}

.legend .sold {
  background: #d7c39d;
  border-color: #d7c39d;
}

.legend .public {
  background: #bdc1a6;
  border-color: #bdc1a6;
}

.plot-count {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 18px;
}

.plot-count strong {
  color: var(--ink);
}

.plot-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 100px;
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(92, 76, 54, 0.18);
}

.plot-panel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(92, 76, 54, 0.16);
}

.plot-panel__head span {
  color: var(--muted);
  font-size: 13px;
}

.plot-panel__head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.plot-list {
  display: grid;
  gap: 10px;
}

.plot-card {
  display: grid;
  grid-template-columns: 64px minmax(118px, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(92, 76, 54, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.plot-card:hover,
.plot-card.is-active {
  border-color: rgba(95, 91, 53, 0.54);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px rgba(45, 36, 24, 0.08);
}

.plot-card img {
  width: 64px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}

.plot-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.plot-card strong {
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.plot-card button {
  min-width: 92px;
  min-height: 36px;
  border: 1px solid rgba(75, 59, 34, 0.74);
  border-radius: 7px;
  background: transparent;
  color: var(--olive-dark);
  font-size: 13px;
}

.plot-empty {
  padding: 18px;
  border: 1px solid rgba(92, 76, 54, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.plot-empty span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.plot-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.full-width {
  width: 100%;
  min-height: 58px;
  font-size: 15px;
}

.communications .section-inner {
  padding-block: clamp(42px, 4.2vw, 60px);
}

.communication-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
}

.communication {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.communication:first-child {
  padding-left: 0;
}

.communication:last-child {
  border-right: 0;
  padding-right: 0;
}

.communication svg {
  width: 38px;
  height: 38px;
  color: var(--olive-dark);
}

.communication span {
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.36;
}

.communication small {
  font-size: 0.86em;
}

.infra-track {
  display: flex;
  gap: 20px;
  margin-top: 38px;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.infra-track::-webkit-scrollbar {
  display: none;
}

.infra-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 0;
}

.infra-card img,
.infra-placeholder {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  border-radius: 7px;
}

.infra-card img {
  object-fit: cover;
}

.infra-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(92, 76, 54, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(212, 200, 177, 0.42)),
    radial-gradient(circle at 24% 20%, rgba(95, 91, 53, 0.18), transparent 36%);
  color: var(--olive-dark);
  text-align: center;
}

.infra-placeholder span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.22;
}

.infra-placeholder small {
  color: var(--muted);
  font-size: 11px;
}

.infra-card h3 {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.34;
  font-weight: 400;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.icon-square {
  width: 60px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--olive-dark);
  background: rgba(255, 255, 255, 0.38);
}

.icon-square:first-child {
  border-radius: 6px 0 0 6px;
}

.icon-square:last-child {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.icon-square svg {
  width: 20px;
  height: 20px;
}

.icon-square:disabled {
  cursor: default;
  color: rgba(75, 59, 34, 0.32);
  background: rgba(255, 255, 255, 0.18);
}

.nature-cta {
  position: relative;
  min-height: clamp(300px, 25vw, 390px);
  overflow: hidden;
  color: #fff;
}

.nature-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(25, 31, 27, 0.86), rgba(37, 38, 30, 0.42) 40%, rgba(24, 24, 18, 0.08));
  pointer-events: none;
}

.nature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.nature-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(46px, 4.8vw, 68px) 0;
}

.nature-content h2 {
  max-width: 650px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.nature-content p {
  max-width: 560px;
  margin: 22px 0 30px;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.45;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.site-footer {
  background: var(--paper);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 50px 0 54px;
  display: grid;
  grid-template-columns: 1.8fr repeat(5, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.footer-brand p {
  margin: 34px 0 0;
  color: var(--muted);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-col h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--olive-dark);
}

.socials a + a {
  position: relative;
}

.socials a + a::before {
  content: "";
  position: absolute;
  left: -14px;
  width: 1px;
  height: 26px;
  background: var(--line);
}

.socials svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(247, 242, 235, 0.98), rgba(247, 242, 235, 0.91)),
    url("assets/hero-landscape-framed.webp") right center / min(58vw, 860px) auto no-repeat;
  display: grid;
  place-items: stretch;
}

.mobile-panel[hidden] {
  display: none;
}

.menu-shell {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(30px, 4.5vw, 64px);
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid rgba(92, 76, 54, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(247, 242, 235, 0.97) 0%, rgba(247, 242, 235, 0.94) 58%, rgba(247, 242, 235, 0.78) 100%),
    radial-gradient(circle at 84% 22%, rgba(95, 91, 53, 0.13), transparent 34%);
  box-shadow: 0 30px 90px rgba(45, 36, 24, 0.15);
}

.menu-top,
.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(340px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 7vw, 120px);
}

.menu-nav {
  display: grid;
  gap: clamp(16px, 2.1vw, 28px);
  align-content: center;
}

.menu-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  gap: 18px;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 0.96;
  color: #171715;
  letter-spacing: 0;
}

.menu-nav a span {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  transform: translateY(-0.34em);
}

.menu-nav a::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(75, 59, 34, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.menu-nav a:hover::after {
  transform: scaleX(1);
}

.menu-aside {
  max-width: 440px;
  justify-self: end;
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(92, 76, 54, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.menu-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-aside h2 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 44px);
}

.menu-aside p:not(.menu-kicker) {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.menu-cta {
  width: 100%;
  min-height: 54px;
}

.menu-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(92, 76, 54, 0.16);
  color: var(--muted);
  font-size: 14px;
}

.close-menu {
  justify-self: end;
  width: 52px;
  height: 52px;
  position: relative;
  border: 1px solid rgba(75, 59, 34, 0.28);
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.close-menu:hover {
  border-color: rgba(75, 59, 34, 0.58);
  transform: rotate(4deg);
}

.close-menu span {
  position: absolute;
  left: 14px;
  top: 25px;
  width: 22px;
  height: 1px;
  background: var(--ink);
}

.close-menu span:first-child {
  transform: rotate(45deg);
}

.close-menu span:last-child {
  transform: rotate(-45deg);
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-root.active {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.58);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  max-height: min(820px, calc(100vh - 40px));
  overflow: auto;
  display: none;
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-card.active {
  display: block;
}

.modal-wide {
  width: min(1120px, calc(100vw - 40px));
}

.modal-map {
  width: min(1180px, calc(100vw - 40px));
}

.modal-card h2 {
  margin-bottom: 18px;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.modal-lead {
  max-width: 620px;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--olive-dark);
}

.modal-close svg {
  width: 26px;
  height: 26px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.booking-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  padding: 0 16px;
}

.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  min-height: 24px;
}

.map-modal-scroll {
  margin-top: 28px;
  max-height: min(64vh, 660px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
}

.map-modal-scroll img {
  width: 100%;
  min-width: 920px;
  max-width: none;
}

.plot-modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0;
}

.plot-modal-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
}

.plot-modal-grid ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
  color: var(--muted);
}

.all-plots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.all-plot-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.all-plot-card:hover {
  border-color: rgba(95, 91, 53, 0.48);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 34px rgba(45, 36, 24, 0.09);
}

.all-plot-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 7px;
  object-fit: cover;
}

.all-plot-card__body {
  display: grid;
  gap: 12px;
  align-content: space-between;
}

.all-plot-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.all-plot-card span {
  color: var(--muted);
}

.all-plot-card em {
  font-style: normal;
  color: var(--olive-dark);
  white-space: nowrap;
}

.all-plot-card p {
  margin: 0;
  font-size: 14px;
}

.all-plot-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.all-plot-card strong {
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.all-plot-card button {
  min-width: 104px;
  min-height: 38px;
  border: 1px solid rgba(75, 59, 34, 0.74);
  border-radius: 7px;
  background: transparent;
  color: var(--olive-dark);
  font-size: 13px;
}

@media (max-width: 1240px) {
  :root {
    --container: min(100% - 56px, 1100px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-btn {
    justify-self: end;
  }

  .hero-media {
    width: min(76vw, 880px);
    height: 100%;
  }

  .hero-content {
    padding-top: 160px;
  }

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

  .plot-panel {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .plot-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .plot-card {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .plot-card img {
    width: 72px;
    height: 72px;
  }

  .plot-card p {
    font-size: 14px;
  }

  .plot-card strong {
    font-size: 16px;
  }

  .plot-card button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .full-width {
    grid-column: 1 / -1;
  }

  .communication-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .communication {
    border-right: 0;
    padding: 0 28px 0 0;
  }

  .infra-track {
    gap: 18px;
  }

  .infra-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 34px, 720px);
  }

  .site-header {
    min-height: 92px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .logo {
    font-size: 18px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-media {
    width: 100%;
    height: 340px;
    min-height: 340px;
    right: 0;
    top: auto;
    opacity: 0.92;
    object-position: right center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 242, 235, 0.98) 0%, rgba(247, 242, 235, 0.92) 52%, rgba(247, 242, 235, 0.36) 70%, rgba(247, 242, 235, 0) 100%),
      linear-gradient(90deg, var(--paper), rgba(247, 242, 235, 0.08));
  }

  .hero-content {
    padding-top: 136px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 68px);
    letter-spacing: 0.08em;
  }

  .rule {
    margin: 38px 0 26px;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 18px;
  }

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

  .benefit {
    min-height: auto;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    justify-items: start;
    align-items: center;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px var(--container-padding, 17px);
  }

  .benefit:not(:last-child)::after {
    display: none;
  }

  .benefit svg {
    width: 24px;
    height: 24px;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .section-inner {
    padding: 42px 0;
  }

  h2 {
    font-size: 30px;
  }

  .filters {
    gap: 10px;
    margin: 26px 0 24px;
  }

  .filter {
    min-height: 40px;
    padding: 0 15px;
  }

  .legend {
    gap: 18px;
    font-size: 14px;
  }

  .map-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .plot-count {
    font-size: 18px;
  }

  .plot-panel__head {
    align-items: start;
  }

  .plot-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plot-list .plot-card:nth-of-type(n + 5) {
    display: none;
  }

  .plot-card {
    grid-template-columns: 72px 1fr;
    padding: 14px;
    gap: 12px;
  }

  .plot-card img {
    width: 72px;
    height: 72px;
  }

  .plot-card button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .communication-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .communication {
    grid-template-columns: 36px 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .communication:last-child {
    border-bottom: 0;
  }

  .infra-track {
    gap: 14px;
    margin-top: 28px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-inline: contain;
  }

  .infra-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .infra-card img {
    width: 100%;
    aspect-ratio: 1.32 / 1;
  }

  .infra-card h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .nature-cta {
    min-height: 350px;
  }

  .nature-cta::before {
    background: linear-gradient(90deg, rgba(25, 31, 27, 0.9), rgba(37, 38, 30, 0.56));
  }

  .nature-content h2 {
    font-size: 28px;
  }

  .nature-content p {
    font-size: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 38px 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 22px 0 32px;
    gap: 16px;
  }

  .mobile-panel {
    padding: 14px;
    background:
      linear-gradient(180deg, rgba(247, 242, 235, 0.98), rgba(247, 242, 235, 0.94)),
      url("assets/hero-landscape-framed.webp") right bottom / 125% auto no-repeat;
  }

  .menu-shell {
    min-height: calc(100vh - 28px);
    padding: 22px;
    gap: 30px;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .menu-top .logo {
    font-size: 17px;
  }

  .menu-nav {
    gap: 16px;
  }

  .menu-nav a {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    font-size: clamp(34px, 11vw, 54px);
  }

  .menu-nav a::after {
    left: 46px;
  }

  .menu-aside {
    justify-self: stretch;
    max-width: none;
    padding: 20px;
  }

  .menu-aside h2 {
    font-size: 26px;
  }

  .menu-aside p:not(.menu-kicker) {
    margin: 14px 0 18px;
    font-size: 14px;
  }

  .menu-bottom {
    display: grid;
    justify-content: stretch;
    gap: 10px;
    font-size: 13px;
  }

  .booking-form,
  .plot-modal-grid,
  .all-plots {
    grid-template-columns: 1fr;
  }

  .all-plot-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .all-plot-card img {
    min-height: 110px;
  }

  .all-plot-card__body {
    gap: 8px;
  }

  .all-plot-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .map-modal-scroll {
    max-height: 58vh;
  }

  .map-modal-scroll img {
    min-width: 760px;
  }
}

@media (max-width: 440px) {
  :root {
    --container: min(100% - 28px, 390px);
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .menu-shell {
    padding: 18px;
  }

  .menu-layout {
    gap: 22px;
  }

  .menu-nav a {
    font-size: clamp(30px, 10vw, 42px);
  }

  .menu-aside {
    padding: 16px;
  }

  .infra-track {
    gap: 12px;
  }

  .infra-card h3 {
    font-size: 19px;
    line-height: 1.28;
  }

  .benefit {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .modal-root {
    padding: 14px;
  }

  .modal-card {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    padding: 26px 20px;
  }

  .all-plot-card {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 12px;
  }

  .all-plot-card img {
    height: 96px;
    min-height: 96px;
    aspect-ratio: auto;
  }

  .all-plot-card__top,
  .all-plot-card__bottom {
    align-items: start;
  }

  .all-plot-card__top {
    flex-direction: column;
    gap: 4px;
  }

  .all-plot-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .all-plot-card__bottom {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .all-plot-card strong {
    font-size: 15px;
  }

  .all-plot-card button {
    min-width: 92px;
    min-height: 34px;
    width: auto;
    font-size: 12px;
  }

  .map-modal-scroll img {
    min-width: 720px;
  }
}
