:root {
  --black: #1a1a1a;
  --graphite: #29282a;
  --card: #202020;
  --card-2: #333333;
  --white: #ffffff;
  --muted: #d7d7d2;
  --green: #7ac943;
  --green-deep: #2e7d32;
  --forest: #244e2d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  font-family: Montserrat, Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(122, 201, 67, 0.06), transparent 34%),
    var(--black);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0 0, rgba(122, 201, 67, 0.08), transparent 34%),
    repeating-linear-gradient(115deg, rgba(122, 201, 67, 0.035) 0 1px, transparent 1px 22px);
  background-size: 640px 640px, 100px 100px;
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 78%, transparent);
}

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

button,
input {
  font: inherit;
}

/* Keep the Bnovo guest popover above the secondary navigation. */
.booking-header {
  position: fixed;
  z-index: 70;
  inset: 0 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 260px minmax(560px, 720px) 48px;
  gap: 22px;
  align-items: center;
  padding: 22px max(34px, calc((100vw - 1520px) / 2)) 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.16) 74%, transparent);
  border-bottom: 0;
  backdrop-filter: none;
}

.booking-header.is-scrolled {
  background: rgba(8, 13, 12, 0.96);
  border-bottom: 1px solid rgba(122, 201, 67, 0.2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 201, 67, 0.34);
  border-radius: 6px;
  background: #101010;
}

.brand svg,
.hero-logo svg {
  width: 38px;
  fill: var(--white);
}

.brand svg path + path,
.hero-logo svg path + path {
  fill: none;
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  margin-top: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-widget-header {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  align-self: center;
}

.booking-widget-header #_bn_widget_ {
  width: 100%;
  min-height: 62px;
}

/* The archived green variant still uses the native date form. */
.quick-booking {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr)) 132px;
  gap: 12px;
  align-items: center;
}

.quick-booking label {
  min-height: 54px;
  display: grid;
  gap: 2px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(26, 26, 26, 0.78);
  border: 1px solid rgba(122, 201, 67, 0.32);
  border-radius: 4px;
  backdrop-filter: blur(14px);
}

.quick-booking span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-booking input {
  width: 100%;
  padding: 0;
  color: var(--white);
  color-scheme: dark;
  background: transparent;
  border: 0;
  font-weight: 800;
  outline: none;
}

.quick-booking input[type="number"] { appearance: textfield; }

.quick-booking button {
  min-height: 54px;
  color: #081006;
  background: var(--green);
  border: 0;
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.subnav {
  position: fixed;
  z-index: 40;
  top: 96px;
  left: auto;
  right: max(34px, calc((100vw - 1520px) / 2));
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.subnav a {
  padding: 0 18px;
  color: rgba(245, 245, 242, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  border-right: 0;
}

.subnav a:first-child {
  border-left: 0;
}

.subnav a:hover {
  color: var(--green);
}

.hero-video {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 max(34px, calc((100vw - 1520px) / 2)) 96px;
}

.hero-media,
.hero-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}

.hero-fallback {
  z-index: -5;
  background: url("assets/hero-drone-poster-v3.jpg") center / cover;
  transform: scale(1.06);
  animation: slowDrift 24s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -3;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(0deg, rgba(26, 26, 26, 0.84), transparent 36%, transparent 76%, rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 54%);
}

.hero-center {
  width: min(900px, 100%);
  padding: 0;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.75);
}

.hero-logo {
  display: none;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-logo svg {
  width: clamp(48px, 5vw, 64px);
  flex: 0 0 auto;
}

.hero-logo strong {
  display: block;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.hero-logo small {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 800;
}

.hero-kicker,
.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-center h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: 62px;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-center p:not(.hero-kicker) {
  max-width: 640px;
  margin: 0;
  color: #e4e7df;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
}

.btn-primary {
  color: #101010;
  background: var(--green);
  border-color: var(--green);
}

.btn-glass,
.btn-outline {
  color: var(--white);
  background: rgba(26, 26, 26, 0.58);
  border-color: rgba(122, 201, 67, 0.42);
  backdrop-filter: blur(12px);
}

.hero-badges {
  position: absolute;
  left: auto;
  right: max(22px, calc((100vw - 1520px) / 2));
  bottom: 92px;
  translate: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 520px;
}

.hero-badges span {
  padding: 10px 14px;
  color: var(--muted);
  border: 1px solid rgba(122, 201, 67, 0.25);
  border-radius: 4px;
  background: rgba(26, 26, 26, 0.64);
}

.scroll-cue {
  position: absolute;
  left: 30px;
  bottom: 38px;
  color: var(--muted);
  font-size: 12px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.section {
  width: min(1520px, calc(100% - 44px));
  margin: 0 auto;
  padding: 98px 0;
}

.section-title {
  margin-bottom: 34px;
}

.section-title.center {
  text-align: center;
}

.section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1.02;
}

.welcome {
  position: relative;
}

.welcome-heading {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
  padding-top: 26px;
  border-top: 1px solid rgba(122, 201, 67, 0.36);
}

.welcome-label {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: start;
  padding-top: 10px;
}

.welcome-label > span {
  padding-right: 16px;
  color: var(--green);
  border-right: 1px solid rgba(122, 201, 67, 0.42);
  font-size: 13px;
  font-weight: 900;
}

.welcome-label .eyebrow {
  margin: 0;
  line-height: 1.35;
}

.welcome-heading h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.98;
  text-wrap: balance;
}

.welcome-heading h2 em {
  color: var(--green);
  font-style: normal;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 84px);
}

.copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.copy p {
  margin: 0 0 22px;
}

.copy .welcome-lead {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.3;
}

.welcome-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.welcome-moments div {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.welcome-moments div:first-child {
  padding-left: 0;
  border-left: 0;
}

.welcome-moments dt {
  color: var(--green);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.welcome-moments dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.welcome-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.welcome-actions > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.view-photo {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow);
}

.view-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.view-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.view-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.view-photo figcaption span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.view-photo figcaption strong {
  font-size: 16px;
}

.house-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.house-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, #252525, #111);
  box-shadow: var(--shadow);
  position: relative;
}

.house-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  opacity: 0.75;
}

