:root {
  --ink: #19332f;
  --ink-deep: #0d2421;
  --cream: #f7f3ec;
  --sand: #e9dcc8;
  --gold: #c99e68;
  --gold-soft: #e5c9a4;
  --white: #fffdf8;
  --muted: #69736e;
  --line: rgba(25, 51, 47, .14);
  --shadow: 0 18px 60px rgba(22, 45, 40, .12);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); line-height: 1.55; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow-container { width: min(820px, calc(100% - 40px)); }
.section { padding: 110px 0; }
.light-section { background: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: var(--gold-soft); }
.section h2, .center-intro h2, .faq-layout h2, .contact-copy h2 { margin: 12px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2.25rem, 4.5vw, 4.2rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.03; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); align-items: end; gap: 48px; margin-bottom: 52px; }
.section-intro p, .editorial-copy > p, .faq-layout p { margin: 0; color: var(--muted); font-size: 1rem; }
.compact-intro { margin-bottom: 28px; }
.compact-intro h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.center-intro { text-align: center; max-width: 720px; margin: 0 auto 42px; }

.scroll-progress { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; pointer-events: none; }
.promo-bar { display: flex; justify-content: center; gap: 14px; align-items: center; min-height: 34px; padding: 8px 16px; background: var(--ink-deep); color: var(--white); font-size: 11px; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.promo-bar a { color: var(--gold-soft); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247, 243, 236, .92); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(22, 45, 40, .08); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 194px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.24rem; font-weight: 600; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a, .mobile-menu a { color: var(--ink); font-size: .88rem; font-weight: 650; }
.desktop-nav a { position: relative; padding: 28px 0; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .2s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle { border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); cursor: pointer; font-size: .75rem; font-weight: 800; letter-spacing: .08em; padding: 8px 10px; }
.theme-toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem; line-height: 1; }
.theme-toggle:hover { border-color: var(--gold); background: var(--sand); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; padding: 12px 20px 24px; background: var(--cream); border-top: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-align: center; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink-deep); }
.button-primary:hover { background: var(--white); }
.button-secondary { border-color: var(--ink); color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button-whatsapp { background: #d8efdd; color: #135b34; }
.button-light { background: var(--white); color: var(--ink); }
.button-small { min-height: 40px; padding: 10px 15px; font-size: .69rem; }
.full-button { width: 100%; }
.text-link { display: inline-flex; margin-top: 22px; color: var(--ink); font-size: .82rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link:hover { color: var(--gold); }

.hero { position: relative; min-height: min(760px, calc(100vh - 34px)); display: grid; align-items: center; overflow: hidden; background: var(--ink-deep); color: var(--white); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 24, 21, .84), rgba(8,24,21,.28) 70%, rgba(8,24,21,.25)); }
.hero-content { position: relative; z-index: 1; padding: 100px 0 86px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #8fda99; box-shadow: 0 0 0 6px rgba(143,218,153,.16); }
.hero h1 { max-width: 760px; margin: 20px 0; font-family: var(--serif); font-size: clamp(3.6rem, 8vw, 7.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .94; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--gold-soft); font-style: italic; }
.hero-content > p { max-width: 570px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; align-items: center; gap: 8px; margin-top: 42px; color: rgba(255,255,255,.8); font-size: .86rem; }
.hero-proof span:first-child { color: var(--gold-soft); font-size: 1.2rem; }
.hero-scroll { position: absolute; bottom: 22px; left: 50%; z-index: 2; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); transform: translateX(-50%); }
.hero-scroll span { display: block; width: 28px; height: 42px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; }
.hero-scroll span::after { display: block; width: 4px; height: 8px; margin: 8px auto; border-radius: 4px; background: var(--gold-soft); content: ""; animation: scrollDot 1.5s infinite; }
.hero-scroll small { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(11px); opacity: 1; } }

