@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: hsl(40 33% 97%);
  --foreground: hsl(215 45% 18%);
  --card: hsl(0 0% 100%);
  --primary: hsl(215 55% 22%);
  --primary-foreground: hsl(40 33% 97%);
  --secondary: hsl(184 55% 90%);
  --secondary-foreground: hsl(215 55% 22%);
  --muted: hsl(35 25% 94%);
  --muted-foreground: hsl(215 15% 40%);
  --accent: hsl(35 45% 88%);
  --accent-foreground: hsl(215 55% 22%);
  --turquoise: hsl(184 65% 45%);
  --turquoise-foreground: hsl(0 0% 100%);
  --sand: hsl(35 50% 78%);
  --sand-deep: hsl(30 40% 65%);
  --border: hsl(35 25% 88%);
  --gradient-sea: linear-gradient(135deg, hsl(215 55% 22%) 0%, hsl(200 60% 35%) 50%, hsl(184 65% 45%) 100%);
  --gradient-sand: linear-gradient(180deg, hsl(40 33% 97%) 0%, hsl(35 45% 92%) 100%);
  --gradient-overlay: linear-gradient(180deg, hsl(215 55% 18% / 0.1) 0%, hsl(215 55% 18% / 0.65) 100%);
  --shadow-soft: 0 4px 20px -4px hsl(215 55% 22% / 0.08);
  --shadow-card: 0 10px 40px -12px hsl(215 55% 22% / 0.18);
  --shadow-elegant: 0 20px 60px -20px hsl(215 55% 22% / 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 1rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv01";
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid hsl(184 65% 45% / .35); outline-offset: 3px; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
h1, h2, h3, h4, h5 { font-family: Fraunces, Georgia, serif; letter-spacing: -0.025em; margin: 0; }
p { margin: 0; }
.container { width: min(100% - 4rem, 1400px); margin: 0 auto; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 999; background: white; color: var(--primary); padding: .75rem 1rem; border-radius: .75rem; box-shadow: var(--shadow-soft); transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.narrow { max-width: 768px; }
.icon { width: 1.75rem; height: 1.75rem; flex: 0 0 auto; }
.icon.small { width: 1rem; height: 1rem; }
.icon.tiny { width: 1rem; height: 1rem; display: inline-block; vertical-align: -3px; color: var(--turquoise); }
.icon.big { width: 2rem; height: 2rem; }
.icon-star { width: 1rem; height: 1rem; color: var(--turquoise); }
.icon-star-md { width: 1.25rem; height: 1.25rem; color: var(--turquoise); }
.filled { fill: currentColor; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: var(--transition-smooth); }
.site-header.scrolled, .site-header.open { background: hsl(40 33% 97% / 0.85); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.header-inner { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: Fraunces, Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.03em; color: white; text-shadow: 0 2px 14px rgb(0 0 0 / .22); transition: var(--transition-smooth); }
.brand span, .footer-brand span, em { color: var(--turquoise); font-style: normal; }
.site-header.scrolled .brand, .site-header.open .brand { color: var(--primary); text-shadow: none; }
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.desktop-nav a { font-size: .875rem; font-weight: 500; color: rgb(255 255 255 / .9); text-shadow: 0 2px 12px rgb(0 0 0 / .18); transition: var(--transition-smooth); }
.site-header.scrolled .desktop-nav a { color: var(--foreground); text-shadow: none; }
.desktop-nav a:hover { color: var(--turquoise); }
.nav-cta { display: none !important; }
.menu-button { display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; color: white; width: 2.5rem; height: 2.5rem; border-radius: 999px; cursor: pointer; transition: var(--transition-smooth); }
.site-header.scrolled .menu-button, .site-header.open .menu-button { color: var(--primary); }
.menu-close, .site-header.open .menu-open { display: none; }
.site-header.open .menu-close { display: block; }
.mobile-menu { display: none; background: var(--background); border-top: 1px solid var(--border); animation: fade-in .25s ease-out both; }
.site-header.open .mobile-menu { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; padding-top: 1rem; padding-bottom: 1rem; }
.mobile-link { padding: .75rem .5rem; font-weight: 500; border-bottom: 1px solid hsl(35 25% 88% / .6); }
.mobile-link:hover { color: var(--turquoise); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 999px; font-weight: 600; border: 0; cursor: pointer; min-height: 2.5rem; padding: .65rem 1rem; transition: var(--transition-smooth); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-hero { background: var(--gradient-sea); color: white; box-shadow: 0 10px 24px -12px hsl(184 65% 45% / .6); }
.btn-hero:hover { box-shadow: var(--shadow-card); }
.btn-outline { color: white; border: 1px solid rgb(255 255 255 / .5); background: rgb(255 255 255 / .12); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgb(255 255 255 / .22); }
.btn-sand { background: var(--accent); color: var(--accent-foreground); }
.btn-sand:hover { background: hsl(35 50% 78%); }
.btn-xl { min-height: 3.5rem; padding: 0 2rem; font-size: 1rem; }
.btn-lg { min-height: 3rem; padding: 0 1.5rem; font-size: 1rem; }
.full { width: 100%; }

.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-image, .hero-overlay, .hero-tint { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay { background: var(--gradient-overlay); }
.hero-tint { background: hsl(215 55% 22% / .25); }
.hero-content { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 5rem; }
.hero-copy { max-width: 48rem; color: white; animation: fade-up .8s cubic-bezier(.4,0,.2,1) both; }
.rating-pill { display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap; padding: .5rem 1rem; border-radius: 999px; background: rgb(255 255 255 / .15); backdrop-filter: blur(12px); border: 1px solid rgb(255 255 255 / .3); margin-bottom: 1.5rem; }
.rating-pill div, .review-score div { display: flex; }
.rating-pill span { font-size: .875rem; font-weight: 500; }
.hero-copy h1 { font-size: clamp(3.5rem, 10vw, 8rem); line-height: .95; font-weight: 600; max-width: 11ch; text-wrap: balance; margin-bottom: 1.5rem; filter: drop-shadow(0 10px 18px rgb(0 0 0 / .25)); }
.hero-copy p { font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.6; max-width: 42rem; color: rgb(255 255 255 / .95); margin-bottom: 2.5rem; text-wrap: balance; filter: drop-shadow(0 5px 12px rgb(0 0 0 / .25)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions .btn { min-width: min(100%, 16rem); }
.scroll-down { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); color: rgb(255 255 255 / .9); animation: float 4s ease-in-out infinite; display: none; }

.section { padding: 6rem 0; }
.section-sand { background: var(--gradient-sand); }
.section-blue { background: hsl(184 55% 90% / .4); }
.bg-clean { background: var(--background); }
.eyebrow { display: inline-block; color: var(--turquoise); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .875rem; margin-bottom: 1rem; }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; color: var(--primary); font-weight: 600; text-wrap: balance; }
.lead, .section-head p { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.65; }
.lead + .lead { margin-top: 1.5rem; }
.section-head { max-width: 42rem; margin: 0 auto 4rem; text-align: center; }
.section-head p { margin-top: 1.5rem; }

.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 1.5rem; box-shadow: var(--shadow-elegant); }
.experience-card { display: none; position: absolute; right: -1rem; bottom: -2rem; max-width: 20rem; background: var(--card); border-radius: 1rem; box-shadow: var(--shadow-card); padding: 1.5rem; }
.experience-card strong { display: block; font-family: Fraunces, Georgia, serif; font-size: 1.875rem; color: var(--primary); }
.experience-card p { color: var(--muted-foreground); font-size: .875rem; margin-top: .25rem; }
.feature-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.feature-grid article { background: var(--card); border-radius: 1rem; border: 1px solid hsl(35 25% 88% / .6); box-shadow: var(--shadow-soft); padding: 1.25rem; }
.feature-grid .icon { color: var(--turquoise); margin-bottom: .75rem; }
.feature-grid h3 { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: .25rem; }
.feature-grid p { color: var(--muted-foreground); font-size: .875rem; }

.apartments-grid { display: grid; gap: 2rem; }
.apartment-card { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border-radius: 1.5rem; border: 1px solid hsl(35 25% 88% / .5); box-shadow: var(--shadow-card); transition: var(--transition-smooth); }
.apartment-card:hover { box-shadow: var(--shadow-elegant); }
.apartment-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.apartment-image img { width: 100%; height: 100%; object-fit: cover; transition: all .7s cubic-bezier(.4,0,.2,1); }
.apartment-card:hover .apartment-image img { transform: scale(1.05); }
.badge-featured { position: absolute; top: 1rem; left: 1rem; padding: .375rem .75rem; border-radius: 999px; background: var(--turquoise); color: white; font-size: .75rem; font-weight: 700; }
.price-pill { position: absolute; right: 1rem; bottom: 1rem; background: rgb(255 255 255 / .95); backdrop-filter: blur(8px); border-radius: 999px; padding: .5rem 1rem; box-shadow: var(--shadow-soft); }
.price-pill span { font-family: Fraunces, Georgia, serif; font-weight: 800; color: var(--primary); }
.price-pill small { margin-left: .25rem; color: var(--muted-foreground); }
.apartment-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.apartment-body h3 { color: var(--primary); font-size: 1.5rem; font-weight: 600; margin-bottom: .75rem; }
.apartment-body p { color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.apartment-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; padding: 1rem 0; margin-bottom: 1.25rem; border-top: 1px solid hsl(35 25% 88% / .6); border-bottom: 1px solid hsl(35 25% 88% / .6); }
.apartment-meta div { display: flex; flex-direction: column; align-items: center; gap: .25rem; text-align: center; color: var(--muted-foreground); font-size: .875rem; }
.apartment-meta .icon { color: var(--turquoise); }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.tags span { background: var(--secondary); color: var(--secondary-foreground); padding: .25rem .75rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }

.amenities-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.amenity-card { background: var(--card); border: 1px solid hsl(35 25% 88% / .5); border-radius: 1rem; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); }
.amenity-card:hover { transform: translateY(-.25rem); box-shadow: var(--shadow-card); }
.amenity-icon { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; border-radius: 1rem; background: var(--gradient-sea); color: white; }
.amenity-card h3 { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: .5rem; }
.amenity-card p { color: var(--muted-foreground); font-size: .875rem; line-height: 1.55; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-soft); margin: 0; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all .7s cubic-bezier(.4,0,.2,1); }
.gallery-item span { position: absolute; inset: 0; background: transparent; transition: var(--transition-smooth); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover span { background: hsl(215 55% 22% / .2); }
.gallery-main { aspect-ratio: 1/1; }
.gallery-wide { grid-column: span 2; aspect-ratio: 16/9; }

.location-grid { display: grid; gap: 3rem; align-items: start; }
.location-sticky h2 { margin-bottom: 1.5rem; }
.location-sticky .lead { margin-bottom: 2rem; }
.map-frame { aspect-ratio: 4/3; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card); border: 4px solid var(--card); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.places-list { display: grid; gap: 1rem; }
.place-card { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--card); border: 1px solid hsl(35 25% 88% / .6); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); }
.place-card:hover { box-shadow: var(--shadow-card); }
.place-icon, .contact-icon { width: 3rem; height: 3rem; border-radius: .75rem; background: var(--secondary); color: var(--turquoise); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.place-head { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; flex-wrap: wrap; margin-bottom: .25rem; }
.place-head h3 { font-size: 1.125rem; color: var(--primary); font-weight: 600; }
.place-head strong { color: var(--turquoise); font-size: .875rem; white-space: nowrap; }
.place-time { color: hsl(215 15% 40% / .8); font-size: .75rem; margin-bottom: .5rem; }
.place-card p:last-child { color: var(--muted-foreground); font-size: .875rem; }

.reviews-section { background: var(--primary); color: var(--primary-foreground); position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(48px); opacity: .1; pointer-events: none; }
.orb-one { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: var(--turquoise); }
.orb-two { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: var(--sand); }
.reviews-head, .reviews-section .container { position: relative; }
.reviews-head h2 { color: white; }
.review-score { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-top: 1.5rem; font-size: 1.125rem; font-weight: 500; }
.reviews-grid { display: grid; gap: 1.5rem; }
.review-card { border: 1px solid rgb(255 255 255 / .15); background: rgb(255 255 255 / .1); backdrop-filter: blur(8px); border-radius: 1rem; padding: 1.75rem; transition: var(--transition-smooth); }
.review-card:hover { background: rgb(255 255 255 / .15); }
.quote-icon { color: var(--turquoise); opacity: .8; width: 2rem; height: 2rem; margin-bottom: 1rem; }
.review-card p { color: rgb(255 255 255 / .95); line-height: 1.6; margin-bottom: 1.5rem; }
.review-card div { border-top: 1px solid rgb(255 255 255 / .15); padding-top: 1.25rem; display: grid; gap: .25rem; }
.review-card strong { font-family: Fraunces, Georgia, serif; font-weight: 600; }
.review-card span { color: rgb(255 255 255 / .7); font-size: .875rem; }
.review-card small { color: rgb(255 255 255 / .5); }

.faq-list { display: grid; gap: .75rem; }
.faq-item { background: var(--card); border: 1px solid hsl(35 25% 88% / .6); border-radius: 1rem; padding: 0 1.5rem; box-shadow: var(--shadow-soft); }
.faq-item summary { cursor: pointer; list-style: none; font-family: Fraunces, Georgia, serif; font-weight: 600; color: var(--primary); font-size: 1.125rem; padding: 1.25rem 0; text-align: left; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; color: var(--turquoise); font-family: Inter, system-ui, sans-serif; font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--muted-foreground); line-height: 1.6; padding-bottom: 1.25rem; }

.contact-grid { display: grid; gap: 2rem; }
.contact-form { background: var(--card); border: 1px solid hsl(35 25% 88% / .5); border-radius: 1.5rem; padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow-card); display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
label { display: grid; gap: .5rem; font-weight: 500; color: var(--foreground); }
input, textarea { width: 100%; border: 1px solid var(--border); background: var(--background); color: var(--foreground); border-radius: .75rem; padding: .8rem 1rem; outline: none; transition: var(--transition-smooth); }
input { min-height: 3rem; }
textarea { min-height: 8.5rem; resize: vertical; }
input:focus, textarea:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px hsl(184 65% 45% / .15); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { text-align: center; color: var(--muted-foreground); font-size: .75rem; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--card); border: 1px solid hsl(35 25% 88% / .6); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); transition: var(--transition-smooth); }
.contact-card:hover { box-shadow: var(--shadow-card); }
.contact-icon.whatsapp { background: hsl(142 70% 42%); color: white; }
.contact-card span:last-child { min-width: 0; display: grid; gap: .25rem; }
.contact-card small { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--muted-foreground); }
.contact-card strong { font-family: Fraunces, Georgia, serif; font-size: 1.125rem; color: var(--primary); overflow-wrap: anywhere; transition: var(--transition-smooth); }
.contact-card:hover strong { color: var(--turquoise); }
.contact-card em { font-style: normal; color: var(--muted-foreground); font-size: .875rem; }