.house-card > a {
  display: block;
  overflow: hidden;
}

.house-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.06);
  transition: transform 280ms ease, filter 280ms ease;
}

.house-card:hover img {
  transform: scale(1.025);
  filter: brightness(0.84) contrast(1.04);
}

.house-content {
  padding: 24px;
}

.house-content h3 {
  margin: 0 0 8px;
  font-size: 30px;
}

.house-content h3 a:hover,
.price-row a:hover {
  color: var(--green);
}

.house-content p,
.house-content li {
  color: var(--muted);
}

.house-content ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.house-content li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-row span {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.price-row a {
  color: var(--white);
  font-weight: 800;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-grid article {
  min-height: 168px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #333333, #1a1a1a);
}

.amenity-grid span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(122, 201, 67, 0.4);
  border-radius: 6px;
  font-size: 28px;
}

.amenity-grid span svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-grid p {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1.35;
}

.territory-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(122, 201, 67, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.territory-frame figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}

.territory-frame img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  filter: brightness(0.78);
}

.territory-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 22px;
  font-weight: 900;
}

.route-button {
  width: fit-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 28px auto 0;
  padding: 0 28px;
  color: #091007;
  background: var(--green);
  border-radius: 4px;
  font-weight: 900;
}

.insights {
  padding-top: 64px;
  padding-bottom: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insights .section-title {
  max-width: 980px;
  margin-bottom: 28px;
}

.insights .section-title h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.insights .section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.insight-card {
  min-width: 0;
  overflow: hidden;
  background: #151a17;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.insight-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.insight-media {
  min-height: 300px;
  position: relative;
  display: block;
  overflow: hidden;
  background: #101310;
}

.insight-card:not(.insight-card-featured) .insight-media {
  min-height: 0;
  aspect-ratio: 2 / 1;
}

.insight-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.92);
  transition: transform 420ms ease, filter 420ms ease;
}

.insight-card:hover .insight-media img {
  transform: scale(1.025);
  filter: brightness(0.94) saturate(1);
}

.insight-media > span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  color: #101010;
  background: var(--green);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.insight-card-featured > div {
  justify-content: center;
  padding: clamp(30px, 4vw, 56px);
}

