:root {
  --navy: #061d38;
  --navy-2: #0b2b4c;
  --gold: #c99a2e;
  --gold-light: #e1bb60;
  --cream: #f6f2e9;
  --white: #fff;
  --ink: #112238;
  --muted: #6c7580;
  --line: rgba(201, 154, 46, .28);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  height: 88px; width: 100%; padding: 0 5vw; display: flex; align-items: center;
  justify-content: space-between; position: fixed; z-index: 50; color: white;
  border-bottom: 1px solid rgba(255,255,255,.13); transition: .4s ease;
}
.site-header.scrolled { height: 72px; background: rgba(6,29,56,.96); backdrop-filter: blur(15px); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--gold-light); }
.brand img { width: 92px; height: 76px; object-fit: contain; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font: 600 15px/1 var(--serif); letter-spacing: .08em; }
.brand small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .2em; }
.main-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 52px); font-size: 14px; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; width: 0; height: 1px; background: var(--gold); position: absolute; left: 0; bottom: -8px; transition: .3s; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 13px 24px; border: 1px solid var(--gold); color: var(--gold-light); transition: .3s; }
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: white; transition: .3s; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; color: white; background: var(--navy) url("/assets/images/backgrounds/hero-residencia.png") center/cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,34,.95) 0%, rgba(3,17,34,.72) 40%, rgba(3,17,34,.12) 78%), linear-gradient(0deg, rgba(3,17,34,.45), transparent 45%); }
.hero-content { position: relative; z-index: 2; max-width: 770px; margin-left: 9vw; padding-top: 70px; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font: 500 clamp(48px, 6.2vw, 94px)/.98 var(--serif); letter-spacing: -.035em; }
h1 em { color: var(--gold-light); font-style: italic; }
.hero-copy { max-width: 580px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; }
.btn { min-height: 54px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; font-weight: 600; transition: transform .3s, background .3s, color .3s; }
.btn:hover { transform: translateY(-3px); }
.btn-gold { color: var(--navy); background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { color: white; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: white; background: white; color: var(--navy); }
.btn-dark { color: white; background: var(--navy); }
.btn-dark:hover { background: var(--navy-2); }
.hero-note { position: absolute; right: 5vw; bottom: 42px; z-index: 2; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.68); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.hero-note i { width: 28px; height: 1px; background: var(--gold); }
.scroll-cue { position: absolute; bottom: 35px; left: 50%; z-index: 2; width: 28px; height: 45px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); position: absolute; left: 11px; top: 9px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(15px); } }

.catalog-hero { min-height: 510px; padding: 180px 7vw 90px; display: flex; align-items: center; color: white; background: linear-gradient(90deg, rgba(3,17,34,.96), rgba(3,17,34,.38)), url("/assets/images/backgrounds/hero-residencia.png") center 58%/cover; }
.catalog-hero > div { max-width: 800px; }
.catalog-hero h1 { margin-bottom: 22px; }
.catalog-hero > div > p:last-child { max-width: 600px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.7; }
.catalog-properties { padding-top: 120px; }
.catalog-properties .property-ticker { margin-top: -120px; }
.catalog-page .main-nav a[aria-current="page"] { color: var(--gold-light); }

.section { padding: 120px 7vw; }
.about { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8vw; background: #fbfaf7; }
.about-image { min-height: 640px; position: relative; }
.image-frame { position: absolute; inset: 0 8% 8% 0; background: linear-gradient(150deg, transparent 55%, rgba(6,29,56,.18)), url("/assets/images/about/sobre-nos.png") center 28%/cover; }
.image-frame::after { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--gold); z-index: -1; }
.experience-card { position: absolute; right: 0; bottom: 0; width: 220px; padding: 28px; background: var(--navy); color: white; box-shadow: 0 20px 40px rgba(6,29,56,.2); }
.experience-card strong { color: var(--gold-light); display: block; font: 500 24px var(--serif); margin-bottom: 8px; }
.experience-card span { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }
h2 { color: var(--navy); font: 500 clamp(40px, 4.5vw, 68px)/1.05 var(--serif); letter-spacing: -.025em; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.8; }
.values { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9d5cc; padding-top: 28px; gap: 24px; }
.values strong { display: block; color: var(--navy); margin-bottom: 8px; }
.values span { color: var(--muted); font-size: 13px; line-height: 1.5; }

