:root {
  --green-950: #09271c;
  --green-900: #143c2c;
  --green-800: #1b553c;
  --green-700: #28734e;
  --green-100: #e8f1ea;
  --green-50: #f4f8f4;
  --gold-600: #c8902c;
  --gold-500: #e2b44e;
  --gold-300: #f3d998;
  --earth: #846540;
  --ink: #17211c;
  --muted: #626f68;
  --line: #dbe5df;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(11, 48, 34, 0.13);
  --shadow-strong: 0 28px 75px rgba(8, 38, 27, 0.20);
  --radius: 24px;
  --container: 1180px;
  --header: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header);
  border-bottom: 1px solid rgba(20, 60, 44, 0.10);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 7px 24px rgba(11, 48, 34, 0.06);
}
.header__inner { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50% 50% 50% 15px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-700), var(--green-950));
  box-shadow: 0 9px 20px rgba(20, 60, 44, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.brand__text { display: flex; min-width: 0; flex-direction: column; line-height: 1.15; }
.brand__text strong { max-width: 300px; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.brand__text small { margin-top: 4px; color: var(--muted); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.menu { display: flex; align-items: center; gap: 21px; }
.menu a { color: #34443b; font-size: 0.92rem; font-weight: 700; }
.menu a:hover { color: var(--green-700); }
.menu .menu__cta { padding: 11px 17px; border-radius: 999px; color: var(--white); background: var(--green-800); }
.menu .menu__cta:hover { color: var(--white); background: var(--green-950); }
.menu-button { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 12px; background: var(--green-50); cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--green-950); }

.hero { position: relative; padding: 80px 0 88px; overflow: hidden; background: linear-gradient(110deg, #f8faf7 0%, #edf5ee 55%, #e4efe7 100%); }
.hero::before { position: absolute; top: -230px; right: -150px; width: 560px; height: 560px; border-radius: 50%; background: rgba(226, 180, 78, 0.17); content: ""; }
.hero::after { position: absolute; right: 22%; bottom: -180px; width: 380px; height: 380px; border-radius: 50%; background: rgba(40, 115, 78, 0.09); content: ""; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 70px; }
.overline { margin: 0 0 14px; color: var(--green-700); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.17em; text-transform: uppercase; }
.overline--light { color: var(--gold-300); }
.hero h1, h2 { margin: 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; line-height: 1.03; letter-spacing: -0.035em; }
.hero h1 { max-width: 700px; font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: 0.95; }
.hero h1 span { display: block; color: var(--green-700); }
.hero__location { max-width: 630px; margin: 27px 0 0; color: var(--earth); font-weight: 700; }
.hero__location::before { margin-right: 8px; content: "●"; color: var(--gold-600); }
.hero__lead { max-width: 600px; margin: 20px 0 0; color: #45534b; font-size: 1.14rem; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 51px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--green-800); box-shadow: 0 13px 30px rgba(20, 60, 44, 0.23); }
.button--primary:hover { background: var(--green-950); }
.button--secondary { border-color: rgba(20, 60, 44, 0.20); color: var(--green-950); background: rgba(255, 255, 255, 0.78); }
.button--gold { color: var(--green-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 13px 30px rgba(200, 144, 44, 0.22); }
.hero__features { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero__features li { padding: 8px 12px; border: 1px solid rgba(20, 60, 44, 0.10); border-radius: 999px; color: #3d4a43; background: rgba(255, 255, 255, 0.70); font-size: 0.84rem; font-weight: 700; }
.hero__features li::before { margin-right: 8px; content: "✓"; color: var(--green-700); font-weight: 900; }
.hero__media { position: relative; min-width: 0; padding: 18px 0 50px 20px; }
.image-frame { overflow: hidden; border: 9px solid var(--white); border-radius: 34px; background: #edf2ee; box-shadow: var(--shadow-strong); }
.image-frame img { width: 100%; height: 100%; object-fit: contain; background: #edf2ee; }
.image-frame--hero { aspect-ratio: 4 / 3; }
.hero__price { position: absolute; right: -22px; bottom: 0; min-width: 210px; padding: 20px 23px; border-radius: 21px; color: var(--white); background: var(--green-900); box-shadow: var(--shadow); }
.hero__price span, .hero__price small { display: block; }
.hero__price span { color: #d8e7dd; font-size: 0.77rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__price strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 2.35rem; line-height: 1.12; }
.hero__price small { color: var(--gold-300); }

.facts { color: var(--white); background: var(--green-950); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts__grid div { padding: 24px 28px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.facts__grid div:last-child { border-right: 0; }
.facts__grid span { display: block; color: #bdd1c4; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.facts__grid strong { display: block; margin-top: 2px; color: var(--gold-300); font-family: Georgia, "Times New Roman", serif; font-size: 1.72rem; }

.section { padding: 105px 0; }
.section--soft { background: var(--green-50); }
.split { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: 90px; }
.split__media { width: min(100%, 430px); margin: 0 auto; }
.image-frame--portrait { aspect-ratio: 3 / 4; }
h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.section__lead { max-width: 650px; margin: 24px 0 0; color: #4e5b54; font-size: 1.16rem; }
.location-card { max-width: 610px; margin-top: 27px; padding: 19px 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--green-50); }
.location-card span { display: block; color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.location-card strong { display: block; margin-top: 3px; color: var(--green-950); }
.text-link { display: inline-block; margin-top: 28px; color: var(--green-700); font-weight: 800; }
.section-heading { max-width: 800px; margin-bottom: 46px; }
.section-heading--center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--center p:last-child { margin: 17px auto 0; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; min-height: 215px; padding: 32px; overflow: hidden; border: 1px solid rgba(20, 60, 44, 0.09); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 32px rgba(20, 60, 44, 0.05); }
.card__number { position: absolute; top: 17px; right: 22px; color: rgba(20, 60, 44, 0.11); font-family: Georgia, "Times New Roman", serif; font-size: 3.2rem; font-weight: 700; line-height: 1; }
.card h3 { position: relative; margin: 65px 0 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.52rem; }
.card p { position: relative; margin: 8px 0 0; color: var(--muted); }

.finance { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--green-950), #18523a); }
.finance::before { position: absolute; top: -250px; left: -180px; width: 520px; height: 520px; border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 50%; content: ""; }
.finance__grid { position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: 70px; }
.finance h2, .contact h2 { color: var(--white); }
.finance__copy > p:not(.overline) { max-width: 520px; margin: 20px 0 30px; color: #cad9d0; font-size: 1.06rem; }
.finance__panel { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 32px; background: rgba(255, 255, 255, 0.08); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18); }
.finance__main { padding: 35px 39px 29px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.finance__main span, .finance__details span, .finance__main small, .finance__details small { display: block; }
.finance__main span, .finance__details span { color: #c3d7ca; font-size: 0.77rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.finance__main strong { display: block; color: var(--gold-300); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 6vw, 5.1rem); line-height: 1.05; }
.finance__details { display: grid; grid-template-columns: repeat(2, 1fr); }
.finance__details div { padding: 27px 39px; }
.finance__details div + div { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.finance__details strong { display: block; margin-top: 5px; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.finance__main small, .finance__details small { color: #c7d7cd; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 17px; }
.gallery__item, .promo__item { position: relative; margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: var(--green-50); box-shadow: 0 12px 34px rgba(11, 48, 34, 0.08); cursor: pointer; }
.gallery__item { grid-column: span 4; min-height: 340px; }
.gallery__item--wide { grid-column: span 6; }
.gallery__item--tall { grid-column: span 4; min-height: 500px; }
.gallery__item img, .promo__item img { width: 100%; height: 100%; object-fit: contain; background: #edf1ed; }
.gallery__item span, .promo__item span { position: absolute; right: 13px; bottom: 13px; padding: 8px 12px; border-radius: 999px; color: var(--white); background: rgba(9, 39, 28, 0.88); font-size: 0.78rem; font-weight: 700; }
.promo { margin-top: 72px; padding: 40px; border: 1px solid var(--line); border-radius: 31px; background: var(--green-50); }
.promo__heading { margin-bottom: 27px; }
.promo__heading h3 { margin: 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3vw, 3rem); }
.promo__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.promo__item { aspect-ratio: 1 / 1; }

.contact { color: var(--white); background: var(--green-900); }
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 70px; }
.contact__copy > p:not(.overline) { max-width: 520px; margin: 20px 0 0; color: #cadbd1; font-size: 1.05rem; }
.contact__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.contact__tags span { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: 999px; color: #dbe8e0; font-size: 0.81rem; }
.contact__options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.contact-card { min-width: 0; padding: 23px 19px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 20px; background: rgba(255, 255, 255, 0.08); }
a.contact-card:hover { background: rgba(255, 255, 255, 0.14); }
.contact-card span, .contact-card small { display: block; }
.contact-card span { color: var(--gold-300); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 7px; overflow-wrap: anywhere; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; line-height: 1.2; }
.contact-card small { margin-top: 9px; color: #c9d9d0; }
.contact-card--static { cursor: default; }

.footer { padding: 62px 0 0; color: #cedbd3; background: #071d15; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.8fr; gap: 65px; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: #9eb2a6; }
.footer p { max-width: 350px; margin: 18px 0 0; color: #9eb2a6; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-300); }
.footer__contact span { margin-top: 3px; color: #869d90; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.footer__contact a { color: var(--white); font-weight: 700; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.10); color: #82998b; font-size: 0.82rem; }
.footer__bottom a { color: #b6c9bd; }

.whatsapp { position: fixed; z-index: 900; right: 19px; bottom: 19px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px 11px 10px; border: 2px solid var(--white); border-radius: 999px; color: var(--white); background: #188a51; box-shadow: 0 13px 35px rgba(0, 0, 0, 0.23); }
.whatsapp span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.18); font-size: 0.7rem; font-weight: 900; }
.whatsapp strong { font-size: 0.85rem; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(3, 16, 11, 0.91); }
.lightbox__content { display: grid; width: min(1100px, 100%); height: min(82vh, 900px); place-items: center; }
.lightbox__content img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45); }
.lightbox__close { position: fixed; z-index: 1; top: 17px; right: 19px; display: grid; width: 48px; height: 48px; padding: 0; place-items: center; border: 2px solid rgba(255, 255, 255, 0.75); border-radius: 50%; color: var(--white); background: var(--green-950); font-size: 2rem; line-height: 1; cursor: pointer; }
.noscript { position: fixed; z-index: 4000; right: 15px; bottom: 15px; max-width: 390px; padding: 11px 14px; border-radius: 10px; color: var(--green-950); background: var(--gold-300); font-size: 0.8rem; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }

@media (max-width: 1040px) {
  :root { --header: 74px; }
  .menu-button { display: block; }
  .menu { position: fixed; top: var(--header); right: 0; bottom: 0; width: min(84vw, 390px); padding: 27px 23px; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); box-shadow: -20px 20px 55px rgba(8, 35, 25, 0.18); transform: translateX(105%); transition: transform 0.25s ease; }
  .menu.is-open { transform: translateX(0); }
  .menu a { padding: 15px 5px; border-bottom: 1px solid var(--line); }
  .menu .menu__cta { margin-top: 20px; padding: 13px 17px; border-bottom: 0; text-align: center; }
  .hero__grid, .split, .finance__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 48px; }
  .hero__copy { max-width: 800px; }
  .hero__media { width: min(100%, 720px); margin: 0 auto; }
  .split { gap: 58px; }
  .split__media { width: min(100%, 520px); }
  .finance__grid, .contact__grid { gap: 48px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery__item, .gallery__item--wide { grid-column: span 6; }
  .gallery__item--tall { grid-column: span 4; }
  .contact__options { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand__text strong { max-width: 210px; font-size: 0.96rem; }
  .brand__text small { font-size: 0.66rem; }
  .brand__mark { width: 43px; height: 43px; }
  .hero { padding: 58px 0 70px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .hero__lead { font-size: 1.04rem; }
  .hero__media { padding: 0 0 54px; }
  .hero__price { right: 8px; min-width: 185px; }
  .hero__price strong { font-size: 2.05rem; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .facts__grid div { padding: 20px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .facts__grid div:nth-child(2) { border-right: 0; }
  .facts__grid div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 78px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 185px; }
  .finance__details { grid-template-columns: 1fr; }
  .finance__details div + div { border-top: 1px solid rgba(255, 255, 255, 0.12); border-left: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide, .gallery__item--tall { grid-column: auto; min-height: 0; aspect-ratio: auto; }
  .gallery__item img { height: auto; }
  .promo { padding: 24px 15px; }
  .promo__grid { grid-template-columns: 1fr; }
  .contact__options { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp strong { display: none; }
  .whatsapp { padding: 9px; }
  .lightbox { padding: 18px; }
}

@media (max-width: 440px) {
  .brand__text strong { max-width: 180px; font-size: 0.87rem; }
  .brand__text small { display: none; }
  .hero__buttons .button { width: 100%; }
  .facts__grid strong { font-size: 1.46rem; }
  .hero__features { align-items: stretch; flex-direction: column; }
  .hero__features li { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
