:root {
  --forest: #2f3d2c;
  --forest-deep: #1c281d;
  --forest-soft: #58624a;
  --terracotta: #a54f2b;
  --rust: #7f321d;
  --gold: #d8b760;
  --cream: #f5ede2;
  --paper: #fbf7f0;
  --ink: #283026;
  --muted: #687064;
  --white: #fffdf8;
  --line: rgba(47, 61, 44, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: var(--gold);
  color: var(--forest-deep);
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
}

.hero-image,
.gallery-grid figure > img,
.location-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(25, 35, 25, 0.79);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  width: 180px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: var(--forest-deep);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-image {
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 26, 18, 0.88) 0%, rgba(17, 26, 18, 0.56) 44%, rgba(17, 26, 18, 0.16) 78%),
    linear-gradient(0deg, rgba(17, 26, 18, 0.72), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 94px;
  padding-bottom: 180px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-copy {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-copy strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #e6c96f;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
  color: var(--forest-deep);
}

.button-dark {
  width: 100%;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(25, 35, 25, 0.36);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 132px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-scroll span {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.intro {
  overflow: hidden;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.93fr 0.72fr;
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.intro-copy h2,
.section-heading h2,
.location h2,
.vf-copy h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.intro-copy .statement {
  margin: 18px 0 30px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-style: italic;
}

.intro-copy > p:last-of-type {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.choice-list span {
  padding: 9px 15px;
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -28px;
  width: 74%;
  height: 82%;
  background: var(--gold);
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 0.71;
  object-fit: cover;
  object-position: center 35%;
}

.portrait-frame figcaption {
  position: absolute;
  right: -38px;
  bottom: 62px;
  max-width: 240px;
  padding: 22px 24px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.promise-strip {
  padding: 44px 0;
  background: var(--terracotta);
  color: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promise-grid span {
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 2.05rem);
  line-height: 1.1;
  text-align: center;
}

.promise-grid span:last-child {
  border-right: 0;
}

.leisure {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 68px;
}

.split-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.85;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.amenity-card {
  min-height: 244px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.amenity-card:hover {
  position: relative;
  z-index: 1;
  background: var(--forest);
  color: var(--white);
  transform: translateY(-4px);
}

.amenity-card > span {
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.amenity-card:hover > span {
  color: var(--gold);
}

.amenity-card h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.amenity-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 310px);
  gap: 14px;
  margin-top: 80px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--forest-soft);
}

.gallery-grid .gallery-tall {
  grid-row: 1 / 3;
}

.gallery-grid img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid .gallery-tall img {
  object-position: center 55%;
}

.gallery-grid figure:nth-child(2) img {
  object-position: center 42%;
}

.gallery-grid figure:nth-child(3) img {
  object-position: center 24%;
}

.plan-section {
  background: var(--forest-deep);
  color: var(--white);
}

.plan-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.plan-preview {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #0d160e;
  cursor: zoom-in;
}

.plan-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.plan-preview img {
  width: 100%;
  height: auto;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.plan-preview:hover img {
  filter: brightness(1.08);
  transform: scale(1.018);
}

.plan-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  background: rgba(18, 28, 19, 0.87);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.plan-action b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 1.2rem;
}

.plan-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.location {
  padding-bottom: 0;
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 7vw, 94px);
  background: var(--terracotta);
  color: var(--white);
}

.location-card p:not(.eyebrow) {
  max-width: 470px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.location-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.location-visual > img {
  object-fit: cover;
  object-position: center;
}

.coordinates-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: min(330px, calc(100% - 60px));
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  background: rgba(247, 240, 230, 0.9);
  color: var(--forest-deep);
  backdrop-filter: blur(12px);
}

.coordinates-card span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coordinates-card strong {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.coordinates-card small {
  color: var(--muted);
}

.vf-section {
  background: var(--paper);
}

.vf-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.vf-brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.vf-logo {
  width: 104px;
  height: auto;
}

.vf-brand .eyebrow {
  margin: 0;
}

.vf-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0;
  color: var(--muted);
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.vf-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.vf-numbers div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vf-numbers strong {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 1;
}

.vf-numbers span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(54px, 9vw, 130px);
}

.faq-heading > p:last-child {
  max-width: 440px;
  margin-top: 26px;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 52px 26px 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact {
  padding: clamp(88px, 10vw, 140px) 0;
  background: var(--forest);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
}

.contact-highlight {
  display: flex;
  flex-direction: column;
  margin-top: 54px;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.contact-highlight span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-highlight strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.lead-form {
  padding: clamp(30px, 5vw, 54px);
  background: var(--paper);
  color: var(--ink);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(47, 61, 44, 0.34);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-bottom-color: var(--terracotta);
}

.lead-form input::placeholder {
  color: #96998e;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.lead-form .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.lead-form .consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--terracotta);
}

.lead-form > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-status {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(216, 183, 96, 0.2);
  color: var(--forest-deep);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer {
  padding: 66px 0 26px;
  background: #121b13;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.brand-footer {
  width: max-content;
}

.brand-footer .brand-logo {
  width: 218px;
}

.footer-broker {
  justify-self: center;
  text-align: center;
}

.footer-broker img {
  width: min(290px, 100%);
  height: auto;
  margin: 0 auto;
}

.footer-broker small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer-broker img {
  width: min(230px, 100%);
  height: auto;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.64rem;
}

.mobile-cta {
  display: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 46;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.plan-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: rgba(7, 12, 8, 0.98);
  color: var(--white);
}

.plan-toolbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.plan-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-toolbar strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.plan-toolbar span {
  color: var(--gold);
  font-size: 0.72rem;
}

.plan-toolbar button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

.plan-original {
  margin-right: 14px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-toolbar button:hover,
.plan-toolbar button:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.plan-toolbar .close-modal {
  margin-left: 10px;
  border-color: var(--gold);
}

.plan-canvas {
  flex: 1;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 40px;
}

.plan-loading {
  margin: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.plan-canvas img {
  width: min(1600px, 90vw);
  max-width: none;
  height: auto;
  transform-origin: center;
  transition: transform 180ms ease;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 81px;
    right: 0;
    width: min(420px, 100%);
    max-height: calc(100vh - 81px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 32px;
    overflow: auto;
    background: rgba(25, 35, 25, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding: 16px;
    text-align: center;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: var(--white);
  }

  .hero h1 {
    max-width: 680px;
  }

  .intro-grid,
  .vf-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    width: min(620px, 88%);
    margin-left: auto;
  }

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

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

  .location-card {
    min-height: 560px;
  }

  .location-visual {
    min-height: 560px;
  }

  .vf-copy {
    max-width: 780px;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .main-nav {
    top: 71px;
    max-height: calc(100vh - 71px);
  }

  .brand-logo {
    width: 164px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(14, 23, 15, 0.93) 0%, rgba(14, 23, 15, 0.64) 58%, rgba(14, 23, 15, 0.3) 100%);
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 240px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
    line-height: 0.94;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-left: 0;
    background: rgba(25, 35, 25, 0.78);
  }

  .hero-facts div {
    min-height: auto;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts strong {
    font-size: 1.25rem;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid {
    gap: 70px;
  }

  .intro-copy h2,
  .section-heading h2,
  .location h2,
  .vf-copy h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .portrait-frame {
    width: calc(100% - 22px);
  }

  .portrait-frame::before {
    top: -18px;
    right: -18px;
  }

  .portrait-frame figcaption {
    right: -10px;
    bottom: 24px;
    max-width: 210px;
    font-size: 1.12rem;
  }

  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .promise-grid span:nth-child(2) {
    border-right: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

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

  .amenity-card {
    min-height: 210px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 420px);
    margin-top: 58px;
  }

  .gallery-grid .gallery-tall {
    grid-row: auto;
  }

  .plan-section .shell {
    width: 100%;
  }

  .plan-heading,
  .plan-note {
    margin-left: 16px;
    margin-right: 16px;
  }

  .plan-preview {
    min-height: 420px;
  }

  .plan-preview img {
    width: auto;
    max-width: none;
    height: 420px;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .plan-preview:hover img {
    transform: translateX(-50%) scale(1.015);
  }

  .plan-action {
    right: 14px;
    bottom: 14px;
  }

  .location-grid {
    width: 100%;
  }

  .location-card {
    min-height: 540px;
    padding: 60px 24px;
  }

  .location-visual {
    min-height: 500px;
  }

  .vf-numbers {
    grid-template-columns: 1fr;
  }

  .vf-numbers div {
    min-height: 170px;
  }

  .faq-grid,
  .contact-grid {
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    padding: 30px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 72px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .whatsapp-float {
    left: 16px;
    bottom: 84px;
    width: 54px;
    height: 54px;
  }

  .plan-original {
    display: none;
  }

  .plan-toolbar {
    align-items: flex-start;
    padding: 12px;
  }

  .plan-toolbar > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .plan-toolbar button {
    width: 38px;
    height: 38px;
  }

  .plan-toolbar .close-modal {
    margin-left: 0;
  }

  .plan-canvas {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
  }

  .plan-canvas img {
    width: 1040px;
    transform-origin: left center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
