:root {
  --navy: #071150;
  --orange: #ff5a00;
  --orange-dark: #d94700;
  --green: #15925d;
  --rent-bg: #eaf7f1;
  --ink: #111827;
  --muted: #697386;
  --line: #e5e7eb;
  --soft: #f5f7fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 17, 80, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f8fb;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(7, 17, 80, 0.08);
  padding: 8px clamp(12px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.brand-logo { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { color: var(--navy); font-weight: 950; }
.brand small { color: var(--muted); font-size: 0.75rem; font-weight: 800; }
.visit-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 0.82rem; font-weight: 900; }
.visit-label { color: #8a93a6; font-size: 0.76rem; }
.hero {
  padding: 22px clamp(14px, 5vw, 70px) 10px;
  background: #f7f8fb;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1, .section-head h2, .contact-section h2, .admin-panel h1, .admin-panel h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}
.hero h1 { color: var(--navy); font-size: clamp(2.1rem, 6vw, 4.2rem); max-width: 900px; }
.hero p { max-width: 760px; color: var(--muted); font-size: 1rem; line-height: 1.5; font-weight: 750; }
.section-block { padding: 28px clamp(14px, 5vw, 70px); }
.section-block.is-empty-section { display: none; }
.section-head { display: grid; gap: 8px; margin-bottom: 18px; }
.section-head h2 { color: var(--navy); font-size: clamp(1.8rem, 4.2vw, 3.5rem); }
.section-head p:not(.eyebrow) { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.5; }
.section-head.is-light h2, .section-head.is-light p:not(.eyebrow) { color: white; }
.featured-spotlight { margin-bottom: 18px; }
.spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 42px);
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(20px, 4vw, 42px);
  background: radial-gradient(circle at 78% 18%, rgba(255,255,255,0.18), transparent 28%), linear-gradient(145deg, #071150, #10196a 62%, #071150);
  color: white;
  box-shadow: 0 22px 60px rgba(7, 17, 80, 0.22);
}
.spotlight-copy { display: grid; align-content: center; gap: 14px; min-width: 0; }
.spotlight-copy h3 { margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 0.98; }
.spotlight-price { color: white; font-size: clamp(1.45rem, 3vw, 2.4rem); font-weight: 950; }
.spotlight-copy p { margin: 0; color: rgba(255,255,255,0.78); line-height: 1.58; font-weight: 750; }
.spotlight-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(160deg, #edf1fb, #7582b4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 18px 44px rgba(0,0,0,0.18);
}
.spotlight-media .media-placeholder { min-height: 420px; background: linear-gradient(160deg, #e7ebf7, #7180b4); color: var(--navy); }
.spotlight-media .media-button { z-index: 1; }
.spotlight-media .heart-btn { position: absolute; z-index: 4; top: 14px; right: 14px; }
.spotlight-brand { position: absolute; z-index: 3; left: 22px; bottom: 22px; display: grid; gap: 8px; max-width: 260px; pointer-events: none; }
.spotlight-brand span { color: var(--orange); font-size: 0.8rem; font-weight: 950; letter-spacing: 0.05em; }
.spotlight-brand strong { color: white; font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 0.95; text-shadow: 0 2px 18px rgba(0,0,0,0.28); }
.is-light-details { color: white; }
.is-light-tags .tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }
.card-actions.is-flat { margin-top: 4px; }
.card-actions.is-flat .secondary-btn { background: white; }
.property-grid, .featured-grid, .unit-grid { display: grid; gap: 16px; }
.property-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 36px rgba(7, 17, 80, 0.08);
}
.card-media {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: #dfe3ee;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: auto; }
.media-button { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: transparent; text-align: inherit; }
.media-button img { transition: transform 0.22s ease; }
.media-button:hover img { transform: scale(1.025); }
.media-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 260px; color: var(--navy); font-weight: 950; background: linear-gradient(160deg, #e9edf7, #d7ddea); }
.play-chip, .status-chip, .photo-chip {
  position: absolute;
  border-radius: 999px;
  padding: 8px 11px;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}
.play-chip { left: 12px; bottom: 12px; background: rgba(7,17,80,0.92); }
.photo-chip { right: 12px; bottom: 12px; background: rgba(7,17,80,0.92); }
.status-chip { left: 12px; top: 12px; background: rgba(7,17,80,0.9); }
.property-main { display: grid; gap: 12px; align-content: start; padding: 20px; }
.property-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.price-title { color: #050816; font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.05; font-weight: 950; }
.price-title.is-light-price { color: white; }
.property-main h3 { margin: 8px 0 0; color: var(--ink); font-size: 1.15rem; line-height: 1.15; }
.heart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 56px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-weight: 950;
}
.heart-icon { font-size: 1.5rem; line-height: 1; }
.heart-count { font-size: 0.86rem; }
.heart-btn.is-liked { border-color: rgba(255, 90, 0, 0.35); color: var(--orange); background: #fff5ef; }
.details-row { display: flex; gap: 14px; flex-wrap: wrap; color: #0f172a; font-weight: 900; }
.detail-item { white-space: nowrap; }
.meta, .description-text { color: var(--muted); font-weight: 750; line-height: 1.45; }
.strong-meta { color: #374151; font-weight: 900; }
.description-text { margin: 0; }
.tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; background: #f8fafc; color: #394150; font-size: 0.78rem; font-weight: 800; }
.card-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 4px; }
.primary-link, .secondary-link, .primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 950;
}
.primary-link, .primary-btn { border: 0; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; transition: background 0.2s ease; }
.primary-btn.is-saved { background: #16a34a; }
.secondary-link, .secondary-btn { border: 1px solid var(--line); background: white; color: var(--navy); }
.developments-block { background: var(--navy); }
.development-feed { display: grid; gap: 28px; }
.development-card { overflow: hidden; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; background: white; }
.development-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; background: #0b155b; color: white; }
.development-hero .card-media { min-height: 360px; }
.development-copy { display: grid; align-content: center; gap: 14px; padding: clamp(20px, 4vw, 42px); }
.development-copy h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1; }
.development-copy p { margin: 0; color: rgba(255,255,255,0.78); line-height: 1.6; font-weight: 700; }
.development-copy .tag { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.18); }
.development-units { padding: 18px; }
.development-units h4 { margin: 0 0 14px; color: var(--navy); font-size: 1rem; text-transform: uppercase; }
.unit-grid { grid-template-columns: 1fr; }
.rent-block { background: var(--rent-bg); }
.rent-block .property-card { border-color: rgba(21,146,93,0.18); }
.rent-block .status-chip { background: var(--green); }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
  margin: 30px clamp(12px, 5vw, 70px) 70px;
  padding: clamp(22px, 4vw, 44px);
  border-top: 1px solid var(--line);
}
.contact-section h2 { color: var(--navy); font-size: clamp(2rem, 5vw, 4rem); }
.contact-section p { color: var(--muted); font-weight: 750; line-height: 1.55; }
.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.lead-form button { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 14px;
  font-weight: 750;
}
.media-modal {
  width: min(1100px, calc(100% - 28px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: white;
}
.media-modal::backdrop { background: rgba(0,0,0,0.72); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.modal-head button { border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; background: white; font-weight: 900; }
.modal-body { background: #000; }
.gallery-view { display: grid; gap: 12px; padding: 12px; background: #0b0f1a; }
.gallery-main { position: relative; }
.gallery-nav { position: absolute; top: 50%; z-index: 2; width: 46px; height: 56px; transform: translateY(-50%); border: 0; border-radius: 999px; background: rgba(255,255,255,0.88); color: var(--navy); font-size: 2.4rem; line-height: 1; font-weight: 900; box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.gallery-nav.is-prev { left: 12px; }
.gallery-nav.is-next { right: 12px; }
.gallery-count { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); border-radius: 999px; padding: 7px 12px; background: rgba(8,15,35,0.78); color: white; font-weight: 900; font-size: 0.84rem; }
.gallery-main { display: grid; place-items: center; min-height: min(68dvh, 680px); background: #05070d; border-radius: 12px; overflow: hidden; }
.gallery-main img { max-width: 100%; max-height: min(68dvh, 680px); object-fit: contain; display: block; }
.gallery-strip { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 2px; }
.gallery-thumb { flex: 0 0 92px; height: 70px; border: 2px solid transparent; border-radius: 10px; padding: 0; overflow: hidden; background: #111827; }
.gallery-thumb.is-active { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-panel, .detail-panel { display: grid; gap: 14px; padding: 14px; background: white; color: var(--ink); }
.detail-panel .inline-carousel { border-radius: 14px; }
.detail-summary { display: grid; gap: 10px; }
.lead-inline { display: grid; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff5ef; }
.lead-inline strong { color: var(--ink); font-size: 0.95rem; }
.lead-inline-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lead-inline-form input { min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.lead-inline-date { grid-column: 1 / -1; display: grid; gap: 4px; font-size: 0.82rem; color: var(--muted); font-weight: 750; }
.lead-inline-form .primary-btn { grid-column: 1 / -1; min-height: 44px; padding: 0 16px; white-space: nowrap; }
.lead-inline-thanks { color: var(--navy); font-weight: 800; }
@media (max-width: 720px) {
  .lead-inline-form { grid-template-columns: 1fr; }
}
.map-frame { position: relative; min-height: min(62dvh, 560px); overflow: hidden; border-radius: 14px; background: #dfe3ee; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.podcast-block { background: linear-gradient(180deg, #fff7f2, #ffffff); }
.podcast-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; }
.podcast-logo { width: 84px; height: 84px; border-radius: 18px; object-fit: cover; box-shadow: 0 10px 24px rgba(7, 17, 80, 0.15); }
.podcast-feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.podcast-card { display: grid; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 10px 28px rgba(7, 17, 80, 0.06); }
.podcast-card h3 { margin: 0; color: var(--navy); font-size: 1.1rem; }
.podcast-frame { position: relative; border-radius: 12px; overflow: hidden; background: #0b0b0b; aspect-ratio: 16 / 9; }
.podcast-frame iframe, .podcast-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.podcast-frame.podcast-frame-audio { aspect-ratio: auto; height: 152px; background: transparent; }
.podcast-audio { width: 100%; }
@media (max-width: 640px) {
  .podcast-head { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.map-copy { display: grid; gap: 4px; padding: 0 4px; }
.map-copy strong { color: var(--ink); font-size: 1.05rem; }
.map-copy span { color: var(--muted); font-weight: 800; }
.map-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.map-actions a, .map-actions button { min-height: 48px; padding: 0 12px; }
.map-panel p { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.5; }
.video-frame { position: relative; aspect-ratio: 16 / 9; }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 50; max-width: min(420px, calc(100% - 24px)); border-radius: 12px; padding: 14px 16px; background: var(--ink); color: white; opacity: 0; transform: translate(-50%, 10px); pointer-events: none; transition: 0.2s ease; font-weight: 850; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.empty-state { border: 1px dashed var(--line); border-radius: 18px; padding: 28px; background: rgba(255,255,255,0.72); color: var(--muted); font-weight: 850; }
.admin-page { background: #eef1f7; }
.admin-topbar { position: sticky; }
.admin-shell { display: grid; gap: 18px; padding: 24px clamp(12px, 4vw, 50px) 90px; }
.admin-panel { padding: 20px; background: white; border-radius: 18px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.panel-head h1, .panel-head h2 { color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.5rem); }
.admin-actions, .form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.admin-form label { display: grid; gap: 7px; color: var(--muted); font-size: 0.82rem; font-weight: 900; }
.admin-form label span { text-transform: uppercase; letter-spacing: 0.04em; }
.admin-form .wide { grid-column: 1 / -1; }
.admin-form .check { display: flex; align-items: center; gap: 10px; }
.admin-form .check input { width: auto; }
.upload-row { grid-template-columns: 1fr auto; align-items: end; }
.upload-row span { grid-column: 1 / -1; }
.gallery-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; padding: 10px; border: 1px dashed var(--line); border-radius: 14px; background: #f8faff; }
.gallery-preview span { color: var(--muted); font-weight: 850; }
.gallery-preview figure { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; background: #dfe3ee; }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-preview figcaption { position: absolute; right: 6px; bottom: 6px; min-width: 24px; height: 24px; display: grid; place-items: center; border-radius: 999px; background: rgba(8,15,35,0.82); color: white; font-size: 0.76rem; font-weight: 950; }
.admin-list { display: grid; gap: 10px; }
.admin-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: #fbfcff; }
.admin-row strong, .admin-row span { display: block; }
.admin-row span { margin-top: 4px; color: var(--muted); font-size: 0.86rem; font-weight: 750; }
.row-actions { display: flex; gap: 8px; }
.row-actions button { min-height: 38px; border-radius: 10px; padding: 0 12px; }
@media (max-width: 1040px) {
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 360px; }
  .property-card, .development-hero, .contact-section { grid-template-columns: 1fr; }
  .card-media { min-height: 330px; }
}
@media (max-width: 720px) {
  .gallery-nav { width: 40px; height: 48px; font-size: 2rem; }
  .gallery-nav.is-prev { left: 8px; }
  .gallery-nav.is-next { right: 8px; }
  .spotlight-card { padding: 18px; border-radius: 0; margin-inline: -10px; }
  .spotlight-copy h3 { font-size: 2.35rem; }
  .spotlight-media { min-height: 350px; border-radius: 18px; }
  .spotlight-media .media-placeholder { min-height: 350px; }
  .spotlight-brand { left: 20px; bottom: 20px; }
  .gallery-view { padding: 8px; }
  .gallery-main { min-height: 56dvh; }
  .gallery-main img { max-height: 56dvh; }
  .gallery-thumb { flex-basis: 74px; height: 58px; }
  .topbar { padding: 7px 12px; }
  .brand-logo { width: 34px; height: 34px; }
  .visit-pill { font-size: 0.78rem; }
  .hero { padding: 18px 14px 6px; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { margin-bottom: 0; }
  .section-block { padding: 24px 10px; }
  .section-head h2 { font-size: 1.9rem; }
  .property-card { border-radius: 16px; }
  .card-media { min-height: 310px; }
  .property-main { padding: 16px; }
  .property-topline { gap: 10px; }
  .price-title { font-size: 1.55rem; }
  .heart-btn { min-width: 52px; height: 42px; padding: 0 10px; }
  .details-row { gap: 10px 13px; font-size: 0.92rem; }
  .card-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-actions .primary-link { grid-column: span 2; }
  .development-hero .card-media { min-height: 300px; }
  .development-copy { padding: 20px; }
  .development-copy h3 { font-size: 2rem; }
  .contact-section { margin: 16px 10px 46px; padding: 20px 0 0; }
  .lead-form { grid-template-columns: 1fr; }
  .map-actions { grid-template-columns: 1fr; }
  .map-frame { min-height: 54dvh; }
  .media-modal { width: calc(100% - 18px); border-radius: 14px; }
  .modal-head { padding: 12px; }
  .video-frame { aspect-ratio: 9 / 16; max-height: calc(100dvh - 88px); }
}
@media (max-width: 410px) {
  .card-media { min-height: 285px; }
  .card-actions a, .card-actions button { padding: 0 10px; font-size: 0.9rem; }
}

/* Admin mobile repair */
.admin-page { overflow-x: hidden; }
.admin-page .topbar nav { flex-wrap: wrap; justify-content: flex-end; }
.admin-page .topbar nav a, .admin-page .topbar nav button { white-space: nowrap; }
.item-form textarea[name="gallery"] { min-height: 96px; font-size: 0.78rem; line-height: 1.35; }
.gallery-preview { max-height: 260px; overflow: auto; align-items: start; }
.gallery-preview figure { max-height: 120px; }

@media (max-width: 720px) {
  .gallery-nav { width: 40px; height: 48px; font-size: 2rem; }
  .gallery-nav.is-prev { left: 8px; }
  .gallery-nav.is-next { right: 8px; }
  .admin-topbar { align-items: flex-start; gap: 8px; padding: 8px 10px; }
  .admin-topbar .brand { min-width: 0; }
  .admin-topbar nav { gap: 6px; }
  .admin-topbar nav a, .admin-topbar nav button { min-height: 34px; padding: 0 9px; font-size: 0.72rem; border-radius: 999px; }
  .admin-shell { padding: 10px 8px 86px; gap: 12px; }
  .admin-panel { padding: 12px; border-radius: 14px; }
  .panel-head { display: grid; align-items: start; gap: 10px; margin-bottom: 12px; }
  .panel-head h1, .panel-head h2 { font-size: 1.28rem; line-height: 1.08; }
  .admin-actions, .form-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .admin-actions button, .form-actions button, #save-settings { width: 100%; min-height: 42px; }
  .admin-form { grid-template-columns: 1fr; gap: 10px; }
  .admin-form .wide { grid-column: auto; }
  .admin-form label { font-size: 0.74rem; min-width: 0; }
  .admin-form label span { letter-spacing: 0.02em; }
  .admin-form input, .admin-form textarea, .admin-form select { min-width: 0; padding: 11px; font-size: 0.92rem; }
  .upload-row { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .upload-row input[type="file"] { font-size: 0.78rem; padding: 9px; }
  .upload-row button { width: 100%; }
  .gallery-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; padding: 8px; max-height: 170px; }
  .gallery-preview figure { max-height: 82px; border-radius: 8px; }
  .gallery-preview figcaption { right: 4px; bottom: 4px; min-width: 20px; height: 20px; font-size: 0.68rem; }
  .admin-row { grid-template-columns: 1fr; padding: 10px; }
  .row-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .row-actions button { padding: 0 6px; font-size: 0.75rem; }
}


/* Admin gallery status only */
.admin-page .gallery-preview { display: block; max-height: none; overflow: visible; padding: 10px 12px; }
.admin-page .gallery-preview span { display: block; }
.admin-page .gallery-preview figure, .admin-page .gallery-preview img, .admin-page .gallery-preview figcaption { display: none !important; }
@media (max-width: 720px) {
  .admin-page .gallery-preview { display: block; max-height: none; padding: 10px; }
}


/* Section clarity rebuild */
.section-block { position: relative; padding: 54px clamp(14px, 5vw, 70px); border-top: 1px solid rgba(7,17,80,0.1); }
.section-inner { max-width: 1480px; margin: 0 auto; }
.section-head { grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 16px; margin-bottom: 26px; }
.section-number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 999px; background: var(--navy); color: white; font-weight: 950; font-size: 0.82rem; }
.section-head h2 { max-width: 980px; }
.section-head p:not(.eyebrow) { max-width: 780px; }
.featured-section { background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%); }
.developments-block { background: #071150; padding-top: 64px; padding-bottom: 64px; }
.developments-block::before, .rent-block::before, .sale-block::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--orange); }
.developments-block .section-number { background: white; color: var(--navy); }
.rent-block { background: linear-gradient(180deg, #ecfbf4 0%, #f8fffb 100%); }
.rent-block::before { background: var(--green); }
.rent-block .section-number { background: var(--green); }
.sale-block { background: #ffffff; }
.sale-block::before { background: #d9dfef; }
.sale-block .section-number { background: #1f2a5f; }
.development-feed { gap: 34px; }
.development-card { border-radius: 24px; box-shadow: 0 22px 60px rgba(0,0,0,0.24); }
.development-hero { grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr); background: linear-gradient(135deg, #10196a, #071150); }
.development-media { position: relative; min-height: 380px; overflow: hidden; background: #dfe3ee; }
.development-media .media-button, .development-media .media-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.development-kicker { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.development-kicker span, .development-kicker strong { display: inline-flex; min-height: 34px; align-items: center; border-radius: 999px; padding: 0 12px; font-size: 0.78rem; font-weight: 950; }
.development-kicker span { background: var(--orange); color: white; text-transform: uppercase; letter-spacing: 0.05em; }
.development-kicker strong { background: rgba(255,255,255,0.12); color: white; }
.development-units { padding: 22px; background: #f7f9fd; }
.subsection-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.subsection-title span { color: var(--navy); font-size: 1.1rem; font-weight: 950; }
.subsection-title small { color: var(--muted); font-weight: 850; }
.rent-block .property-grid, .sale-block .property-grid { gap: 18px; }
.rent-block .property-card { background: white; box-shadow: 0 16px 40px rgba(20, 112, 78, 0.12); }
.sale-block .property-card { box-shadow: 0 12px 32px rgba(7, 17, 80, 0.07); }
@media (max-width: 1040px) {
  .development-hero { grid-template-columns: 1fr; }
  .development-media { min-height: 320px; }
}
@media (max-width: 720px) {
  .section-block { padding: 34px 10px; }
  .section-head { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
  .section-number { width: 38px; height: 38px; }
  .section-head h2 { font-size: 2rem; }
  .developments-block { padding-top: 42px; padding-bottom: 42px; }
  .development-card { border-radius: 18px; }
  .development-media { min-height: 260px; }
  .development-copy { padding: 18px; }
  .development-units { padding: 14px; }
  .subsection-title { display: grid; align-items: start; }
}

/* Admin grouped registry */
.admin-group { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fbfcff; }
.admin-group + .admin-group { margin-top: 10px; }
.admin-group summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 64px; padding: 12px 14px; cursor: pointer; list-style: none; user-select: none; }
.admin-group summary::-webkit-details-marker { display: none; }
.admin-group summary::after { content: "+"; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--navy); font-weight: 950; font-size: 1.2rem; }
.admin-group[open] summary::after { content: "-"; }
.admin-group summary span { display: grid; gap: 4px; min-width: 0; }
.admin-group summary strong { color: var(--navy); font-size: 1.06rem; line-height: 1.1; }
.admin-group summary small { color: var(--muted); font-weight: 800; line-height: 1.25; }
.admin-group summary em { margin-left: auto; min-width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: var(--navy); color: white; font-style: normal; font-weight: 950; }
.admin-group-rent summary em { background: var(--green); }
.admin-group-developments summary em { background: var(--orange); }
.admin-group-body { display: grid; gap: 10px; padding: 0 12px 12px; }
.admin-group-body .admin-row { background: white; }
.is-compact-empty { padding: 16px; border-radius: 12px; }
@media (max-width: 720px) {
  .admin-group summary { min-height: 58px; padding: 10px; gap: 8px; }
  .admin-group summary strong { font-size: 0.98rem; }
  .admin-group summary small { font-size: 0.76rem; }
  .admin-group summary em, .admin-group summary::after { width: 30px; height: 30px; min-width: 30px; }
  .admin-group-body { padding: 0 8px 8px; }
}

/* Visual structure polish */
.price-title, .spotlight-price, .development-copy strong {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.spotlight-price { color: white; }
.detail-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #111827;
  font-weight: 900;
  white-space: nowrap;
}
.detail-icon { width: 18px; height: 18px; display: inline-grid; place-items: center; color: var(--navy); }
.detail-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.is-light-details .detail-item { background: rgba(255,255,255,0.95); color: var(--navy); border-color: rgba(255,255,255,0.55); }
.property-main { align-content: stretch; }
.card-actions { margin-top: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.card-actions .primary-link { grid-column: 1 / -1; }
.card-actions .secondary-btn, .card-actions .primary-link { min-width: 0; padding-inline: 10px; text-align: center; }
.spotlight-card { grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr); }
.spotlight-copy { align-content: stretch; }
.spotlight-copy .card-actions { margin-top: auto; }
.developments-block { background: linear-gradient(180deg, #f3efe5 0%, #f8fafc 100%); color: var(--ink); }
.developments-block .section-head.is-light h2, .developments-block .section-head.is-light p:not(.eyebrow) { color: var(--navy); }
.developments-block .section-number { background: var(--orange); color: white; }
.development-card { overflow: hidden; border: 1px solid rgba(7,17,80,0.12); background: white; box-shadow: 0 18px 48px rgba(7, 17, 80, 0.12); }
.development-brand-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background: #eee4cf;
  border-bottom: 8px solid #c8aa65;
  color: var(--navy);
}
.development-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; background: var(--navy); color: white; font-weight: 950; }
.development-brand-panel span { display: block; color: var(--orange); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.06em; text-transform: uppercase; }
.development-brand-panel h3 { margin: 4px 0 0; font-size: clamp(2rem, 5vw, 4.6rem); line-height: 0.95; color: var(--navy); }
.development-brand-panel p { margin: 8px 0 0; color: #263248; font-weight: 900; }
.development-showcase { display: grid; grid-template-columns: minmax(280px, 1.15fr) minmax(280px, 0.85fr); background: #fffaf0; }
.development-main-photo { position: relative; min-height: 430px; overflow: hidden; background: #dfe3ee; }
.development-main-photo .media-button, .development-main-photo .media-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.development-copy { align-content: center; padding: clamp(22px, 4vw, 44px); color: var(--ink); }
.development-copy h3 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 0.96; }
.development-copy strong { display: block; font-size: clamp(1.5rem, 3vw, 2.5rem); }
.development-copy p { color: #4b5563; }
.development-copy .tag { background: white; color: #263248; border-color: #e3dccd; }
.development-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 12px; background: white; }
.development-gallery button { position: relative; min-height: 170px; overflow: hidden; border: 0; border-radius: 14px; padding: 0; background: #dfe3ee; }
.development-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.development-units { background: #f7f9fd; }
@media (max-width: 1040px) {
  .spotlight-card, .development-showcase { grid-template-columns: 1fr; }
  .development-main-photo { min-height: 360px; }
}
@media (max-width: 720px) {
  .card-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-actions .secondary-btn { min-height: 44px; font-size: 0.84rem; }
  .card-actions .primary-link { min-height: 48px; }
  .details-row { gap: 7px; }
  .detail-item { min-height: 31px; padding: 0 8px; font-size: 0.82rem; }
  .detail-icon, .detail-icon svg { width: 16px; height: 16px; }
  .spotlight-card { padding: 14px; border-radius: 18px; margin-inline: 0; }
  .spotlight-media { order: 1; min-height: 310px; }
  .spotlight-copy { order: 2; }
  .spotlight-copy h3 { font-size: 2rem; }
  .development-brand-panel { grid-template-columns: 1fr; gap: 12px; }
  .development-brand-panel h3 { font-size: 2.25rem; }
  .development-showcase { grid-template-columns: 1fr; }
  .development-main-photo { min-height: 310px; }
  .development-gallery { grid-template-columns: 1fr; }
  .development-gallery button { min-height: 210px; }
}

/* Dedicated admin sections */
.form-help-text { display: block; margin-top: 6px; color: var(--muted); font-weight: 800; line-height: 1.35; }
.admin-plus {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 950;
}
.admin-group summary::after { display: none; }
.admin-dev-block { display: grid; gap: 10px; padding: 10px; border: 1px solid #edf0f7; border-radius: 14px; background: #ffffff; }
.admin-dev-units { display: grid; gap: 8px; padding: 10px; border-radius: 12px; background: #f6f8fd; }
.admin-dev-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--navy); font-weight: 950; }
.admin-dev-title .secondary-btn { min-height: 36px; border-radius: 999px; padding: 0 12px; font-size: 0.82rem; }
.admin-orphan-units { display: grid; gap: 8px; padding: 12px; border: 1px dashed var(--line); border-radius: 14px; background: #fffaf0; color: var(--navy); }
.development-logo { width: min(220px, 44vw); max-height: 110px; object-fit: contain; display: block; border-radius: 12px; background: white; padding: 8px; box-shadow: 0 8px 22px rgba(7,17,80,0.1); }
@media (max-width: 720px) {
  .admin-plus { width: 34px; height: 34px; min-width: 34px; }
  .admin-dev-title { display: grid; align-items: start; }
  .admin-dev-title .secondary-btn { width: 100%; }
}
/* Clean inventory feed rebuild */
body { background: #f3f4f6; color: #111827; }
.topbar { min-height: 58px; padding: 8px clamp(12px, 3vw, 26px); background: #fff; }
.top-menu { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.top-menu a { min-height: 38px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 0 13px; color: #111827; font-weight: 850; font-size: 0.9rem; background: #fff; }
.visit-pill { margin-left: 8px; }
.hero { display: none; }
.section-block { padding: 20px 10px; border: 0; background: #f3f4f6 !important; }
.section-inner { max-width: 820px; }
.section-head { display: block; margin: 10px 0 12px; }
.section-number, .section-head p:not(.eyebrow) { display: none; }
.section-head h2 { color: #111827; font-size: clamp(1.25rem, 3vw, 1.8rem); line-height: 1.1; }
.eyebrow { margin-bottom: 4px; color: #6b7280; letter-spacing: 0; text-transform: none; font-size: 0.86rem; }
.property-grid, .featured-grid, .unit-grid, .property-feed { display: grid; gap: 14px; }
.property-card.clean-card, .property-card { display: block; overflow: hidden; border: 1px solid #d8dde6; border-radius: 10px; background: #fff; box-shadow: none; }
.card-media { min-height: 0; height: auto; background: #eef1f5; }
.inline-carousel { position: relative; overflow: hidden; background: #e5e7eb; }
.inline-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none; }
.inline-track::-webkit-scrollbar { display: none; }
.inline-track img { flex: 0 0 100%; width: 100%; aspect-ratio: 16 / 10; height: auto; object-fit: cover; scroll-snap-align: start; display: block; }
.inline-dots { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; gap: 6px; padding: 5px 8px; border-radius: 999px; background: rgba(0,0,0,0.2); }
.inline-dots span { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.65); }
.inline-dots span.is-active { background: #fff; }
.photo-chip { right: 10px; bottom: 10px; background: rgba(17,24,39,0.88); }
.status-chip { left: 10px; top: 10px; background: rgba(17,24,39,0.86); }
.card-media .heart-btn { position: absolute; right: 12px; top: 12px; z-index: 3; min-width: 48px; height: 42px; border-color: rgba(255,255,255,0.75); box-shadow: 0 5px 15px rgba(0,0,0,0.12); }
.property-main { padding: 16px; gap: 10px; }
.price-title { color: #0b0f19; font-size: clamp(1.5rem, 4vw, 1.9rem); font-weight: 900; line-height: 1; }
.property-main h3 { margin: 0; color: #111827; font-size: 1.05rem; font-weight: 850; }
.details-row { display: flex; gap: 14px; flex-wrap: wrap; color: #111827; }
.detail-item { border: 0; background: transparent; padding: 0; min-height: 24px; font-size: 0.92rem; }
.detail-icon { color: #111827; }
.meta, .description-text { color: #6b7280; font-weight: 600; }
.description-text { font-size: 0.92rem; }
.tag { background: #fff; color: #4b5563; border-color: #d8dde6; padding: 4px 10px; font-size: 0.82rem; }
.card-actions.clean-actions { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 9px; margin-top: 8px; }
.card-actions.clean-actions .secondary-btn { grid-column: auto; min-height: 46px; border-radius: 8px; font-size: 0.9rem; }
.call-btn, .whats-btn, .contact-btn, .video-btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 900; }
.call-btn { border: 1px solid var(--orange); color: #111827; background: #fff; font-size: 0; }
.whats-btn { background: #4ed160; color: #fff; }
.contact-btn, .video-btn { background: var(--orange); color: #fff; border: 0; cursor: pointer; font-size: 0.9rem; }
.ad-card { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; border: 1px solid #fde2d3; border-radius: 9px; padding: 10px; background: #fff3eb; text-decoration: none; cursor: pointer; }
.ad-card img, .ad-illustration { width: 92px; height: 58px; object-fit: cover; border-radius: 7px; background: #ffd9c4; display: grid; place-items: center; color: var(--orange); font-weight: 950; }
.ad-card strong { display: block; color: #111827; font-size: 0.92rem; }
.ad-card p { margin: 2px 0 0; color: #4b5563; font-size: 0.8rem; line-height: 1.25; }
.ad-card .ad-cta { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; padding: 0 10px; background: var(--orange); color: #fff; font-weight: 900; font-size: 0.78rem; white-space: nowrap; }
.developments-block::before, .rent-block::before, .sale-block::before { display: none; }
.development-card.clean-development { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.development-header-photo { position: relative; min-height: 260px; overflow: hidden; border-radius: 0; background: #e5e7eb; }
.development-header-photo .inline-carousel { height: 100%; }
.development-header-photo .inline-track img { aspect-ratio: 16 / 7; min-height: 260px; filter: saturate(0.92); }
.development-header-info { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 16px; padding: 26px clamp(16px, 5vw, 44px); background: linear-gradient(0deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72), transparent); }
.development-header-info h3 { margin: 0; color: #111827; font-size: clamp(2rem, 5vw, 3.7rem); line-height: 0.95; }
.development-header-info p { margin: 8px 0 10px; color: #374151; font-weight: 800; }
.development-logo { width: min(160px, 35vw); max-height: 96px; border-radius: 6px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.development-units { padding: 14px 0 24px; background: transparent; }
.subsection-title { margin: 0 0 12px; padding: 0; border: 0; }
.subsection-title span { color: #111827; }
.subsection-title small { color: #6b7280; }
.media-modal { max-width: 980px; }
@media (max-width: 720px) {
  .topbar { align-items: center; flex-wrap: wrap; gap: 8px; }
  .top-menu { order: 3; width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; }
  .top-menu a { justify-content: center; min-height: 36px; padding: 0 6px; font-size: 0.74rem; }
  .visit-pill { margin-left: auto; }
  .section-block { padding: 14px 8px; }
  .inline-track img { aspect-ratio: 4 / 3; }
  .property-main { padding: 13px; }
  .card-actions.clean-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .card-actions.clean-actions .secondary-btn { grid-column: span 1; min-height: 46px; }
  .ad-card { grid-template-columns: 74px 1fr; }
  .ad-card a { grid-column: 1 / -1; }
  .ad-card img, .ad-illustration { width: 74px; height: 54px; }
  .development-header-info { grid-template-columns: 1fr; padding: 18px; }
  .development-header-photo .inline-track img { aspect-ratio: 16 / 9; min-height: 230px; }
  .development-header-info h3 { font-size: 2rem; }
}
/* Admin dedicated creator panels */
.is-hidden-actions { display: none !important; }
.admin-create-panels { display: grid; gap: 10px; margin: 14px 0 18px; }
.admin-create-panels details { border: 1px solid var(--line); border-radius: 14px; background: #fbfcff; overflow: hidden; }
.admin-create-panels summary { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; padding: 13px 14px; list-style: none; cursor: pointer; }
.admin-create-panels summary::-webkit-details-marker { display: none; }
.admin-create-panels summary::after { content: "+"; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--navy); font-weight: 950; }
.admin-create-panels details[open] summary::after { content: "-"; }
.admin-create-panels strong { color: var(--navy); font-size: 1.03rem; }
.admin-create-panels small { color: var(--muted); font-weight: 800; line-height: 1.25; }
.admin-create-panels button, .panel-buttons { margin: 0 14px 14px; }
.panel-buttons { display: grid; gap: 9px; }
.admin-form [hidden] { display: none !important; }
@media (max-width: 720px) {
  .admin-create-panels summary { padding: 11px 12px; }
  .admin-create-panels button { width: calc(100% - 28px); min-height: 44px; }
}

/* Kill invasive photo modal for property photos */
.inline-carousel, .inline-track, .inline-track img { cursor: grab; }
.inline-carousel button, .development-gallery button { pointer-events: none; }
/* Settings accordion */
.settings-panel { padding: 0; overflow: hidden; }
.settings-details summary { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; padding: 18px 20px; cursor: pointer; list-style: none; }
.settings-details summary::-webkit-details-marker { display: none; }
.settings-details summary::after { content: "+"; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--line); color: var(--navy); background: white; font-weight: 950; }
.settings-details[open] summary::after { content: "-"; }
.settings-details h1 { color: var(--navy); font-size: clamp(1.35rem, 3vw, 2.1rem); }
.settings-details small { display: block; margin-top: 5px; color: var(--muted); font-weight: 800; }
.settings-body { display: grid; gap: 14px; padding: 0 20px 20px; }
.settings-body #save-settings { width: min(360px, 100%); }
@media (max-width: 720px) {
  .settings-details summary { padding: 14px 12px; }
  .settings-body { padding: 0 12px 14px; }
  .settings-body #save-settings { width: 100%; }
}
/* Development structure rebuild */
.development-card.clean-development {
  overflow: hidden;
  border: 1px solid #d8dde6;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.development-brand-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background: #efe6d2;
  border-bottom: 1px solid #d7c9aa;
}
.development-logo-img {
  width: clamp(96px, 22vw, 210px);
  max-height: 130px;
  object-fit: contain;
  display: block;
  background: white;
  border: 1px solid rgba(7,17,80,0.12);
  border-radius: 8px;
  padding: 10px;
}
.development-logo-fallback {
  width: clamp(84px, 18vw, 150px);
  min-height: 82px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 950;
}
.development-brand-strip span {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.development-brand-strip h3 {
  margin: 4px 0;
  color: #111827;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}
.development-brand-strip p { margin: 0; color: #374151; font-weight: 850; }
.development-showcase-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.75fr);
  background: #fff;
}
.development-cover { min-height: 360px; background: #e5e7eb; overflow: hidden; }
.development-cover .inline-carousel, .development-cover .inline-track { height: 100%; }
.development-cover .inline-track img { min-height: 360px; aspect-ratio: 16 / 9; }
.development-summary { display: grid; align-content: center; gap: 14px; padding: clamp(18px, 4vw, 34px); }
.development-summary p { margin: 0; color: #4b5563; font-weight: 850; line-height: 1.45; }
.development-actions { grid-template-columns: 1fr; }
.development-map-preview { position: relative; display: block; width: 100%; height: 160px; padding: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; cursor: pointer; background: #dfe3ee; }
.development-map-preview iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.development-map-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(160deg, #e9edf7, #d7ddea); }
.development-map-chip { position: absolute; left: 10px; bottom: 10px; padding: 7px 12px; border-radius: 999px; background: rgba(7,17,80,0.92); color: white; font-size: 0.8rem; font-weight: 900; }
.development-gallery { display: flex; gap: 10px; overflow-x: auto; padding: 12px; background: #f7f9fd; scroll-snap-type: x mandatory; }
.development-gallery button { flex: 0 0 min(320px, 82vw); height: 190px; border: 0; border-radius: 10px; padding: 0; overflow: hidden; background: #e5e7eb; scroll-snap-align: start; }
.development-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.admin-dev-block { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.admin-dev-units { display: grid; gap: 10px; padding: 12px; background: #f7f9fd; }
.admin-dev-title { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.admin-dev-title span { color: var(--navy); font-weight: 950; }
.admin-dev-title .primary-btn { min-height: 42px; padding: 0 14px; }
@media (max-width: 720px) {
  .development-brand-strip { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .development-logo-img { width: min(100%, 240px); max-height: 120px; }
  .development-showcase-panel { grid-template-columns: 1fr; }
  .development-cover, .development-cover .inline-track img { min-height: 245px; }
  .development-summary { padding: 14px; }
  .admin-dev-title { grid-template-columns: 1fr; }
}

/* Admin two-step development flow */
.dev-step-flow { display: grid; gap: 10px; padding: 0 14px 14px; }
.dev-step-card { display: grid; gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.dev-step-card b, .admin-dev-step b, .admin-dev-title b { width: fit-content; border-radius: 999px; padding: 4px 9px; background: var(--navy); color: white; font-size: 0.76rem; font-weight: 950; }
.dev-step-card.is-action b, .admin-dev-title b { background: var(--orange); }
.dev-step-card strong { color: var(--navy); font-size: 1.08rem; }
.dev-step-card small { color: var(--muted); font-weight: 800; line-height: 1.35; }
.dev-step-card button { margin: 4px 0 0; width: 100%; }
.admin-dev-step { display: flex; align-items: center; gap: 9px; padding: 12px; background: #fffaf0; color: var(--navy); font-weight: 950; }
.admin-dev-title div { display: grid; gap: 6px; }
.admin-dev-title div span { color: var(--navy); font-weight: 950; }
@media (min-width: 760px) { .dev-step-flow { grid-template-columns: 1fr 1fr; } }
/* Separate admin forms */
.is-hidden-form { display: none !important; }
.form-mode-banner { display: grid; gap: 6px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fffaf0; }
.form-mode-banner b { width: fit-content; border-radius: 999px; padding: 4px 9px; background: var(--navy); color: white; font-size: 0.76rem; font-weight: 950; }
.form-mode-banner strong { color: var(--navy); font-size: 1.15rem; }
.form-mode-banner small { color: var(--muted); font-weight: 850; }
.development-form { margin-bottom: 18px; padding: 14px; border: 1px solid rgba(239,89,38,0.22); border-radius: 18px; background: #fffdf9; }
.item-form { margin-top: 10px; }
/* Compact call icon */
.icon-call-btn {
    min-width: 0;
    width: auto;
    padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-call-btn svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}
@media (max-width: 720px) {
  .icon-call-btn { min-width: 0; width: auto; padding: 0; }
}