.properties { position: relative; background: var(--cream); overflow: hidden; }
.property-ticker { margin: -120px -7vw 90px; padding: 13px 0; color: var(--gold-light); background: var(--navy); border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); white-space: nowrap; overflow: hidden; }
.property-ticker div { width: max-content; font-size: 13px; letter-spacing: .14em; animation: ticker 28s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.filters { display: flex; gap: 8px; }
.filter { padding: 11px 20px; color: var(--navy); background: transparent; border: 1px solid rgba(6,29,56,.18); cursor: pointer; transition: .25s; }
.filter.active, .filter:hover { color: white; background: var(--navy); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.section-action { margin-top: 46px; text-align: center; }
.property-card { background: white; box-shadow: 0 12px 35px rgba(6,29,56,.07); transition: transform .4s, box-shadow .4s; overflow: hidden; }
.property-card:hover { transform: translateY(-9px); box-shadow: 0 20px 48px rgba(6,29,56,.14); }
.property-card.hidden { display: none !important; }
.property-image { height: 290px; position: relative; background-size: cover; background-position: center; transition: transform .7s; }
.property-card:hover .property-image { transform: scale(1.025); }
.property-one { background-image: url("/assets/images/properties/imovel-la-blanca.jpg"); }
.property-two { background-image: url("/assets/images/properties/imovel-san-jose.jpg"); }
.property-three { background-image: url("/assets/images/properties/imovel-lago.jpg"); }
.property-four { background-image: url("/assets/images/properties/imovel-santa-ana.png"); }
.property-five { background-image: url("/assets/images/properties/imovel-kitnet-zl.png"); }
.property-six { background-image: url("/assets/images/properties/imovel-boqueron.png"); }
.tag { position: absolute; top: 18px; left: 18px; padding: 8px 13px; color: var(--navy); background: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.favorite { position: absolute; top: 15px; right: 15px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: white; background: rgba(6,29,56,.75); font-size: 22px; cursor: pointer; transition: .2s; }
.favorite.active { color: var(--gold-light); transform: scale(1.08); }
.property-body { padding: 26px; }
.location { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.property-body h3 { min-height: 58px; font: 500 23px/1.25 var(--serif); color: var(--navy); }
.property-summary { min-height: 48px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.features { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; padding: 18px 0; border-top: 1px solid #eeeae2; border-bottom: 1px solid #eeeae2; color: var(--muted); font-size: 12px; }
.features span:not(:last-child)::after { content: "·"; margin-left: 12px; color: var(--gold); }
.property-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.property-footer strong { color: var(--navy); font-size: 18px; }
.property-footer small { color: var(--muted); font-weight: 400; }
.property-footer a { color: var(--gold); font-size: 13px; }
.property-details { margin: -4px 0 22px; border-bottom: 1px solid #eeeae2; }
.property-details summary { padding: 13px 0; display: flex; align-items: center; justify-content: space-between; color: var(--navy); cursor: pointer; list-style: none; font-size: 13px; font-weight: 600; }
.property-details summary::-webkit-details-marker { display: none; }
.property-details summary span { color: var(--gold); font-size: 20px; transition: transform .25s; }
.property-details[open] summary span { transform: rotate(45deg); }
.property-details > div { padding: 3px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.property-details p { margin: 8px 0; }
.property-details ul { margin: 7px 0 14px; padding-left: 18px; }

.services { background: var(--navy); overflow: hidden; }
.section-heading.light h2 { color: white; }
.section-heading.light > p { max-width: 420px; margin: 0; color: rgba(255,255,255,.6); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.service-card { min-height: 480px; position: relative; color: white; background: var(--navy); transition: background .4s; overflow: hidden; }
.service-card:hover { background: var(--navy-2); }
.service-card > img { width: 100%; height: 235px; object-fit: cover; object-position: center; transition: transform .6s; }
.service-card:hover > img { transform: scale(1.035); }
.service-card > img { display: block !important; width: 100% !important; min-height: 235px !important; height: 235px !important; object-fit: cover !important; object-position: center !important; visibility: visible !important; opacity: 1 !important; }
.service-content { padding: 28px; }
.service-number { position: absolute; z-index: 2; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--navy); background: var(--gold-light); font: 500 16px var(--serif); }
.service-card h3 { color: var(--gold-light); font: 500 27px var(--serif); }
.service-card p { color: rgba(255,255,255,.66); line-height: 1.7; }
.service-card a { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); color: white; font-size: 14px; }
.service-card a span { color: var(--gold); transition: transform .3s; }
.service-card:hover a span { transform: translateX(7px); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: #fbfaf7; overflow-x: hidden; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; color: var(--muted); line-height: 1.75; }
.contact-list { margin-top: 42px; display: grid; gap: 20px; }
.contact-list a, .contact-list div { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 20px; padding-bottom: 20px; border-bottom: 1px solid #dedad1; min-width: 0; width: 100%; }
.contact-list span, .contact-list strong { min-width: 0; white-space: normal; }
.contact-list span { color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { color: var(--navy); font-weight: 500; overflow-wrap: anywhere; word-break: break-word; }
.contact-form { padding: 42px; background: white; box-shadow: 0 20px 60px rgba(6,29,56,.08); }
.contact-form label { display: block; margin-bottom: 22px; color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 9px; padding: 14px 0; border: 0; border-bottom: 1px solid #cfcac0; border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 15px; text-transform: none; letter-spacing: normal; transition: border .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form .btn { width: 100%; border: 0; }
.form-status { margin: 15px 0 0; text-align: center; color: var(--muted); font-size: 13px; }

.whatsapp-float { position: fixed; z-index: 45; right: 24px; bottom: 24px; padding: 15px 20px; display: flex; gap: 12px; align-items: center; color: var(--navy); background: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,.2); font-size: 13px; font-weight: 600; transition: .3s; }
.whatsapp-float:hover { transform: translateY(-4px); background: var(--gold-light); }
.client-account-btn { padding: 10px 15px; border: 1px solid rgba(255,255,255,.38); color: inherit; background: transparent; font: 600 12px var(--sans); letter-spacing: .06em; transition: .25s; }
.client-account-btn:hover, .client-account-btn.logged-in { border-color: var(--gold); color: var(--gold-light); }
.site-header.scrolled .client-account-btn { border-color: rgba(6,29,56,.25); }
.client-dialog { width: min(460px,92vw); padding: 0; border: 0; color: var(--ink); background: transparent; box-shadow: 0 25px 80px rgba(3,17,34,.35); }
.client-dialog::backdrop { background: rgba(3,17,34,.78); backdrop-filter: blur(5px); }
.client-dialog-card { position: relative; padding: 42px; background: #fff; }
.client-dialog-card h2 { margin: 3px 0 12px; color: var(--navy); font-size: 38px; }
.client-dialog-copy { margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.client-dialog-close { position: absolute; top: 13px; right: 16px; width: 35px; height: 35px; border: 0; color: var(--navy); background: transparent; font-size: 27px; }
.client-tabs { margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #dedad1; }
.client-tabs button { padding: 12px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; font-weight: 600; }
.client-tabs button.active { border-color: var(--gold); color: var(--navy); }
.client-auth-form label { display: block; margin-bottom: 17px; color: var(--navy); font-size: 12px; font-weight: 600; }
.client-auth-form input { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #d8d3c9; outline: none; }
.client-auth-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,154,46,.12); }
.client-auth-form .btn { width: 100%; border: 0; }
.client-text-btn { width: 100%; margin-top: 15px; border: 0; color: var(--muted); background: transparent; font-size: 12px; }
.client-auth-message { min-height: 20px; margin: 18px 0 0; color: #16815b; text-align: center; font-size: 12px; }
.client-auth-message.error { color: #b42318; }
.client-menu { position: fixed; z-index: 70; top: 92px; right: 7vw; width: 230px; padding: 20px; border-top: 3px solid var(--gold); background: white; box-shadow: 0 16px 45px rgba(3,17,34,.2); }
.client-menu strong, .client-menu span { display: block; }
.client-menu strong { overflow: hidden; color: var(--navy); text-overflow: ellipsis; white-space: nowrap; }
.client-menu span { margin: 6px 0 16px; color: var(--muted); font-size: 12px; }
.client-menu a, .client-menu button { width: 100%; padding: 10px 0; display: block; border: 0; border-top: 1px solid #ece9e2; color: var(--navy); background: transparent; text-align: left; font-size: 12px; }
.client-menu [hidden] { display: none !important; }
.favorites-filter { padding: 12px 17px; border: 1px solid var(--gold); color: var(--navy); background: transparent; font-weight: 600; transition: .25s; }
.favorites-filter:hover, .favorites-filter.active { color: var(--navy); background: var(--gold-light); }
.property-card.favorite-hidden { display: none; }
.property-detail-link{display:inline-flex;align-items:center;justify-content:center;margin:0 0 18px;padding:11px 15px;border:1px solid var(--navy);color:var(--navy);font-size:12px;font-weight:600;text-decoration:none;transition:.25s}.property-detail-link:hover{color:white;background:var(--navy)}
.property-detail-main{min-height:70vh;padding:132px 6vw 90px;background:#f7f5f0}.property-detail{max-width:1380px;margin:auto}.detail-loading,.detail-error{min-height:55vh;display:grid;place-content:center;text-align:center;color:var(--navy)}.detail-loading[hidden],.detail-error[hidden],#property-detail[hidden]{display:none!important;min-height:0!important;visibility:hidden!important}.detail-error h1{font:48px var(--serif);margin:0 0 15px}.detail-error p{color:var(--muted);margin:0 0 25px}.detail-breadcrumb{display:flex;gap:10px;align-items:center;margin-bottom:30px;color:var(--muted);font-size:12px}.detail-breadcrumb a{color:var(--navy);text-decoration:none}.detail-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:35px}.detail-heading h1{max-width:850px;margin:0;color:var(--navy);font:clamp(38px,5vw,70px)/1.04 var(--serif)}.detail-location{margin:15px 0 0;color:var(--muted)}.detail-price{text-align:right}.detail-price span{display:block;margin-bottom:8px;color:var(--gold);font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.1em}.detail-price strong{color:var(--navy);font-size:25px}.detail-gallery{display:grid;grid-template-columns:minmax(0,1fr) 130px;gap:14px;margin-bottom:42px}.detail-main-media{height:min(68vh,700px);overflow:hidden;background:var(--navy)}.detail-main-media img,.detail-main-media video,.detail-main-media iframe{width:100%;height:100%;display:block;object-fit:contain;border:0;background:var(--navy)}.detail-thumbnails{max-height:min(68vh,700px);display:flex;flex-direction:column;gap:10px;overflow:auto}.detail-thumbnails button{min-height:92px;padding:0;border:2px solid transparent;background:var(--navy);position:relative;overflow:hidden}.detail-thumbnails button.active{border-color:var(--gold)}.detail-thumbnails img,.detail-thumbnails video{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;opacity:.8}.video-link-thumb{position:absolute;inset:0;display:grid;place-items:center;color:white;font-size:11px;text-transform:uppercase;letter-spacing:.08em}.thumb-play{position:absolute;inset:0;display:grid;place-items:center;color:white;font-size:24px;background:rgba(6,29,56,.3)}.detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 370px;gap:40px;align-items:start}.detail-content{min-width:0}.detail-features{display:grid;grid-template-columns:repeat(6,1fr);gap:1px;margin-bottom:26px;background:#dedbd3;border:1px solid #dedbd3}.detail-features div{padding:20px 12px;text-align:center;background:white}.detail-features strong,.detail-features span{display:block}.detail-features strong{color:var(--navy);font-size:18px}.detail-features span{margin-top:5px;color:var(--muted);font-size:10px;text-transform:uppercase}.detail-section{margin-top:18px;padding:34px;background:white}.detail-section h2,.detail-contact-card h2{margin:0 0 20px;color:var(--navy);font:30px var(--serif)}.detail-section>p,.detail-description{color:var(--muted);font-size:15px;line-height:1.75}.detail-description p{margin:0 0 18px}.detail-text-link{display:inline-block;margin-top:10px;color:var(--gold)}.detail-video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.detail-video-grid video,.detail-video-grid iframe{width:100%;min-height:280px;max-height:440px;border:0;background:var(--navy)}.detail-contact-card{position:sticky;top:122px;padding:34px;background:var(--navy);color:white}.detail-contact-card h2{color:white}.detail-contact-card>p:not(.eyebrow){margin-bottom:25px;color:rgba(255,255,255,.7);line-height:1.65}.detail-contact-card .btn{width:100%;text-align:center}.detail-back-link{display:block;margin-top:20px;color:white;text-align:center;font-size:12px}.property-detail-page footer{margin-top:0}
@media(max-width:1000px){.detail-layout{grid-template-columns:1fr}.detail-contact-card{position:static}.detail-features{grid-template-columns:repeat(3,1fr)}}@media(max-width:700px){.property-detail-main{padding:105px 18px 60px}.detail-heading{align-items:flex-start;flex-direction:column}.detail-price{text-align:left}.detail-gallery{grid-template-columns:1fr}.detail-main-media{height:52vh}.detail-thumbnails{max-height:none;flex-direction:row;overflow-x:auto;overflow-y:hidden;}.detail-thumbnails button{flex:0 0 auto;width:100px;min-width:100px;height:75px;min-height:75px}.detail-features{grid-template-columns:repeat(2,1fr)}.detail-section,.detail-contact-card{padding:24px}.detail-video-grid{grid-template-columns:1fr}}
.favorite:disabled { cursor: wait; opacity: .55; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .main-nav { gap: 20px; }
  .about { grid-template-columns: .8fr 1fr; gap: 5vw; }
  .about-image { min-height: 520px; }
  .property-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 760px) {
  .site-header { height: 72px; padding: 0 22px; }
  .brand img { width: 72px; height: 60px; }
  .menu-toggle { display: block; z-index: 52; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; padding: 120px 35px 50px; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; color: white; background: var(--navy); transform: translateX(100%); transition: .4s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font: 500 32px var(--serif); }
  .main-nav .nav-cta { font: 600 14px var(--sans); }
  .main-nav .client-account-btn { padding: 0; border: 0; color: var(--gold-light); font: 600 15px var(--sans); }
  .hero-content { margin: 0; padding: 95px 22px 120px; }
  .catalog-hero { min-height: 430px; padding: 145px 22px 70px; }
  .catalog-hero h1 { font-size: 50px; }
  .catalog-properties { padding-top: 85px; }
  .catalog-properties .property-ticker { margin-top: -85px; }
  .hero { align-items: end; background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,17,34,.98) 0%, rgba(3,17,34,.75) 60%, rgba(3,17,34,.2)); }
  h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-note { display: none; }
  .scroll-cue { left: auto; right: 22px; bottom: 30px; }
  .section { padding: 85px 22px; }
  .about, .contact { grid-template-columns: 1fr; gap: 70px; }
  .about-image { min-height: 440px; }
  .image-frame { inset: 0 5% 7% 0; }
  .experience-card { width: 190px; padding: 22px; }
  h2 { font-size: 44px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .property-grid, .service-grid { grid-template-columns: 1fr; }
  .property-ticker { margin: -85px -22px 65px; }
  .filters { width: 100%; }
  .filter { flex: 1; }
  .service-card { min-height: 430px; }
  .section-heading.light > p { max-width: none; }
  .contact-form { padding: 30px 22px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 13px 16px; }
  .client-dialog-card { padding: 36px 24px 28px; }
  .client-dialog-card h2 { font-size: 33px; }
  .client-menu { top: 72px; right: 14px; }
}

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