:root {
  --am-ink: #181712;
  --am-muted: #6f6b61;
  --am-cream: #f4f0e7;
  --am-cream-2: #ebe3d5;
  --am-paper: #fffdf8;
  --am-gold: #c7a232;
  --am-gold-dark: #8e6d14;
  --am-green: #174e3f;
  --am-border: rgba(24, 23, 18, .13);
  --am-shadow: 0 24px 70px rgba(31, 27, 17, .13);
  --am-radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--am-ink);
  background: var(--am-cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
body.am-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.am-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.am-section { padding: clamp(72px, 8vw, 120px) 0; }
.am-section--paper { background: var(--am-paper); }
.am-section--dark { background: var(--am-ink); color: var(--am-cream); }
.am-section--green { background: var(--am-green); color: white; }
.am-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--am-gold-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.am-section--dark .am-eyebrow, .am-section--green .am-eyebrow { color: #e8cc70; }
.am-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.am-title {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.am-title em { color: var(--am-gold); font-weight: 400; }
.am-lead { max-width: 760px; margin: 24px 0 0; color: var(--am-muted); font-size: clamp(1rem, 1.7vw, 1.16rem); }
.am-section--dark .am-lead, .am-section--green .am-lead { color: rgba(255,255,255,.7); }

.am-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--am-gold);
  color: #17150e;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.am-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(142,109,20,.25); }
.am-button--dark { background: var(--am-ink); color: white; }
.am-button--ghost { border-color: var(--am-border); background: transparent; }
.am-button--whatsapp { background: #1e9f5a; color: white; }

.am-notice {
  position: relative;
  z-index: 30;
  padding: 9px 20px;
  background: #11110e;
  color: #f7f2e7;
  text-align: center;
  font-size: .78rem;
}
.am-notice strong { color: #e8cc70; }
.am-notice__countdown { display: inline-flex; gap: 4px; margin-left: 5px; font-weight: 800; }
.am-notice__countdown span { min-width: 24px; padding: 2px 5px; border-radius: 5px; background: rgba(255,255,255,.1); color: #e8cc70; }

.am-header {
  position: sticky;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid var(--am-border);
  background: rgba(244,240,231,.92);
  backdrop-filter: blur(16px);
}
.am-header__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.am-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.am-brand img { width: 43px; height: 43px; object-fit: contain; }
.am-brand strong { display: block; font-size: .94rem; }
.am-brand small { display: block; color: var(--am-muted); font-size: .72rem; }
.am-nav { display: flex; align-items: center; gap: 23px; }
.am-nav a { color: #4c4941; font-size: .83rem; text-decoration: none; }
.am-nav a:hover { color: var(--am-gold-dark); }
.am-menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--am-border); border-radius: 50%; background: var(--am-paper); }

.am-hero { min-height: min(820px, calc(100vh - 112px)); display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr); }
.am-hero__copy { display: flex; align-items: center; padding: clamp(58px, 8vw, 110px) max(28px, calc((100vw - 1180px) / 2)); }
.am-hero__copy-inner { max-width: 590px; }
.am-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: .85;
  letter-spacing: -.06em;
}
.am-hero h1 em { display: block; color: var(--am-gold); font-weight: 400; }
.am-hero__text { max-width: 560px; margin: 28px 0 0; color: var(--am-muted); font-size: 1.04rem; }
.am-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.am-chip { padding: 9px 12px; border: 1px solid var(--am-border); border-radius: 10px; background: rgba(255,255,255,.44); font-size: .78rem; font-weight: 750; }
.am-hero__offer { max-width: 520px; margin: 0 0 24px; padding: 18px; border: 1px solid rgba(199,162,50,.38); border-radius: 16px; background: rgba(255,253,248,.6); }
.am-hero__offer span { display: block; color: var(--am-gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.am-hero__offer strong { display: block; margin-top: 5px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.am-hero__offer small { display: block; margin-top: 5px; color: var(--am-muted); font-size: .72rem; }
.am-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.am-hero__visual { position: relative; min-height: 640px; overflow: hidden; background: #d6ccba; }
.am-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.am-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,13,10,.73)); }
.am-hero__caption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; justify-content: space-between; gap: 20px; color: white; }
.am-hero__caption span { color: rgba(255,255,255,.68); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.am-hero__caption strong { display: block; margin-top: 3px; font-family: Georgia, serif; font-size: 1.35rem; }

.am-facts { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--am-border); border-bottom: 1px solid var(--am-border); background: var(--am-paper); }
.am-fact { min-height: 116px; display: grid; align-content: center; padding: 22px; border-right: 1px solid var(--am-border); }
.am-fact:last-child { border-right: 0; }
.am-fact span { color: var(--am-muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.am-fact strong { margin-top: 6px; font-family: Georgia, serif; font-size: 1.14rem; font-weight: 400; }

.am-gallery { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 290px 290px; gap: 12px; margin-top: 44px; }
.am-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: #d7d1c6; }
.am-gallery figure:first-child { grid-row: 1 / 3; }
.am-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.am-gallery figure:hover img { transform: scale(1.025); }
.am-gallery figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 11px 13px; border-radius: 11px; background: rgba(17,17,14,.76); color: white; font-size: .78rem; backdrop-filter: blur(8px); }
.am-gallery--campaign { grid-template-columns: 1.2fr .9fr .9fr; grid-template-rows: 390px; }
.am-gallery--campaign figure:first-child { grid-row: auto; }
.am-project-actions { margin-top: 26px; }

.am-two-column { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.am-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.am-benefit { padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.055); }
.am-benefit span { font-size: 1.5rem; }
.am-benefit h3 { margin: 13px 0 7px; font-size: 1rem; }
.am-benefit p { margin: 0; color: rgba(255,255,255,.63); font-size: .86rem; }

.am-amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 42px; }
.am-amenity { padding: 18px; border: 1px solid var(--am-border); border-radius: 14px; background: rgba(255,255,255,.45); font-size: .86rem; font-weight: 700; }
.am-amenity span { display: block; margin-bottom: 10px; font-size: 1.35rem; }

.am-typologies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 44px; }
.am-type { overflow: hidden; border: 1px solid var(--am-border); border-radius: 20px; background: var(--am-paper); }
.am-type__top { min-height: 154px; padding: 24px; background: #25231d; color: white; }
.am-type__top span { color: #e8cc70; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.am-type__top h3 { margin: 10px 0 5px; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; }
.am-type__top p { margin: 0; color: rgba(255,255,255,.63); }
.am-type__details { padding: 20px 24px 24px; }
.am-type__details ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 0; list-style: none; }
.am-type__details li { padding: 7px 9px; border-radius: 8px; background: var(--am-cream); font-size: .76rem; }
.am-type__plant { display: none; margin-bottom: 18px; }
.am-type__plant.is-open { display: block; }
.am-type__plant img { width: 100%; max-height: 360px; object-fit: contain; border-radius: 12px; background: white; }
.am-type__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.am-button--small { min-height: 42px; padding: 9px 14px; font-size: .78rem; }

.am-map-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; margin-top: 42px; }
.am-map { min-height: 440px; overflow: hidden; border-radius: 22px; background: #ded8cc; }
.am-location-card { display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid var(--am-border); border-radius: 22px; background: var(--am-paper); }
.am-location-card h3 { margin: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.am-location-card p { color: var(--am-muted); }
.am-location-list { display: grid; gap: 8px; margin: 22px 0; }
.am-location-list span { padding: 10px 12px; border-radius: 10px; background: var(--am-cream); font-size: .82rem; }

.am-finance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.am-finance article { padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.055); }
.am-finance h3 { margin: 0 0 9px; color: #e8cc70; }
.am-finance p { margin: 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.am-disclaimer { margin-top: 22px; color: rgba(255,255,255,.48); font-size: .75rem; }

.am-form-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.am-form-benefits { display: grid; gap: 10px; margin-top: 28px; }
.am-form-benefits span { color: rgba(255,255,255,.75); font-size: .87rem; }
.am-form-benefits span::before { content: "✓"; margin-right: 9px; color: #e8cc70; font-weight: 900; }
.am-form { padding: clamp(24px, 4vw, 40px); border-radius: 24px; background: var(--am-paper); color: var(--am-ink); box-shadow: var(--am-shadow); }
.am-form h3 { margin: 0 0 6px; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.am-form > p { margin: 0 0 24px; color: var(--am-muted); font-size: .86rem; }
.am-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.am-field { display: grid; gap: 6px; }
.am-field--full { grid-column: 1 / -1; }
.am-field label { font-size: .75rem; font-weight: 800; }
.am-field input, .am-field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--am-border);
  border-radius: 10px;
  background: white;
  color: var(--am-ink);
}
.am-form .am-button { width: 100%; margin-top: 16px; }
.am-privacy { margin: 11px 0 0; color: var(--am-muted); text-align: center; font-size: .7rem; }

.am-faq { display: grid; gap: 10px; margin-top: 38px; }
.am-faq details { border: 1px solid var(--am-border); border-radius: 14px; background: rgba(255,255,255,.55); }
.am-faq summary { padding: 18px 20px; font-weight: 800; cursor: pointer; }
.am-faq details p { margin: 0; padding: 0 20px 20px; color: var(--am-muted); }

.am-footer { padding: 54px 0 100px; background: #11110e; color: white; }
.am-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
.am-footer h2, .am-footer h3 { margin-top: 0; }
.am-footer p, .am-footer a { color: rgba(255,255,255,.62); font-size: .82rem; }
.am-footer a { display: block; margin: 8px 0; text-decoration: none; }
.am-footer a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.am-footer__legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: .76rem; }
.am-footer__legal a { margin: 0; }
.am-footer--site .am-footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
.am-footer__brand img { width: auto; height: 48px; object-fit: contain; margin-bottom: 12px; }
.am-footer__brand strong { display: block; margin-top: 12px; color: #e8cc70; font-size: .82rem; }

.am-floating {
  position: fixed;
  z-index: 22;
  right: 18px;
  bottom: 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,.24);
}

.am-thanks { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at top left, rgba(199,162,50,.22), transparent 40%), var(--am-cream); }
.am-thanks__card { width: min(680px, 100%); padding: clamp(34px, 7vw, 70px); border: 1px solid var(--am-border); border-radius: 28px; background: var(--am-paper); text-align: center; box-shadow: var(--am-shadow); }
.am-thanks__card img { width: 70px; height: 70px; margin: 0 auto 22px; object-fit: contain; }
.am-thanks__card h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 7vw, 4.8rem); font-weight: 400; line-height: .95; }
.am-thanks__card h1 em { color: var(--am-gold); font-weight: 400; }
.am-thanks__card p { color: var(--am-muted); }
.am-thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }

