@charset "utf-8";

:root {
  --forest: #173f34;
  --forest-dark: #0e2d25;
  --leaf: #6d8d66;
  --sage: #dbe3d6;
  --cream: #f5f1e8;
  --sand: #e8ddca;
  --ink: #20302a;
  --muted: #67716c;
  --white: #fff;
  --line: rgba(32, 48, 42, .16);
  --radius: 2px;
  --shadow: 0 25px 60px rgba(14, 45, 37, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
*:focus-visible { outline: 3px solid #d2a85d; outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 140px 0; }
.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; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); color: var(--forest); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 18px; color: var(--forest); font-family: "Manrope", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 12px 4px 0; background: currentColor; }
.eyebrow.light { color: #c8d5c7; }
h1, h2, h3 { margin: 0; font-family: "Manrope", sans-serif; font-weight: 500; letter-spacing: -.045em; line-height: 1.03; }
h2 { font-size: clamp(2.75rem, 5vw, 5.25rem); }
h2 em, h1 em { color: var(--leaf); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; }
p { margin: 0; }
.lead { font-size: 1.18rem; line-height: 1.65; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 56px; padding: 0 25px; border: 1px solid transparent; border-radius: var(--radius); font-family: "Manrope", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s, transform .25s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sage); color: var(--forest-dark); }
.button-primary:hover { background: var(--white); }
.button-ghost { border-color: rgba(255,255,255,.48); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--forest); }
.button-light { margin-top: 38px; background: var(--cream); color: var(--forest); }
.button-light:hover { background: var(--white); }
.button-dark { background: var(--forest); color: var(--white); }
.button-whatsapp { width: 100%; border: 0; background: var(--forest); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; padding: 0 0 8px; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--forest); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.17); color: var(--white); transition: background .3s, color .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(245, 241, 232, .96); color: var(--forest); box-shadow: 0 5px 30px rgba(14,45,37,.08); backdrop-filter: blur(12px); }
.site-header.menu-active { background: var(--cream); color: var(--forest); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: min(1320px, calc(100% - 48px)); height: 84px; margin: auto; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: .8rem; letter-spacing: -.04em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: .95rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.brand-copy small { opacity: .68; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 36px; font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 32px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; bottom: 25px; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 18px; border: 1px solid currentColor; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; display: flex; align-items: center; min-height: 100svh; overflow: hidden; background: var(--forest-dark); color: var(--white); }
.hero-bg { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(8,28,23,.8) 0%, rgba(8,28,23,.36) 58%, rgba(8,28,23,.18) 100%), linear-gradient(0deg, rgba(8,28,23,.4), transparent 55%), url("../imagenes/casas/exterior/10.jpg"); background-position: center; background-size: cover; animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-content { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; padding-top: 105px; }
.hero-copy { max-width: 810px; }
.hero h1 { font-size: clamp(4rem, 8.7vw, 8.1rem); }
.hero h1 em { color: #d7dfd2; }
.hero-lead { max-width: 590px; margin-top: 30px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 40px; }
.hero-note { display: flex; align-items: center; gap: 16px; margin-bottom: 25px; padding: 20px 0 20px 20px; border-left: 1px solid rgba(255,255,255,.55); color: rgba(255,255,255,.76); font-size: .78rem; line-height: 1.5; text-transform: uppercase; }
.hero-note-number { color: var(--white); font-family: Georgia, serif; font-size: 3.3rem; line-height: 1; }
.scroll-cue { position: absolute; z-index: 2; bottom: 32px; left: 50%; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { display: block; width: 38px; height: 1px; background: currentColor; }

.quick-facts { background: var(--forest); color: var(--white); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid > div { display: flex; align-items: center; gap: 16px; min-height: 115px; padding: 20px 30px; border-left: 1px solid rgba(255,255,255,.12); }
.facts-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.fact-icon { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #cbd8ca; font-family: Georgia, serif; font-size: 1.2rem; }
.facts-grid p { display: flex; flex-direction: column; line-height: 1.4; }
.facts-grid strong { font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 600; }
.facts-grid small { margin-top: 5px; color: rgba(255,255,255,.57); font-size: .68rem; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.intro-copy { padding-left: 40px; }
.intro-copy h2 { margin-bottom: 38px; }
.intro-copy .lead { margin-bottom: 23px; color: var(--ink); }
.intro-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.photo-collage { position: relative; min-height: 670px; }
.photo-collage figure { margin: 0; overflow: hidden; }
.photo-collage img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.photo-collage:hover img { transform: scale(1.025); }
.photo-main { position: absolute; top: 0; right: 0; width: 78%; height: 570px; }
.photo-small { position: absolute; z-index: 2; bottom: 0; left: 0; width: 43%; height: 300px; border: 12px solid var(--cream); border-left: 0; }
.collage-tag { position: absolute; z-index: 3; right: 0; bottom: 24px; display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--forest); color: var(--white); }
.collage-tag strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.collage-tag span { font-size: .65rem; line-height: 1.4; letter-spacing: .06em; text-transform: uppercase; }

.homes { background: #ebe4d8; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 75px; }
.section-heading > p { max-width: 390px; padding-bottom: 10px; color: var(--muted); }
.home-list { display: grid; gap: 38px; }
.home-card { display: grid; grid-template-columns: 1.45fr .8fr; min-height: 520px; background: var(--cream); box-shadow: 0 10px 40px rgba(20,45,37,.06); }
.home-card-reverse { grid-template-columns: .8fr 1.45fr; }
.home-card-reverse .home-image { grid-column: 2; }
.home-card-reverse .home-content { grid-column: 1; grid-row: 1; }
.home-image { position: relative; overflow: hidden; }
.home-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.home-card:hover .home-image img { transform: scale(1.035); }
.home-capacity { position: absolute; bottom: 0; left: 0; padding: 14px 19px; background: var(--forest); color: var(--white); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.home-content { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 55px 50px; }
.home-number { position: absolute; top: 28px; right: 30px; color: #9ba49e; font-family: Georgia, serif; font-size: .8rem; }
.home-content h3 { font-size: 3.2rem; }
.home-content > p:not(.home-number) { margin: 9px 0 25px; color: var(--leaf); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.home-content ul { display: grid; gap: 9px; margin: 0; padding: 0; color: var(--muted); font-size: .9rem; list-style: none; }
.home-content li { position: relative; padding-left: 18px; }
.home-content li::before { content: ""; position: absolute; top: .72em; left: 0; width: 6px; height: 1px; background: var(--leaf); }
.home-content .text-link { align-self: flex-start; }

.amenities { background: var(--forest); color: var(--white); }
.amenities-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.amenities-copy { position: sticky; top: 130px; align-self: start; }
.amenities-copy h2 em { color: #cdd9ca; }
.amenities-copy > p:not(.eyebrow) { max-width: 500px; margin-top: 28px; color: rgba(255,255,255,.64); }
.amenities-list { border-top: 1px solid rgba(255,255,255,.16); }
.amenity { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.amenity > span { color: #9eb29c; font-family: Georgia, serif; font-size: .78rem; }
.amenity p { display: flex; flex-direction: column; gap: 7px; }
.amenity strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; font-weight: 500; }
.amenity small { color: rgba(255,255,255,.55); font-size: .82rem; }

.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-auto-rows: 255px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--forest); cursor: zoom-in; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,29,24,.7), transparent 55%); opacity: .78; transition: opacity .3s; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.gallery-item > span { position: absolute; z-index: 1; bottom: 18px; left: 20px; color: var(--white); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item b { margin-left: 10px; font-weight: 400; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item:hover::after { opacity: 1; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.reviews { position: relative; overflow: hidden; background: var(--forest-dark); color: var(--white); }
.reviews::before { content: ""; position: absolute; top: -280px; right: -220px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.reviews-heading { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; margin-bottom: 70px; }
.reviews-heading h2 em { color: #cdd9ca; }
.google-rating { display: grid; grid-template-columns: 46px 1fr 20px; align-items: center; gap: 17px; flex: 0 0 315px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.055); transition: background .25s, transform .25s; }
.google-rating:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.google-letter { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--white); color: #4285f4; font-family: Arial, sans-serif; font-size: 1.55rem; font-weight: 700; }
.rating-copy { display: grid; }
.rating-copy small { color: rgba(255,255,255,.55); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.rating-copy strong { font-family: "Manrope", sans-serif; font-size: 1.5rem; font-weight: 500; line-height: 1.35; }
.stars { color: #f5c451; font-size: .74rem; letter-spacing: .12em; }
.google-rating > b { font-weight: 400; }
.review-summary { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.review-summary article { min-height: 270px; padding: 38px 42px; border-right: 1px solid rgba(255,255,255,.15); }
.review-summary article:last-child { border-right: 0; }
.quote-mark { color: #9db29c; font-family: Georgia, serif; font-size: 3.5rem; line-height: .8; }
.review-summary p { max-width: 280px; margin: 24px 0 30px; font-family: Georgia, serif; font-size: 1.3rem; line-height: 1.45; }
.review-summary small { color: rgba(255,255,255,.45); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.reviews-footer { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 42px; }
.reviews-footer > p { color: rgba(255,255,255,.55); font-size: .82rem; }
.reviews-footer .button-light { width: auto; margin-top: 0; }

.location { background: #e6ddcf; }
.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.location-photo { position: relative; height: 760px; overflow: hidden; }
.location-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,42,34,.6), transparent 55%); }
.location-photo img { width: 100%; height: 100%; object-fit: cover; }
.location-photo > span { position: absolute; z-index: 1; bottom: 35px; left: 40px; color: var(--white); font-family: Georgia, serif; font-size: 1.6rem; line-height: 1.25; }
.location-copy { padding-right: 25px; }
.location-copy h2 { margin-bottom: 30px; }
.location-copy > p:not(.eyebrow):not(.coordinates) { color: var(--muted); }
.address-card { display: flex; align-items: center; gap: 18px; margin: 30px 0; padding: 22px; border: 1px solid rgba(23,63,52,.18); background: rgba(255,255,255,.3); }
.address-pin { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--forest); color: var(--white); }
.address-card p { display: flex; flex-direction: column; }
.address-card strong { font-family: "Manrope", sans-serif; font-size: .9rem; }
.address-card small { color: var(--muted); font-size: .74rem; }
.nearby-list { display: grid; margin: 0 0 32px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.nearby-list li { display: grid; grid-template-columns: 108px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.nearby-list span { color: var(--forest); font-weight: 600; }
.coordinates { margin-top: 18px; color: #7c837f; font-size: .68rem; letter-spacing: .07em; }

.contact { background: var(--forest-dark); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.contact-copy h2 em { color: #cdd9ca; }
.contact-copy > p:not(.eyebrow) { max-width: 490px; margin-top: 28px; color: rgba(255,255,255,.62); }
.direct-contact { display: grid; gap: 16px; margin-top: 46px; }
.direct-contact a { display: flex; flex-direction: column; align-items: flex-start; }
.direct-contact small { color: #91a89c; font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.direct-contact strong { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.25); font-size: .86rem; font-weight: 500; }
.inquiry-form { display: grid; gap: 24px; padding: 48px; background: var(--cream); color: var(--ink); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .69rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field label span { color: #8b938f; font-weight: 400; text-transform: none; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid #afb5b1; border-radius: 0; outline: none; background: transparent; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 1px 0 var(--forest); }
.field textarea { resize: vertical; }
.form-note { color: #858d88; font-size: .7rem; text-align: center; }

.site-footer { padding: 75px 0 28px; background: #091f1a; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr .7fr .5fr; gap: 60px; align-items: start; padding-bottom: 65px; }
.footer-top > p { color: rgba(255,255,255,.55); font-family: Georgia, serif; font-size: 1.05rem; }
.footer-top nav, .footer-contact { display: grid; gap: 9px; color: rgba(255,255,255,.62); font-size: .72rem; }
.footer-top a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 12px; color: var(--white); }
.floating-whatsapp span { padding: 8px 12px; border-radius: 2px; background: var(--forest-dark); font-size: .68rem; opacity: 0; transform: translateX(10px); transition: opacity .2s, transform .2s; }
.floating-whatsapp b { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #25d366; box-shadow: 0 9px 28px rgba(0,0,0,.22); font-family: "Manrope", sans-serif; font-size: 1rem; }
.floating-whatsapp:hover span { opacity: 1; transform: none; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(7,24,20,.96); color: var(--white); }
.lightbox[open] { display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; }
.lightbox::backdrop { background: rgba(7,24,20,.9); }
.lightbox figure { display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: min(1100px, calc(100vw - 180px)); height: 100vh; margin: auto; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); object-fit: contain; }
.lightbox figcaption { display: flex; justify-content: space-between; width: 100%; padding-top: 15px; color: rgba(255,255,255,.72); font-size: .76rem; }
.lightbox figcaption small { color: rgba(255,255,255,.45); }
.lightbox button { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; top: 18px; right: 25px; font-size: 2.5rem; font-weight: 300; }
.lightbox-prev, .lightbox-next { height: 100%; font-size: 1.4rem; }

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

@media (max-width: 1050px) {
  .main-nav { gap: 22px; }
  .hero-note { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid > div:nth-child(3) { border-right: 0; }
  .intro-grid, .amenities-grid, .location-grid, .contact-grid { gap: 55px; }
  .intro-copy { padding-left: 0; }
  .home-card, .home-card-reverse { grid-template-columns: 1.2fr .8fr; }
  .home-card-reverse { grid-template-columns: .8fr 1.2fr; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-contact { grid-column: 3; }
}

@media (max-width: 820px) {
  .section { padding: 95px 0; }
  .shell { width: min(100% - 34px, 680px); }
  .nav-wrap { width: calc(100% - 34px); height: 72px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 90px 34px; background: var(--cream); color: var(--forest); transform: translateX(100%); transition: transform .35s; }
  .main-nav.open { transform: none; }
  .main-nav > a:not(.nav-cta) { padding: 8px 0; font-family: "Manrope", sans-serif; font-size: 2rem; font-weight: 500; letter-spacing: -.03em; text-transform: none; }
  .nav-cta { margin-top: 20px; padding: 13px 22px; }
  .hero-content { padding-top: 85px; }
  .hero h1 { font-size: clamp(3.6rem, 15vw, 6.2rem); }
  .hero-lead { max-width: 520px; }
  .scroll-cue { display: none; }
  .intro-grid, .amenities-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 60px; }
  .photo-collage { min-height: 580px; }
  .photo-main { width: 85%; height: 500px; }
  .photo-small { width: 45%; height: 245px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 50px; }
  .section-heading > p { max-width: 520px; }
  .home-card, .home-card-reverse { grid-template-columns: 1fr; }
  .home-card .home-image, .home-card-reverse .home-image { grid-column: 1; grid-row: 1; min-height: 430px; }
  .home-card .home-content, .home-card-reverse .home-content { grid-column: 1; grid-row: 2; }
  .amenities-copy { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: span 1; }
  .reviews-heading { align-items: flex-start; flex-direction: column; }
  .google-rating { width: 100%; max-width: 390px; }
  .review-summary { grid-template-columns: 1fr; }
  .review-summary article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .review-summary article:last-child { border-bottom: 0; }
  .review-summary p { max-width: 520px; }
  .location-photo { height: 560px; }
  .contact-grid { gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .shell { width: calc(100% - 30px); }
  .brand-copy small { display: none; }
  .hero { min-height: 760px; }
  .hero-bg { background-position: 58% center; }
  .hero-content { align-items: center; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5rem); }
  .hero-lead { margin-top: 24px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .facts-grid { grid-template-columns: 1fr; padding: 12px 0; }
  .facts-grid > div { min-height: 90px; padding: 16px 12px; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .facts-grid > div:last-child { border-bottom: 0; }
  h2 { font-size: clamp(2.65rem, 13.5vw, 4rem); }
  .photo-collage { min-height: 490px; }
  .photo-main { width: 90%; height: 415px; }
  .photo-small { width: 48%; height: 200px; border-width: 8px; border-left: 0; }
  .collage-tag { right: 0; bottom: 5px; padding: 13px 15px; }
  .collage-tag strong { font-size: 1.5rem; }
  .home-card .home-image, .home-card-reverse .home-image { min-height: 300px; }
  .home-content { padding: 55px 25px 38px; }
  .home-content h3 { font-size: 2.7rem; }
  .amenities-grid { gap: 60px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 175px; gap: 7px; }
  .gallery-tall { grid-row: span 2; }
  .gallery-item > span { bottom: 12px; left: 12px; }
  .reviews-heading { gap: 38px; margin-bottom: 48px; }
  .google-rating { grid-template-columns: 42px 1fr 18px; padding: 18px; }
  .review-summary article { padding: 30px 22px; }
  .reviews-footer { align-items: stretch; flex-direction: column; }
  .location-grid { gap: 50px; }
  .location-photo { height: 460px; }
  .location-photo > span { bottom: 25px; left: 25px; }
  .location-copy { padding-right: 0; }
  .nearby-list li { grid-template-columns: 90px 1fr; }
  .inquiry-form { padding: 30px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }
  .footer-contact { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { right: 15px; bottom: 15px; }
  .lightbox[open] { grid-template-columns: 46px 1fr 46px; }
  .lightbox figure { max-width: calc(100vw - 92px); }
  .lightbox figcaption span { max-width: 75%; }
}

@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 { opacity: 1; transform: none; }
}