.insight-meta {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.insight-card-featured h3 {
  font-size: clamp(38px, 4vw, 58px);
}

.insight-card h3 a {
  color: var(--white);
}

.insight-card > div > p:not(.insight-meta) {
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.insight-link,
.all-guides {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-link {
  margin-top: auto;
}

.insight-link span,
.all-guides span {
  margin-left: 6px;
}

.all-guides {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 0 20px;
  border: 1px solid rgba(122, 201, 67, 0.38);
  border-radius: 4px;
}

.stay-formats {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stay-format-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
}

.stay-format-links a {
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 7px;
  padding: 20px 24px;
  background: #202020;
  transition: background 180ms ease, color 180ms ease;
}

.stay-format-links a:hover,
.stay-format-links a:focus-visible {
  color: #081006;
  background: var(--green);
}

.stay-format-links span,
.stay-format-links small {
  display: block;
}

.stay-format-links span {
  font-size: 14px;
  font-weight: 800;
}

.stay-format-links small {
  color: #a8b0a9;
  font-size: 10px;
  line-height: 1.45;
}

.stay-format-links a:hover small,
.stay-format-links a:focus-visible small {
  color: rgba(8, 16, 6, 0.72);
}

.stay-format-more {
  min-height: 52px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 18px;
  color: var(--green);
  border: 1px solid rgba(122, 201, 67, 0.38);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-footer {
  color: #f4f2ee;
  background: #0d120e;
  border-top: 1px solid rgba(122, 201, 67, 0.22);
}

.content-footer-inner {
  width: min(100%, 1400px);
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.28fr);
  gap: clamp(48px, 7vw, 110px);
  margin: 0 auto;
  padding: 58px 34px 48px;
}

.footer-brand {
  display: inline-block;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.footer-identity p {
  margin: 18px 0;
  color: rgba(244, 242, 238, 0.58);
  font-size: 12px;
  line-height: 1.7;
}

.footer-contact {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.footer-directory > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-directory strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-directory a {
  color: rgba(244, 242, 238, 0.62);
  font-size: 11px;
  line-height: 1.5;
  transition: color 160ms ease;
}

.footer-directory a:hover,
.footer-directory a:focus-visible {
  color: var(--green);
}

@media (max-width: 900px) {
  .content-footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

.home-faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.home-faq-list details {
  border-bottom: 1px solid var(--line);
}

.home-faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list summary::after {
  content: "+";
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #081006;
  background: var(--green);
  border-radius: 4px;
  font-size: 20px;
}

.home-faq-list details[open] summary::after {
  content: "−";
}

.home-faq-list p {
  max-width: 860px;
  margin: 0;
  padding: 0 52px 24px 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.82);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.booking-section,
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.booking-section p,
.contact-info p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.booking-card,
.contact-info,
.map-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.booking-card {
  display: grid;
  gap: 14px;
}

.booking-card-direct {
  min-width: 0;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background: var(--card);
}

.booking-card-direct > strong {
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.booking-card-direct > span {
  color: var(--muted);
  line-height: 1.55;
}

.booking-direct-link {
  width: fit-content;
}

.booking-card-direct .booking-privacy {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.booking-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.booking-card input {
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-info h2,
.booking-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
}

.contact-info a {
  color: var(--white);
  font-size: 21px;
}

.contact-info .contact-address {
  max-width: 520px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  background: #172617;
  scroll-margin-top: 112px;
  isolation: isolate;
}

.yandex-route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% - 78px);
  display: block;
  border: 0;
  background: #050706;
}

.map-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  text-align: left;
  background: #0a0e0b;
  border-top: 1px solid rgba(122, 201, 67, 0.34);
  pointer-events: none;
}

.map-location-summary {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-location-summary > span {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: var(--green);
  border: 4px solid rgba(122, 201, 67, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--green);
}

.map-location-summary strong,
.map-location-summary small {
  display: block;
}

.map-location-summary strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.map-location-summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

@media (min-width: 1000px) {
  .map-card {
    scroll-margin-top: 160px;
  }
}

.map-route-link {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #091007;
  background: var(--green);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  pointer-events: auto;
}

.map-route-link span {
  color: inherit;
  font-size: 18px;
}

@media (max-width: 560px) {
  .map-card {
    min-height: 620px;
  }

  .map-card-content {
    min-height: 112px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 16px;
  }

  .yandex-route-map {
    height: calc(100% - 112px);
  }

  .map-route-link {
    width: 100%;
    justify-content: center;
  }
}

.floating-book {
  position: fixed;
  z-index: 60;
  right: 96px;
  bottom: 24px;
  padding: 14px 18px;
  color: var(--green);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(122, 201, 67, 0.28);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-transform: uppercase;
}

.floating-wa {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #091007;
  background: var(--green);
  border-radius: 6px;
  font-weight: 900;
}

.video-modal {
  width: min(900px, calc(100% - 32px));
  padding: 0;
  color: var(--white);
  background: #050605;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.video-modal button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 28px;
}

.modal-inner {
  padding: 22px;
}

.modal-inner video {
  width: 100%;
  max-height: 520px;
  background: #000;
  border-radius: 4px;
}

.modal-inner p {
  color: var(--muted);
}

@keyframes slowDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.13) translate3d(-1%, 1%, 0); }
}

@media (max-width: 1100px) {
  .booking-header {
    grid-template-columns: 1fr 48px;
    padding: 14px 22px 10px;
  }

  .booking-widget-header,
  .quick-booking {
    grid-column: 1 / -1;
    order: 3;
  }

  .quick-booking {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 132px;
    gap: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .subnav {
    top: 156px;
    display: none;
    flex-wrap: wrap;
    padding: 12px;
  }

  .subnav.is-open {
    display: flex;
  }

  .subnav a {
    min-height: 34px;
  }

  .hero-video {
    padding-top: 210px;
  }

  .hero-center {
    width: min(600px, 100%);
  }

  .hero-center h1 {
    max-width: 620px;
    font-size: 38px;
  }

  .hero-badges {
    left: max(22px, calc((100vw - 1520px) / 2));
    right: auto;
    justify-content: flex-start;
  }

  .welcome-grid,
  .booking-section,
  .contacts {
    grid-template-columns: 1fr;
  }

  .welcome-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .view-photo {
    width: 100%;
    max-width: 820px;
    justify-self: center;
    order: -1;
  }

  .house-grid,
  .territory-frame {
    grid-template-columns: 1fr;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-card-featured {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .stay-format-links {
    grid-template-columns: 1fr;
  }

  .stay-format-links a {
    min-height: 78px;
  }

  .stay-format-more {
    width: 100%;
    justify-content: center;
  }

  .content-footer-inner {
    padding: 44px 18px 36px;
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .booking-header {
    padding: 10px 14px;
  }

  .brand strong {
    font-size: 18px;
  }

  .booking-widget-header,
  .quick-booking {
    display: none;
  }

  .subnav {
    top: 76px;
  }

  .hero-video {
    align-items: flex-end;
    padding: 110px 14px 116px;
  }

  .hero-fallback {
    background-image: url("assets/hero-drone-poster-mobile-v3.jpg");
  }

  .hero-logo strong {
    font-size: 32px;
  }

  .hero-center h1 {
    max-width: 360px;
    font-size: 26px;
    line-height: 1.05;
  }

  .hero-center {
    padding: 20px;
  }

  .hero-logo svg {
    width: 54px;
  }

  .hero-badges {
    left: 14px;
    right: 14px;
    bottom: 76px;
    max-width: none;
  }

  .hero-badges span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1520px);
    padding: 70px 0;
  }

  .welcome-heading {
    padding-top: 20px;
  }

  .welcome-heading h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .welcome-label {
    padding-top: 0;
  }

  .welcome-grid {
    gap: 34px;
    margin-top: 38px;
  }

  .copy {
    font-size: 16px;
  }

  .copy .welcome-lead {
    font-size: 22px;
  }

  .welcome-moments {
    margin: 28px 0 26px;
    padding: 18px 0;
  }

  .welcome-moments div {
    padding: 0 10px;
  }

  .welcome-moments dt {
    font-size: 16px;
  }

  .welcome-moments dd {
    font-size: 10px;
  }

  .welcome-actions .btn {
    width: 100%;
  }

  .view-photo figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .view-photo figcaption strong {
    font-size: 13px;
  }

  .amenity-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .insights {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .insight-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .insight-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .insight-card-featured .insight-media,
  .insight-card:not(.insight-card-featured) .insight-media {
    min-height: 150px;
    height: 100%;
    aspect-ratio: auto;
  }

  .insight-media > span {
    display: none;
  }

  .insight-card > div {
    padding: 16px;
  }

  .insight-card > div > p:not(.insight-meta) {
    display: none;
  }

  .insight-card h3 {
    font-size: 21px;
  }

  .insight-link {
    margin-top: 14px;
  }

  .insight-card-featured h3 {
    font-size: 36px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .floating-book {
    left: 14px;
    right: 86px;
    bottom: 14px;
    text-align: center;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
}