.quick-reserve { position: relative; z-index: 3; margin-top: -1px; padding: 38px 0; background: var(--ink); color: var(--white); }
.quick-reserve .section-intro h2 { color: var(--white); }
.quick-reserve .section-intro p { color: rgba(255,255,255,.7); }
.reserve-form { display: grid; grid-template-columns: 1.2fr 1fr 1fr .65fr auto; align-items: end; gap: 12px; }
.reserve-form label, .contact-form label { display: grid; gap: 7px; color: inherit; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.reserve-form input, .reserve-form select, .contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); outline: none; padding: 13px 14px; }
.reserve-form input:focus, .reserve-form select:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,158,104,.2); }
.reserve-result { margin-top: 20px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.reserve-result strong { color: var(--gold-soft); }
.reserve-result a { margin-left: 12px; color: var(--gold-soft); font-weight: 800; text-decoration: underline; }

.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 8vw, 110px); }
.editorial-image { position: relative; }
.editorial-image::before { position: absolute; inset: 22px -22px -22px 22px; z-index: 0; border: 1px solid var(--gold); content: ""; }
.editorial-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); object-fit: cover; }
.feature-list { display: grid; gap: 20px; margin-top: 30px; }
.feature-list article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--sand); color: var(--ink); font-size: 1.3rem; }
.feature-list h3 { margin: 0 0 4px; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.feature-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-tab { border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; padding: 10px 16px; font-size: .78rem; font-weight: 800; }
.filter-tab.active, .filter-tab:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.units-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.unit-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 10px 40px rgba(22,45,40,.05); }
.unit-card:hover { box-shadow: var(--shadow); }
.unit-image-wrap { position: relative; height: 310px; overflow: hidden; }
.unit-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.unit-card:hover .unit-image-wrap img { transform: scale(1.04); }
.unit-tag { position: absolute; top: 16px; left: 16px; border-radius: 999px; background: rgba(255,253,248,.92); color: var(--ink); padding: 8px 11px; font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gallery-button { position: absolute; right: 16px; bottom: 16px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; background: rgba(13,36,33,.76); color: var(--white); cursor: pointer; padding: 9px 12px; font-size: .72rem; font-weight: 800; }
.unit-content { padding: 28px; }
.unit-kicker { color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.unit-card h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.unit-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.unit-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.unit-meta span, .modal-pills span { border: 1px solid var(--line); border-radius: 999px; color: var(--ink); padding: 7px 10px; font-size: .72rem; font-weight: 750; }
.unit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.unit-actions .button { flex: 1; min-width: 140px; }
.platform-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 17px; color: var(--muted); font-size: .75rem; }
.platform-links a { text-decoration: underline; text-underline-offset: 3px; }

.amenity-section { background: var(--cream); }
.amenity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.amenity-card { min-height: 188px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.55); }
.amenity-card .amenity-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 22px; border-radius: 50%; background: var(--sand); font-size: 1.15rem; }
.amenity-card h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.amenity-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.season-note { display: grid; grid-template-columns: 36px 1fr auto; gap: 14px; align-items: center; margin-top: 24px; padding: 20px; border-left: 3px solid var(--gold); background: var(--sand); }
.season-note > span { font-size: 1.5rem; color: var(--gold); }
.season-note strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.season-note p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.season-note .text-link { margin: 0; }

