/*
  Trasteros Santa Lucía
  CSS limpio, mobile-first y sin dependencias externas.
*/

:root {
  --bg: #ffffff;
  --surface: #fbfaf7;
  --surface-2: #f4f1eb;
  --ink: #1d1a15;
  --muted: #686158;
  --muted-2: #8a8175;
  --line: #e7ded0;
  --dark: #15130f;
  --gold: #c88916;
  --gold-2: #e2ad42;
  --gold-soft: #fff6df;
  --free: #9b6b10;
  --free-bg: #fff9ea;
  --occupied: #77736d;
  --occupied-bg: #f0efed;
  --white: #fff;
  --shadow: 0 22px 60px rgba(35, 27, 13, .12);
  --shadow-soft: 0 14px 35px rgba(35, 27, 13, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 66px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(200, 137, 22, .45); outline-offset: 3px; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section {
  padding: 54px 0;
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.section-head { max-width: 720px; margin-bottom: 24px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.compact { margin-bottom: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 12vw, 5rem);
  line-height: .94;
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
h3 { font-size: 1rem; line-height: 1.2; }
p { color: var(--muted); }

/* Header */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid rgba(231, 222, 208, .8);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; min-width: 0; }
.brand-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-copy small {
  color: var(--muted);
  font-size: .75rem;
}
.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-menu {
  position: fixed;
  inset: calc(var(--header-h) + 10px) 16px auto;
  display: grid;
  max-height: calc(100vh - var(--header-h) - 30px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  transform: translateY(-10px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.site-header.is-open .nav-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.nav-menu a {
  padding: 13px 14px;
  border-radius: 14px;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 750;
}
.nav-menu a:hover { background: var(--surface-2); }
.nav-menu .nav-whatsapp {
  color: var(--dark);
  background: var(--gold-soft);
}

/* Buttons */
.btn, .mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover, .mini-btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, #ffd66c, var(--gold-2));
  box-shadow: 0 12px 28px rgba(200, 137, 22, .28);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}
.btn-soft {
  color: var(--dark);
  border-color: rgba(200, 137, 22, .24);
  background: var(--gold-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(570px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media { z-index: -2; background: var(--dark); }
.hero-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1000ms ease;
}
.hero-media img.is-active { opacity: 1; }
.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 20%, rgba(226, 173, 66, .28), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .55) 42%, rgba(0, 0, 0, .28));
}
.hero-content { padding: 42px 0; }
.hero-title-logo {
  display: block;
  width: min(320px, 82vw);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .35));
}
.hero p {
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .87);
  font-size: clamp(1rem, 3.4vw, 1.25rem);
}
.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 430px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 520px;
  margin-top: 22px;
}
.hero-stats span {
  display: grid;
  min-height: 72px;
  align-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-stats strong {
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1;
}

/* Quick strip */
.quick-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.quick-grid {
  display: grid;
  gap: 1px;
  padding: 14px 0;
}
.quick-grid div {
  display: grid;
  gap: 2px;
  padding: 12px 0;
}
.quick-grid strong { font-size: .98rem; }
.quick-grid span { color: var(--muted); font-size: .9rem; }

/* Intro */
.intro-grid {
  display: grid;
  gap: 22px;
}
.intro-copy p:last-child { margin-bottom: 0; }
.price-note {
  padding: 14px 16px;
  border: 1px solid rgba(200, 137, 22, .22);
  border-radius: 16px;
  color: #5f4311;
  background: var(--gold-soft);
  font-weight: 750;
}
.conditions-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.conditions-note div {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.conditions-note strong,
.conditions-note span {
  display: block;
}
.conditions-note strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: .9rem;
}
.conditions-note span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

/* Security */
.security-section { background: linear-gradient(180deg, var(--white), var(--surface)); }
.security-grid {
  display: grid;
  gap: 28px;
}
.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}
.feature-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--gold-soft);
  font-size: .76rem;
  font-weight: 900;
}
.feature-list strong {
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.42;
}
.security-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.security-photo img {
  height: 310px;
  object-fit: cover;
}
.security-photo figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: .92rem;
}

