:root {
  --ryd-navy: #062B3A;
  --ryd-navy-dark: #031D29;
  --ryd-navy-mid: #0A3A4E;
  --ryd-orange: #FF5722;
  --ryd-orange-light: #FF7043;
  --ryd-orange-deep: #C43C12;
  --ryd-white: #FFFFFF;
  --ryd-cream: #F7F4EF;
  --ryd-cream-2: #EFEAE2;
  --ryd-text: #102A35;
  --ryd-muted: #667780;
  --ryd-line: rgba(16, 42, 53, 0.1);
  --ryd-green: #2E7D4F;
  --ryd-gold: #C3922E;
  --shadow-card: 0 1px 0 rgba(255,255,255,.75) inset, 0 10px 28px rgba(3,29,41,.12), 0 2px 6px rgba(3,29,41,.06);
  --shadow-card-hover: 0 1px 0 rgba(255,255,255,.85) inset, 0 18px 40px rgba(3,29,41,.16), 0 6px 14px rgba(3,29,41,.08);
  --shadow-float: 0 16px 40px rgba(3,29,41,.22), 0 4px 10px rgba(3,29,41,.1);
  --shadow-inset: inset 0 2px 5px rgba(3,29,41,.08), inset 0 -1px 0 rgba(255,255,255,.6);
  --shadow-btn: 0 4px 0 var(--ryd-orange-deep), 0 8px 18px rgba(255,87,34,.32);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --header-h: 88px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ryd-text);
  background: var(--ryd-cream);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4 { line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: 12px; top: -40px; background: var(--ryd-orange); color: #fff;
  padding: 8px 14px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container-wide { width: min(1280px, calc(100% - 32px)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: #02141c;
  color: #d7e0e4;
  font-size: 13px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 38px; gap: 16px;
}
.topbar a { color: #e8eef1; }
.topbar a:hover { color: #fff; }
.topbar-contact, .topbar-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ryd-orange); display: inline-block; }
.topbar-social { display: flex; gap: 8px; }

/* Header */
.site-header {
  background: var(--ryd-navy-dark);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner {
  display: flex; align-items: center; gap: 28px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
  display: block;
}
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  color: #f3f7f8; padding: 8px 12px; border-radius: 8px; font-weight: 600; font-size: 15px;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}
.site-nav a:hover { color: #fff; transform: translateY(-1px); }
.site-nav a.is-active { color: var(--ryd-orange); }
.header-cta { flex-shrink: 0; min-height: 44px; padding: 0 20px; border-radius: 10px; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; border-radius: 2px;
  transition: 200ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Buttons */
.btn, .btn-3d {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 12px;
  font-weight: 700; cursor: pointer; text-align: center;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}
.btn-3d {
  background: linear-gradient(180deg, #FF6A3A 0%, var(--ryd-orange) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,87,34,.42), 0 2px 0 var(--ryd-orange-deep);
}
.btn-3d:hover { transform: translateY(-1px); }
.btn-3d:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--ryd-orange-deep), 0 3px 8px rgba(255,87,34,.25); }
.btn-navy {
  background: linear-gradient(180deg, #0b3d54 0%, var(--ryd-navy) 100%);
  color: #fff;
  box-shadow: 0 4px 0 #02141d, 0 8px 16px rgba(3,29,41,.28);
}
.btn-navy:active { transform: translateY(3px); box-shadow: 0 1px 0 #02141d; }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-outline {
  background: #fff; color: var(--ryd-navy); border: 1.5px solid var(--ryd-line);
  box-shadow: 0 2px 0 rgba(16,42,53,.08);
}
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* Surfaces */
.card, .surface {
  background: var(--ryd-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.surface-white { background: var(--ryd-white); }

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ryd-navy); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid rgba(16,42,53,.1);
  background: #f3efe8;
  border-radius: 12px;
  box-shadow: var(--shadow-inset);
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(255,87,34,.45);
  box-shadow: var(--shadow-inset), 0 0 0 3px rgba(255,87,34,.15);
}
.help { color: var(--ryd-muted); font-size: 13px; }
.error-text { color: #b42318; font-size: 13px; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em; color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.badge-available { background: var(--ryd-green); }
.badge-let { background: var(--ryd-orange); }
.badge-sold { background: #5b6b73; }
.badge-offer { background: var(--ryd-gold); color: #1d1404; }
.badge-soon { background: #3d6f8a; }
.badge-draft { background: #8a8176; }
.badge-new { background: #1f6feb; }
.badge-emergency { background: #b42318; }
.badge-high { background: var(--ryd-orange); }
.badge-normal { background: #4b6470; }
.badge-low { background: #6b8f71; }
.chip {
  display: inline-flex; padding: 3px 8px; border-radius: 8px; background: #efe8dc;
  color: var(--ryd-navy); font-size: 12px; font-weight: 600;
}
.chip-orange { background: #ffe6de; color: var(--ryd-orange); }

/* Hero */
.hero {
  position: relative; min-height: 640px;
  display: grid; align-items: center;
  background: #031D29 center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,29,41,.78) 0%, rgba(3,29,41,.42) 46%, rgba(3,29,41,.12) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 88px 0 150px; }
.hero .eyebrow {
  color: var(--ryd-orange);
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(36px, 5.6vw, 58px);
  font-weight: 800;
  max-width: 11ch;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 8px 30px rgba(3,29,41,.35);
}
.hero .lede { font-size: 18px; color: #eef3f5; max-width: 38ch; margin: 0; }

/* Search panel */
.search-panel {
  position: relative; z-index: 2; margin-top: -56px;
  background: var(--ryd-cream);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255,255,255,.8);
}
.search-switch {
  display: inline-flex; background: #ece6dc; border-radius: 999px; padding: 4px;
  box-shadow: inset 0 2px 4px rgba(3,29,41,.1);
  margin-bottom: 14px;
}
.search-switch button {
  border: 0; background: transparent; min-width: 92px; min-height: 38px;
  border-radius: 999px; font-weight: 700; color: var(--ryd-muted); cursor: pointer;
}
.search-switch button.is-active {
  background: linear-gradient(180deg, #fff, #f3eee6);
  color: var(--ryd-navy);
  box-shadow: 0 2px 6px rgba(3,29,41,.12);
}
.search-grid {
  display: grid; grid-template-columns: repeat(5, 1fr) auto; gap: 10px; align-items: end;
}
.search-grid .btn { min-width: 160px; }

/* Benefits */
.benefits {
  background: var(--ryd-navy);
  color: #dbe6eb;
  padding: 28px 0;
}
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit {
  display: flex; align-items: center; gap: 14px;
}
.icon-3d {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #12485d, #0a3346);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 6px 12px rgba(0,0,0,.25);
  color: var(--ryd-orange);
  font-size: 20px;
}
.benefit strong { display: block; color: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section-navy { background: var(--ryd-navy-dark); color: #e8eef1; }
.section-cream { background: var(--ryd-cream); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 28px; }
.eyebrow { color: var(--ryd-orange); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.section h2 { font-size: clamp(26px, 3vw, 36px); }

/* Property cards */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.property-card {
  background: var(--ryd-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.property-card-media { position: relative; display: block; aspect-ratio: 16/11; overflow: hidden; background: #d9d2c7; }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms var(--ease); }
.property-card:hover .property-card-media img { transform: scale(1.04); }
.property-card-media .badge { position: absolute; left: 12px; top: 12px; }
.fav-btn {
  position: absolute; right: 12px; top: 12px; width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #8a9398; cursor: pointer;
  box-shadow: 0 4px 10px rgba(3,29,41,.16);
}
.fav-btn.is-active { color: var(--ryd-orange); }
.property-card-body { padding: 16px 18px 18px; }
.property-price { color: var(--ryd-orange); font-weight: 800; font-size: 20px; margin: 0 0 4px; }
.property-card h3 { font-size: 17px; margin: 0 0 4px; }
.property-card h3 a:hover { color: var(--ryd-orange); }
.property-loc { color: var(--ryd-muted); font-size: 14px; margin: 0 0 10px; }
.property-meta { display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 13px; color: var(--ryd-navy); font-weight: 600; }
.property-meta li { display: flex; align-items: center; gap: 6px; }
.ico-bed,.ico-bath,.ico-home {
  width: 14px; height: 14px; display: inline-block; border-radius: 2px;
  background: currentColor; opacity: .55;
  -webkit-mask: center/contain no-repeat; mask: center/contain no-repeat;
}
.ico-bed { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 11V7a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h8v8h-2v-3H4v3H2v-8a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 11V7a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v4h8v8h-2v-3H4v3H2v-8a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); }
.ico-bath { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5a2 2 0 1 1 2 2H4v2h16v7a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7h3V5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5a2 2 0 1 1 2 2H4v2h16v7a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7h3V5z'/%3E%3C/svg%3E"); }
.ico-home { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 3 10v10h6v-6h6v6h6V10z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 3 10v10h6v-6h6v6h6V10z'/%3E%3C/svg%3E"); }
.property-flags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* Split promo */
.promo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.promo-card {
  border-radius: 20px; overflow: hidden; min-height: 280px; position: relative;
  background: #123; color: #fff; display: flex; align-items: end;
  box-shadow: var(--shadow-card);
}
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-card .copy { position: relative; z-index: 1; padding: 28px; background: linear-gradient(180deg, transparent, rgba(3,29,41,.82)); width: 100%; }
.feature-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tile {
  background: var(--ryd-white); border-radius: 18px; padding: 24px;
  box-shadow: var(--shadow-card);
}
.tile h3 { margin-bottom: 8px; }

/* CTA band */
.cta-band {
  background: linear-gradient(180deg, #08344a, var(--ryd-navy-dark));
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* Page hero */
.page-hero {
  background: var(--ryd-navy) center/cover no-repeat;
  color: #fff; padding: 64px 0 48px; position: relative;
}
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(3,29,41,.72), rgba(3,29,41,.35)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); }

/* Filters */
.filter-panel {
  background: var(--ryd-white);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-card);
  margin-top: -36px;
  position: relative; z-index: 2;
}
.filter-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.results-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 22px 0 16px; }

/* Breadcrumb */
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: #d5dee2; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .5; }
.breadcrumb a:hover { color: #fff; }

/* Property detail */
.gallery { display: grid; gap: 10px; }
.gallery-main {
  border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: #ccc;
  box-shadow: var(--shadow-card);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: 8px; overflow-x: auto; }
.thumbs button {
  border: 0; padding: 0; width: 92px; height: 68px; border-radius: 10px; overflow: hidden;
  opacity: .7; cursor: pointer; flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(3,29,41,.12);
}
.thumbs button.is-active, .thumbs button:hover { opacity: 1; outline: 2px solid var(--ryd-orange); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.detail-layout { display: grid; grid-template-columns: 1.4fr .7fr; gap: 24px; margin-top: 24px; }
.side-card { padding: 22px; position: sticky; top: 100px; }
.side-card .price { font-size: 28px; font-weight: 800; color: var(--ryd-orange); }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.stat-box {
  background: #f3eee6; border-radius: 12px; padding: 10px; text-align: center;
  box-shadow: var(--shadow-inset);
}
.stat-box strong { display: block; }
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 22px 0 14px; }
.tabs a, .tabs button {
  border: 0; background: #efe8dc; color: var(--ryd-navy); padding: 10px 14px; border-radius: 999px;
  font-weight: 700; cursor: pointer;
}
.tabs .is-active { background: var(--ryd-navy); color: #fff; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feature-list li {
  background: #fff; border-radius: 12px; padding: 10px 12px;
  box-shadow: 0 1px 0 #fff inset, 0 4px 10px rgba(3,29,41,.06);
}
.map-frame { border: 0; width: 100%; height: 280px; border-radius: 16px; box-shadow: var(--shadow-card); background: #dfe6ea; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.room-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.room-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.room-card .pad { padding: 14px; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--ryd-white); border-radius: 16px; padding: 22px; text-align: center;
  box-shadow: var(--shadow-card);
}
.stat-card .num { font-size: 32px; font-weight: 800; color: var(--ryd-orange); }

/* Tenants */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-card { padding: 28px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.info-card { padding: 20px; }

/* Footer */
.site-footer {
  background: var(--ryd-navy-dark);
  color: #c5d2d8;
  padding: 56px 0 20px;
}
.footer-brand .brand { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand .brand-logo { height: 92px; max-width: 130px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.site-footer h2 { color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.site-footer a:hover { color: #fff; }
.footer-base {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}
.footer-base nav { display: flex; gap: 16px; }

/* Empty / loading */
.empty-state, .success-panel {
  text-align: center; padding: 48px 20px; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-card);
}
.skeleton {
  background: linear-gradient(90deg, #ece6dc 25%, #f6f1ea 37%, #ece6dc 63%);
  background-size: 400% 100%; animation: shimmer 1.2s ease infinite;
  border-radius: 12px; min-height: 180px;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

/* Pagination */
.pagination ul { display: flex; gap: 8px; justify-content: center; margin: 28px 0; }
.pagination a {
  min-width: 40px; height: 40px; display: grid; place-items: center;
  background: #fff; border-radius: 10px; font-weight: 700;
  box-shadow: 0 3px 8px rgba(3,29,41,.08);
}
.pagination a.is-active { background: var(--ryd-navy); color: #fff; }

/* Flash / toast */
.flash { margin: 16px auto; padding: 12px 16px; border-radius: 12px; font-weight: 600; }
.flash-success { background: #e5f4ea; color: #1e6b3a; }
.flash-error { background: #fde8e6; color: #9b1c1c; }
.toasts { position: fixed; right: 16px; bottom: 16px; z-index: 80; display: grid; gap: 8px; }
.toast {
  background: var(--ryd-navy); color: #fff; padding: 12px 16px; border-radius: 12px;
  box-shadow: var(--shadow-float); min-width: 220px;
}

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(3,29,41,.55); display: none; place-items: center; z-index: 90; padding: 20px; }
.modal.is-open { display: grid; }
.modal-card { width: min(520px, 100%); padding: 24px; }

/* Legal */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }

/* Admin login on public chrome */
.login-wrap { min-height: 70vh; display: grid; place-items: center; padding: 40px 0; }
.login-card { width: min(440px, 100%); padding: 32px; }
.login-logo { display: flex; justify-content: center; margin-bottom: 8px; }
.login-logo img {
  width: 160px; height: auto; display: block; margin: 0 auto;
  background: var(--ryd-navy-dark); border-radius: 16px;
}

.tenants-layout { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; }

@media (max-width: 1024px) {
  .search-grid { grid-template-columns: repeat(3, 1fr); }
  .property-grid, .room-grid, .benefits-grid, .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .promo-grid, .about-split, .contact-grid, .detail-layout { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: repeat(3, 1fr); }
  .side-card { position: static; }
}
@media (max-width: 768px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar-inner { justify-content: center; padding: 6px 0; }
  .topbar-links { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ryd-navy); flex-direction: column; padding: 12px 16px 20px;
    box-shadow: 0 16px 30px rgba(3,29,41,.3);
  }
  .site-nav.is-open { display: flex; }
  .header-inner { position: relative; }
  .header-cta { display: none; }
  .search-grid, .filter-grid, .property-grid, .benefits-grid, .info-cards, .feature-tiles,
  .stat-cards, .room-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 520px; }
  .hero-inner { padding: 64px 0 100px; }
  .search-panel { margin-top: -40px; }
  .tenants-layout { grid-template-columns: 1fr; }
  .property-card { display: grid; grid-template-columns: 140px 1fr; }
  .property-card-media { aspect-ratio: auto; min-height: 100%; }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .property-card { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .stats-row, .feature-list { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
}