.location-section { background: var(--ink); color: var(--white); }
.location-section h2 { color: var(--white); }
.location-section .section-intro p { color: rgba(255,255,255,.72); }
.location-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.map-card { min-height: 470px; overflow: hidden; border-radius: var(--radius); background: #314843; }
.map-card iframe { width: 100%; height: 100%; min-height: 470px; border: 0; filter: saturate(.75); }
.poi-panel { display: flex; flex-direction: column; padding: 6px 0; }
.poi-list { display: grid; gap: 8px; }
.poi-button { display: flex; justify-content: space-between; align-items: center; width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; background: transparent; color: var(--white); cursor: pointer; padding: 14px 15px; text-align: left; }
.poi-button span:last-child { color: var(--gold-soft); font-size: .8rem; }
.poi-button.active, .poi-button:hover { border-color: var(--gold); background: rgba(201,158,104,.14); }
.poi-detail { min-height: 154px; margin: 18px 0; padding: 20px; border-radius: 17px; background: rgba(255,255,255,.08); }
.poi-detail h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.poi-detail p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.poi-detail strong { display: block; margin-top: 14px; color: var(--gold-soft); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.location-section .button-secondary { border-color: rgba(255,255,255,.45); color: var(--white); }
.location-section .button-secondary:hover { border-color: var(--gold); background: var(--gold); color: var(--ink-deep); }

.reviews-section { background: var(--white); }
.review-carousel { display: grid; grid-template-columns: 50px minmax(0, 1fr) 50px; align-items: center; gap: 20px; min-height: 240px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); text-align: center; }
.carousel-button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 1.2rem; }
.carousel-button:hover { background: var(--ink); color: var(--white); }
.review-quote { margin: 0 auto 18px; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.25; }
.review-name { display: block; color: var(--ink); font-size: .8rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.review-meta { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; }
.review-stars { margin-top: 12px; color: var(--gold); letter-spacing: .15em; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dot { width: 9px; height: 9px; border: 0; border-radius: 50%; background: #cfd4cf; cursor: pointer; padding: 0; }
.carousel-dot.active { background: var(--ink); }

.faq-section { background: var(--sand); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-layout p { margin-top: 18px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-bottom: 1px solid rgba(25,51,47,.2); }
.faq-question { display: flex; justify-content: space-between; gap: 20px; width: 100%; border: 0; background: transparent; color: var(--ink); cursor: pointer; padding: 20px 0; font-family: var(--serif); font-size: 1.18rem; text-align: left; }
.faq-question span:last-child { font-family: var(--sans); font-size: 1.2rem; }
.faq-answer { padding: 0 38px 20px 0; color: var(--muted); font-size: .9rem; }

.contact-section { background: var(--ink); color: var(--white); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { margin: 20px 0 28px; color: rgba(255,255,255,.72); }
.contact-facts { display: grid; gap: 8px; margin-top: 20px; color: rgba(255,255,255,.64); font-size: .82rem; }
.contact-form { display: grid; gap: 16px; padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.08); }
.contact-form label { color: rgba(255,255,255,.82); }
.contact-form input, .contact-form select, .contact-form textarea { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.96); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-status { min-height: 22px; color: var(--gold-soft); font-size: .84rem; }

.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.72); padding: 64px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 38px; }
.footer-brand { color: var(--white); }
.footer-brand p, .site-footer p { max-width: 260px; margin: 18px 0 0; font-size: .84rem; }
.footer-grid > div > strong { display: block; margin-bottom: 14px; color: var(--gold-soft); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 9px 0; font-size: .84rem; }
.footer-grid > div:not(:first-child) a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .74rem; }
.footer-credit:hover { color: var(--gold-soft); }

body.dark-mode {
  --ink: #edf4ef;
  --ink-deep: #071612;
  --cream: #101f1c;
  --sand: #1c3530;
  --gold: #d8aa70;
  --gold-soft: #efd2a7;
  --white: #172b26;
  --muted: #b5c5bd;
  --line: rgba(237,244,239,.18);
  --shadow: 0 18px 60px rgba(0,0,0,.25);
}
body.dark-mode .site-header { background: rgba(16,31,28,.92); }
body.dark-mode .site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.28); }
body.dark-mode .button-whatsapp { background: #1c5c3b; color: #e7f6e9; }
body.dark-mode .contact-form input, body.dark-mode .contact-form select, body.dark-mode .contact-form textarea { background: #f2f0e9; color: #19332f; }
body.dark-mode .amenity-card { background: rgba(255,255,255,.045); }
body.dark-mode .unit-tag { background: rgba(23,43,38,.94); color: var(--ink); }
body.dark-mode .faq-item { border-color: var(--line); }
body.dark-mode .carousel-dot { background: #53645d; }
body.dark-mode .button-primary:hover { background: #f0dfc5; color: #19332f; }

.unit-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; }
.unit-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,16,14,.8); backdrop-filter: blur(7px); }
.modal-card { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; width: min(940px, 100%); max-height: min(720px, 92vh); overflow: auto; border-radius: var(--radius); background: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.modal-close { position: absolute; top: 13px; right: 13px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(13,36,33,.75); color: var(--white); cursor: pointer; font-size: 1.5rem; line-height: 1; }
.modal-gallery { position: relative; min-height: 420px; background: var(--ink-deep); }
.modal-gallery > img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.modal-arrow { position: absolute; top: 50%; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(13,36,33,.72); color: var(--white); cursor: pointer; transform: translateY(-50%); }
.modal-arrow.prev { left: 16px; }
.modal-arrow.next { right: 16px; }
.modal-count { position: absolute; right: 16px; bottom: 16px; border-radius: 999px; background: rgba(13,36,33,.78); color: var(--white); padding: 7px 10px; font-size: .72rem; }
.modal-content { align-self: center; padding: 46px; }
.modal-content h2 { margin: 12px 0; font-family: var(--serif); font-size: 2.7rem; font-weight: 500; line-height: 1.05; }
.modal-content p { color: var(--muted); }
.modal-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.mobile-whatsapp { display: none; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: reveal .75s both; animation-timeline: view(); animation-range: entry 0% cover 28%; }
}
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .desktop-nav, .header-book { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu:not([hidden]) { display: block; }
  .section { padding: 82px 0; }
  .section-intro, .split-layout, .location-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .section-intro { margin-bottom: 32px; }
  .reserve-form { grid-template-columns: repeat(2, 1fr); }
  .reserve-form .button { grid-column: span 2; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-card { grid-template-columns: 1fr; max-height: 90vh; }
  .modal-gallery, .modal-gallery > img { min-height: 310px; height: 310px; }
  .modal-content { padding: 30px; }
}

@media (max-width: 600px) {
  .container, .narrow-container { width: min(100% - 28px, 1160px); }
  .promo-bar { flex-wrap: wrap; gap: 3px 10px; font-size: 9px; }
  .header-inner { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: 7px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 88px 0 76px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 100%; }
  .hero-actions .button { padding-inline: 16px; }
  .hero-proof { margin-top: 26px; font-size: .76rem; }
  .hero-scroll { display: none; }
  .section h2, .center-intro h2, .faq-layout h2, .contact-copy h2 { font-size: 2.65rem; }
  .reserve-form { grid-template-columns: 1fr 1fr; }
  .reserve-form label:first-child { grid-column: span 2; }
  .reserve-form .button { grid-column: span 2; }
  .split-layout { gap: 48px; }
  .editorial-image::before { inset: 12px -12px -12px 12px; }
  .units-grid, .amenity-grid { grid-template-columns: 1fr; }
  .unit-image-wrap { height: 255px; }
  .unit-content { padding: 22px; }
  .season-note { grid-template-columns: 28px 1fr; }
  .season-note .text-link { grid-column: 2; }
  .map-card, .map-card iframe { min-height: 330px; }
  .review-carousel { grid-template-columns: 36px minmax(0, 1fr) 36px; gap: 8px; padding: 18px 10px; }
  .review-quote { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { display: grid; gap: 5px; }
  .mobile-whatsapp { position: fixed; right: 14px; bottom: 14px; z-index: 40; display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; background: #b8e1c0; color: #124c2c; box-shadow: 0 12px 30px rgba(10,50,28,.25); padding: 12px 16px; font-size: .76rem; font-weight: 850; }
}

/* Multipage SEO architecture */
.page-hero { padding: 92px 0 82px; background: var(--ink-deep); color: var(--white); }
.page-hero .eyebrow { color: var(--gold-soft); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: .78rem; }
.breadcrumb a { color: var(--gold-soft); }
.page-title { max-width: 880px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.8rem); font-weight: 400; letter-spacing: -.06em; line-height: .96; }
.page-lead { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; }
.page-shell { padding-top: 0; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: clamp(36px, 7vw, 100px); align-items: start; }
.content-grid.reverse { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); }
.prose { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.prose h2, .prose h3 { color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.1; }
.prose h2 { margin: 0 0 18px; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.04em; }
.prose h3 { margin: 32px 0 8px; font-size: 1.5rem; }
.prose p { margin: 0 0 18px; }
.prose ul { display: grid; gap: 10px; margin: 18px 0 0; padding-left: 20px; }
.prose li::marker { color: var(--gold); }
.page-image { width: 100%; min-height: 430px; object-fit: cover; border-radius: 2px; }
.page-image-tall { min-height: 620px; }
.info-card { padding: 28px; background: var(--sand); }
.info-card h3 { margin: 0 0 10px; color: var(--ink); font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.info-card + .info-card { margin-top: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 2px; background: var(--sand); }
.gallery-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3) { grid-column: span 5; }
.gallery-grid figure:nth-child(n+4) { grid-column: span 4; }
.gallery-grid img { display: block; width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .4s; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { padding: 10px 12px; color: var(--muted); font-size: .76rem; }
.unit-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(32px, 6vw, 84px); align-items: start; }
.unit-detail-media img { width: 100%; min-height: 560px; object-fit: cover; }
.unit-detail-copy h1 { margin: 10px 0 18px; color: var(--ink); font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.7rem); font-weight: 400; letter-spacing: -.06em; line-height: .95; }
.unit-detail-copy > p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.unit-meta-large { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.unit-meta-large span { border: 1px solid var(--line); border-radius: 999px; color: var(--ink); padding: 9px 12px; font-size: .75rem; font-weight: 800; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.center-action { display: flex; justify-content: center; margin-top: 32px; }
.location-layout .poi-panel { padding: 24px; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.location-layout .button-secondary { border-color: rgba(255,255,255,.45); color: var(--white); }
.location-layout .button-secondary:hover { border-color: var(--gold); background: var(--gold); color: var(--ink-deep); }
.page-shell .reserve-result { border-color: var(--line); background: var(--white); color: var(--muted); }
.page-shell .reserve-result strong { color: var(--ink); }
.page-shell .reserve-result small { color: var(--muted); }
.page-shell .reserve-result a { color: var(--ink); }
.contact-card { padding: 40px; background: rgba(255,255,255,.08); }
.contact-card h3 { margin: 12px 0; color: var(--white); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; line-height: 1.04; }
.contact-card p { max-width: 430px; color: rgba(255,255,255,.72); line-height: 1.65; }
.light-link { color: var(--gold-soft); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.stat-row div { padding: 18px; border-top: 1px solid var(--line); }
.stat-row strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.stat-row span { color: var(--muted); font-size: .75rem; }
.answer-list { display: grid; gap: 0; }
.answer-list article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.answer-list h2 { margin: 0 0 10px; color: var(--ink); font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.answer-list p { margin: 0; color: var(--muted); line-height: 1.7; }
.page-note { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--sand); color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) {
  .content-grid, .content-grid.reverse, .unit-detail { grid-template-columns: 1fr; }
  .page-image, .unit-detail-media img { min-height: 360px; }
  .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(n+4) { grid-column: span 6; grid-row: auto; }
}
@media (max-width: 600px) {
  .page-hero { padding: 66px 0 58px; }
  .page-title { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .gallery-grid figure:nth-child(1), .gallery-grid figure:nth-child(2), .gallery-grid figure:nth-child(3), .gallery-grid figure:nth-child(n+4) { grid-column: span 12; }
  .gallery-grid img { min-height: 230px; }
  .contact-card { padding: 26px; }
  .stat-row { grid-template-columns: 1fr; }
}
