:root {
  --ink: #111714;
  --paper: #f3f0e9;
  --light: #fffdf8;
  --rust: #a34830;
  --jade: #5b7465;
  --line: rgba(17, 23, 20, 0.18);
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.22);
  transition: background .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled { height: 66px; background: rgba(17,23,20,.94); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; text-transform: uppercase; }
.brand b { display: block; font-weight: 700; }
.brand-mark { width: 18px; height: 28px; border: 1px solid currentColor; border-top: 7px solid currentColor; transform: skewY(-12deg); }
nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
nav a { transition: opacity .2s ease; }
nav a:hover { opacity: .65; }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.55); }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: inherit; padding: 11px; }
.menu-button span { display: block; height: 1px; margin: 6px 0; background: currentColor; }

.hero { position: relative; min-height: 94svh; overflow: hidden; color: white; background: #38453f; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.03); animation: hero-drift 12s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,11,.78) 0%, rgba(8,14,11,.47) 37%, rgba(8,14,11,.08) 68%), linear-gradient(0deg, rgba(8,14,11,.54), transparent 42%); }
.hero-content { position: relative; z-index: 2; width: min(620px, 88vw); min-height: 94svh; display: flex; flex-direction: column; justify-content: flex-end; padding: calc(var(--header-height) + 60px) 0 9vh 7vw; }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; }
.hero h1 { margin: 0; font: 400 clamp(60px, 7.6vw, 116px)/.82 Georgia, "Times New Roman", serif; }
.hero h1 span { color: #e3b0a0; }
.hero-copy { max-width: 500px; margin: 32px 0 0; font-size: clamp(17px, 1.45vw, 22px); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 30px; padding: 0 20px; border: 0; cursor: pointer; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--rust); color: white; }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 14px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.image-note { position: absolute; z-index: 2; right: 2vw; bottom: 14px; margin: 0; font-size: 10px; opacity: .7; }

.hero-reveal { opacity: 0; transform: translateY(20px); animation: rise-in .75s ease forwards; }
.hero-reveal:nth-child(2) { animation-delay: .12s; }
.hero-reveal:nth-child(3) { animation-delay: .22s; }
.hero-reveal:nth-child(4) { animation-delay: .32s; }

.proof-band { display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 4vw; background: var(--light); border-bottom: 1px solid var(--line); }
.proof-item { padding: 6px 2vw; border-right: 1px solid var(--line); }
.proof-item:last-child { border: 0; }
.proof-item strong { display: block; font: 400 clamp(28px, 3vw, 46px)/1 Georgia, serif; color: var(--rust); }
.proof-item span { display: block; margin-top: 8px; font-size: 12px; text-transform: uppercase; }

.section { padding: clamp(84px, 10vw, 150px) 7vw; }
.intro { background: var(--paper); }
.section-kicker { padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--jade); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.intro h2, .volume-copy h2, .unit-heading h2, .location-copy h2, .faq-intro h2, .lead-intro h2 { margin: 0; font: 400 clamp(44px, 6vw, 88px)/.98 Georgia, serif; }
.intro-copy { max-width: 520px; font-size: 17px; }
.intro-copy p { margin: 0 0 18px; }

