/* ============================================
   ALTO REAL ESTATE — DESIGN SYSTEM
   Azul Rey #1a3a6b | Dorado #c9a84c | Blanco
   ============================================ */

:root {
  --royal: #1a3a6b;
  --royal-dark: #112750;
  --royal-light: #2a4f8f;
  --gold: #c9a84c;
  --gold-light: #e2c872;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --light-gray: #f2f4f7;
  --mid-gray: #e0e4ec;
  --text: #1a1a2e;
  --text-muted: #5a6070;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.08);
  --shadow-md: 0 6px 24px rgba(26,58,107,0.12);
  --shadow-lg: 0 16px 48px rgba(26,58,107,0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; }

.hidden { display: none !important; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--royal);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.logo { display: flex; align-items: baseline; gap: 0.4rem; cursor: pointer; }
.logo-alto {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-rs {
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.5rem; margin-left: 1rem; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold); border-color: var(--gold); }
.nav-auth { margin-left: auto; display: flex; gap: 0.75rem; align-items: center; }
.nav-user { margin-left: auto; display: flex; gap: 1rem; align-items: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* Buttons */
.btn-outline {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  color: var(--white); background: transparent;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  padding: 0.45rem 1.3rem;
  background: var(--gold); border: none;
  border-radius: var(--radius);
  color: var(--royal); font-weight: 600;
  font-size: 0.85rem; cursor: pointer;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-gold-lg {
  padding: 0.8rem 2.5rem;
  background: var(--gold); border: none;
  border-radius: var(--radius);
  color: var(--royal); font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  margin-top: 0;
  display: inline-flex; align-items: center;
}
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.btn-gold-full {
  width: 100%; padding: 0.8rem;
  background: var(--gold); border: none;
  border-radius: var(--radius);
  color: var(--royal); font-weight: 700;
  font-size: 0.95rem; cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-gold-full:hover { background: var(--gold-light); }

.btn-clear {
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  color: var(--text-muted); font-size: 0.82rem;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-clear:hover { border-color: var(--royal); color: var(--royal); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 580px;
  background: var(--royal-dark);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -10%;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1400&q=90') center/cover no-repeat;
  animation: heroBgZoom 12s ease-out forwards;
  z-index: 1;
}
@keyframes heroBgZoom {
  0%   { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.hero-cols {
  position: absolute; inset: 0;
  display: flex; gap: 10px; padding: 0 10px;
  z-index: 1; pointer-events: none;
}
.hero-col {
  flex: 1; display: flex; flex-direction: column;
  gap: 10px; will-change: transform;
}
.hero-col img {
  width: 100%; height: 200px;
  object-fit: cover; border-radius: 10px;
  flex-shrink: 0; opacity: 0.55;
}
.hero-col-up   { animation: heroScrollUp   var(--dur,20s) linear infinite; }
.hero-col-down { animation: heroScrollDown var(--dur,24s) linear infinite; }
@keyframes heroScrollUp   { 0%{ transform:translateY(0) }    100%{ transform:translateY(-50%) } }
@keyframes heroScrollDown { 0%{ transform:translateY(-50%) } 100%{ transform:translateY(0) } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(105deg,
    rgba(17,39,80,0.95) 0%,
    rgba(17,39,80,0.75) 50%,
    rgba(17,39,80,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 4rem 1.5rem;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px;
  background: var(--gold);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 700; line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 1rem;
  margin-top: 0; margin-bottom: 1.75rem; line-height: 1.7;
  max-width: 480px;
}
.hero-btns {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.btn-hero-outline {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  color: var(--white); font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.3px;
  display: inline-flex; align-items: center;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { display: flex; flex-direction: column; gap: 3px; }
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-l {
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge {
  position: absolute; bottom: 2rem; right: 2rem;
  background: rgba(17,39,80,0.88);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: var(--radius-lg);
  z-index: 4; max-width: 280px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.hero-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.hero-badge-img {
  width: 100%; height: 130px;
  object-fit: cover; display: block;
}
.hero-badge-body { padding: 0.75rem 1rem; }
.hero-badge-label {
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hero-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--white);
  margin-bottom: 0.2rem; line-height: 1.3;
}
.hero-badge-sub {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.hero-badge-cta {
  display: inline-block; margin-top: 0.6rem;
  font-size: 0.75rem; color: var(--gold);
  font-weight: 600; letter-spacing: 0.5px;
}

/* ============ STATS ============ */
.section-stats {
  background: var(--royal);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 3px solid var(--gold);
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 2.5rem 1.5rem;
}
.stat { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ============ SECTIONS ============ */
.section-featured, .section-why { padding: 5rem 0; }
.section-featured { background: var(--off-white); }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 2rem;
}
.section-header h2 { font-size: 2rem; color: var(--royal); }
.see-all { color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; }
.see-all:hover { color: var(--royal); }

.section-why { background: var(--white); }
.section-why h2 { font-size: 2rem; color: var(--royal); text-align: center; margin-bottom: 2.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.why-card {
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.why-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.why-card h3 { color: var(--royal); margin-bottom: 0.75rem; font-size: 1.1rem; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ============ PROPERTY CARDS ============ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.prop-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.prop-card:hover .prop-img-wrap::after { opacity: 1; }

.prop-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.prop-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.05); }
.prop-img-wrap::after {
  content: 'Ver detalles →';
  position: absolute; inset: 0;
  background: rgba(26,58,107,0.55);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.95rem;
  opacity: 0; transition: opacity 0.25s;
}

.prop-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--royal);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

.prop-body { padding: 1.1rem 1.25rem 1.25rem; }

.prop-price {
  font-size: 1.3rem; font-weight: 700;
  color: var(--royal);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.3rem;
}
.prop-price span { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.prop-title {
  font-size: 0.95rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.25rem;
}

.prop-location {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.prop-location::before { content: '📍 '; }

.prop-tags {
  display: flex; gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--mid-gray);
}
.prop-tag {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ============ PAGE BANNER ============ */
.page-banner {
  background: linear-gradient(135deg, var(--royal-dark), var(--royal));
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 { color: var(--white); font-size: 2.5rem; }
.page-banner p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* ============ SEARCH & FILTERS ============ */
.search-container { padding-top: 2.5rem; padding-bottom: 4rem; }
.search-box { margin-bottom: 1.25rem; }
.search-box input {
  width: 100%; padding: 1rem 1.5rem;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--white);
}
.search-box input:focus { outline: none; border-color: var(--royal); }

.filters-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.filter-group { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; min-width: 130px; }
.filter-group label { font-size: 0.75rem; font-weight: 600; color: var(--royal); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select,
.filter-group input {
  padding: 0.55rem 0.85rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text);
}
.filter-group select:focus,
.filter-group input:focus { outline: none; border-color: var(--royal); }

.results-count { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============ DETAIL PAGE ============ */
.detail-container { padding: 2.5rem 1.5rem 5rem; max-width: 1100px; }

.detail-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--white);
  background: var(--royal);
  border: 1.5px solid var(--gold);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  text-decoration: none;
}
.detail-back:hover {
  background: var(--gold);
  color: var(--royal);
  transform: translateX(-3px);
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  height: 420px;
}
.detail-img-main { overflow: hidden; }
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-img-side { display: grid; grid-template-rows: 1fr 1fr; gap: 0.75rem; }
.detail-img-side img { width: 100%; height: 100%; object-fit: cover; }

.detail-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.detail-title-block h1 { font-size: 2rem; color: var(--royal); margin-bottom: 0.25rem; }
.detail-location { color: var(--text-muted); font-size: 0.95rem; }
.detail-location::before { content: '📍 '; }
.detail-price-block { text-align: right; }
.detail-price { font-size: 2.2rem; font-weight: 700; color: var(--royal); font-family: 'Playfair Display', serif; }
.detail-price-label { font-size: 0.8rem; color: var(--text-muted); }

.detail-specs {
  display: flex; flex-wrap: wrap; gap: 1rem;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 2rem;
}
.spec-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; padding-right: 1.5rem; border-right: 1px solid var(--mid-gray); }
.spec-item:last-child { border-right: none; }
.spec-icon { font-size: 1.2rem; }
.spec-val { font-weight: 600; color: var(--royal); }
.spec-lbl { color: var(--text-muted); font-size: 0.78rem; }

.detail-desc-section { margin-bottom: 3rem; }
.detail-desc-section h3 { font-size: 1.3rem; color: var(--royal); margin-bottom: 0.75rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; display: inline-block; }
.detail-desc-section p { color: var(--text); line-height: 1.8; font-size: 0.95rem; }

.detail-advisors-section { margin-bottom: 3rem; }
.detail-advisors-section h3 { font-size: 1.3rem; color: var(--royal); margin-bottom: 1.25rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; display: inline-block; }

.advisors-grid { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.advisor-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--off-white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  flex: 1; min-width: 240px;
}
.advisor-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.advisor-info h4 { font-size: 0.95rem; color: var(--royal); margin-bottom: 0.2rem; }
.advisor-info p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.advisor-wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #25D366; color: white;
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.advisor-wa:hover { background: #1aa050; }

.nearby-section { margin-top: 3rem; }
.nearby-section h3 { font-size: 1.5rem; color: var(--royal); margin-bottom: 0.25rem; }
.nearby-section p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.nearby-carousel {
  position: relative;
}
.nearby-scroll {
  display: flex; gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.nearby-scroll::-webkit-scrollbar { display: none; }
.nearby-scroll .prop-card {
  flex: 0 0 300px;
  min-height: 380px;
}
.nearby-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: var(--royal);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}
.nearby-arrow:hover { background: var(--gold); color: var(--royal); }
.nearby-arrow-left  { left: -20px; }
.nearby-arrow-right { right: -20px; }

/* ============ AUTH ============ */
.auth-wrapper {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--royal-dark) 0%, var(--royal-light) 100%);
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-card h2 { font-size: 1.6rem; color: var(--royal); margin-bottom: 0.3rem; }
.auth-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--royal); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.9rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--royal); }
.auth-switch { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--text-muted); }
.auth-switch a { color: var(--royal); font-weight: 600; }

.error-msg { background: #fef2f2; border-left: 3px solid #e53e3e; color: #c53030; padding: 0.75rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.85rem; }
.success-msg { background: #f0fff4; border-left: 3px solid #38a169; color: #276749; padding: 0.75rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.85rem; }

/* ============ ADMIN ============ */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 68px); }
.admin-sidebar {
  background: var(--royal);
  border-right: 2px solid var(--gold);
  padding: 2rem 1rem;
}
.sidebar-logo { text-align: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.3); }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-link {
  display: block; padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s;
}
.sidebar-link:hover, .sidebar-link.active { background: rgba(201,168,76,0.15); color: var(--gold); }

.admin-main { padding: 2.5rem; background: var(--off-white); }
.admin-section { }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.admin-header h2 { font-size: 1.6rem; color: var(--royal); }

.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
}
.admin-table thead { background: var(--royal); }
.admin-table th { color: var(--gold); font-weight: 600; padding: 0.85rem 1rem; text-align: left; letter-spacing: 0.5px; font-size: 0.78rem; text-transform: uppercase; }
.admin-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--mid-gray); color: var(--text); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }

.action-btn {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 500;
  transition: all 0.15s;
}
.action-edit { background: rgba(26,58,107,0.1); color: var(--royal); }
.action-edit:hover { background: var(--royal); color: var(--white); }
.action-del { background: rgba(229,62,62,0.1); color: #c53030; margin-left: 0.4rem; }
.action-del:hover { background: #e53e3e; color: var(--white); }

/* Prop Form */
.prop-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.prop-form h2 { color: var(--royal); margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 0.75rem; }
.full-width { grid-column: 1 / -1; }
.form-group textarea { resize: vertical; }
.form-actions { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 1.5rem; }

/* Advisors Admin */
.advisors-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.advisor-admin-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.advisor-admin-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.advisor-admin-card h4 { color: var(--royal); font-size: 1rem; margin-bottom: 0.1rem; }
.advisor-admin-card p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

/* Advisors Public */
.advisors-public-grid { display: flex; flex-direction: column; gap: 1rem; }

.prop-badge-listing {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.prop-badge-listing.venta { background: var(--gold); color: var(--royal); }
.prop-badge-listing.renta { background: #1a6b3a; color: #fff; }

/* ============ MAP ============ */
.detail-map-section { margin-bottom: 2.5rem; }
.detail-map-section h3 { font-size: 1.3rem; color: var(--royal); margin-bottom: 0.75rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.5rem; display: inline-block; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--mid-gray); box-shadow: var(--shadow-sm); }
.map-note { margin-top: 0.5rem; font-size: 0.82rem; color: var(--text-muted); }

/* ============ FIELD HINT ============ */
.field-hint { display: block; margin-top: 0.35rem; font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }
.field-hint strong { color: var(--royal); }

/* ============ USERS TABLE ============ */
.role-badge { font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.role-badge.admin { background: rgba(201,168,76,0.2); color: var(--gold-dark); }
.role-badge.client { background: rgba(26,58,107,0.08); color: var(--royal); }
.password-cell { font-family: monospace; font-size: 0.85rem; letter-spacing: 1px; cursor: default; }

.users-filters {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.users-filter-search {
  position: relative; flex: 1; min-width: 220px;
}
.users-search-icon {
  position: absolute; left: 0.85rem; top: 50%;
  transform: translateY(-50%); font-size: 0.9rem;
  pointer-events: none;
}
.users-filter-search input {
  width: 100%; padding: 0.6rem 0.9rem 0.6rem 2.3rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.88rem; font-family: inherit;
  background: var(--white); color: var(--text);
  transition: border-color 0.2s;
}
.users-filter-search input:focus { outline: none; border-color: var(--royal); }
.users-filter-sort {
  display: flex; align-items: center; gap: 0.6rem;
  white-space: nowrap;
}
.users-filter-sort label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--royal); text-transform: uppercase; letter-spacing: 0.5px;
}
.users-filter-sort select {
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.88rem; font-family: inherit;
  background: var(--white); color: var(--text);
  cursor: pointer;
}
.users-filter-sort select:focus { outline: none; border-color: var(--royal); }

/* ============ FOOTER ============ */
.footer {
  background: var(--royal-dark);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-top: 1rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

/* ============ PAGE ============ */
.page { min-height: calc(100vh - 68px); }

/* ============ ADMIN NAV BUTTON ============ */
.btn-admin {
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold); background: transparent;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-admin:hover { background: var(--gold); color: var(--royal); }

/* ============ RESPONSIVE ============ */
/* ============================================================
   MOBILE OPTIMIZATION — 768px and below
   ============================================================ */
/* ============================================================
   MOBILE OPTIMIZATION — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .nav-inner { padding: 0 1rem; gap: 0.5rem; height: 58px; }
  .nav-links { display: none; }
  .nav-auth { gap: 0.4rem; margin-left: auto; }
  .nav-auth .btn-outline { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
  .nav-auth .btn-gold { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
  .nav-user { gap: 0.5rem; font-size: 0.8rem; margin-left: auto; }
  .nav-user #userGreeting { display: none; }
  .logo svg { height: 32px !important; }

  /* ── HERO ── */
  .hero { min-height: 100svh; max-height: 100svh; }
  .hero-bg { inset: 0; }
  .hero-content { padding: 2rem 1.25rem 1.5rem; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 0.6rem; }
  .hero-content h1 { font-size: 2.1rem; line-height: 1.1; margin-bottom: 0.75rem; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 1.25rem; }
  .hero-btns { gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
  .btn-gold-lg { padding: 0.75rem 1.5rem; font-size: 0.88rem; width: 100%; justify-content: center; }
  .btn-hero-outline { padding: 0.75rem 1.5rem; font-size: 0.88rem; width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; padding-top: 1.25rem; flex-wrap: wrap; }
  .hero-stat-n { font-size: 1.4rem; }
  .hero-stat-l { font-size: 0.62rem; }
  .hero-badge { display: none !important; } /* hide badge on mobile — clutters small screens */

  /* ── STATS BAR ── */
  .stats-grid { grid-template-columns: repeat(2,1fr); padding: 1.25rem 1rem; gap: 0; }
  .stat { padding: 0.75rem 0.5rem; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.68rem; }

  /* ── HOME SECTIONS ── */
  .section-featured, .section-why { padding: 2.5rem 0; }
  .section-header { flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
  .section-header h2 { font-size: 1.4rem; }
  .why-grid { grid-template-columns: 1fr; gap: 0.85rem; padding: 0 1rem; }
  .section-why h2 { font-size: 1.4rem; padding: 0 1rem; }
  .why-card { padding: 1.25rem 1rem; }

  /* ── PROPERTY CARDS ── */
  .properties-grid { grid-template-columns: 1fr; gap: 1rem; }
  .prop-img-wrap { height: 220px; }
  .prop-body { padding: 0.9rem 1rem 1rem; }
  .prop-price { font-size: 1.15rem; }
  .prop-tags { flex-wrap: wrap; gap: 0.5rem; }
  .properties-list { display: grid; grid-template-columns: 1fr; }
  .properties-list .prop-card { display: block; }
  .view-toggle { display: none; }

  /* ── SEARCH & FILTERS ── */
  .search-container { padding-top: 1.25rem; padding-bottom: 2rem; }
  .search-box input { padding: 0.85rem 1rem; font-size: 0.9rem; }
  .filters-bar {
    flex-direction: column; padding: 0.85rem 1rem; gap: 0.65rem;
    border-radius: var(--radius);
  }
  .filter-group { min-width: unset; width: 100%; }
  .filter-group label { font-size: 0.7rem; }
  .filter-group select, .filter-group input { padding: 0.6rem 0.75rem; font-size: 0.85rem; }
  .results-bar { flex-direction: row; justify-content: space-between; align-items: center; }
  .results-count { font-size: 0.8rem; }
  .btn-clear { width: 100%; text-align: center; padding: 0.55rem; }

  /* ── PAGE BANNER ── */
  .page-banner { padding: 1.75rem 1rem 1.5rem; }
  .page-banner h1 { font-size: 1.6rem; }
  .page-banner p { font-size: 0.82rem; }
  .btn-back-home { font-size: 0.75rem; padding: 0.35rem 0.85rem; }

  /* ── PROPERTY DETAIL ── */
  .detail-container { padding: 1rem 1rem 3rem; max-width: 100%; }
  .detail-nav-btns { gap: 0.5rem; margin-bottom: 1rem; }
  .detail-back { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  .detail-back-home { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
  .detail-gallery-main { height: 260px; }
  .detail-gallery-thumb { flex: 0 0 80px; height: 60px; }
  .detail-header { flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
  .detail-title-block h1 { font-size: 1.4rem; }
  .detail-price { font-size: 1.5rem; }
  .detail-price-block { text-align: left; }
  .detail-action-btns { justify-content: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
  .btn-visit, .btn-share { font-size: 0.78rem; padding: 0.5rem 0.85rem; }
  .detail-specs { gap: 0.6rem; padding: 0.85rem; flex-wrap: wrap; }
  .spec-item { padding-right: 0.6rem; font-size: 0.78rem; }
  .spec-val { font-size: 0.88rem; }
  .detail-desc-section p { font-size: 0.88rem; }
  .advisors-grid { flex-direction: column; }
  .advisor-card { min-width: unset; padding: 0.9rem 1rem; }
  .nearby-section h3 { font-size: 1.2rem; }
  .nearby-scroll .prop-card { flex: 0 0 260px; }
  .nearby-arrow { width: 34px; height: 34px; font-size: 1rem; }
  .nearby-arrow-left { left: -10px; }
  .nearby-arrow-right { right: -10px; }

  /* ── ADMIN PANEL ── */
  .admin-layout { grid-template-columns: 1fr; min-height: auto; padding-bottom: 70px; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 1rem; }
  .admin-header { flex-direction: row; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .admin-header h2 { font-size: 1.1rem; }
  .admin-header .btn-gold { font-size: 0.78rem; padding: 0.4rem 0.85rem; white-space: nowrap; }
  .admin-stats-bar { gap: 0.4rem; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .stat-card { min-width: 80px; flex: 0 0 auto; padding: 0.6rem 0.75rem; }
  .stat-card-num { font-size: 1.15rem; }
  .stat-card-lbl { font-size: 0.65rem; }
  .admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { font-size: 0.75rem; min-width: 500px; }
  .admin-table th, .admin-table td { padding: 0.6rem 0.65rem; }
  .prop-form { padding: 1rem; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .form-row .form-group:only-child { grid-column: 1 / -1; }
  .form-actions { flex-direction: row; gap: 0.5rem; }
  .form-actions button { flex: 1; }
  .advisors-admin-grid { grid-template-columns: 1fr; }
  .upload-zone-inner { padding: 1rem; }
  .upload-icon { font-size: 1.5rem; }
  .extra-images-preview { gap: 0.5rem; }
  .extra-thumb { width: 75px; height: 60px; }

  /* ── MODALS ── */
  .modal-overlay { padding: 0.75rem; align-items: flex-end; }
  .modal-card {
    padding: 1.5rem 1.25rem;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%; max-width: 100%;
  }
  .auth-modal-card { padding: 1.5rem 1.25rem; }

  /* ── CONTACT ── */
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1rem 3rem; }
  .contact-form-box { padding: 1.25rem; }

  /* ── NOSOTROS ── */
  .nosotros-grid { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  .nosotros-img { height: 240px; }
  .nosotros-img-badge { bottom: -12px; right: 10px; padding: 0.85rem 1.1rem; }
  .nosotros-badge-num { font-size: 1.8rem; }
  .nosotros-text h2 { font-size: 1.4rem; }
  .nosotros-stats-grid { grid-template-columns: repeat(2,1fr); }
  .nosotros-stat-num { font-size: 1.8rem; }
  .nosotros-section { padding: 3rem 0 2rem; }
  .nosotros-team-section { padding: 2.5rem 0; }

  /* ── FOOTER ── */
  .footer { padding: 1.75rem 1rem; }
  .footer-links { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

  /* ── 404 ── */
  .page-404-content h1 { font-size: 4.5rem; }
  .page-404-content h2 { font-size: 1.3rem; }
  .page-404-content p { font-size: 0.88rem; }

  /* ── LIGHTBOX ── */
  .lightbox-prev, .lightbox-next { padding: 0.4rem 0.75rem; font-size: 2rem; }
  .lightbox-inner img { max-height: 75vh; }
}

/* ── Extra small phones (iPhone SE, etc) ── */
@media (max-width: 390px) {
  .hero-content h1 { font-size: 1.75rem; }
  .nav-auth .btn-outline { display: none; }
  .detail-title-block h1 { font-size: 1.25rem; }
  .detail-price { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .prop-img-wrap { height: 195px; }
  .modal-overlay { padding: 0; }
  .modal-card { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ── MOBILE ADMIN NAV BAR (bottom) ── */
@media (max-width: 768px) {
  .mobile-admin-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--royal);
    border-top: 2px solid var(--gold);
    z-index: 200;
    justify-content: space-around;
    padding: 0.4rem 0 0.6rem;
  }
  .mobile-admin-nav a {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    color: rgba(255,255,255,0.6);
    font-size: 0.6rem; font-weight: 500;
    text-decoration: none; padding: 0.2rem 0.5rem;
    transition: color 0.2s; cursor: pointer;
    flex: 1; text-align: center;
  }
  .mobile-admin-nav a.active,
  .mobile-admin-nav a:hover { color: var(--gold); }
  .mobile-admin-nav .nav-icon { font-size: 1.25rem; display: block; }
}

@media (min-width: 769px) {
  .mobile-admin-nav { display: none; }
}


/* ============ 404 PAGE ============ */
.page-404-wrap { min-height: calc(100vh - 68px); display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, var(--royal-dark), var(--royal)); padding: 2rem; }
.page-404-content { text-align:center; color: var(--white); }
.page-404-icon { font-size: 5rem; margin-bottom: 1rem; }
.page-404-content h1 { font-size: 7rem; color: var(--gold); line-height:1; margin-bottom: 0.25rem; }
.page-404-content h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.page-404-content p { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.btn-outline-dark { display:inline-block; margin-top:0.5rem; padding: 0.6rem 1.5rem; border: 1.5px solid rgba(255,255,255,0.4); border-radius: var(--radius); color: rgba(255,255,255,0.75); background: transparent; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ============ CONTACT LAYOUT ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 1.5rem 5rem; max-width: 1100px; }
.contact-layout h2 { font-size: 1.6rem; color: var(--royal); margin-bottom: 0.4rem; }
.contact-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.contact-form-box { background: var(--off-white); border: 1px solid var(--mid-gray); border-top: 3px solid var(--gold); border-radius: var(--radius-lg); padding: 2rem; }
@media (max-width:768px) { .contact-layout { grid-template-columns: 1fr; gap: 2rem; } }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.lightbox.hidden { display: none !important; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 1.4rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: var(--gold); color: var(--royal); }
.lightbox-prev, .lightbox-next { background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 2.5rem; padding: 0.5rem 1rem; cursor: pointer; border-radius: var(--radius); transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--royal); }
.lightbox-counter { text-align: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 0.75rem; }
.gallery-count { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; }

/* ============ SOLD STAMP ============ */
.prop-sold { opacity: 0.85; }
.sold-stamp { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-20deg); background: rgba(180,0,0,0.88); color: #fff; font-size: 1.1rem; font-weight: 800; letter-spacing: 3px; padding: 0.4rem 1.5rem; border-radius: 4px; border: 3px solid rgba(255,255,255,0.5); white-space: nowrap; z-index: 5; }
.featured-ribbon { position: absolute; bottom: 10px; left: 0; background: var(--gold); color: var(--royal); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; letter-spacing: 1px; }
.featured-tag { display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold-dark); font-size: 0.78rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 0.4rem; border: 1px solid var(--gold); }
.detail-sold-banner { background: #fef2f2; border-left: 4px solid #c53030; color: #c53030; padding: 0.9rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 500; font-size: 0.92rem; }

/* ============ VISIT / SHARE BUTTONS ============ */
.detail-action-btns { display: flex; gap: 0.75rem; margin-top: 0.85rem; flex-wrap: wrap; justify-content: flex-end; }
.btn-visit { padding: 0.6rem 1.2rem; background: var(--royal); color: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-visit:hover { background: var(--gold); color: var(--royal); }
.btn-share { padding: 0.6rem 1.2rem; background: transparent; color: var(--royal); border: 1.5px solid var(--mid-gray); border-radius: var(--radius); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.btn-share:hover { border-color: var(--royal); }

/* ============ MODAL ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.hidden { display: none !important; }
.modal-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; width: 100%; max-width: 460px; position: relative; box-shadow: var(--shadow-lg); border-top: 3px solid var(--gold); }
.modal-card h3 { font-size: 1.4rem; color: var(--royal); margin-bottom: 0.25rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: var(--light-gray); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--mid-gray); }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--royal); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 30px; font-size: 0.88rem; font-weight: 500; border: 1px solid var(--gold); opacity: 0; transition: all 0.3s; z-index: 999; white-space: nowrap; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ ADMIN STATS BAR ============ */
.admin-stats-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.stat-card { background: var(--white); border: 1px solid var(--mid-gray); border-radius: var(--radius-lg); padding: 0.9rem 1.2rem; display: flex; flex-direction: column; align-items: center; min-width: 100px; flex: 1; box-shadow: var(--shadow-sm); }
.stat-card-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--royal); line-height: 1.1; }
.stat-card-lbl { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 0.2rem; }

/* ============ VIEW TOGGLE ============ */
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.view-toggle { display: flex; gap: 0.25rem; }
.view-btn { background: var(--white); border: 1.5px solid var(--mid-gray); border-radius: var(--radius); width: 36px; height: 36px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.view-btn.active { background: var(--royal); border-color: var(--royal); color: var(--white); }

/* ============ LIST VIEW ============ */
.properties-list { display: flex; flex-direction: column; gap: 1rem; }
.properties-list .prop-card { display: grid; grid-template-columns: 240px 1fr; border-radius: var(--radius-lg); }
.properties-list .prop-img-wrap { height: 170px; }
.properties-list .prop-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }

/* ============ TOGGLE SWITCH ============ */
.toggle-switch { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; margin-top: 0.4rem; }
.toggle-switch input { display: none; }
.toggle-slider { width: 42px; height: 24px; background: var(--mid-gray); border-radius: 12px; position: relative; transition: background 0.2s; flex-shrink: 0; }
.toggle-slider::after { content:''; position:absolute; width:18px; height:18px; background:#fff; border-radius:50%; top:3px; left:3px; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::after { transform: translateX(18px); }
.toggle-label { font-size: 0.85rem; color: var(--text); }

/* ============ FICHA BUTTONS ============ */
.btn-ficha {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: var(--royal); color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-ficha:hover { background: var(--gold); color: var(--royal); }
.btn-ficha-plain {
  background: transparent; color: var(--royal);
  border-color: var(--mid-gray);
}
.btn-ficha-plain:hover { background: var(--light-gray); border-color: var(--royal); color: var(--royal); }

/* ============ SPECIALIST ADVISOR ============ */
.advisor-specialist {
  border: 2px solid var(--gold) !important;
  background: linear-gradient(135deg, #fffdf5 0%, var(--off-white) 100%) !important;
  position: relative;
}
.specialist-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--royal);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.team-advisors-section {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--mid-gray);
}
.team-advisors-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-style: italic;
}
.advisors-grid-small .advisor-card {
  padding: 0.85rem 1.1rem;
}
.advisors-grid-small .advisor-photo {
  width: 42px;
  height: 42px;
}
.advisors-grid-small .advisor-info h4 {
  font-size: 0.88rem;
}
.advisors-grid-small .advisor-info p {
  font-size: 0.72rem;
}

/* ============ INTRO SPLASH ============ */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: all;
}

/* House background image */
.intro-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=90');
  background-size: cover;
  background-position: center;
  animation: introBgZoom 3.8s ease-out forwards;
}

@keyframes introBgZoom {
  0%   { transform: scale(1.12); opacity: 0; }
  15%  { opacity: 1; }
  70%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1.04); opacity: 1; }
}

/* Semi-dark overlay so house shows beautifully */
.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 48, 0.35);
  animation: introOverlayDarken 3.8s ease forwards;
}

@keyframes introOverlayDarken {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Curtains */
.intro-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #112750;
  will-change: transform;
}

.intro-curtain-left {
  left: 0;
  transform: translateX(-101%);
  animation: curtainSlideLeft 1s cubic-bezier(0.77,0,0.175,1) 3.4s forwards;
}

.intro-curtain-right {
  right: 0;
  transform: translateX(101%);
  animation: curtainSlideRight 1s cubic-bezier(0.77,0,0.175,1) 3.4s forwards;
}

@keyframes curtainSlideLeft {
  0%   { transform: translateX(-101%); }
  100% { transform: translateX(0); }
}
@keyframes curtainSlideRight {
  0%   { transform: translateX(101%); }
  100% { transform: translateX(0); }
}

/* Logo wrapper */
.intro-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  animation: introLogoFadeIn 0.9s ease 3.0s forwards;
  z-index: 10;
}

@keyframes introLogoFadeIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.intro-logo-line {
  width: 160px;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
  animation: introLineExpand 0.7s ease 3.15s both;
  transform: scaleX(0);
}

@keyframes introLineExpand {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

.intro-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.2em;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(201,168,76,0.3);
  animation: introNameGlow 1.2s ease 3.1s both;
  opacity: 0;
}

@keyframes introNameGlow {
  0%   { opacity: 0; letter-spacing: 0.4em; }
  100% { opacity: 1; letter-spacing: 0.2em; }
}

.intro-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: -0.3rem;
  animation: introSubFade 0.8s ease 3.3s both;
  opacity: 0;
}

@keyframes introSubFade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.intro-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  color: rgba(201,168,76,0.7);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  animation: introSubFade 0.8s ease 3.5s both;
  opacity: 0;
}

/* Skip button */
.intro-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s;
  animation: introSubFade 0.5s ease 1s both;
  opacity: 0;
}
.intro-skip:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

/* Fade out entire splash */
.intro-splash.hiding {
  animation: introSplashOut 0.7s ease forwards;
  pointer-events: none;
}

@keyframes introSplashOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ============ LOGO SVG OVERRIDES ============ */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo svg { display: block; }
.intro-logo-wrap svg {
  display: block;
  margin: 0 auto;
  animation: introNameGlow 1s ease 3.1s both;
  opacity: 0;
}
.auth-logo svg { display: block; margin: 0 auto; }
.footer-logo svg { display: block; margin: 0 auto; }
.sidebar-logo svg { display: block; margin: 0 auto; }
.intro-logo-wrap svg { display: block; margin: 0 auto; }

/* ============ INTRO DRAW ANIMATION ============ */
.intro-draw-svg {
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 auto;
  opacity: 0;
  animation: introSvgAppear 0.01s ease 0.4s forwards;
}

@keyframes introSvgAppear {
  to { opacity: 1; }
}

/* All lines start invisible (drawn by dashoffset) */
.intro-draw-svg .dl {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

/* Draw order: roof left → roof right → chimney → pillars center out */
.intro-draw-svg .a1 { animation: drawLine 0.55s ease-out 0.45s forwards; }
.intro-draw-svg .a2 { animation: drawLine 0.55s ease-out 0.85s forwards; }
.intro-draw-svg .a3 { animation: drawLine 0.32s ease-out 1.25s forwards; }
.intro-draw-svg .a4 { animation: drawLine 0.42s ease-out 1.45s forwards; }
.intro-draw-svg .a5 { animation: drawLine 0.60s ease-out 1.30s forwards; }
.intro-draw-svg .a6 { animation: drawLine 0.42s ease-out 1.72s forwards; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* Text block fades in after drawing finishes */
.intro-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: introSubFade 0.8s ease 2.3s forwards;
}

.intro-brand-alto {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.12em;
  line-height: 1;
}

.intro-brand-br {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
}

/* ============ AUTH MODAL ============ */
.auth-modal-card {
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 3px solid var(--gold);
}
.auth-modal-card h2 { margin-bottom: 0.25rem; }

/* ============ CLOUDINARY UPLOAD ZONES ============ */
.upload-zone {
  border: 2px dashed var(--mid-gray);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.upload-zone-inner {
  padding: 1.5rem;
  text-align: center;
  transition: opacity 0.2s;
}
.upload-zone-multi .upload-zone-inner { padding: 1rem; }
.upload-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.upload-zone-inner p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.upload-zone-inner small { font-size: 0.75rem; color: var(--text-muted); opacity: 0.7; }
.upload-zone-inner strong { color: var(--royal); }

.upload-progress {
  margin-top: 0.5rem;
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  height: 6px;
  position: relative;
}
.upload-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 20px;
  transition: width 0.3s;
  width: 0%;
}
.upload-progress span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

.extra-images-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.extra-thumb {
  position: relative;
  width: 90px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--mid-gray);
}
.extra-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-thumb button {
  position: absolute;
  top: 3px; right: 3px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.extra-thumb button:hover { background: #e53e3e; }

/* ============ BACK TO HOME BUTTON ============ */
.btn-back-home {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
  cursor: pointer; margin-bottom: 0.75rem;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-back-home:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ NOSOTROS PAGE ============ */
.nosotros-section { padding: 5rem 0; background: var(--white); }
.nosotros-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.nosotros-img-wrap { position: relative; }
.nosotros-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 480px;
  box-shadow: var(--shadow-lg);
}
.nosotros-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--royal);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  text-align: center;
}
.nosotros-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.nosotros-badge-lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
  letter-spacing: 1px; text-transform: uppercase;
  margin-top: 4px; display: block;
}
.nosotros-eyebrow {
  font-size: 0.75rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 0.75rem;
}
.nosotros-text h2 {
  font-size: 2rem; color: var(--royal);
  line-height: 1.25; margin-bottom: 1.25rem;
}
.nosotros-body {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 1rem;
}
.nosotros-valores { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.nosotros-valor {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1rem;
}
.nosotros-valor-icon { font-size: 1.4rem; flex-shrink: 0; }
.nosotros-valor h4 { color: var(--royal); font-size: 0.95rem; margin-bottom: 0.2rem; }
.nosotros-valor p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

.nosotros-stats-section {
  background: var(--royal);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 3rem 0;
}
.nosotros-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem; text-align: center;
}
.nosotros-stat { padding: 1rem; }
.nosotros-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold);
}
.nosotros-stat-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px; margin-top: 4px; display: block;
}

.nosotros-team-section { padding: 5rem 0; background: var(--off-white); }
.nosotros-team-section h2 { font-size: 2rem; color: var(--royal); text-align: center; }
.nosotros-team-sub { color: var(--text-muted); text-align: center; margin-bottom: 2.5rem; }

@media (max-width: 768px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-img { height: 280px; }
  .nosotros-img-badge { bottom: -15px; right: 10px; }
  .nosotros-stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============ DETAIL NAV BUTTONS FIX ============ */
.detail-nav-btns {
  display: flex; gap: 0.75rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.detail-back-home {
  background: var(--off-white) !important;
  border-color: var(--mid-gray) !important;
  color: var(--royal) !important;
}
.detail-back-home:hover {
  background: var(--light-gray) !important;
  border-color: var(--royal) !important;
}

/* ============ DETAIL GALLERY NEW ============ */
.detail-gallery-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--light-gray);
}
.detail-gallery-main {
  position: relative;
  height: 420px;
  cursor: zoom-in;
  overflow: hidden;
}
.detail-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.detail-gallery-main:hover img { transform: scale(1.02); }

.detail-gallery-strip {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--light-gray);
  overflow-x: auto;
  scrollbar-width: none;
}
.detail-gallery-strip::-webkit-scrollbar { display: none; }
.detail-gallery-thumb {
  position: relative;
  flex: 0 0 120px;
  height: 80px;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
}
.detail-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.detail-gallery-thumb:hover img { transform: scale(1.08); }
.gallery-more-overlay {
  position: absolute; inset: 0;
  background: rgba(17,39,80,0.7);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700;
}

@media (max-width: 768px) {
  .detail-gallery-main { height: 260px; }
  .detail-gallery-thumb { flex: 0 0 90px; height: 60px; }
}

/* ============ NOSOTROS EDIT BUTTON ============ */
.nosotros-edit-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(17,39,80,0.88);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}
.nosotros-edit-btn:hover { background: var(--gold); color: var(--royal); }

/* ============ NOSOTROS TEXT EDIT BUTTON ============ */
.btn-nosotros-edit {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.5rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.btn-nosotros-edit:hover { background: var(--gold); color: var(--royal); }

/* ============ ADMIN FILTERS BAR ============ */
.admin-filters-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.admin-filter-group {
  display: flex; flex-direction: column; gap: 0.25rem;
  flex: 1; min-width: 120px;
}
.admin-filter-group label {
  font-size: 0.72rem; font-weight: 600;
  color: var(--royal); text-transform: uppercase; letter-spacing: 0.5px;
}
.admin-filter-group select,
.admin-filter-group input {
  padding: 0.45rem 0.75rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: 0.82rem; font-family: inherit;
  background: var(--white); color: var(--text);
}
.admin-filter-group select:focus,
.admin-filter-group input:focus { outline: none; border-color: var(--royal); }

/* Clickable table rows */
.admin-table tbody tr { transition: background 0.15s; }
.admin-table tbody tr:hover td { background: #eef2f8; cursor: pointer; }

/* ============ HAMBURGER & MOBILE MENU ============ */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; margin-left: 0.25rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px; transition: all 0.25s;
}
.hamburger:hover span { background: var(--gold); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-auth .btn-outline { display: none; }
  .nav-auth .btn-gold { font-size: 0.75rem; padding: 0.38rem 0.75rem; }
}

.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 280px; height: 100%;
  background: var(--royal);
  border-left: 2px solid var(--gold);
  z-index: 999;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: transparent; border: none;
  color: rgba(255,255,255,0.6); font-size: 1.3rem;
  cursor: pointer; margin-bottom: 2rem;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }
.mobile-menu-nav {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-menu-nav a {
  display: block; padding: 1rem 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-nav a:hover { background: rgba(201,168,76,0.15); color: var(--gold); }
.mobile-menu-nav a:last-child { border-bottom: none; }
