:root {
  --forest: #17351f;
  --leaf: #2f7a43;
  --moss: #6d8f4e;
  --earth: #8a5938;
  --clay: #c76b3b;
  --cream: #fbf6ed;
  --mist: #eef4ed;
  --ink: #1e261f;
  --muted: #657064;
  --line: #dfe7dc;
  --white: #fff;
  --shadow: 0 18px 45px rgba(23, 53, 31, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  padding-bottom: 74px;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(23, 53, 31, .94);
  color: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.nav {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.brand img {
  width: 48px;
  height: 48px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.navlinks a {
  opacity: .9;
}

.navlinks a:hover,
.navlinks a.active {
  color: #cce6bc;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle::before {
  box-shadow: 0 7px 0 currentColor;
}

.nav-open .nav-toggle::before {
  box-shadow: none;
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-3.5px) rotate(-45deg);
}

.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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #20b15a;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(32, 177, 90, .24);
}

.btn-call {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(199, 107, 59, .22);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.btn-soft {
  border-color: var(--line);
  background: var(--white);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 30, 16, .9), rgba(20, 53, 30, .58) 48%, rgba(20, 53, 30, .18)), url("../imgi_27_WhatsApp-Image-2021-12-09-at-1.47.49-PM-2.jpg") center/cover;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  align-items: center;
  gap: 44px;
  padding: 54px 0 78px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #d7efc8;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.trust-pill {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 14px;
}

.trust-pill strong {
  display: block;
  font-size: 21px;
}

.trust-pill span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.lead-form {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.15;
}

.lead-form p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

label {
  font-size: 13px;
  font-weight: 800;
  color: var(--forest);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

section {
  padding: 76px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section-head h2,
.page-section h2 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
}

.section-head p,
.page-section > p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-card,
.room-card,
.place-card,
.faq-item,
.review,
.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 53, 31, .07);
}

.info-card {
  padding: 22px;
}

.info-card b {
  display: block;
  color: var(--forest);
  font-size: 18px;
  margin-bottom: 5px;
}

.info-card span,
.room-card p,
.place-card p,
.faq-item p,
.review p,
.package-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.split-media img,
.gallery img,
.room-card img,
.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.split-media img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.split-media img:not(:first-child) {
  aspect-ratio: 1 / .8;
}

.copy h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
}

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

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 4px #d9eed5;
}

.band {
  background: var(--forest);
  color: var(--white);
}

.band .section-head h2,
.band .section-head p {
  color: var(--white);
}

.rooms-grid,
.places-grid,
.packages-grid,
.review-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.room-card,
.place-card {
  overflow: hidden;
}

.room-card img,
.place-card img {
  height: 230px;
  border-radius: 8px 8px 0 0;
}

.room-card div,
.place-card div,
.package-card,
.faq-item,
.review {
  padding: 20px;
}

.room-card h3,
.place-card h3,
.package-card h3,
.faq-item h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 21px;
  line-height: 1.15;
}

.room-card p,
.place-card p,
.package-card p,
.faq-item p,
.review p {
  margin: 0;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.mini-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

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

.cta-band {
  padding: 48px 0;
  background: linear-gradient(90deg, var(--earth), var(--clay));
  color: var(--white);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.06;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
}

.food-panel {
  background: var(--white);
}

.food-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.food-strip img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.home-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.home-detail-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.home-detail-card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 18px;
  line-height: 1.15;
}

.home-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-distance-head {
  margin-top: 48px;
}

.home-distance-grid {
  margin-top: 0;
}

.section-link {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.estate-viewpoint {
  background: var(--mist);
}

.estate-viewpoint .section-head p {
  max-width: 620px;
}

.viewpoint-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.viewpoint-video,
.viewpoint-copy {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 53, 31, .07);
}

.viewpoint-video video {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  background: #102015;
}

.viewpoint-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.viewpoint-copy h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
}

.viewpoint-copy p {
  margin: 0;
  color: var(--muted);
}

.viewpoint-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.viewpoint-points span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.estate-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 214px;
  gap: 12px;
}

.estate-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #102015;
  box-shadow: 0 12px 32px rgba(23, 53, 31, .08);
}

.estate-gallery figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.estate-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estate-gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(16, 25, 19, .76);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

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

.amenity {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
}

.amenity b {
  display: block;
  margin-bottom: 4px;
}

.amenity span {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.included-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(23, 53, 31, .07);
}

.menu-card-dark {
  background: #17281b;
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
}