.volume-section { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 760px; background: var(--ink); color: white; }
.volume-image-wrap { position: relative; overflow: hidden; min-height: 660px; }
.volume-image-wrap img { height: 100%; object-fit: cover; }
.image-note-dark { color: var(--ink); }
.volume-copy { padding: 10vw 7vw 8vw 6vw; }
.volume-copy .eyebrow { color: #b4c8ba; }
.volume-copy h2 { max-width: 510px; font-size: clamp(44px, 5vw, 74px); }
.volume-copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 42px; color: #c6cfca; }
.feature-list { margin: 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 8px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.18); }
.feature-list span { color: #b4c8ba; font-size: 11px; }

.unit-section { background: var(--light); }
.unit-heading { display: grid; grid-template-columns: .45fr 1fr; gap: 5vw; align-items: start; margin-bottom: 72px; }
.unit-heading .eyebrow { color: var(--rust); }
.unit-heading h2 { max-width: 900px; font-size: clamp(44px, 5.5vw, 78px); }
.unit-table { border-top: 1px solid var(--ink); }
.unit-row { display: grid; grid-template-columns: 1fr .8fr 1.2fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); align-items: center; }
.unit-row strong { font: 400 28px Georgia, serif; }
.unit-labels { padding: 12px 0; color: #657069; font-size: 11px; text-transform: uppercase; }
.fine-print { max-width: 700px; margin: 22px 0 0; color: #657069; font-size: 12px; }

.location-section { padding: 0 4vw 4vw; background: var(--light); }
.location-inner { display: grid; grid-template-columns: .9fr 1.1fr; background: #9d4a34; color: white; }
.location-copy { padding: clamp(70px, 8vw, 120px) 7vw; }
.location-copy h2 { font-size: clamp(44px, 5vw, 72px); }
.location-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0; color: #f0d9d2; }
.dark-link { margin-top: 10px; }
.amenities { display: flex; flex-direction: column; justify-content: center; padding: 7vw 6vw; background: #28483d; }
.amenities > p { margin: 0 0 28px; color: #b7cec1; font-size: 12px; text-transform: uppercase; }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.amenity-grid span { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.2); font-size: 15px; }

.faq-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; background: var(--light); }
.faq-intro .eyebrow { color: var(--rust); }
.faq-intro h2 { font-size: clamp(44px, 5vw, 72px); }
.faq-intro > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: #5f6963; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; list-style: none; font: 400 clamp(21px, 2vw, 28px)/1.25 Georgia, serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 22px; font: 400 28px/1 Arial, sans-serif; color: var(--rust); transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: 0; padding: 0 48px 25px 0; color: #4f5953; }

.lead-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; padding: clamp(86px, 10vw, 150px) 7vw; background: var(--paper); }
.lead-intro { position: sticky; top: 110px; align-self: start; }
.lead-intro .eyebrow { color: var(--rust); }
.lead-intro h2 { font-size: clamp(44px, 5vw, 72px); }
.lead-intro > p:not(.eyebrow) { max-width: 510px; margin: 28px 0 0; }
.contact-note { display: flex; flex-direction: column; gap: 4px; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-note span { color: #657069; font-size: 11px; text-transform: uppercase; }
.contact-note a { font: 400 24px Georgia, serif; }
.lead-form { padding-top: 4px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.lead-form label { display: block; margin-bottom: 24px; }
.lead-form label > span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea { width: 100%; min-height: 52px; border: 0; border-bottom: 1px solid #8e9691; border-radius: 0; outline: 0; background: transparent; color: var(--ink); padding: 11px 0; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-bottom-color: var(--rust); box-shadow: 0 1px 0 var(--rust); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.consent input { width: 18px; height: 18px; accent-color: var(--rust); }
.consent span { font-weight: 400 !important; }
.button-submit { width: 100%; background: var(--rust); color: white; }
.button-submit[disabled] { cursor: wait; opacity: .65; }
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 13px; }
.form-status.error { color: #a23223; }
.form-status.success { color: #27633f; }
.whatsapp-fallback { display: inline-block; margin-top: 8px; border-bottom: 1px solid currentColor; font-weight: 700; }
.honey { position: absolute !important; left: -9999px; }

footer { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 30px; align-items: end; padding: 48px 4vw; background: var(--ink); color: #dbe2de; }
footer p { margin: 0; font-size: 12px; }
.footer-note { text-align: right; color: #8fa098; }

.reveal, .reveal-image { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal-image { transform: scale(.985); }
.reveal.visible, .reveal-image.visible { opacity: 1; transform: none; }

@keyframes rise-in { to { opacity: 1; transform: none; } }
@keyframes hero-drift { from { transform: scale(1.08); } to { transform: scale(1.03); } }

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header { padding: 0 22px; }
  nav { position: absolute; top: 100%; left: 0; width: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 22px 26px; background: rgba(17,23,20,.97); }
  nav.open { display: flex; }
  nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .nav-cta { border: 0; }
  .menu-button { display: block; }
  .hero { min-height: 92svh; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,14,11,.88) 0%, rgba(8,14,11,.28) 68%, rgba(8,14,11,.25)); }
  .hero-content { min-height: 92svh; width: 100%; padding: 120px 24px 54px; }
  .hero h1 { font-size: clamp(54px, 16vw, 82px); }
  .hero-copy { max-width: 440px; margin-top: 24px; }
  .hero-actions { flex-wrap: wrap; margin-top: 26px; }
  .proof-band { grid-template-columns: 1fr 1fr; padding: 10px 18px; }
  .proof-item { padding: 22px 14px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { border-bottom: 0; }
  .intro-grid, .volume-section, .unit-heading, .location-inner, .faq-section, .lead-section { grid-template-columns: 1fr; }
  .intro-grid { gap: 34px; }
  .volume-image-wrap { min-height: 58svh; }
  .volume-copy { padding: 74px 7vw 86px; }
  .unit-heading { gap: 22px; margin-bottom: 46px; }
  .location-section { padding: 0; }
  .lead-section { gap: 70px; }
  .lead-intro { position: static; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-note { text-align: left; }
}

@media (max-width: 600px) {
  .brand { font-size: 12px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button-primary { width: min(100%, 320px); }
  .proof-item strong { font-size: 28px; }
  .proof-item span { font-size: 10px; }
  .section { padding-left: 22px; padding-right: 22px; }
  .intro h2, .volume-copy h2, .unit-heading h2, .location-copy h2, .faq-intro h2, .lead-intro h2 { font-size: 44px; }
  .unit-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; padding: 20px 0; }
  .unit-row span:last-child { grid-column: 2; }
  .unit-labels { display: none; }
  .unit-row strong { font-size: 23px; }
  .location-copy, .amenities { padding: 70px 22px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-grid span:nth-child(2) { border-top: 0; }
  .lead-section { padding-left: 22px; padding-right: 22px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-image, .hero-reveal { opacity: 1; transform: none; }
}