.site-footer { background: var(--primary); color: var(--primary-foreground); padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer-about { max-width: 32rem; }
.footer-brand { font-family: Fraunces, Georgia, serif; font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.footer-about > p:not(.footer-brand) { color: rgb(255 255 255 / .7); line-height: 1.65; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .75rem; }
.socials a { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: rgb(255 255 255 / .1); transition: var(--transition-smooth); }
.socials a:hover { background: var(--turquoise); }
.socials .icon { width: 1.25rem; height: 1.25rem; }
.site-footer h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; color: rgb(255 255 255 / .7); font-size: .875rem; }
.site-footer a:hover { color: var(--turquoise); }
.footer-contact { gap: .75rem !important; }
.footer-bottom { border-top: 1px solid rgb(255 255 255 / .1); padding-top: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem; text-align: center; color: rgb(255 255 255 / .5); font-size: .875rem; }
.site-credit { margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; padding: 1rem 1.25rem 0; border-top: 1px solid rgb(255 255 255 / .08); }
.site-credit p { margin: 0; color: rgb(255 255 255 / .55); font-size: .875rem; letter-spacing: .02em; }
.site-credit-link { color: var(--turquoise); font-weight: 700; transition: var(--transition-smooth); }
.site-credit-link:hover { color: white; text-decoration: underline; text-underline-offset: .2em; }

.toast-region { position: fixed; right: 1rem; bottom: 1rem; z-index: 100; display: grid; gap: .75rem; max-width: min(24rem, calc(100vw - 2rem)); }
.toast { background: white; border: 1px solid var(--border); border-left: 4px solid var(--turquoise); color: var(--foreground); border-radius: 1rem; box-shadow: var(--shadow-elegant); padding: 1rem; animation: toast-in .25s ease-out both; }
.toast strong { display: block; color: var(--primary); margin-bottom: .25rem; }
.toast p { color: var(--muted-foreground); font-size: .875rem; line-height: 1.45; }

@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,-8px); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 640px) {
  .experience-card { display: block; right: -2.5rem; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
  .section { padding: 8rem 0; }
  .apartments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
  .gallery-main { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery-wide { grid-column: span 2; aspect-ratio: 2/1; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scroll-down { display: block; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; text-align: left; }
  .site-credit { justify-content: center; }
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .nav-cta { display: inline-flex !important; }
  .menu-button { display: none; }
  .about-grid, .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; }
  .apartments-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 3fr 2fr; }
  .location-sticky { position: sticky; top: 7rem; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 2rem, 1400px); }
  .hero-actions .btn { width: 100%; }
  .amenities-grid { grid-template-columns: 1fr; }
  .rating-pill { align-items: flex-start; border-radius: 1rem; }
  .review-score { flex-direction: column; }
}


@media (max-width: 767px) {
  .hero-section { min-height: auto; }
  .hero-content { padding-top: 6.5rem; padding-bottom: 4rem; }
  .hero-copy h1 { font-size: clamp(2.7rem, 14vw, 4.5rem); max-width: 9ch; }
  .hero-copy p { font-size: 1rem; line-height: 1.55; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .rating-pill { border-radius: 1rem; }
  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.75rem; }
  .place-card, .contact-card { padding: 1.1rem; }
  .contact-form { padding: 1.25rem; gap: 1rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
}
@media (max-width: 420px) {
  .container { width: min(100% - 1.25rem, 1400px); }
  .header-inner { height: 3.75rem; }
  .hero-copy h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .btn-xl, .btn-lg { min-height: 3.125rem; padding-left: 1rem; padding-right: 1rem; }
  .faq-item { padding: 0 1rem; }
  .contact-card strong { font-size: 1rem; }
}
