:root {
  --navy-950: #07142a;
  --navy-900: #0b1d3a;
  --navy-800: #132b51;
  --orange: #f5961d;
  --orange-dark: #d97606;
  --cream: #f7f2ec;
  --paper: #fffdfa;
  --white: #ffffff;
  --ink: #102342;
  --muted: #627087;
  --line: #dfe4eb;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 22px 60px rgb(9 25 54 / 11%);
  --shadow-soft: 0 12px 35px rgb(9 25 54 / 8%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.has-wheel-smoothing { scroll-behavior: auto; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
body, button, input, select, textarea { font-family: var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 13px; padding: 0 24px; font-size: 14px; font-weight: 750; line-height: 1; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgb(245 150 29 / 42%); outline-offset: 3px; }
.button--orange { background: var(--orange); color: var(--white); box-shadow: 0 12px 26px rgb(245 150 29 / 22%); }
.button--orange:hover { background: var(--orange-dark); }
.button--navy { background: var(--navy-900); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-dark); font-size: 14px; font-weight: 750; }
.text-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.site-header { z-index: 60; width: 100%; color: var(--white); }
.site-header--overlay { position: absolute; inset: 0 0 auto; }
.site-header--solid { position: relative; background: var(--navy-950); box-shadow: 0 10px 30px rgb(4 15 34 / 12%); }
.site-header__inner { display: flex; min-height: 112px; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 72; display: flex; width: 138px; height: 104px; align-items: center; justify-content: center; }
.brand img { width: 112px; height: 112px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.35vw, 38px); font-size: 13px; font-weight: 670; letter-spacing: .03em; }
.main-nav > a { position: relative; padding: 11px 0; }
.main-nav > a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--orange); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.language-switch { display: inline-flex; align-items: center; gap: 3px; border: 1px solid rgb(255 255 255 / 24%); border-radius: 999px; padding: 3px; background: rgb(7 20 42 / 24%); color: inherit; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.language-switch a { display: flex; min-width: 31px; height: 28px; align-items: center; justify-content: center; border-radius: 999px; color: rgb(255 255 255 / 66%); transition: background .2s ease, color .2s ease; }
.language-switch a.active { background: var(--white); color: var(--navy-900); box-shadow: 0 4px 12px rgb(3 12 28 / 18%); }
.menu-toggle { position: relative; z-index: 72; display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgb(255 255 255 / 30%); border-radius: 13px; background: rgb(7 20 42 / 42%); color: var(--white); cursor: pointer; }
.menu-backdrop { position: fixed; z-index: 65; inset: 0; border: 0; background: rgb(3 10 24 / 64%); }

.home-hero { position: relative; min-height: 690px; overflow: hidden; background: url("/images/hero-video-poster.jpg") center / cover no-repeat; color: var(--white); }
.home-hero::before { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgb(4 17 38 / 82%) 0%, rgb(6 19 41 / 59%) 39%, rgb(7 20 42 / 16%) 73%), linear-gradient(0deg, rgb(5 17 36 / 28%), transparent 45%); content: ""; }
.home-hero__video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero__content { position: relative; z-index: 2; display: flex; min-height: 690px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 72px; }
.home-hero h1 { max-width: 700px; margin: 0; font-family: var(--serif); font-size: clamp(62px, 6.7vw, 94px); font-weight: 500; letter-spacing: -.035em; line-height: .95; text-wrap: balance; animation: hero-copy-in .85s cubic-bezier(.22, 1, .36, 1) .08s both; }
.home-hero p { margin: 24px 0 30px; font-size: clamp(19px, 2vw, 26px); font-weight: 420; letter-spacing: .01em; animation: hero-copy-in .8s cubic-bezier(.22, 1, .36, 1) .2s both; }
.home-hero__content > .button { animation: hero-copy-in .8s cubic-bezier(.22, 1, .36, 1) .32s both; }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.search-wrap { position: relative; z-index: 10; margin-top: 0; padding-top: 30px; }
.property-search { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) 156px; gap: 11px; padding: 16px; border: 1px solid rgb(16 35 66 / 9%); border-radius: var(--radius-lg); background: rgb(255 255 255 / 97%); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.property-search .filter-field { position: relative; display: grid; min-width: 0; gap: 2px; border: 1px solid #e3e7ed; border-radius: 14px; padding: 9px 14px 8px; background: #fbfcfd; box-shadow: inset 0 1px 0 rgb(255 255 255 / 85%); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.property-search .filter-field:hover { border-color: #cfd6df; background: var(--white); }
.property-search .filter-field:focus-within { z-index: 12; border-color: rgb(245 150 29 / 76%); background: var(--white); box-shadow: 0 0 0 4px rgb(245 150 29 / 10%); }
.property-search .filter-field > span { color: #7a8698; font-size: 9px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.property-search .button { align-self: stretch; min-height: 62px; border-radius: 14px; }
.property-search .button svg { width: 18px; height: 18px; }

.intro-section { padding: 112px 0 102px; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr); align-items: center; gap: 96px; }
.intro-grid h2, .section-heading h2, .lifestyle-card h2, .home-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(39px, 4.3vw, 58px); font-weight: 500; letter-spacing: -.025em; line-height: 1.05; }
.intro-grid p { max-width: 730px; margin: 25px 0 28px; color: #42516a; font-size: 16px; line-height: 1.9; }
.intro-mark { display: flex; align-items: center; justify-content: center; opacity: .72; }
.intro-mark img { width: 220px; height: 220px; object-fit: contain; filter: drop-shadow(0 16px 32px rgb(245 150 29 / 12%)); }

.properties-section, .locations-section { padding: 104px 0; background: var(--white); }
.section-heading { margin-bottom: 40px; }
.section-heading--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading > p, .section-heading > div > p { margin: 0 0 8px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-heading h2 { font-size: clamp(38px, 3.8vw, 52px); }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.property-card { min-width: 0; overflow: hidden; border: 1px solid rgb(223 228 235 / 86%); border-radius: 20px; background: var(--white); box-shadow: 0 8px 28px rgb(9 28 60 / 5%); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.property-card:hover { transform: translateY(-5px); border-color: rgb(210 217 226 / 90%); box-shadow: 0 22px 46px rgb(9 28 60 / 11%); }
.property-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #dce4ec; }
.property-card__media img { object-fit: cover; transition: transform .45s ease; }
.property-card:hover .property-card__media img { transform: scale(1.035); }
.property-card__status { position: absolute; top: 16px; left: 16px; border-radius: 999px; padding: 7px 12px; background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgb(103 55 0 / 18%); font-size: 10px; font-weight: 830; letter-spacing: .08em; text-transform: uppercase; }
.property-card__body { padding: 21px 21px 23px; }
.property-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #5d6a80; font-size: 11px; }
.property-card__meta span { display: flex; min-width: 0; align-items: center; gap: 5px; }
.property-card__meta svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--orange-dark); }
.property-card h3 { min-height: 58px; margin: 14px 0 18px; font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: -.015em; line-height: 1.15; }
.property-card h3 a:hover { color: var(--orange-dark); }
.property-card__features { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-bottom: 17px; border-bottom: 1px solid var(--line); color: #506079; font-size: 12px; }
.property-card__features span { display: inline-flex; align-items: center; gap: 6px; }
.property-card__features svg { width: 17px; height: 17px; }
.property-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 7px; margin: 16px 0 0; color: var(--navy-900); font-size: 24px; font-weight: 820; letter-spacing: -.02em; }
.property-card__price small { color: var(--muted); font-size: 11px; font-weight: 560; letter-spacing: 0; }

.lifestyle-band { position: relative; min-height: 410px; overflow: hidden; }
.lifestyle-band > img { object-fit: cover; }
.lifestyle-band::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(7 20 42 / 20%), transparent 70%); content: ""; }
.lifestyle-band__inner { position: relative; z-index: 2; display: flex; min-height: 410px; align-items: center; }
.lifestyle-card { width: min(490px, 100%); border: 1px solid rgb(255 255 255 / 60%); border-radius: var(--radius-lg); padding: 46px 48px; background: rgb(247 242 236 / 96%); box-shadow: 0 24px 58px rgb(5 18 41 / 16%); backdrop-filter: blur(16px); }
.lifestyle-card h2 { font-size: clamp(37px, 3.7vw, 50px); }
.lifestyle-card p { margin: 18px 0 25px; color: #4d5b71; font-size: 15px; }

.locations-section { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.location-card { position: relative; display: block; overflow: hidden; border-radius: 20px; aspect-ratio: 1.7 / 1; background: #cfd9e3; box-shadow: 0 12px 32px rgb(9 28 60 / 8%); }
.location-card::after { position: absolute; inset: 38% 0 0; z-index: 1; background: linear-gradient(transparent, rgb(5 18 39 / 90%)); content: ""; }
.location-card img { object-fit: cover; transition: transform .45s ease; }
.location-card:hover img { transform: scale(1.045); }
.location-card span { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--white); font-family: var(--serif); font-size: clamp(23px, 2.2vw, 30px); line-height: 1.1; }
.location-card svg { width: 21px; height: 21px; flex: 0 0 auto; opacity: .88; transition: opacity .2s ease, transform .2s ease; }
.location-card:hover svg { opacity: 1; transform: translateX(3px); }

.home-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 455px; background: var(--cream); }
.home-cta__image { position: relative; min-height: 455px; }
.home-cta__image img { object-fit: cover; }
.home-cta__content { display: flex; align-items: center; padding: 70px clamp(40px, 7vw, 110px); }
.home-cta__content > div { max-width: 550px; }
.home-cta p { margin: 22px 0 28px; color: #4b5970; font-size: 16px; line-height: 1.8; }

.site-footer { padding: 70px 0 0; background: var(--navy-950); color: rgb(255 255 255 / 78%); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1.35fr .85fr 1fr; gap: 58px; padding-bottom: 58px; }
.footer-grid h2 { margin: 0 0 18px; color: var(--white); font-family: var(--serif); font-size: 20px; font-weight: 600; }
.footer-brand img { width: 108px; height: 108px; margin-top: -20px; object-fit: contain; }
.footer-brand p { max-width: 270px; margin: 0 0 18px; font-size: 13px; line-height: 1.7; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px; }
.social-links a { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid rgb(255 255 255 / 15%); border-radius: 11px; background: rgb(255 255 255 / 5%); color: var(--orange); transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.social-links a:hover { transform: translateY(-2px); border-color: rgb(245 150 29 / 45%); background: rgb(245 150 29 / 11%); color: var(--white); }
.social-links svg { width: 17px; height: 17px; }
.footer-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: 12px; }
.footer-list a:hover { color: var(--orange); }
.footer-contact { gap: 15px; }
.footer-contact li { display: flex; min-width: 0; align-items: flex-start; gap: 9px; }
.footer-contact li > svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px; color: var(--orange); }
.footer-office > div { display: grid; gap: 7px; }
.footer-office > div > a:first-child { display: grid; gap: 1px; line-height: 1.5; }
.footer-office strong, .footer-hours strong { color: rgb(255 255 255 / 88%); font-weight: 700; }
.footer-office span, .footer-hours span { display: block; color: rgb(255 255 255 / 61%); }
.footer-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 720; }
.footer-phone svg { width: 14px; height: 14px; }
.footer-email a { overflow-wrap: anywhere; }
.footer-hours div { display: grid; gap: 1px; }
.footer-hours strong { margin-bottom: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgb(255 255 255 / 12%); padding-block: 20px; color: rgb(255 255 255 / 50%); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-credit { color: rgb(255 255 255 / 62%); transition: color .2s ease; }
.footer-credit strong { color: var(--orange); font-weight: 780; }
.footer-credit:hover { color: var(--white); }

.scroll-reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
.whatsapp-float { position: fixed; z-index: 58; bottom: 24px; left: 24px; display: flex; min-height: 58px; align-items: center; gap: 11px; border: 1px solid rgb(255 255 255 / 16%); border-radius: 18px; padding: 8px 15px 8px 8px; background: rgb(7 20 42 / 94%); color: var(--white); box-shadow: 0 18px 44px rgb(3 12 28 / 23%); opacity: 0; transform: translateY(12px); animation: floating-action-in .55s cubic-bezier(.22, 1, .36, 1) .9s forwards; backdrop-filter: blur(16px); transition: background .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { background: var(--navy-900); box-shadow: 0 22px 50px rgb(3 12 28 / 30%); }
.whatsapp-float__icon { display: flex; width: 42px; height: 42px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 13px; background: #25d366; color: var(--white); box-shadow: 0 8px 20px rgb(37 211 102 / 22%); }
.whatsapp-float__icon svg { display: block; width: 23px; height: 23px; }
.whatsapp-float__icon svg path:last-child { transform: translateY(1px); }
.whatsapp-float > span:last-child { display: grid; gap: 1px; }
.whatsapp-float small { color: rgb(255 255 255 / 58%); font-size: 9px; font-weight: 680; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-float strong { font-size: 12px; font-weight: 720; white-space: nowrap; }
.back-to-top { --scroll-progress-angle: 0deg; position: fixed; z-index: 58; right: 24px; bottom: 24px; display: flex; width: 52px; height: 52px; align-items: center; justify-content: center; border: 0; border-radius: 50%; padding: 3px; background: conic-gradient(var(--orange) var(--scroll-progress-angle), rgb(255 255 255 / 22%) 0); color: var(--white); box-shadow: 0 16px 38px rgb(3 12 28 / 22%); opacity: 0; pointer-events: none; transform: translateY(10px) scale(.96); transition: opacity .28s ease, transform .28s ease, box-shadow .2s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { box-shadow: 0 20px 44px rgb(3 12 28 / 30%); }
.back-to-top > span { position: relative; display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy-950); }
.back-to-top svg { width: 19px; height: 19px; }
@keyframes floating-action-in { to { opacity: 1; transform: translateY(0); } }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }
.listing-hero { position: relative; min-height: 460px; overflow: hidden; background: url("/images/hero.jpg") center 42% / cover no-repeat; color: var(--white); }
.listing-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 18 40 / 86%), rgb(7 21 44 / 52%) 65%, rgb(7 21 44 / 25%)); content: ""; }
.listing-hero__content { position: relative; z-index: 1; display: flex; min-height: 460px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 72px; }
.listing-hero__content > p { margin: 0 0 13px; color: rgb(255 255 255 / 70%); font-size: 12px; font-weight: 650; }
.listing-hero__content > p span { margin: 0 8px; color: var(--orange); }
.listing-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(52px, 6vw, 80px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.listing-hero__content > div { max-width: 680px; margin-top: 17px; color: rgb(255 255 255 / 78%); font-size: 16px; }
.catalog-section { padding: 74px 0 110px; background: var(--paper); }
.catalog-toolbar { display: grid; grid-template-columns: 1.65fr repeat(5, minmax(116px, 1fr)); gap: 10px; padding: 14px; border: 1px solid rgb(223 228 235 / 90%); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.catalog-toolbar .filter-field { position: relative; display: grid; min-width: 0; gap: 2px; border: 1px solid #e2e7ed; border-radius: 14px; padding: 8px 12px 7px; background: #fbfcfd; color: #748095; font-size: 9px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.catalog-toolbar .filter-field:hover { border-color: #cfd6df; background: var(--white); }
.catalog-toolbar .filter-field:focus-within { z-index: 12; border-color: rgb(245 150 29 / 76%); background: var(--white); box-shadow: 0 0 0 4px rgb(245 150 29 / 9%); }
.catalog-toolbar input { width: 100%; height: 29px; border: 0; outline: 0; background-color: transparent; color: #293a53; padding: 0; font-size: 12px; font-weight: 620; letter-spacing: 0; text-transform: none; }
.custom-select { position: relative; min-width: 0; letter-spacing: 0; text-transform: none; }
.custom-select__trigger { display: flex; width: 100%; height: 30px; align-items: center; justify-content: space-between; gap: 10px; border: 0; padding: 0; background: transparent; color: #263750; cursor: pointer; font-size: 13px; font-weight: 650; line-height: 1; text-align: left; }
.catalog-toolbar .custom-select__trigger { height: 29px; color: #293a53; font-size: 12px; }
.custom-select__trigger > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select__trigger > svg { width: 16px; height: 16px; flex: 0 0 auto; color: #68768a; transition: color .2s ease, transform .22s ease; }
.custom-select__trigger[aria-expanded="true"] > svg { color: var(--orange-dark); transform: rotate(180deg); }
.custom-select__menu { position: absolute; z-index: 90; top: calc(100% + 12px); left: -15px; display: grid; min-width: calc(100% + 30px); max-height: 270px; gap: 3px; overflow-y: auto; border: 1px solid rgb(214 221 231 / 92%); border-radius: 16px; padding: 7px; background: rgb(255 255 255 / 98%); box-shadow: 0 22px 58px rgb(7 20 42 / 18%), 0 4px 14px rgb(7 20 42 / 8%); animation: select-menu-in .16s ease-out; backdrop-filter: blur(18px); }
.custom-select__option { display: flex; width: 100%; min-height: 39px; align-items: center; justify-content: space-between; gap: 16px; border: 0; border-radius: 10px; padding: 0 11px; background: transparent; color: #34445c; cursor: pointer; font-size: 12px; font-weight: 630; line-height: 1.25; text-align: left; white-space: nowrap; }
.custom-select__option:hover, .custom-select__option.is-active { background: #f6f2ed; color: var(--navy-900); }
.custom-select__option.is-selected { background: rgb(245 150 29 / 11%); color: #b85f00; font-weight: 760; }
.custom-select__option svg { width: 16px; height: 16px; flex: 0 0 auto; }
@keyframes select-menu-in { from { opacity: 0; transform: translateY(-5px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
.catalog-search { position: relative; align-self: stretch; }
.catalog-search svg { position: absolute; z-index: 1; bottom: 12px; left: 12px; width: 18px; height: 18px; color: var(--orange-dark); }
.catalog-toolbar .catalog-search input { padding-left: 29px; }
.catalog-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 2px 25px; color: var(--muted); font-size: 13px; }
.catalog-summary p { margin: 0; }
.catalog-summary strong { color: var(--ink); }
.catalog-summary button { border: 0; background: transparent; color: var(--orange-dark); cursor: pointer; font-size: 12px; font-weight: 750; }
.property-grid--catalog { row-gap: 28px; }
.property-grid--catalog .property-card { content-visibility: auto; contain-intrinsic-size: 0 540px; }
.empty-state { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 80px 24px; background: var(--white); box-shadow: var(--shadow-soft); text-align: center; }
.empty-state h2 { margin: 0; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.empty-state p { margin: 10px 0 24px; color: var(--muted); }
.catalog-seo { padding: 90px 0; background: var(--cream); }
.catalog-seo__inner { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 80px; }
.catalog-seo h2 { margin: 0; font-family: var(--serif); font-size: clamp(39px, 4vw, 54px); font-weight: 500; letter-spacing: -.025em; line-height: 1.06; }
.catalog-seo p { margin: 0 0 18px; color: #4a5970; font-size: 15px; line-height: 1.85; }

.property-hero { position: relative; min-height: 660px; overflow: hidden; color: var(--white); }
.property-hero > img { object-fit: cover; }
.property-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 16 36 / 88%), rgb(5 18 39 / 55%) 62%, rgb(5 18 39 / 30%)), linear-gradient(0deg, rgb(4 15 34 / 68%), transparent 60%); content: ""; }
.property-hero__content { position: relative; z-index: 2; display: flex; min-height: 660px; flex-direction: column; justify-content: flex-end; padding-bottom: 68px; }
.back-link { position: absolute; top: 140px; left: 0; color: rgb(255 255 255 / 82%); font-size: 13px; font-weight: 650; }
.property-hero__content > p { margin: 0 0 12px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.property-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(49px, 5.6vw, 78px); font-weight: 500; letter-spacing: -.035em; line-height: 1.02; }
.property-hero__bottom { display: flex; margin-top: 34px; align-items: center; gap: 36px; }
.property-hero__bottom > div:first-child { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 650; }
.property-hero__bottom > strong { color: var(--orange); font-size: clamp(31px, 3.8vw, 52px); font-weight: 850; letter-spacing: -.025em; }
.property-hero__facts { display: flex; overflow: hidden; border: 1px solid rgb(255 255 255 / 30%); border-radius: 14px; background: rgb(4 16 36 / 22%); backdrop-filter: blur(12px); }
.property-hero__facts span { display: grid; min-width: 100px; grid-template-columns: auto 1fr; align-items: center; gap: 0 8px; padding: 11px 14px; border-right: 1px solid rgb(255 255 255 / 25%); font-size: 14px; font-weight: 750; }
.property-hero__facts span:last-child { border-right: 0; }
.property-hero__facts svg { width: 19px; height: 19px; grid-row: span 2; }
.property-hero__facts small { display: block; color: rgb(255 255 255 / 63%); font-size: 8px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.property-detail { padding: 72px 0 105px; background: var(--paper); }
.property-detail__grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(310px, .75fr); align-items: start; gap: 42px; }
.property-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.property-gallery > div { position: relative; overflow: hidden; border-radius: 18px; background: #dce4ec; box-shadow: 0 9px 26px rgb(9 28 60 / 7%); }
.property-gallery img { object-fit: cover; }
.property-gallery__main { grid-column: 1 / -1; aspect-ratio: 1.65 / 1; }
.property-gallery__small { aspect-ratio: 1.55 / 1; }
.property-copy { padding-top: 54px; }
.property-copy h2 { margin: 42px 0 15px; font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: -.02em; }
.property-copy > p { max-width: 850px; margin: 0; color: #4a5970; font-size: 16px; line-height: 1.9; }
.property-overview { display: grid; overflow: hidden; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 7px 24px rgb(9 28 60 / 5%); }
.property-overview > div { display: grid; gap: 6px; padding: 18px; border-right: 1px solid var(--line); }
.property-overview > div:last-child { border-right: 0; }
.property-overview span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.property-overview strong { font-size: 14px; }
.amenities-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin: 0; padding: 0; list-style: none; color: #4a5970; font-size: 14px; }
.amenities-list li { border: 1px solid rgb(223 228 235 / 70%); border-radius: 12px; padding: 12px 14px; background: var(--cream); }
.inquiry-card { position: sticky; top: 24px; overflow: hidden; border: 1px solid rgb(223 228 235 / 75%); border-top: 4px solid var(--orange); border-radius: 20px; padding: 34px; background: var(--cream); box-shadow: var(--shadow); }
.inquiry-card > p { margin: 0 0 7px; color: var(--orange-dark); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.inquiry-card > h2 { margin: 0; font-family: var(--serif); font-size: 37px; font-weight: 500; }
.inquiry-card > div { margin: 10px 0 24px; color: var(--muted); font-size: 13px; }
.inquiry-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.inquiry-form label { display: grid; gap: 5px; }
.inquiry-form label > span { color: var(--ink); font-size: 10px; font-weight: 750; }
.inquiry-form input:not([type="checkbox"]), .inquiry-form textarea { width: 100%; border: 1px solid #d7dce3; border-radius: 11px; background: var(--white); padding: 11px 12px; color: var(--ink); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.inquiry-form input:not([type="checkbox"]) { height: 44px; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form .consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; }
.inquiry-form .consent input { margin-top: 4px; accent-color: var(--orange); }
.inquiry-form .consent span { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.5; }
.inquiry-form .button { width: 100%; margin-top: 2px; padding-inline: 14px; font-size: 12px; }
.form-success { margin: 0; color: #16744b; font-size: 11px; }
.call-link { display: flex; margin-top: 17px; align-items: center; justify-content: center; gap: 8px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.call-link svg { width: 17px; height: 17px; }
.related-section { padding: 90px 0 110px; background: var(--cream); }

.location-hero { position: relative; min-height: 670px; overflow: hidden; color: var(--white); }
.location-hero > img { object-fit: cover; }
.location-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(4 16 36 / 89%), rgb(5 18 39 / 56%) 62%, rgb(5 18 39 / 22%)); content: ""; }
.location-hero__content { position: relative; z-index: 2; display: flex; min-height: 670px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 86px; }
.location-hero__content > p { margin: 0 0 13px; color: rgb(255 255 255 / 65%); font-size: 12px; }
.location-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(57px, 6.4vw, 90px); font-weight: 500; letter-spacing: -.04em; line-height: .96; }
.location-hero__content > div { max-width: 720px; margin: 22px 0 30px; color: rgb(255 255 255 / 80%); font-size: 16px; line-height: 1.8; }
.location-listings { padding: 104px 0; background: var(--white); }
.location-content { padding: 105px 0; background: var(--cream); }
.location-content__grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 90px; }
.location-content h2, .faq-section h2, .location-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 58px); font-weight: 500; letter-spacing: -.03em; line-height: 1.05; }
.location-content__grid > div:first-child > p { margin: 22px 0 0; color: #4a5970; font-size: 15px; line-height: 1.85; }
.location-article { display: grid; gap: 28px; }
.location-article section { padding-bottom: 28px; border-bottom: 1px solid #d8d3ce; }
.location-article section:last-child { border-bottom: 0; }
.location-article h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 550; }
.location-article p { margin: 0; color: #4a5970; font-size: 14px; line-height: 1.85; }
.faq-section { padding: 100px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 90px; }
.faq-grid > div:first-child > p { margin: 0 0 8px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.faq-grid details { border-top: 1px solid var(--line); }
.faq-grid details:last-child { border-bottom: 1px solid var(--line); }
.faq-grid summary { padding: 23px 36px 23px 0; cursor: pointer; color: var(--ink); font-family: var(--serif); font-size: 22px; font-weight: 550; }
.faq-grid details p { margin: -7px 0 24px; color: #536179; font-size: 14px; line-height: 1.8; }
.location-cta { padding: 70px 0; background: var(--navy-900); color: var(--white); }
.location-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.location-cta h2 { font-size: clamp(37px, 4vw, 54px); }
.location-cta p { max-width: 720px; margin: 15px 0 0; color: rgb(255 255 255 / 70%); font-size: 14px; }
.location-cta .button { flex: 0 0 auto; }

.inner-hero { position: relative; min-height: 600px; overflow: hidden; color: var(--white); }
.inner-hero > img { object-fit: cover; }
.inner-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(5 17 38 / 86%), rgb(5 17 38 / 39%) 70%, rgb(5 17 38 / 16%)); content: ""; }
.inner-hero > .shell { position: relative; z-index: 2; display: flex; min-height: 600px; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 80px; }
.inner-hero p { margin: 0 0 12px; color: var(--orange); font-size: 11px; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.inner-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 84px); font-weight: 500; letter-spacing: -.04em; line-height: .98; }
.about-story { padding: 110px 0; background: var(--paper); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.about-story__image { position: relative; min-height: 610px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.about-story__image img { object-fit: cover; }
.section-label { margin: 0 0 10px !important; color: var(--orange-dark) !important; font-size: 11px !important; font-weight: 820 !important; letter-spacing: .16em !important; text-transform: uppercase; }
.about-story h2, .contact-grid > div > h2, .contact-form-wrap h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.3vw, 57px); font-weight: 500; letter-spacing: -.03em; line-height: 1.06; }
.about-story__grid > div:last-child > p:not(.section-label) { margin: 20px 0; color: #4a5970; font-size: 15px; line-height: 1.9; }
.about-story .text-link { margin-top: 8px; }
.values-section { padding: 90px 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid #d7d1ca; }
.values-grid > div { padding: 38px 40px 15px 0; border-right: 1px solid #d7d1ca; }
.values-grid > div + div { padding-left: 40px; }
.values-grid > div:last-child { border-right: 0; }
.values-grid span { color: var(--orange-dark); font-size: 11px; font-weight: 800; }
.values-grid h2 { margin: 18px 0 10px; font-family: var(--serif); font-size: 28px; font-weight: 550; }
.values-grid p { margin: 0; color: #536179; font-size: 13px; line-height: 1.8; }
.offices-section { padding: 76px 0; background: var(--navy-900); color: var(--white); }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.offices-grid > div { padding: 0 36px; border-right: 1px solid rgb(255 255 255 / 16%); }
.offices-grid > div:first-child { padding-left: 0; }
.offices-grid > div:last-child { border-right: 0; }
.offices-grid p { margin: 0 0 6px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.offices-grid h2 { margin: 0 0 8px; font-family: var(--serif); font-size: 30px; font-weight: 520; }
.offices-grid a, .offices-grid span { color: rgb(255 255 255 / 72%); font-size: 13px; }
.contact-section { padding: 105px 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 95px; }
.contact-intro { max-width: 550px; margin: 20px 0 32px; color: #4a5970; font-size: 15px; line-height: 1.85; }
.contact-details { display: grid; gap: 2px; }
.contact-details a { display: flex; align-items: center; gap: 14px; border: 1px solid transparent; border-radius: 12px; padding: 14px 12px; font-size: 14px; font-weight: 700; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.contact-details a:hover { border-color: var(--line); background: var(--white); transform: translateX(3px); }
.contact-details svg { width: 20px; height: 20px; color: var(--orange-dark); }
.contact-details span { display: grid; }
.contact-details small { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-wrap { border: 1px solid rgb(223 228 235 / 70%); border-radius: var(--radius-lg); padding: 42px; background: var(--cream); box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 26px; font-size: 38px; }
.contact-form { display: grid; gap: 15px; }
.contact-form label { display: grid; gap: 6px; }
.contact-form label > span { font-size: 10px; font-weight: 750; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 1px solid #d7dce3; border-radius: 11px; background: var(--white); padding: 12px; color: var(--ink); font-size: 13px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:not([type="checkbox"]) { height: 46px; }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; }
.contact-form .consent input { margin-top: 4px; accent-color: var(--orange); }
.contact-form .consent span { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.5; }
.contact-form .button { justify-self: start; }
.legal-page { padding: 110px 0; background: var(--paper); }
.legal-page > .shell { max-width: 920px; }
.legal-page > .shell > p { margin: 0 0 8px; color: var(--orange-dark); font-size: 11px; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.legal-page h1 { margin: 0 0 48px; font-family: var(--serif); font-size: clamp(48px, 5.5vw, 72px); font-weight: 500; letter-spacing: -.035em; }
.legal-page section { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; background: var(--white); box-shadow: var(--shadow-soft); }
.legal-page h2 { margin: 30px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 550; }
.legal-page h2:first-child { margin-top: 0; }
.legal-page section p { margin: 0; color: #536179; font-size: 14px; line-height: 1.85; }

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); background: #f4f6f9; color: #14233d; }
.admin-sidebar { position: sticky; z-index: 30; top: 0; display: flex; height: 100vh; flex-direction: column; padding: 22px 17px 18px; background: #071a35; color: rgb(255 255 255 / 72%); box-shadow: 12px 0 30px rgb(8 24 50 / 8%); }
.admin-brand { display: flex; height: 112px; align-items: center; justify-content: center; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.admin-brand img { width: 93px; height: 93px; object-fit: contain; }
.admin-sidebar nav { display: grid; gap: 5px; margin-top: 24px; }
.admin-sidebar nav button { display: flex; width: 100%; min-height: 48px; align-items: center; gap: 13px; border: 0; border-radius: 11px; padding: 0 15px; background: transparent; color: inherit; cursor: pointer; font-size: 13px; font-weight: 650; text-align: left; transition: background .2s ease, color .2s ease; }
.admin-sidebar nav button:hover { background: rgb(255 255 255 / 6%); color: var(--white); }
.admin-sidebar nav button.active { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgb(245 150 29 / 18%); }
.admin-sidebar nav svg { width: 19px; height: 19px; flex: 0 0 auto; }
.admin-account { display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 10px; margin-top: auto; border-top: 1px solid rgb(255 255 255 / 10%); padding: 18px 5px 3px; }
.admin-account > span { display: flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 13px; font-weight: 800; }
.admin-account div { display: grid; min-width: 0; line-height: 1.25; }
.admin-account strong { overflow: hidden; color: var(--white); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.admin-account small { color: rgb(255 255 255 / 48%); font-size: 9px; }
.admin-account > a { grid-column: 2; color: var(--orange); font-size: 9px; font-weight: 750; }
.admin-main { min-width: 0; padding: 31px clamp(24px, 3.2vw, 50px) 54px; }
.admin-topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 26px; }
.admin-topbar p { margin: 0 0 3px; color: #7c8798; font-size: 10px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.admin-topbar h1 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 3.7vw, 50px); font-weight: 560; letter-spacing: -.03em; line-height: 1; }
.admin-topbar__actions { display: flex; align-items: center; gap: 10px; }
.sync-state { display: inline-flex; align-items: center; gap: 7px; margin-right: 4px; color: #798699; font-size: 10px; font-weight: 670; white-space: nowrap; }
.sync-state i { width: 7px; height: 7px; border-radius: 50%; background: #a7b0bd; }
.admin-primary-button, .admin-outline-button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; border: 1px solid #ccd3dc; border-radius: 10px; padding: 0 16px; background: var(--white); color: #1b2b46; cursor: pointer; font-size: 11px; font-weight: 760; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.admin-primary-button { border-color: var(--orange); background: var(--orange); color: var(--white); }
.admin-primary-button:hover, .admin-outline-button:hover { transform: translateY(-1px); }
.admin-primary-button:hover { border-color: var(--orange-dark); background: var(--orange-dark); }
.admin-outline-button:hover { border-color: #aeb9c7; background: #fafbfc; }
.admin-primary-button svg, .admin-outline-button svg { width: 16px; height: 16px; }
.admin-primary-button:disabled, .admin-outline-button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.preview-note, .admin-notice { margin-bottom: 18px; border-left: 3px solid var(--orange); padding: 11px 14px; background: #fff7e9; color: #75521f; font-size: 11px; }
.admin-notice { border-color: #2e9769; background: #eaf8f1; color: #216648; }
.admin-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-bottom: 18px; }
.admin-stats article { display: flex; min-height: 98px; align-items: center; gap: 15px; border: 1px solid #e0e5ec; border-radius: 14px; padding: 18px; background: var(--white); box-shadow: 0 7px 22px rgb(15 31 55 / 4%); }
.admin-stats article > svg { width: 37px; height: 37px; border-radius: 10px; padding: 9px; background: #f3f5f8; color: var(--navy-800); }
.admin-stats article:nth-child(2) > svg { background: #e9f7f0; color: #28835d; }
.admin-stats article:nth-child(3) > svg { background: #fff4e4; color: var(--orange-dark); }
.admin-stats article:nth-child(4) > svg { background: #f2effb; color: #7564aa; }
.admin-stats article div { display: grid; line-height: 1.15; }
.admin-stats span { color: #7c8798; font-size: 10px; font-weight: 680; }
.admin-stats strong { margin-top: 7px; color: #14233d; font-size: 25px; font-weight: 780; }
.integration-banner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; margin-bottom: 18px; border: 1px solid #f2d3aa; border-radius: 13px; padding: 15px 17px; background: #fffaf1; }
.integration-banner > svg { width: 35px; height: 35px; border-radius: 9px; padding: 8px; background: #ffedd1; color: var(--orange-dark); }
.integration-banner div { display: grid; line-height: 1.35; }
.integration-banner strong { font-size: 11px; }
.integration-banner span { color: #798699; font-size: 10px; }
.integration-banner button { border: 0; background: transparent; color: var(--orange-dark); cursor: pointer; font-size: 10px; font-weight: 800; }
.admin-table-card { overflow: hidden; border: 1px solid #dfe4eb; border-radius: 14px; background: var(--white); box-shadow: 0 8px 25px rgb(15 31 55 / 4%); }
.admin-filters { display: flex; align-items: center; gap: 9px; padding: 15px; border-bottom: 1px solid #e6e9ee; }
.admin-filters label { position: relative; flex: 1; }
.admin-filters label svg { position: absolute; top: 11px; left: 11px; width: 16px; height: 16px; color: #8792a2; }
.admin-filters input, .admin-filters select { height: 38px; border: 1px solid #dce1e8; border-radius: 9px; background: var(--white); color: #526076; padding: 0 11px; font-size: 10px; }
.admin-filters input { width: 100%; padding-left: 36px; }
.admin-filters select { min-width: 132px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table-wrap table { width: 100%; min-width: 970px; border-collapse: collapse; }
.admin-table-wrap th { height: 42px; padding: 0 13px; background: #f8f9fb; color: #7b8798; font-size: 8px; font-weight: 820; letter-spacing: .07em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.admin-table-wrap td { padding: 12px 13px; border-top: 1px solid #edf0f3; color: #46546a; font-size: 10px; vertical-align: middle; }
.admin-table-wrap tbody tr:hover { background: #fcfcfd; }
.admin-table-wrap td > small { display: block; color: #8893a2; font-size: 8px; }
.admin-property-cell { display: flex; min-width: 260px; align-items: center; gap: 11px; }
.admin-property-cell img { width: 68px; height: 52px; flex: 0 0 auto; object-fit: cover; }
.admin-property-cell div { display: grid; gap: 4px; }
.admin-property-cell strong { max-width: 250px; overflow: hidden; color: #192943; font-family: var(--serif); font-size: 13px; font-weight: 650; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.admin-property-cell small { color: #8893a2; font-size: 8px; }
.admin-status { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 750; white-space: nowrap; }
.admin-status i { width: 6px; height: 6px; border-radius: 50%; }
.admin-status--published { color: #227651; }
.admin-status--published i { background: #38a876; }
.admin-status--draft { color: #856b30; }
.admin-status--draft i { background: #d59e2a; }
.publish-switch { position: relative; width: 32px; height: 18px; border: 0; border-radius: 20px; background: #cbd2dc; cursor: pointer; transition: background .2s ease; }
.publish-switch span { position: absolute; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 4px rgb(0 0 0 / 20%); transition: transform .2s ease; }
.publish-switch.on { background: #36a874; }
.publish-switch.on span { transform: translateX(14px); }
.row-menu { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border: 0; background: transparent; color: #8994a3; cursor: pointer; }
.row-menu svg { width: 17px; height: 17px; }
.admin-table-footer { border-top: 1px solid #edf0f3; padding: 12px 15px; color: #8691a1; font-size: 9px; }
.admin-drawer-backdrop { position: fixed; z-index: 80; inset: 0; border: 0; background: rgb(5 15 32 / 48%); cursor: default; }
.admin-drawer { position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(520px, 100vw); overflow-y: auto; background: #f8f9fb; box-shadow: -24px 0 60px rgb(4 16 34 / 24%); transform: translateX(105%); transition: transform .28s ease; }
.admin-drawer.open { transform: translateX(0); }
.admin-drawer > header { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dde2e9; padding: 22px 26px; background: var(--white); }
.admin-drawer > header p { margin: 0 0 2px; color: var(--orange-dark); font-size: 9px; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.admin-drawer > header h2 { margin: 0; font-family: var(--serif); font-size: 30px; font-weight: 560; line-height: 1.1; }
.admin-drawer > header button { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid #dfe4ea; border-radius: 10px; background: var(--white); color: #566378; cursor: pointer; }
.admin-drawer > header button svg { width: 18px; height: 18px; }
.admin-property-form { padding: 25px 26px 0; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.admin-form-grid label { display: grid; min-width: 0; gap: 6px; }
.admin-form-grid label > span, .integration-drawer label > span { color: #334158; font-size: 9px; font-weight: 770; }
.admin-form-grid .wide { grid-column: 1 / -1; }
.admin-form-grid input:not([type="checkbox"]):not([type="file"]), .admin-form-grid select, .admin-form-grid textarea, .integration-drawer input, .integration-drawer select { width: 100%; border: 1px solid #d9dfe7; border-radius: 9px; background: var(--white); color: #26364f; padding: 10px 11px; font-size: 11px; }
.admin-form-grid input:not([type="checkbox"]):not([type="file"]), .admin-form-grid select { height: 41px; }
.admin-form-grid textarea { resize: vertical; line-height: 1.55; }
.admin-upload { place-items: center; border: 1px dashed #c8d0da; border-radius: 12px; padding: 24px; background: var(--white); cursor: pointer; text-align: center; }
.admin-upload svg { width: 28px; height: 28px; color: var(--orange-dark); }
.admin-upload strong { font-size: 11px; }
.admin-upload > span { color: #8994a4 !important; font-size: 9px !important; font-weight: 500 !important; }
.admin-upload input { max-width: 100%; color: #687589; font-size: 9px; }
.admin-checks { display: flex !important; flex-direction: row; flex-wrap: wrap; gap: 20px !important; }
.admin-checks label { display: flex; align-items: center; gap: 7px; color: #536177; font-size: 10px; }
.admin-checks input { accent-color: var(--orange); }
.admin-property-form footer { position: sticky; bottom: 0; display: flex; justify-content: flex-end; gap: 9px; margin: 25px -26px 0; border-top: 1px solid #dfe4ea; padding: 16px 26px; background: var(--white); }
.integration-drawer { display: grid; padding: 34px 28px; }
.integration-icon { display: flex; width: 62px; height: 62px; align-items: center; justify-content: center; border-radius: 16px; background: #fff0d9; color: var(--orange-dark); }
.integration-icon svg { width: 28px; height: 28px; }
.integration-drawer h3 { margin: 22px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 580; }
.integration-drawer > p { margin: 0 0 22px; color: #657287; font-size: 11px; line-height: 1.7; }
.integration-drawer label { display: grid; gap: 6px; margin-bottom: 14px; }
.integration-drawer input, .integration-drawer select { height: 42px; color: #8b95a3; }
.integration-steps { display: grid; grid-template-columns: 25px 1fr; gap: 12px 10px; margin: 16px 0 27px; border-top: 1px solid #dfe4ea; padding-top: 22px; }
.integration-steps > span { display: flex; width: 25px; height: 25px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy-900); color: var(--white); font-size: 9px; font-weight: 800; }
.integration-steps p { display: grid; margin: 0; color: #7b8798; font-size: 9px; line-height: 1.5; }
.integration-steps strong { color: #25354e; font-size: 10px; }
.integration-drawer > .admin-primary-button { justify-self: start; }

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

@media (min-width: 821px) {
  .home-hero, .home-hero__content { min-height: 100vh; min-height: 100svh; }
  .home-hero__content { padding-top: 112px; padding-bottom: 72px; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .property-search { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-search .button { min-height: 50px; }
  .search-wrap { margin-top: 0; }
  .intro-grid { gap: 55px; }
  .property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .properties-section .property-card:last-child { display: none; }
  .catalog-toolbar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-search { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 82px minmax(0, 1fr); }
  .admin-sidebar { padding-inline: 12px; }
  .admin-brand { height: 86px; }
  .admin-brand img { width: 68px; height: 68px; }
  .admin-sidebar nav button { justify-content: center; padding: 0; }
  .admin-sidebar nav button span, .admin-account div, .admin-account > a { display: none; }
  .admin-account { display: flex; justify-content: center; }
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sync-state { display: none; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 1240px); }
  .site-header__inner { min-height: 88px; }
  .brand { width: 104px; height: 82px; }
  .brand img { width: 90px; height: 90px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: fixed; z-index: 70; top: 0; right: 0; bottom: 0; display: flex; width: min(86vw, 370px); align-items: stretch; flex-direction: column; gap: 0; border-radius: 28px 0 0 28px; padding: 112px 30px 34px; background: var(--navy-950); box-shadow: -18px 0 48px rgb(2 10 24 / 25%); transform: translateX(105%); transition: transform .28s ease; }
  .main-nav--open { transform: translateX(0); }
  .main-nav > a { border-bottom: 1px solid rgb(255 255 255 / 11%); padding: 17px 0; font-size: 15px; }
  .main-nav > a::after { display: none; }
  .language-switch { align-self: flex-start; margin-top: 24px; padding: 3px; }
  .home-hero, .home-hero__content { min-height: 630px; }
  .home-hero { background-position: 60% center; }
  .home-hero::before { background: linear-gradient(90deg, rgb(4 17 38 / 84%), rgb(6 19 41 / 52%) 72%, rgb(7 20 42 / 18%)); }
  .home-hero__content { padding-top: 66px; }
  .home-hero h1 { max-width: 600px; font-size: clamp(51px, 11vw, 76px); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-mark { display: none; }
  .section-heading--row { align-items: flex-start; flex-direction: column; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { aspect-ratio: 2.1 / 1; }
  .home-cta { grid-template-columns: 1fr; }
  .home-cta__image { min-height: 360px; }
  .home-cta__content { padding: 70px 32px; }
  .catalog-seo__inner { grid-template-columns: 1fr; gap: 30px; }
  .property-detail__grid { grid-template-columns: 1fr; }
  .inquiry-card { position: relative; top: auto; }
  .location-content__grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story__grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-story__image { min-height: 520px; }
  .admin-shell { display: block; }
  .admin-sidebar { position: sticky; top: 0; width: 100%; height: 66px; align-items: center; flex-direction: row; padding: 7px 13px; }
  .admin-brand { width: 62px; height: 52px; flex: 0 0 auto; border: 0; border-right: 1px solid rgb(255 255 255 / 10%); }
  .admin-brand img { width: 52px; height: 52px; }
  .admin-sidebar nav { display: flex; flex: 1; justify-content: flex-end; gap: 4px; margin: 0; }
  .admin-sidebar nav button { width: 42px; min-height: 42px; }
  .admin-account { display: none; }
  .admin-main { padding: 26px 18px 45px; }
  .admin-topbar { align-items: flex-start; flex-direction: column; }
  .admin-topbar__actions { width: 100%; flex-wrap: wrap; }
  .admin-table-card { margin-inline: -4px; }
}

/* Server-rendered admin */
.admin-sidebar nav a { display: flex; width: 100%; min-height: 50px; align-items: center; gap: 13px; border-radius: 12px; padding: 0 15px; color: inherit; font-size: 14px; font-weight: 680; transition: background .2s ease, color .2s ease; }
.admin-sidebar nav a:hover { background: rgb(255 255 255 / 6%); color: var(--white); }
.admin-sidebar nav a.active { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgb(245 150 29 / 18%); }
.admin-sidebar nav a svg { width: 20px; height: 20px; flex: 0 0 auto; }
.admin-account form { grid-column: 2; }
.admin-account form button { border: 0; padding: 0; background: transparent; color: var(--orange); cursor: pointer; font-size: 11px; font-weight: 750; }
.admin-error { margin-bottom: 18px; border-left: 4px solid #c84d4d; border-radius: 9px; padding: 13px 16px; background: #fff0f0; color: #823434; font-size: 14px; }
.admin-error ul { margin: 5px 0 0; padding-left: 20px; }
.admin-filters { display: grid; grid-template-columns: minmax(260px, 1fr) 190px 190px auto; }
.admin-filters > .admin-outline-button { align-self: end; min-height: 46px; }
.admin-row-actions { display: flex; align-items: center; gap: 7px; }
.admin-row-actions a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid #dbe1e8; border-radius: 10px; background: var(--white); color: #536179; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.admin-row-actions a:hover { transform: translateY(-1px); border-color: var(--orange); color: var(--orange-dark); }
.admin-row-actions svg { width: 17px; height: 17px; }
.admin-pagination { display: flex; align-items: center; gap: 14px; }
.admin-pagination a { color: var(--orange-dark); font-weight: 750; }
.admin-pagination span { color: #7d899a; }
.admin-property-page-form { overflow: visible; border: 0; border-radius: 0; padding: 0; background: transparent; }
.admin-property-page-form .admin-form-grid { max-width: 1100px; }
.admin-property-page-form footer { position: sticky; z-index: 12; bottom: 0; margin: 28px 0 0; border: 1px solid #dfe4eb; border-radius: 16px; padding: 16px 18px; background: rgb(255 255 255 / 96%); backdrop-filter: blur(16px); }
.admin-existing-images { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-bottom: 20px; }
.admin-existing-images label { overflow: hidden; border: 1px solid #dfe4eb; border-radius: 14px; background: #f8fafc; }
.admin-existing-images img { width: 100%; height: 120px; object-fit: cover; }
.admin-existing-images span { display: flex; align-items: center; gap: 7px; padding: 10px; color: #657287; font-size: 12px; }
.admin-existing-images input { accent-color: #c84d4d; }
.admin-delete-zone { display: flex; max-width: 1100px; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; border: 1px solid #efcaca; border-radius: 16px; padding: 20px 22px; background: #fff8f8; }
.admin-delete-zone div { display: grid; gap: 3px; }
.admin-delete-zone strong { color: #7f3434; font-size: 15px; }
.admin-delete-zone span { color: #916666; font-size: 12px; }
.admin-delete-zone button, .admin-danger-button { display: inline-flex; min-height: 40px; align-items: center; justify-content: center; gap: 7px; border: 1px solid #d36a6a; border-radius: 10px; padding: 0 14px; background: #fff; color: #aa4242; cursor: pointer; font-size: 12px; font-weight: 750; }
.admin-delete-zone svg, .admin-danger-button svg { width: 16px; height: 16px; }
.admin-inquiry-list { display: grid; gap: 14px; padding: 20px; background: #f3f6f9; }
.admin-inquiry { border: 1px solid #dfe4eb; border-radius: 16px; padding: 20px; background: var(--white); box-shadow: 0 7px 20px rgb(15 31 55 / 4%); }
.admin-inquiry.is-unread { border-left: 5px solid var(--orange); }
.admin-inquiry > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-inquiry > header div { display: grid; }
.admin-inquiry > header span { color: #192b48; font-size: 16px; font-weight: 780; }
.admin-inquiry > header small { color: #8792a2; font-size: 12px; }
.admin-inquiry > header em { border-radius: 999px; padding: 6px 10px; background: #eef2f6; color: #6d7888; font-size: 10px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.admin-inquiry.is-unread > header em { background: #fff0dc; color: #a75500; }
.admin-inquiry-property { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--orange-dark); font-size: 12px; font-weight: 720; }
.admin-inquiry-property svg { width: 16px; height: 16px; }
.admin-inquiry > p { margin: 16px 0; color: #495872; font-size: 14px; line-height: 1.75; white-space: pre-wrap; }
.admin-inquiry-contact { display: flex; flex-wrap: wrap; gap: 9px; }
.admin-inquiry-contact a { display: inline-flex; align-items: center; gap: 7px; border: 1px solid #e0e5ec; border-radius: 10px; padding: 8px 11px; color: #41516b; font-size: 12px; }
.admin-inquiry-contact svg { width: 15px; height: 15px; color: var(--orange-dark); }
.admin-inquiry footer { display: flex; justify-content: flex-end; gap: 9px; margin-top: 18px; border-top: 1px solid #edf0f3; padding-top: 15px; }
.admin-empty-panel { padding: 70px 20px; text-align: center; }
.admin-empty-panel svg { width: 46px; height: 46px; color: #9aa5b4; }
.admin-empty-panel h2 { margin: 12px 0 4px; font-family: var(--serif); font-size: 30px; }
.admin-empty-panel p { margin: 0; color: #7a8798; }
.admin-integration-page { max-width: 820px; border: 1px solid #dfe4eb; border-radius: 20px; padding: clamp(28px, 5vw, 54px); background: var(--white); box-shadow: 0 14px 40px rgb(15 31 55 / 6%); }
.admin-integration-page h2 { margin: 6px 0 12px; font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); font-weight: 560; line-height: 1.08; }
.admin-integration-page > p:not(.section-label) { color: #526177; font-size: 15px; line-height: 1.8; }
.admin-integration-note { display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid #e5e9ee; padding-top: 22px; }
.admin-integration-note strong { width: 100%; margin-bottom: 4px; }
.admin-integration-note code { border-radius: 8px; padding: 6px 9px; background: #f0f3f7; color: #495972; }
.admin-login-page { display: grid; min-height: 100vh; place-items: center; padding: 24px; background: radial-gradient(circle at 20% 0%, #17345f, #07142a 48%, #040c1a); }
.admin-login-card { width: min(470px, 100%); border: 1px solid rgb(255 255 255 / 13%); border-radius: 26px; padding: 34px 40px 30px; background: rgb(255 255 255 / 97%); box-shadow: 0 34px 90px rgb(0 0 0 / 33%); }
.admin-login-logo { display: flex; justify-content: center; margin: -18px 0 -6px; }
.admin-login-logo img { width: 126px; height: 126px; object-fit: contain; }
.admin-login-card > p { margin: 0; color: var(--orange-dark); font-size: 11px; font-weight: 820; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.admin-login-card h1 { margin: 5px 0 4px; font-family: var(--serif); font-size: 42px; font-weight: 560; letter-spacing: -.03em; text-align: center; }
.admin-login-card > span { display: block; color: #6c788a; font-size: 14px; text-align: center; }
.admin-login-card form { display: grid; gap: 16px; margin-top: 28px; }
.admin-login-card form > label:not(.admin-login-remember) { display: grid; gap: 7px; }
.admin-login-card label > span { color: #34445b; font-size: 13px; font-weight: 720; }
.admin-login-card input:not([type="checkbox"]) { width: 100%; height: 52px; border: 1px solid #d6dde6; border-radius: 13px; padding: 0 14px; background: #fbfcfd; font-size: 15px; }
.admin-login-card input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgb(245 150 29 / 10%); outline: 0; }
.admin-login-remember { display: flex; align-items: center; gap: 8px; }
.admin-login-remember input { width: 17px; height: 17px; accent-color: var(--orange); }
.admin-login-card .admin-primary-button { width: 100%; min-height: 50px; }
.admin-login-back { display: block; margin-top: 22px; color: #647186; font-size: 12px; font-weight: 700; text-align: center; }

@media (max-width: 1180px) {
  .admin-sidebar nav a { justify-content: center; padding-inline: 0; }
  .admin-sidebar nav a span, .admin-account form { display: none; }
}
@media (max-width: 820px) {
  .admin-sidebar nav a { width: auto; min-width: 72px; min-height: 58px; flex-direction: column; justify-content: center; gap: 3px; padding: 5px 7px; font-size: 10px; text-align: center; }
  .admin-sidebar nav a span { display: block; }
  .admin-sidebar nav a svg { width: 19px; height: 19px; }
  .admin-filters { grid-template-columns: 1fr; }
  .admin-filters > .admin-outline-button { width: 100%; }
  .admin-property-page-form footer { position: static; align-items: stretch; flex-direction: column-reverse; }
  .admin-property-page-form footer > * { width: 100%; }
  .admin-delete-zone { align-items: stretch; flex-direction: column; }
  .admin-delete-zone button { width: 100%; }
  .admin-inquiry-list { padding: 12px; }
  .admin-inquiry { padding: 16px; }
}
@media (max-width: 560px) {
  .admin-login-card { padding: 27px 22px 24px; }
  .admin-login-card h1 { font-size: 36px; }
  .admin-sidebar nav a { min-width: 58px; padding-inline: 4px; font-size: 9px; }
  .admin-sidebar nav a:nth-child(4) { display: none; }
  .admin-inquiry > header { align-items: flex-start; flex-direction: column; gap: 7px; }
  .admin-inquiry-contact { display: grid; }
  .admin-inquiry footer { align-items: stretch; flex-direction: column; }
  .admin-inquiry footer button { width: 100%; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1240px); }
  .home-hero, .home-hero__content { min-height: 610px; }
  .home-hero h1 { font-size: clamp(47px, 14vw, 65px); }
  .home-hero p { margin: 18px 0 26px; font-size: 18px; }
  .search-wrap { margin-top: 0; padding-top: 20px; }
  .property-search { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
  .intro-section { padding: 90px 0 78px; }
  .intro-grid h2, .section-heading h2, .lifestyle-card h2, .home-cta h2 { font-size: 38px; }
  .properties-section, .locations-section { padding: 78px 0; }
  .property-grid { grid-template-columns: 1fr; }
  .properties-section .property-card:last-child { display: block; }
  .listing-hero, .listing-hero__content { min-height: 420px; }
  .listing-hero__content { padding-bottom: 52px; }
  .catalog-section { padding: 38px 0 80px; }
  .catalog-toolbar { grid-template-columns: 1fr; padding: 15px; }
  .catalog-search { grid-column: auto; }
  .catalog-seo { padding: 70px 0; }
  .property-hero, .property-hero__content { min-height: 680px; }
  .back-link { top: 112px; }
  .property-hero__content { padding-bottom: 48px; }
  .property-hero__bottom { align-items: flex-start; flex-direction: column; gap: 17px; }
  .property-hero__facts { width: 100%; }
  .property-hero__facts span { min-width: 0; flex: 1; padding: 9px; }
  .property-detail { padding: 28px 0 80px; }
  .property-gallery { gap: 7px; }
  .property-copy { padding-top: 36px; }
  .property-overview { grid-template-columns: 1fr 1fr; }
  .property-overview > div:nth-child(2) { border-right: 0; }
  .property-overview > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .amenities-list { grid-template-columns: 1fr; }
  .inquiry-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .location-hero, .location-hero__content { min-height: 630px; }
  .location-listings { padding: 78px 0; }
  .location-content, .faq-section { padding: 75px 0; }
  .location-cta .shell { align-items: flex-start; flex-direction: column; gap: 28px; }
  .inner-hero, .inner-hero > .shell { min-height: 540px; }
  .inner-hero > .shell { padding-bottom: 55px; }
  .about-story, .contact-section { padding: 75px 0; }
  .about-story__image { min-height: 400px; }
  .values-grid, .offices-grid { grid-template-columns: 1fr; }
  .values-grid > div, .values-grid > div + div, .offices-grid > div, .offices-grid > div:first-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid #d7d1ca; }
  .offices-grid > div, .offices-grid > div:first-child { border-color: rgb(255 255 255 / 16%); }
  .values-grid > div:last-child, .offices-grid > div:last-child { border-bottom: 0; }
  .contact-form-wrap { padding: 28px 22px; }
  .legal-page { padding: 75px 0; }
  .legal-page section { padding: 25px 20px; }
  .property-card h3 { min-height: 0; }
  .lifestyle-band, .lifestyle-band__inner { min-height: 510px; }
  .lifestyle-band > img { object-position: 64% center; }
  .lifestyle-band__inner { align-items: flex-end; padding-bottom: 24px; }
  .lifestyle-card { padding: 35px 27px; }
  .location-card { aspect-ratio: 1.45 / 1; }
  .home-cta__image { min-height: 300px; }
  .home-cta__content { padding: 58px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { bottom: 14px; left: 14px; min-height: 50px; border-radius: 15px; padding: 6px 11px 6px 6px; }
  .whatsapp-float__icon { width: 38px; height: 38px; border-radius: 11px; }
  .whatsapp-float small { display: none; }
  .whatsapp-float strong { max-width: 142px; overflow: hidden; font-size: 10px; text-overflow: ellipsis; }
  .back-to-top { right: 14px; bottom: 14px; width: 48px; height: 48px; }
  .back-to-top > span { width: 42px; height: 42px; }
  .admin-sidebar nav button:first-child, .admin-sidebar nav button:nth-child(4) { display: none; }
  .admin-main { padding-inline: 12px; }
  .admin-topbar { margin-bottom: 20px; }
  .admin-topbar h1 { font-size: 38px; }
  .admin-topbar__actions .admin-outline-button { display: none; }
  .admin-stats { gap: 8px; }
  .admin-stats article { min-height: 84px; gap: 10px; padding: 13px; }
  .admin-stats article > svg { width: 32px; height: 32px; }
  .integration-banner { grid-template-columns: auto 1fr; }
  .integration-banner button { grid-column: 2; justify-self: start; padding: 0; }
  .admin-filters { align-items: stretch; flex-direction: column; }
  .admin-filters select { width: 100%; }
  .admin-drawer > header { padding: 19px 18px; }
  .admin-property-form { padding: 20px 18px 0; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-form-grid .wide { grid-column: auto; }
  .admin-property-form footer { margin-inline: -18px; padding-inline: 18px; }
  .integration-drawer { padding: 28px 20px; }
}

/* Admin panel refresh */
.admin-shell {
  --admin-bg: #f2f5f8;
  --admin-surface: #ffffff;
  --admin-border: #dfe5ec;
  --admin-muted: #68768a;
  --admin-text: #172943;
  grid-template-columns: 276px minmax(0, 1fr);
  background: var(--admin-bg);
  color: var(--admin-text);
  font-size: 15px;
}

.admin-sidebar {
  padding: 24px 20px 22px;
  background: linear-gradient(180deg, #071a35 0%, #0a2346 100%);
  box-shadow: 14px 0 40px rgb(8 24 50 / 10%);
}

.admin-brand {
  height: 124px;
  border-bottom-color: rgb(255 255 255 / 12%);
}

.admin-brand img { width: 104px; height: 104px; }
.admin-sidebar nav { gap: 8px; margin-top: 28px; }

.admin-sidebar nav button {
  min-height: 54px;
  gap: 14px;
  border-radius: 14px;
  padding: 0 17px;
  font-size: 15px;
  font-weight: 680;
}

.admin-sidebar nav button:hover { background: rgb(255 255 255 / 8%); }
.admin-sidebar nav button.active { box-shadow: 0 12px 28px rgb(245 150 29 / 22%); }
.admin-sidebar nav svg { width: 21px; height: 21px; }

.admin-account {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 22px 6px 4px;
}

.admin-account > span { width: 42px; height: 42px; font-size: 16px; }
.admin-account div { gap: 3px; line-height: 1.25; }
.admin-account strong { font-size: 13px; }
.admin-account small { font-size: 11px; }
.admin-account > a { font-size: 11px; }

.admin-main {
  width: 100%;
  max-width: 1640px;
  margin-inline: auto;
  padding: 42px clamp(28px, 4vw, 64px) 72px;
}

.admin-topbar {
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.admin-heading { display: grid; }
.admin-topbar p { margin-bottom: 5px; font-size: 12px; letter-spacing: .1em; }
.admin-topbar h1 { font-size: clamp(42px, 4vw, 56px); }
.admin-heading > span { margin-top: 10px; color: var(--admin-muted); font-size: 15px; line-height: 1.5; }
.admin-topbar__actions { gap: 12px; }

.admin-primary-button,
.admin-outline-button {
  min-height: 50px;
  gap: 9px;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 760;
}

.admin-primary-button svg,
.admin-outline-button svg { width: 19px; height: 19px; }

.preview-note,
.admin-notice {
  margin-bottom: 22px;
  border: 1px solid #f0d6ae;
  border-left-width: 4px;
  border-radius: 12px;
  padding: 14px 17px;
  font-size: 14px;
}

.admin-notice { border-color: #b9e3ce; }
.admin-stats { gap: 18px; margin-bottom: 26px; }

.admin-stats article {
  min-height: 116px;
  gap: 17px;
  border-color: var(--admin-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgb(15 31 55 / 5%);
}

.admin-stats article > svg {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  padding: 11px;
}

.admin-stats article div { line-height: 1.2; }
.admin-stats span { font-size: 14px; font-weight: 650; }
.admin-stats strong { margin-top: 7px; font-size: 30px; }

.admin-table-card {
  overflow: visible;
  border-color: var(--admin-border);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgb(15 31 55 / 6%);
}

.admin-table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #e8ecf1;
  padding: 23px 24px;
}

.admin-table-heading h2 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.1; }
.admin-table-heading p { margin: 7px 0 0; color: var(--admin-muted); font-size: 14px; line-height: 1.45; }

.admin-text-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 13px;
  background: #f4f6f8;
  color: #4f5f75;
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.admin-text-button:hover { background: #fff0dc; color: var(--orange-dark); }
.admin-text-button svg { width: 18px; height: 18px; }

.admin-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 210px 210px;
  gap: 14px;
  padding: 20px 24px;
}

.admin-search-field { position: relative; display: block; }
.admin-search-field svg { top: 18px !important; left: 16px !important; width: 20px !important; height: 20px !important; }

.admin-filters .admin-search-field input {
  width: 100%;
  height: 56px;
  border: 1px solid #d8dfe8;
  border-radius: 13px;
  padding: 0 16px 0 48px;
  background: #fbfcfd;
  color: var(--admin-text);
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.admin-filters .admin-search-field input:focus {
  border-color: rgb(245 150 29 / 75%);
  background: var(--white);
  box-shadow: 0 0 0 4px rgb(245 150 29 / 10%);
  outline: 0;
}

.admin-filter-control {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 1px;
  min-height: 56px;
  border: 1px solid #d8dfe8;
  border-radius: 13px;
  padding: 7px 14px 6px;
  background: #fbfcfd;
}

.admin-filter-control > span {
  color: #8490a1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.admin-filter-control:focus-within {
  border-color: rgb(245 150 29 / 75%);
  background: var(--white);
  box-shadow: 0 0 0 4px rgb(245 150 29 / 10%);
}

.admin-filter-control .custom-select__trigger { height: 29px; font-size: 14px; }
.admin-filter-control .custom-select__menu { left: -14px; min-width: calc(100% + 28px); }
.admin-filter-control .custom-select__option { min-height: 44px; font-size: 14px; }

.admin-table-wrap {
  overflow-x: auto;
  border-top: 1px solid #edf0f4;
}

.admin-table-wrap table { min-width: 1080px; }

.admin-table-wrap th {
  height: 50px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: .08em;
}

.admin-table-wrap td {
  padding: 15px 16px;
  color: #45556b;
  font-size: 14px;
  line-height: 1.4;
}

.admin-table-wrap tbody tr { transition: background .18s ease; }
.admin-table-wrap tbody tr:hover { background: #fafbfd; }
.admin-table-wrap td > small { margin-top: 3px; font-size: 12px; }
.admin-property-cell { min-width: 320px; gap: 14px; }

.admin-property-cell img {
  width: 76px;
  height: 60px;
  border-radius: 12px;
}

.admin-property-cell div { gap: 6px; }
.admin-property-cell strong { max-width: 300px; font-size: 17px; line-height: 1.25; }
.admin-property-cell small { font-size: 12px; }
.admin-status { gap: 7px; font-size: 13px; }
.admin-status i { width: 8px; height: 8px; }

.publish-switch { width: 42px; height: 24px; }
.publish-switch span { top: 3px; left: 3px; width: 18px; height: 18px; }
.publish-switch.on span { transform: translateX(18px); }

.row-action {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dfe7;
  border-radius: 10px;
  padding: 0 12px;
  background: var(--white);
  color: #43536a;
  font-size: 12px;
  font-weight: 740;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.row-action:hover { border-color: #efc185; background: #fff9f1; color: var(--orange-dark); }

.admin-empty-row td {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 52px 20px;
  text-align: center;
}

.admin-empty-row strong { color: var(--admin-text); font-size: 17px; }
.admin-empty-row span { color: var(--admin-muted); font-size: 14px; }

.admin-table-footer {
  padding: 16px 24px;
  color: #738095;
  font-size: 13px;
}

.admin-table-footer strong { color: #35455c; }
.admin-drawer-backdrop { background: rgb(5 15 32 / 56%); backdrop-filter: blur(3px); }

.admin-drawer {
  width: min(720px, 100vw);
  visibility: hidden;
  border-left: 1px solid rgb(255 255 255 / 45%);
  background: #f3f6f9;
  pointer-events: none;
  box-shadow: -30px 0 80px rgb(4 16 34 / 28%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .3s;
}

.admin-drawer.open { visibility: visible; pointer-events: auto; transition-delay: 0s; }

.admin-drawer > header {
  padding: 25px 32px;
  border-bottom-color: var(--admin-border);
  box-shadow: 0 6px 20px rgb(15 31 55 / 4%);
}

.admin-drawer > header p { margin-bottom: 4px; font-size: 11px; letter-spacing: .11em; }
.admin-drawer > header h2 { font-size: 36px; }

.admin-drawer > header button {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.admin-drawer > header button:hover { border-color: #efbf7d; background: #fff8ee; color: var(--orange-dark); }
.admin-drawer > header button svg { width: 20px; height: 20px; }
.admin-property-form { padding: 28px 30px 0; }
.admin-form-grid { grid-template-columns: 1fr; gap: 18px; }

.admin-form-section {
  border: 1px solid var(--admin-border);
  border-radius: 18px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgb(15 31 55 / 4%);
}

.admin-form-section > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.admin-form-section > header > span {
  display: flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff0dc;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 830;
}

.admin-form-section > header h3 { margin: 0; color: var(--admin-text); font-size: 17px; font-weight: 760; line-height: 1.2; }
.admin-form-section > header p { margin: 3px 0 0; color: var(--admin-muted); font-size: 13px; line-height: 1.35; }
.admin-form-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.admin-form-section-grid > .wide { grid-column: 1 / -1; }

.admin-form-grid label,
.admin-form-section-grid label {
  gap: 8px;
}

.admin-form-grid label > span,
.admin-form-section-grid label > span,
.integration-drawer label > span {
  color: #34445b;
  font-size: 13px;
  font-weight: 720;
}

.admin-form-section-grid label > small { color: #7e8999; font-size: 12px; line-height: 1.4; }

.admin-form-grid input:not([type="checkbox"]):not([type="file"]),
.admin-form-grid select,
.admin-form-grid textarea,
.integration-drawer input,
.integration-drawer select {
  border-color: #d6dde6;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.admin-form-grid input:not([type="checkbox"]):not([type="file"]),
.admin-form-grid select { height: 50px; }

.admin-form-grid input:focus,
.admin-form-grid textarea:focus {
  border-color: rgb(245 150 29 / 75%);
  box-shadow: 0 0 0 4px rgb(245 150 29 / 10%);
  outline: 0;
}

.admin-form-section-grid label > .custom-select {
  border: 1px solid #d6dde6;
  border-radius: 12px;
  background: var(--white);
}

.admin-form-section-grid .custom-select__trigger {
  height: 48px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
}

.admin-form-section-grid .custom-select__menu {
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
}

.admin-form-section-grid .custom-select__option { min-height: 44px; font-size: 14px; }
.admin-form-grid textarea { min-height: 145px; line-height: 1.6; }

.admin-upload {
  border-radius: 15px;
  padding: 32px 22px;
  background: #fbfcfd;
  transition: border-color .2s ease, background .2s ease;
}

.admin-upload:hover { border-color: var(--orange); background: #fffaf3; }
.admin-upload svg { width: 34px; height: 34px; }
.admin-upload strong { font-size: 14px; }
.admin-upload > span { font-size: 12px !important; }
.admin-upload input { font-size: 12px; }
.admin-checks { gap: 26px !important; }
.admin-checks label { gap: 9px; font-size: 14px; }
.admin-checks input { width: 18px; height: 18px; }

.admin-property-form footer {
  gap: 12px;
  margin: 28px -30px 0;
  padding: 18px 30px;
  border-top-color: var(--admin-border);
  box-shadow: 0 -8px 24px rgb(15 31 55 / 4%);
}

.integration-drawer { padding: 42px 36px; }
.integration-icon { width: 70px; height: 70px; border-radius: 20px; }
.integration-icon svg { width: 32px; height: 32px; }
.integration-drawer h3 { margin: 26px 0 10px; font-size: 32px; }
.integration-drawer > p { margin-bottom: 26px; font-size: 15px; line-height: 1.75; }

.integration-waiting {
  display: grid;
  gap: 4px;
  border: 1px solid #f0d4ad;
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff9f0;
}

.integration-waiting span { color: #8d6c3c; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.integration-waiting strong { color: #68451b; font-size: 15px; }
.integration-steps { grid-template-columns: 32px 1fr; gap: 16px 12px; margin: 24px 0 32px; padding-top: 26px; }
.integration-steps > span { width: 32px; height: 32px; font-size: 12px; }
.integration-steps p { gap: 2px; font-size: 13px; }
.integration-steps strong { font-size: 14px; }

@media (max-width: 1180px) {
  .admin-shell { grid-template-columns: 94px minmax(0, 1fr); }
  .admin-sidebar { padding-inline: 14px; }
  .admin-brand { height: 96px; }
  .admin-brand img { width: 76px; height: 76px; }
  .admin-sidebar nav button { justify-content: center; padding-inline: 0; }
  .admin-sidebar nav button span,
  .admin-account div,
  .admin-account > a { display: none; }
  .admin-account { display: flex; justify-content: center; }
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-filters { grid-template-columns: minmax(250px, 1fr) 190px 190px; }
}

@media (max-width: 820px) {
  .admin-shell { display: block; }
  .admin-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 78px;
    align-items: center;
    flex-direction: row;
    padding: 8px 12px;
  }
  .admin-brand { width: 68px; height: 60px; border: 0; border-right: 1px solid rgb(255 255 255 / 12%); }
  .admin-brand img { width: 58px; height: 58px; }
  .admin-sidebar nav { display: flex; flex: 1; justify-content: flex-end; gap: 3px; margin: 0; }
  .admin-sidebar nav button,
  .admin-sidebar nav button:first-child,
  .admin-sidebar nav button:nth-child(4) {
    display: flex !important;
    width: auto;
    min-width: 76px;
    min-height: 60px;
    flex-direction: column;
    gap: 3px;
    border-radius: 12px;
    padding: 5px 8px;
    font-size: 10px;
    text-align: center;
  }
  .admin-sidebar nav button span { display: block; }
  .admin-sidebar nav svg { width: 20px; height: 20px; }
  .admin-account { display: none; }
  .admin-main { padding: 28px 16px 52px; }
  .admin-topbar { align-items: stretch; flex-direction: column; margin-bottom: 26px; }
  .admin-topbar h1 { font-size: 42px; }
  .admin-heading > span { font-size: 14px; }
  .admin-topbar__actions { width: 100%; }
  .admin-topbar__actions .admin-primary-button { width: 100%; }
  .admin-filters { grid-template-columns: 1fr; padding: 18px; }
  .admin-table-heading { align-items: flex-start; flex-direction: column; padding: 21px 18px; }
  .admin-table-card { overflow: hidden; }
  .admin-table-wrap { overflow: visible; background: #f3f6f9; }
  .admin-table-wrap table { min-width: 0; }
  .admin-table-wrap thead { display: none; }
  .admin-table-wrap tbody { display: grid; gap: 14px; padding: 14px; }
  .admin-table-wrap tbody tr { display: block; overflow: hidden; border: 1px solid var(--admin-border); border-radius: 16px; padding: 15px; background: var(--white); box-shadow: 0 8px 22px rgb(15 31 55 / 5%); }
  .admin-table-wrap td { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #edf0f3; padding: 11px 0; text-align: right; }
  .admin-table-wrap td::before { color: #7b8798; content: attr(data-label); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
  .admin-table-wrap td:first-child { display: block; border-top: 0; padding: 0 0 15px; text-align: left; }
  .admin-table-wrap td:first-child::before { display: none; }
  .admin-table-wrap td:last-child { padding-bottom: 0; }
  .admin-table-wrap td > small { text-align: right; }
  .admin-property-cell { min-width: 0; }
  .admin-property-cell div { min-width: 0; }
  .admin-property-cell strong { max-width: none; white-space: normal; }
  .admin-empty-row { padding: 0 !important; }
  .admin-empty-row td { display: grid !important; padding: 42px 18px !important; text-align: center !important; }
  .admin-empty-row td::before { display: none; }
  .admin-table-footer { padding-inline: 18px; }
  .admin-drawer { width: 100vw; }
}

@media (max-width: 560px) {
  .admin-sidebar { height: 74px; padding-inline: 8px; }
  .admin-brand { width: 58px; height: 56px; }
  .admin-brand img { width: 52px; height: 52px; }
  .admin-sidebar nav button,
  .admin-sidebar nav button:first-child {
    min-width: 64px;
    min-height: 56px;
    padding-inline: 5px;
    font-size: 9px;
  }
  .admin-main { padding-inline: 12px; }
  .admin-topbar h1 { font-size: 38px; }
  .admin-stats { gap: 10px; }
  .admin-stats article { min-height: 102px; gap: 11px; padding: 14px; }
  .admin-stats article > svg { width: 38px; height: 38px; padding: 9px; }
  .admin-stats span { font-size: 12px; }
  .admin-stats strong { font-size: 26px; }
  .admin-table-heading h2 { font-size: 25px; }
  .admin-text-button { width: 100%; justify-content: center; }
  .admin-filters { padding: 14px; }
  .admin-table-wrap tbody { padding: 10px; }
  .admin-table-wrap tbody tr { padding: 13px; }
  .admin-property-cell { align-items: flex-start; }
  .admin-property-cell img { width: 72px; height: 58px; }
  .admin-property-cell strong { font-size: 16px; }
  .admin-drawer > header { padding: 20px 18px; }
  .admin-drawer > header h2 { font-size: 31px; }
  .admin-property-form { padding: 18px 14px 0; }
  .admin-form-section { padding: 18px 15px; }
  .admin-form-section-grid { grid-template-columns: 1fr; }
  .admin-form-section-grid > .wide { grid-column: auto; }
  .admin-form-section > header { align-items: flex-start; }
  .admin-property-form footer { align-items: stretch; flex-direction: column-reverse; margin: 22px -14px 0; padding: 14px; }
  .admin-property-form footer button { width: 100%; }
  .integration-drawer { padding: 30px 20px; }
}

/* Laravel/Blade additions */
[hidden] { display: none !important; }
.fill-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.menu-toggle > span { display: flex; }
body.menu-open { overflow: hidden; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-errors { margin: 0 0 16px; border: 1px solid #efc5c5; border-radius: 12px; padding: 11px 14px; background: #fff1f1; color: #8b3434; font-size: 12px; }
.form-errors ul { margin: 4px 0 0; padding-left: 18px; }
.form-success { margin: 0 0 16px; border: 1px solid #bfe5d0; border-radius: 12px; padding: 11px 14px; background: #eaf8f1; color: #216648; font-size: 13px; }
.property-card[hidden] { display: none; }
.custom-select__option.is-selected::after { color: var(--orange-dark); content: "✓"; font-weight: 900; }
.custom-select__option.is-selected svg { display: none; }
.legal-page a { color: var(--orange-dark); font-weight: 700; }

.admin-primary-button:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
}

.relper-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  margin-bottom: 24px;
}

.relper-status-card,
.relper-metric-card,
.relper-notes article {
  border: 1px solid var(--admin-border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgb(15 31 55 / 5%);
}

.relper-status-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 26px;
}

.relper-status-card .integration-icon { width: 58px; height: 58px; border-radius: 17px; }
.relper-status-card .integration-icon svg { width: 27px; height: 27px; }
.relper-status-card .section-label { margin: 0 0 4px; }
.relper-status-card h2 { margin: 0; color: var(--admin-text); font-family: var(--serif); font-size: 28px; font-weight: 600; }
.relper-status-card p:last-child { margin: 7px 0 0; color: var(--admin-muted); font-size: 14px; line-height: 1.55; }
.relper-status-card p strong { color: #3f5068; }

.relper-status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 13px;
  background: #fff5e7;
  color: #895a19;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.relper-status-pill i,
.relper-run--running i { width: 8px; height: 8px; border-radius: 50%; background: #e7a13f; }
.relper-status-card--ready .relper-status-pill { background: #eaf8f1; color: #24684b; }
.relper-status-card--ready .relper-status-pill i { background: #36a474; }

.relper-metric-card { display: grid; align-content: center; gap: 4px; padding: 26px; }
.relper-metric-card > span { color: var(--admin-muted); font-size: 13px; font-weight: 700; }
.relper-metric-card > strong { color: var(--admin-text); font-size: 44px; line-height: 1.1; }
.relper-metric-card > small { margin-top: 6px; color: #7b8798; font-size: 12px; line-height: 1.5; }

.relper-history { margin-bottom: 24px; }
.relper-history .admin-table-wrap table { min-width: 880px; }
.relper-auto-label { border-radius: 999px; padding: 8px 12px; background: #eef3f8; color: #526278; font-size: 12px; font-weight: 750; white-space: nowrap; }
.relper-run--success { color: #277153; }
.relper-run--success i { background: #36a474; }
.relper-run--failed { color: #a04141; }
.relper-run--failed i { background: #d96060; }
.relper-run-message td { padding-top: 8px; padding-bottom: 12px; background: #fafbfd; color: #718096; font-size: 12px; }

.relper-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.relper-notes article { padding: 22px; }
.relper-notes article > span { color: var(--orange-dark); font-size: 10px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.relper-notes h3 { margin: 8px 0 7px; color: var(--admin-text); font-size: 17px; }
.relper-notes p { margin: 0; color: var(--admin-muted); font-size: 13px; line-height: 1.65; }
.relper-notes code { border-radius: 6px; padding: 2px 5px; background: #f1f4f7; color: #40516a; }

.relper-edit-notice {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  border: 1px solid #f0d1a5;
  border-radius: 15px;
  padding: 16px 18px;
  background: #fff9f0;
}

.relper-edit-notice strong { color: #704a16; font-size: 14px; }
.relper-edit-notice span { color: #806a4d; font-size: 13px; line-height: 1.55; }
.property-media-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.property-overview { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.property-overview > div { border-bottom: 1px solid var(--line); }

@media (max-width: 820px) {
  .relper-status-grid { grid-template-columns: 1fr; }
  .relper-status-card { grid-template-columns: auto 1fr; }
  .relper-status-pill { grid-column: 2; justify-self: start; }
  .relper-notes { grid-template-columns: 1fr; }
  .site-header .main-nav { position: fixed; z-index: 70; top: 0; right: 0; display: flex; width: min(360px, 88vw); height: 100dvh; align-items: stretch; flex-direction: column; gap: 3px; padding: 126px 24px 30px; background: var(--navy-950); box-shadow: -24px 0 60px rgb(0 0 0 / 24%); transform: translateX(105%); transition: transform .28s cubic-bezier(.22, 1, .36, 1); }
  .site-header .main-nav--open { transform: translateX(0); }
  .site-header .main-nav > a { border-bottom: 1px solid rgb(255 255 255 / 9%); padding: 15px 4px; font-size: 16px; }
  .site-header .language-switch { align-self: flex-start; margin-top: 22px; }
  .menu-toggle { display: flex; }
}

@media (max-width: 560px) {
  .relper-status-card { grid-template-columns: 1fr; padding: 20px; }
  .relper-status-pill { grid-column: auto; }
  .relper-metric-card { padding: 22px; }
}

/* Final admin overrides (kept after the original responsive rules). */
.admin-filters { grid-template-columns: minmax(260px, 1fr) 210px 210px auto; }
.admin-property-page-form { overflow: visible; border: 0; border-radius: 0; padding: 0; background: transparent; }
.admin-property-page-form footer { position: sticky; z-index: 12; bottom: 0; margin: 28px 0 0; border: 1px solid #dfe4eb; border-radius: 16px; padding: 16px 18px; background: rgb(255 255 255 / 96%); backdrop-filter: blur(16px); }
@media (max-width: 820px) {
  .admin-filters { grid-template-columns: 1fr; }
  .admin-sidebar nav a { width: auto; min-width: 72px; min-height: 58px; flex-direction: column; justify-content: center; gap: 3px; padding: 5px 7px; font-size: 10px; text-align: center; }
  .admin-sidebar nav a span { display: block; }
  .admin-property-page-form footer { position: static; align-items: stretch; flex-direction: column-reverse; margin: 22px 0 0; }
  .admin-property-page-form footer > * { width: 100%; }
}