/* Availability */
.availability-shell {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.availability-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.availability-summary div {
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 18px;
  background: var(--surface);
}
.availability-summary strong {
  color: var(--ink);
  font-size: 1.48rem;
  line-height: 1;
}
.availability-summary span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.availability-toolbar {
  display: grid;
  gap: 12px;
  margin: 12px 0 22px;
}
.filter-buttons {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.filter-btn {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: .88rem;
  font-weight: 850;
}
.filter-btn.is-active {
  border-color: rgba(200, 137, 22, .35);
  background: var(--gold-soft);
  color: #5c3c05;
}
.select-filter {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}
.select-filter select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}
.storage-groups { display: grid; gap: 20px; }
.storage-group[hidden] { display: none; }
.storage-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.storage-group-head h3 { margin: 0; }
.storage-group-head span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.unit-list { display: grid; gap: 8px; }
.unit-row {
  display: grid;
  grid-template-columns: minmax(50px, .8fr) minmax(58px, .75fr) minmax(78px, .9fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 62px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.unit-row.is-libre {
  border-color: rgba(200, 137, 22, .35);
  background: linear-gradient(90deg, var(--free-bg), var(--white) 56%);
}
.unit-row.is-ocupado {
  color: var(--occupied);
  background: var(--occupied-bg);
}
.unit-id small,
.unit-size small {
  display: block;
  color: var(--muted-2);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.unit-id strong,
.unit-size strong {
  display: block;
  color: var(--ink);
  font-size: .95rem;
}
.unit-row.is-ocupado .unit-id strong,
.unit-row.is-ocupado .unit-size strong { color: #5e5a55; }
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}
.status-libre { color: #644305; background: #ffefbf; }
.status-ocupado { color: #5d5a55; background: #e1dfdc; }
.unit-action { justify-self: end; }
.mini-btn {
  min-height: 36px;
  padding: 8px 11px;
  color: var(--dark);
  background: var(--gold-2);
  font-size: .78rem;
  white-space: nowrap;
  box-shadow: none;
}
.action-placeholder {
  display: inline-flex;
  min-width: 98px;
  justify-content: center;
  color: transparent;
  user-select: none;
}
.empty-state {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
}

/* Photos */
.photos-section { background: var(--surface); }
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin-inline: -16px;
  padding: 0 16px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.gallery-item {
  position: relative;
  flex: 0 0 min(82vw, 340px);
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--dark);
  scroll-snap-align: start;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  height: 250px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 10px 10px;
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, .56);
  font-size: .82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

/* Location */
.location-grid {
  display: grid;
  gap: 24px;
}
.location-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.social-link {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(20, 19, 17, .12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(20, 19, 17, .16);
}
.social-link:focus-visible {
  outline: 3px solid rgba(200, 137, 22, .34);
  outline-offset: 3px;
}
.social-icon,
.social-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.social-link-instagram {
  background:
    radial-gradient(circle at 28% 105%, #fdf497 0 20%, #fd5949 45%, transparent 46%),
    linear-gradient(135deg, #405de6 0%, #833ab4 35%, #c13584 58%, #e1306c 76%, #fd1d1d 100%);
}
.social-link-instagram svg {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
}
.social-link-facebook {
  background: #1877f2;
}
.social-link-facebook svg {
  fill: var(--white);
}
.location-photo {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.location-photo img { height: 210px; object-fit: cover; }
.map-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

/* Contact */
.contact-section {
  background: linear-gradient(180deg, var(--surface), var(--white));
}
.contact-grid {
  display: grid;
  gap: 24px;
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 850;
}
.contact-form input,
.contact-form textarea,
.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  padding: 12px 13px;
}
.contact-form textarea { resize: vertical; }
.contact-actions {
  display: grid;
  gap: 10px;
}
.form-note {
  margin: 0;
  color: var(--muted-2);
  font-size: .82rem;
}

/* FAQ */
.faq-grid { display: grid; gap: 24px; }
.faq-list { display: grid; gap: 10px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}
summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--gold-soft);
}
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 16px 16px; }

/* Footer */
.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .82);
  background: var(--dark);
}
.footer-grid { display: grid; gap: 18px; }
.site-footer strong { color: var(--white); }
.site-footer p { color: rgba(255, 255, 255, .72); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
}
.copyright { margin: 0; font-size: .85rem; }

/* Legal pages */
.legal-main { padding: 42px 0 64px; }
.legal-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.legal-card h1 { color: var(--ink); font-size: clamp(2rem, 8vw, 3.6rem); }
.legal-card h2 { margin-top: 26px; font-size: 1.35rem; }
.legal-card ul { color: var(--muted); }
.legal-back { margin-left: auto; font-weight: 850; color: var(--gold); }

/* Admin */
.admin-body { background: var(--surface); }
.admin-main { padding: 24px 0 52px; }
.admin-card {
  max-width: 1080px;
  margin-inline: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.admin-card.narrow { max-width: 460px; margin-top: 40px; }
.admin-title {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.admin-title h1 { margin: 0; font-size: clamp(1.8rem, 8vw, 3rem); color: var(--ink); }
.admin-title p { margin: 0; }
.admin-message {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #40622e;
  background: #eef8e8;
  font-weight: 800;
}
.admin-error {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #7a1d1d;
  background: #fff0f0;
  font-weight: 800;
}
.admin-form { display: grid; gap: 12px; }
.admin-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 850; }
.admin-form input { min-height: 46px; padding: 0 13px; }
.admin-topbar {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.admin-summary div {
  padding: 12px;
  border-radius: 16px;
  background: var(--surface);
}
.admin-summary strong { display: block; font-size: 1.3rem; }
.admin-summary span { color: var(--muted); font-size: .78rem; font-weight: 800; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-actions .btn { min-height: 42px; }
.admin-filters {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
}
.admin-filters label { display: grid; gap: 6px; color: var(--muted); font-size: .82rem; font-weight: 850; }
.admin-filters select { min-height: 42px; padding: 0 12px; }
.admin-units { display: grid; gap: 10px; }
.admin-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}
.admin-row.is-libre { border-color: rgba(200, 137, 22, .35); background: var(--free-bg); }
.admin-row.is-ocupado { background: var(--occupied-bg); }
.admin-row label { display: grid; gap: 5px; color: var(--muted); font-size: .78rem; font-weight: 900; }
.admin-row input,
.admin-row select,
.admin-row textarea { min-height: 40px; padding: 8px 10px; }
.admin-row textarea { grid-column: 1 / -1; min-height: 66px; resize: vertical; }
.admin-savebar {
  position: sticky;
  bottom: 12px;
  z-index: 20;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(200, 137, 22, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.admin-note { color: var(--muted); font-size: .83rem; }

@media (min-width: 560px) {
  .hero-actions,
  .location-actions { display: flex; flex-wrap: wrap; max-width: none; }
  .availability-summary { grid-template-columns: repeat(4, 1fr); }
  .availability-toolbar { grid-template-columns: 1fr 190px; align-items: end; }
  .admin-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  :root { --header-h: 74px; }
  .section { padding: 76px 0; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid div { padding: 16px 20px; border-left: 1px solid var(--line); }
  .quick-grid div:first-child { border-left: 0; }
  .intro-grid,
  .contact-grid,
  .faq-grid { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .security-grid,
  .location-grid { grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); align-items: start; }
  .security-photo { position: sticky; top: calc(var(--header-h) + 22px); }
  .security-photo img { height: 430px; }
  .location-photo img { height: 260px; }
  .map-card, .map-card iframe { min-height: 480px; }
  .admin-row { grid-template-columns: 110px 120px 150px 1fr; align-items: end; }
  .admin-row textarea { grid-column: auto; min-height: 40px; }
  .admin-savebar { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 9px 10px;
    font-size: .86rem;
  }
  .nav-menu .nav-whatsapp {
    padding-inline: 14px;
    border: 1px solid rgba(200, 137, 22, .25);
    border-radius: 999px;
  }
  .hero { min-height: 630px; }
  .hero-content { padding: 70px 0; }
  .hero-actions .btn { min-width: 210px; }
  .availability-shell { padding: 22px; }
  .unit-row {
    grid-template-columns: 1fr 120px 120px 150px;
    padding: 11px 14px;
  }
  .mini-btn { min-width: 122px; }
  .gallery-track {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 220px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }
  .gallery-item {
    min-height: auto;
    flex: none;
  }
  .gallery-item img { height: 100%; }
  .gallery-featured { grid-row: span 2; }
}

@media (max-width: 559px) {
  .hero-content {
    width: 100%;
    padding: 42px 22px;
    text-align: center;
  }
  .hero-title-logo,
  .hero p,
  .hero-actions,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }
  .hero p,
  .hero-actions,
  .hero-stats {
    width: 100%;
    max-width: 430px;
  }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .7rem; }
  .hero-stats span { min-height: 66px; font-size: .72rem; }
  .unit-row {
    grid-template-columns: 45px 54px 74px 1fr;
    gap: 6px;
  }
  .mini-btn { padding-inline: 8px; font-size: .73rem; }
  .status-badge { min-width: 68px; font-size: .73rem; }
}