@media (max-width: 980px) {
  .am-nav { display: none; position: fixed; inset: 112px 16px auto; padding: 22px; border: 1px solid var(--am-border); border-radius: 18px; background: var(--am-paper); box-shadow: var(--am-shadow); }
  .am-nav.is-open { display: grid; }
  .am-nav .am-button { width: 100%; }
  .am-menu-button { display: block; }
  .am-hero { grid-template-columns: 1fr; }
  .am-hero__copy { min-height: 680px; padding: 72px 30px; }
  .am-hero__visual { min-height: 620px; }
  .am-facts { grid-template-columns: repeat(3, 1fr); }
  .am-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 230px 230px; }
  .am-gallery figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .am-two-column, .am-form-shell { grid-template-columns: 1fr; }
  .am-amenities { grid-template-columns: repeat(3, 1fr); }
  .am-map-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .am-container { width: min(100% - 28px, 1180px); }
  .am-section { padding: 68px 0; }
  .am-notice { padding-inline: 12px; font-size: .7rem; }
  .am-header__inner { min-height: 66px; }
  .am-brand img { width: 38px; height: 38px; }
  .am-brand small { display: none; }
  .am-nav { inset: 102px 10px auto; }
  .am-hero__copy { min-height: auto; padding: 58px 20px 62px; }
  .am-hero h1 { font-size: clamp(3.35rem, 18vw, 5.2rem); }
  .am-hero__visual { min-height: 520px; }
  .am-hero__caption { display: grid; }
  .am-actions, .am-actions .am-button { width: 100%; }
  .am-facts { grid-template-columns: 1fr 1fr; }
  .am-fact { min-height: 96px; padding: 17px; }
  .am-fact:nth-child(even) { border-right: 0; }
  .am-gallery { grid-template-columns: 1fr; grid-template-rows: 370px repeat(4, 240px); }
  .am-gallery figure:first-child { grid-column: auto; }
  .am-benefits, .am-typologies, .am-finance { grid-template-columns: 1fr; }
  .am-amenities { grid-template-columns: 1fr 1fr; }
  .am-map { min-height: 360px; }
  .am-fields { grid-template-columns: 1fr; }
  .am-field--full { grid-column: auto; }
  .am-footer__grid { grid-template-columns: 1fr; }
  .am-footer--site .am-footer__grid { grid-template-columns: 1fr; }
  .am-footer__legal { flex-direction: column; }
  .am-gallery--campaign { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .am-floating { right: 12px; bottom: 12px; left: 12px; }
  .am-floating .am-button { width: 100%; }
}

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