.menu-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.menu-card-dark .menu-card-head {
  border-bottom-color: rgba(255, 255, 255, .16);
}

.menu-card-head span {
  color: var(--leaf);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.menu-card-dark .menu-card-head span {
  color: #bde5a8;
}

.menu-card-head b {
  color: var(--forest);
  font-size: 22px;
}

.menu-card-dark .menu-card-head b {
  color: var(--white);
}

.meal-block {
  margin-top: 18px;
}

.meal-block h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 18px;
}

.menu-card-dark .meal-block h3 {
  color: var(--white);
}

.meal-block ul {
  display: grid;
  gap: 6px;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.menu-card-dark .meal-block ul {
  color: rgba(255, 255, 255, .78);
}

.menu-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--forest);
  font-weight: 700;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.distance-card {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 53, 31, .07);
}

.distance-card b {
  color: var(--forest);
  line-height: 1.2;
}

.distance-card span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.package-card strong {
  color: var(--forest);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: saturate(.9);
}

.footer {
  background: #101913;
  color: var(--white);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 34px;
}

.footer img {
  width: 84px;
  margin-bottom: 16px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, .75);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  text-align: center;
}

.sticky-contact {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 25, 19, .96);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 12px;
}

.sticky-contact .sticky-inner {
  width: min(680px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sticky-contact .btn {
  min-height: 52px;
  font-size: 15px;
}

.page-hero {
  position: relative;
  min-height: 380px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 30, 16, .82), rgba(11, 30, 16, .32)), var(--page-image, url("../imgi_30_WhatsApp-Image-2021-12-07-at-12.54.40-PM-e1721096001236.jpg")) center/cover;
}

.page-hero .container {
  position: relative;
  padding: 70px 0;
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.page-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-box {
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  padding: 24px;
}

.contact-box h2 {
  margin: 0 0 14px;
}

.contact-box p {
  color: rgba(255, 255, 255, .82);
}

.contact-box a {
  color: var(--white);
  font-weight: 800;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 920px) {
  body {
    padding-bottom: 82px;
  }

  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navlinks {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: 0;
    order: 3;
  }

  .nav-actions {
    order: 2;
    flex: 0 0 auto;
  }

  .nav.nav-open .navlinks,
  .nav:focus-within .navlinks {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(23, 53, 31, .98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  }

  .nav.nav-open .navlinks a,
  .nav:focus-within .navlinks a {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .nav.nav-open .navlinks a:hover,
  .nav.nav-open .navlinks a.active,
  .nav:focus-within .navlinks a:hover,
  .nav:focus-within .navlinks a.active {
    background: rgba(255, 255, 255, .08);
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(11, 30, 16, .78), rgba(11, 30, 16, .74)), url("../imgi_27_WhatsApp-Image-2021-12-09-at-1.47.49-PM-2.jpg") center/cover;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 50px;
  }

  .lead-form {
    padding: 18px;
  }

  .trust-row,
  .quick-grid,
  .rooms-grid,
  .places-grid,
  .packages-grid,
  .menu-grid,
  .home-detail-grid,
  .review-grid,
  .amenity-grid,
  .distance-grid,
  .footer-grid,
  .contact-layout,
  .faq-grid,
  .included-extra {
    grid-template-columns: 1fr;
  }

  .viewpoint-feature {
    grid-template-columns: 1fr;
  }

  .viewpoint-video video {
    min-height: 320px;
  }

  .estate-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

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

  .section-head,
  .cta-band .container {
    display: block;
  }

  .cta-band .hero-ctas {
    margin-top: 18px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

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

  .food-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 12px;
  }

  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-actions .btn {
    padding: 10px 12px;
    min-height: 42px;
  }

  .topbar .nav-actions {
    display: none;
  }

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

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

  .hero-ctas .btn {
    width: 100%;
  }

  section {
    padding: 54px 0;
  }

  .room-card img,
  .place-card img {
    height: 205px;
  }

  .viewpoint-copy {
    padding: 20px;
  }

  .viewpoint-points {
    grid-template-columns: 1fr;
  }

  .viewpoint-video video {
    min-height: 240px;
  }

  .estate-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .estate-gallery figure,
  .estate-gallery figure.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .sticky-contact {
    padding: 8px;
  }

  .sticky-contact .sticky-inner {
    gap: 8px;
  }

  .sticky-contact .btn {
    min-height: 50px;
    padding: 10px 8px;
    font-size: 13px;
  }
}
