:root {
  --forest: #164b3b;
  --forest-dark: #0e362b;
  --coral: #f06f55;
  --coral-dark: #c45842;
  --sun: #ffc84b;
  --cream: #faf7ef;
  --ink: #18332b;
  --muted: #64736d;
  --line: #e6e8df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: "Inter", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; width: 100%; object-fit: cover; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.container-portal { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.utility { height: 32px; background: var(--forest-dark); color: #d4e2dc; font-size: 12px; }
.site-header { height: 80px; background: var(--forest); color: #fff; box-shadow: 0 3px 16px rgba(14, 54, 43, .28); }
.brand-mark { width: 42px; height: 42px; border: 3px solid #fff; border-radius: 50%; background: var(--sun); color: var(--forest-dark); display: grid; place-items: center; font-weight: 900; }
.header-link { font-size: 13px; font-weight: 800; text-transform: uppercase; }
.header-link:hover { color: var(--sun); }
.primary-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border: 0; border-radius: 7px; background: var(--sun); color: var(--forest-dark); font-size: 13px; font-weight: 850; box-shadow: 0 7px 18px rgba(14, 54, 43, .22); }
.coral-button { background: var(--coral); color: #fff; }
.forest-button { background: var(--forest); color: #fff; }

.hero { position: relative; height: 85vh; min-height: 640px; max-height: 880px; overflow: hidden; background: var(--forest-dark); color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); transition: opacity .6s ease, transform 6s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,45,35,.9), rgba(8,45,35,.62) 46%, transparent 78%), linear-gradient(0deg, rgba(8,45,35,.4), transparent 50%); }
.hero-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-bottom: 40px; }
.hero-badge { padding: 8px 16px; border-left: 4px solid var(--coral); border-radius: 4px; background: var(--sun); color: var(--forest-dark); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; }
.hero-title { max-width: 680px; margin: 16px 0 8px; font-size: clamp(40px, 4vw, 60px); line-height: 1.02; letter-spacing: -1.5px; text-transform: uppercase; }
.hero-location { margin: 0 0 16px; font-size: 16px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(92px, 1fr)); overflow: hidden; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; background: rgba(14,54,43,.9); }
.hero-facts span { min-width: 96px; padding: 10px 16px; border-right: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; }
.hero-facts span:last-child { border: 0; }
.hero-facts b { color: var(--sun); font-size: 18px; line-height: 1; }
.hero-facts small { margin-top: 3px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.hero-arrow { position: absolute; z-index: 5; top: 50%; width: 48px; height: 56px; border: 0; border-radius: 6px; background: rgba(14,54,43,.84); color: #fff; font-size: 34px; transform: translateY(-50%); }
.hero-arrow:hover { background: var(--coral); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
.hero-dots { position: absolute; z-index: 6; left: 50%; bottom: 152px; display: flex; gap: 8px; transform: translateX(-50%); }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 20px; background: rgba(255,255,255,.4); }
.hero-dot.active { width: 26px; background: var(--sun); border-color: var(--sun); }

.search-zone { background: var(--cream); }
.search-panel { position: relative; z-index: 8; margin-top: -192px; padding: 24px 32px 32px; border-radius: 12px; background: var(--forest-dark); color: #fff; box-shadow: 0 15px 38px rgba(14,54,43,.24); }
.search-heading { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
.search-icon { width: 40px; height: 40px; border-radius: 6px; background: var(--coral); display: grid; place-items: center; }
.search-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 16px; padding-top: 16px; }
.search-grid label { grid-column: span 3; display: flex; flex-direction: column; gap: 8px; }
.search-grid label:nth-child(3), .search-grid label:nth-child(4), .search-grid button { grid-column: span 2; }
.search-grid label > span { color: #e1ebe7; font-size: 11px; font-weight: 800; letter-spacing: .5px; }
.search-grid input, .search-grid select { height: 48px; width: 100%; padding: 0 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: #fff; color: #344156; font-size: 14px; }
.search-grid button { align-self: end; height: 48px; }

.category-zone { padding: 32px 0; background: var(--cream); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-button { min-height: 88px; padding: 12px 16px; border: 1px solid #e2e1d8; border-left: 4px solid var(--coral); border-radius: 10px; background: #fff; display: flex; align-items: center; gap: 14px; text-align: left; box-shadow: 0 8px 24px rgba(22,75,59,.09); }
.category-button:hover { border-color: var(--coral); box-shadow: 0 12px 28px rgba(22,75,59,.15); }
.category-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream); display: grid; place-items: center; font-size: 24px; }
.category-copy { flex: 1; display: flex; flex-direction: column; }
.category-copy strong { color: var(--forest-dark); font-size: 16px; }
.category-copy small { margin-top: 5px; color: #566a62; font-size: 12px; font-weight: 650; }
.category-arrow { width: 26px; height: 26px; border-radius: 50%; background: var(--sun); display: grid; place-items: center; color: var(--forest-dark); }

.listing-section { padding: 64px 0 80px; }
.listing-section.alt { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.kicker { color: var(--coral-dark); font-size: 11px; font-weight: 850; letter-spacing: 1.4px; }
.section-heading h2 { margin: 8px 0 0; font-size: 30px; line-height: 1.1; }
.listing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.property-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 8px 24px rgba(22,75,59,.09); transition: transform .2s, box-shadow .2s; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(22,75,59,.17); }
.property-photo { position: relative; display: block; height: 216px; overflow: hidden; background: #e4e7e1; }
.property-photo img { height: 100%; transition: transform .35s; }
.property-card:hover .property-photo img { transform: scale(1.04); }
.property-badge { position: absolute; left: 12px; top: 12px; padding: 7px 9px; border-radius: 4px; background: var(--sun); color: var(--forest-dark); font-size: 10px; font-weight: 850; letter-spacing: .5px; text-transform: uppercase; }
.favorite { position: absolute; right: 10px; top: 10px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; color: var(--forest); font-size: 20px; box-shadow: 0 3px 9px rgba(0,0,0,.16); }
.favorite.saved { background: var(--coral); color: #fff; }
.property-facts { height: 56px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--forest); color: #fff; }
.property-facts span { display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.18); }
.property-facts span:last-child { border: 0; }
.property-facts b { color: var(--sun); font-size: 16px; line-height: 1; }
.property-facts small { margin-top: 3px; color: #f3f8f6; font-size: 10px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.property-body { padding: 16px; }
.property-type { color: var(--coral-dark); font-size: 11px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; }
.property-body h3 { min-height: 44px; margin: 8px 0; font-size: 18px; line-height: 1.25; text-transform: uppercase; }
.property-location { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.price-row { padding: 10px 0; border-top: 1px solid #edf0ea; border-bottom: 1px solid #edf0ea; display: flex; align-items: center; justify-content: space-between; }
.price-row small { color: var(--muted); }
.price-row strong { display: block; color: var(--forest-dark); font-size: 18px; }
.rating { color: #d88e23; font-size: 12px; font-weight: 850; }
.card-action { width: 100%; min-height: 40px; margin-top: 16px; padding: 10px 12px; border-radius: 6px; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 850; }

.owner-band { padding: 48px 0; border-left: 8px solid var(--coral); background: linear-gradient(105deg, var(--forest), var(--forest-dark)); color: #fff; }
.owner-layout { display: grid; grid-template-columns: 6fr 4fr 2fr; gap: 24px; align-items: center; }
.owner-layout h2 { margin: 8px 0; font-size: 28px; line-height: 1.1; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats span { padding: 8px 14px; border-left: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; }
.stats b { color: var(--sun); font-size: 21px; }
.stats small { color: #d1ded9; font-size: 11px; }
.steps-section { padding: 64px 0; background: var(--forest-dark); color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.04); }
.step-card > span { width: 48px; height: 48px; margin-bottom: 16px; border-radius: 7px; background: var(--coral); display: grid; place-items: center; font-size: 21px; }
.step-card p { color: #c7d6d0; font-size: 13px; line-height: 1.6; }
.faq-section { padding: 80px 0; }
.faq-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 24px; }
.faq-list details { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-size: 15px; font-weight: 750; }
.faq-list p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.site-footer { padding-top: 56px; background: #0d3228; color: #c6d6d0; }
.footer-grid { padding-bottom: 48px; display: grid; grid-template-columns: 4fr 2fr 2fr 4fr; gap: 24px; }
.footer-grid h3 { color: #fff; font-size: 14px; letter-spacing: .4px; }
.footer-grid p, .footer-grid a { font-size: 14px; line-height: 1.55; }
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.social-row a { padding: 8px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; background: rgba(255,255,255,.1); color: #fff; font-size: 12px; }
.footer-bottom { min-height: 48px; padding-block: 16px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #9eb3ab; font-size: 12px; }
.whatsapp { position: fixed; z-index: 50; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 24px; box-shadow: 0 9px 26px rgba(11,99,59,.32); }

.simple-page { background: var(--cream); min-height: 100vh; }
.page-wrap { width: min(1180px, calc(100% - 48px)); margin: auto; padding: 40px 0 80px; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: 12px; }
.detail-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.detail-heading h1 { margin: 8px 0; font-size: 38px; line-height: 1.05; text-transform: uppercase; }
.detail-gallery { height: 520px; overflow: hidden; border-radius: 14px; display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.detail-gallery img { height: 100%; }
.detail-gallery img:first-child { grid-row: 1 / 3; }
.detail-columns { margin-top: 40px; display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.detail-highlights { margin-bottom: 32px; padding: 22px 0; border-block: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.detail-highlights span { padding: 0 14px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.detail-highlights span:last-child { border: 0; }
.detail-highlights b { color: var(--coral); font-size: 18px; }
.detail-content section { padding: 12px 0 28px; border-bottom: 1px solid var(--line); }
.detail-content p { color: #53655e; font-size: 14px; line-height: 1.75; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; font-size: 13px; }
.map-box { height: 200px; border-radius: 14px; background: linear-gradient(145deg,#eef4e7,#dce9dc); display: grid; place-items: center; text-align: center; }
.contact-card { position: sticky; top: 20px; padding: 28px; border-top: 5px solid var(--coral); border-radius: 14px; background: var(--forest-dark); color: #fff; box-shadow: 0 16px 38px rgba(14,54,43,.2); }
.contact-card label { margin: 14px 0; display: flex; flex-direction: column; gap: 7px; font-size: 11px; font-weight: 800; }
.contact-card input, .contact-card select { height: 46px; padding: 0 12px; border: 0; border-radius: 7px; background: #fff; color: var(--ink); }
.contact-card h2 { margin: 4px 0; font-size: 30px; }

.announce-hero { min-height: 560px; background: var(--forest); color: #fff; display: grid; grid-template-columns: 1fr 1fr; }
.announce-hero-copy { padding: 80px 8vw; display: flex; flex-direction: column; justify-content: center; }
.announce-hero h1 { margin: 18px 0; font-size: 50px; line-height: 1.04; text-transform: uppercase; }
.announce-hero h1 em { color: var(--sun); font-style: normal; }
.announce-hero > img { height: 100%; min-height: 560px; }
.announce-stats { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); display: flex; gap: 28px; }
.announce-stats span { display: flex; flex-direction: column; color: #d2e1dc; font-size: 11px; }
.announce-stats b { color: var(--sun); font-size: 20px; }
.form-section { width: min(1100px, calc(100% - 48px)); margin: auto; padding: 88px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lead-form, .success-card { padding: 30px; border-top: 5px solid var(--coral); border-radius: 14px; background: #fff; box-shadow: 0 16px 42px rgba(22,75,59,.12); }
.lead-form label { margin: 14px 0; display: flex; flex-direction: column; gap: 7px; font-size: 11px; font-weight: 800; }
.lead-form input, .lead-form select { height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 7px; }
.form-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }

@media (max-width: 1000px) {
  .desktop-nav { display: none !important; }
  .menu-button { display: block !important; }
  .mobile-nav.open { display: flex !important; }
  .search-grid label { grid-column: span 6; }
  .search-grid label:nth-child(3), .search-grid label:nth-child(4) { grid-column: span 6; }
  .search-grid button { grid-column: span 12; }
  .category-grid, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .owner-layout { grid-template-columns: 2fr 1fr; }
  .stats { display: none; }
  .detail-columns { grid-template-columns: 1fr; }
  .contact-card { position: relative; }
}

@media (max-width: 700px) {
  .container-portal, .page-wrap, .form-section { width: calc(100% - 32px); }
  .utility { display: none; }
  .site-header { height: 72px; }
  .hero { height: 78vh; min-height: 560px; max-height: 700px; }
  .hero-content { justify-content: flex-end; padding-bottom: 130px; }
  .hero-title { font-size: 32px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 112px; }
  .hero-facts { width: 100%; }
  .hero-facts span { min-width: 0; padding: 9px 5px; align-items: center; }
  .search-panel { margin-top: -96px; padding: 24px 16px 16px; }
  .search-grid label, .search-grid label:nth-child(3), .search-grid label:nth-child(4), .search-grid button { grid-column: span 12; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-button { min-height: 96px; padding: 10px 12px; gap: 9px; }
  .category-icon { width: 38px; height: 38px; font-size: 20px; }
  .category-copy strong { font-size: 14px; }
  .category-copy small { font-size: 11px; }
  .category-arrow { display: none; }
  .listing-grid, .steps-grid, .owner-layout, .faq-layout, .footer-grid, .form-section { grid-template-columns: 1fr; }
  .property-photo { height: 256px; }
  .section-heading { align-items: flex-start; }
  .section-heading h2 { font-size: 24px; }
  .owner-layout > a { justify-self: start; }
  .footer-grid { gap: 30px; }
  .footer-bottom { gap: 16px; flex-direction: column; }
  .detail-heading { align-items: flex-start; flex-direction: column; }
  .detail-heading h1 { font-size: 30px; }
  .detail-gallery { height: 400px; grid-template-columns: 1fr; grid-template-rows: 2fr 1fr; }
  .detail-gallery img:first-child { grid-row: auto; }
  .detail-gallery img:nth-child(3) { display: none; }
  .detail-highlights { grid-template-columns: 1fr 1fr; gap: 18px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .announce-hero { grid-template-columns: 1fr; }
  .announce-hero-copy { padding: 64px 20px; }
  .announce-hero h1 { font-size: 38px; }
  .announce-hero > img { min-height: 300px; height: 300px; }
  .form-row { grid-template-columns: 1fr; }
}
