/*
 * Scipione - Negocios Inmobiliarios
 */

:root {
  --bg: #0e0d0b;
  --bg-2: #16140f;
  --bg-3: #1f1c16;
  --ink: #f5efdf;
  --ink-muted: #a8a193;
  --ink-dim: #6e685d;
  --gold: #c9a35c;
  --gold-light: #e2c388;
  --gold-deep: #8a6d36;
  --line: rgba(201, 163, 92, 0.18);
  --line-strong: rgba(201, 163, 92, 0.4);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Geist', -apple-system, sans-serif;
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* Flash */
.flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 0.5px solid var(--line-strong);
}
.flash-notice { background: var(--bg-2); color: var(--gold-light); }
.flash-alert  { background: var(--bg-2); color: #e07b7b; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(180deg, rgba(14,13,11,0.3) 0%, transparent 100%);
}
.nav.scrolled {
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  border-bottom: 0.5px solid var(--line);
}
.nav.solid {
  background: rgba(14, 13, 11, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  border-bottom: 0.5px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px;
  border: 0.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 0.5px solid var(--gold-deep);
}
.brand-mark span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-menu {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-menu a:hover { color: var(--gold-light); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(10,9,7,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 100px 40px 60px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu-list {
  list-style: none;
  text-align: center;
  width: 100%;
}
.mobile-menu-list li {
  border-bottom: 0.5px solid var(--line);
}
.mobile-menu-list li:first-child {
  border-top: 0.5px solid var(--line);
}
.mobile-menu-list a {
  display: block;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-menu-list a:hover { color: var(--gold-light); }
.mobile-menu-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-menu-cta:hover { background: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0.45) 0%, rgba(14, 13, 11, 0.7) 70%, var(--bg) 100%),
    linear-gradient(135deg, rgba(42, 36, 25, 0.4) 0%, rgba(68, 56, 37, 0.35) 50%, rgba(26, 22, 18, 0.5) 100%),
    url("/images/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(201, 163, 92, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 163, 92, 0.08) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.brand-logo {
  width: 250px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero-eyebrow span {
  display: inline-block;
  padding: 0 18px;
  position: relative;
}
.hero-eyebrow span::before,
.hero-eyebrow span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 0.5px;
  background: var(--gold);
}
.hero-eyebrow span::before { right: 100%; }
.hero-eyebrow span::after { left: 100%; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

/* Search box */
.search-box {
  background: rgba(22, 20, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid var(--line-strong);
  padding: 8px;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.search-tabs {
  display: flex;
  padding: 0 16px;
  gap: 4px;
  border-right: 0.5px solid var(--line);
}
.search-tab {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: transparent;
  border: none;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}
.search-tab.active { color: var(--gold); }
.search-tab.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold);
}
.search-tab:hover { color: var(--ink); }
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 0.5px solid var(--line);
}
.search-field:last-of-type { border-right: none; }
.search-field input,
.search-field select {
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 18px 0;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.search-field input::placeholder { color: var(--ink-dim); }
.search-field select option { background: var(--bg-2); color: var(--ink); }
.search-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 20px 36px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.search-btn:hover { background: var(--gold-light); }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 140px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.7;
}

/* ===== PROPERTY CARDS ===== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.property-card {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.property-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2419 0%, #1a1612 100%);
}
.property-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.property-image .placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2419 0%, #3a2f1f 100%);
}
.property-card:hover .property-image img { transform: scale(1.05); }
.property-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,13,11,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}
.property-placeholder-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--gold-deep);
  opacity: 0.5;
  z-index: 1;
}
.property-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--bg);
  color: var(--gold);
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  border: 0.5px solid var(--line-strong);
  z-index: 2;
}
.property-body { padding: 28px; }
.property-location {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-location::before {
  content: '';
  width: 16px;
  height: 0.5px;
  background: var(--gold);
}
.property-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}
.property-price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.property-price small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-right: 6px;
}
.property-meta {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
  margin-bottom: 20px;
}
.property-meta-item { display: flex; flex-direction: column; gap: 4px; }
.property-meta-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.property-meta-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.property-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
}
.property-link:hover { gap: 16px; }
.property-link::after { content: '→'; font-size: 14px; }

.view-all { text-align: center; }
.view-all a {
  display: inline-block;
  padding: 18px 48px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.view-all a:hover { background: var(--gold); color: var(--bg); }

/* ===== TASACIONES ===== */
.tasaciones {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.tasaciones::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}
.tasaciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.tasaciones-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.tasaciones-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
.tasaciones-title em { font-style: italic; color: var(--gold-light); }
.tasaciones-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.tasaciones-benefits { list-style: none; }
.tasaciones-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 0.5px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.tasaciones-benefits li:last-child { border-bottom: 0.5px solid var(--line); }
.tasaciones-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  margin-top: 11px;
}

/* Form card */
.form-card {
  background: var(--bg);
  border: 0.5px solid var(--line-strong);
  padding: 48px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.form-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.form-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}
.form-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.form-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 0;
  margin-bottom: 32px;
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-dim); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-2); color: var(--ink); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

.form-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 18px 40px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit::after { content: '→'; font-size: 14px; }

.form-cancel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border: 0.5px solid var(--line-strong);
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
  margin-left: 16px;
}
.form-cancel:hover { border-color: var(--gold); color: var(--gold); }

.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Form section title */
.form-section-title {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 28px 0 20px;
  border-top: 0.5px solid var(--line);
  margin-top: 8px;
}

/* Price + currency row */
.form-price-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px;
  gap: 20px;
  margin-bottom: 0;
}
.form-currency-select { display: flex; flex-direction: column; }
.currency-toggle {
  display: flex;
  border: 0.5px solid var(--line);
  overflow: hidden;
  height: 47px;
  margin-bottom: 32px;
}
.currency-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  transition: all 0.2s;
  border-right: 0.5px solid var(--line);
  font-weight: 400;
}
.currency-option:last-child { border-right: none; }
.currency-option:has(.currency-radio:checked) {
  background: rgba(201,163,92,0.1);
  color: var(--gold);
}
.currency-radio { display: none; }

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.amenity-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 0.5px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
}
.amenity-check input[type="checkbox"] { display: none; }
.amenity-check:hover { border-color: var(--gold-deep); }
.amenity-check.checked {
  border-color: var(--gold);
  background: rgba(201,163,92,0.07);
}
.amenity-check.checked .amenity-icon { color: var(--gold); }
.amenity-check.checked .amenity-label { color: var(--gold-light); }
.amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 400;
}
.amenity-check.checked::after {
  content: '✓';
  position: absolute;
  top: 6px; right: 8px;
  font-size: 10px;
  color: var(--gold);
}

/* Custom amenity tag input */
.custom-amenity-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.custom-amenity-row .form-input { margin-bottom: 0; }
.custom-amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 12px;
}
.custom-amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-3);
  border: 0.5px solid var(--gold-deep);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 10px 4px 12px;
  border-radius: 20px;
}
.chip-remove {
  background: none;
  border: none;
  color: var(--ink-dim);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.chip-remove:hover { color: var(--gold); }

/* File upload */
.form-file-label {
  display: block;
  border: 0.5px dashed var(--line-strong);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  margin-bottom: 16px;
}

/* Image grid */
.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
.img-thumb {
  position: relative;
  background: var(--bg-3);
  border: 0.5px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s;
}
.img-thumb:hover { border-color: var(--line-strong); }
.img-thumb-preview {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.img-thumb-actions {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.img-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.img-radio-label:hover { color: var(--gold); }
.img-radio-label input[type="radio"] { accent-color: var(--gold); }
.img-delete-btn {
  background: none;
  border: 0.5px solid rgba(224,123,123,0.3);
  color: #e07b7b;
  padding: 5px 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.img-delete-btn:hover { background: rgba(224,123,123,0.08); }
.img-main-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.form-file-label:hover { border-color: var(--gold); }
.form-file-label span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.form-file-label strong { color: var(--gold); display: block; margin-bottom: 8px; font-weight: 400; font-family: var(--serif); font-size: 20px; }
input[type="file"] { display: none; }

/* Errors */
.form-errors {
  background: rgba(224, 123, 123, 0.08);
  border: 0.5px solid rgba(224, 123, 123, 0.3);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.form-errors ul { list-style: none; }
.form-errors li {
  font-family: var(--sans);
  font-size: 13px;
  color: #e07b7b;
  padding: 4px 0;
}

/* ===== ADMIN / INDEX ===== */
.page-header {
  padding: 120px 0 60px;
  background: var(--bg-2);
  border-bottom: 0.5px solid var(--line);
}
.page-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.page-title em { font-style: italic; color: var(--gold-light); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid var(--line-strong);
  color: var(--ink-muted);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid rgba(224,123,123,0.3);
  color: #e07b7b;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.btn-danger:hover { border-color: #e07b7b; background: rgba(224,123,123,0.05); }

/* Table */
.properties-table-wrap {
  padding: 60px 0;
}
.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-bar input,
.filter-bar select {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
  min-width: 160px;
}
.filter-bar input:focus,
.filter-bar select:focus { border-color: var(--gold); }
.filter-bar input::placeholder { color: var(--ink-dim); }
.filter-bar select option { background: var(--bg-2); }
.filter-bar button {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}
.filter-bar button:hover { background: var(--gold-light); }

.props-table {
  width: 100%;
  border-collapse: collapse;
}
.props-table th {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 0.5px solid var(--line-strong);
}
.props-table td {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  padding: 20px;
  border-bottom: 0.5px solid var(--line);
  vertical-align: middle;
}
.props-table tr:hover td { background: rgba(201,163,92,0.03); }
.props-table .prop-title { font-family: var(--serif); font-size: 17px; }
.props-table .prop-location { color: var(--ink-muted); font-size: 12px; }
.props-table .prop-price { color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.props-table .prop-actions { display: flex; gap: 8px; }

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: 0.5px solid;
}
.badge-venta { color: var(--gold); border-color: var(--gold-deep); }
.badge-alquiler { color: #7bbfe0; border-color: rgba(123,191,224,0.3); }
.badge-active { color: #7be07b; border-color: rgba(123,224,123,0.3); }
.badge-soon { color: var(--ink-muted); border-color: var(--line-strong); }

.empty-state {
  text-align: center;
  padding: 100px 0;
}
.empty-state p {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

/* ===== SHOW PAGE ===== */
.property-show {
  padding: 140px 0;
}
.property-show-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.property-show-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2419, #3a2f1f);
}
.property-show-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

/* Photo gallery thumbnails */
.photo-gallery {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.photo-thumb {
  width: 80px;
  height: 60px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb:hover { border-color: var(--gold-deep); }
.photo-thumb.active { border-color: var(--gold); }
.property-show-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--bg);
  color: var(--gold);
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  border: 0.5px solid var(--line-strong);
  z-index: 2;
}
.property-show-info .property-location { margin-bottom: 16px; }
.property-show-info .property-title { font-size: 36px; margin-bottom: 12px; }
.property-show-address {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.property-show-price {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.property-show-price small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.2em;
  margin-right: 8px;
}
.property-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 0.5px solid var(--line);
  margin-bottom: 40px;
}
.property-stat {
  padding: 24px;
  border-right: 0.5px solid var(--line);
  text-align: center;
}
.property-stat:last-child { border-right: none; }
.property-stat-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}
.property-stat-value {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
}
.property-description {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
}

/* Expensas */
.property-expensas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  margin-top: -16px;
}
.property-expensas-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.property-expensas-value {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Amenities show */
.property-amenities {
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  margin-bottom: 36px;
}
.property-amenities-title {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.property-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.property-amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 0.5px solid var(--line);
}
.property-amenity-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}
.property-amenity-icon svg { width: 100%; height: 100%; }
.property-amenity-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 300;
}

/* Map */
.property-map {
  margin-top: 20px;
  border: 0.5px solid var(--line);
  overflow: hidden;
}
.property-map-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 16px;
  border-bottom: 0.5px solid var(--line);
  background: var(--bg-2);
}

.property-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Price currency display */
.property-show-price small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-right: 8px;
}

/* Form price responsive */
@media (max-width: 900px) {
  .form-price-row { grid-template-columns: 1fr 100px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .property-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-price-row { grid-template-columns: 1fr 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  padding: 100px 0 40px;
  border-top: 0.5px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-logo { width: 200px; display: block; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-contact-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 20px;
}
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-whatsapp:hover { background: var(--gold); color: var(--bg); }
.footer-bottom {
  border-top: 0.5px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .tasaciones-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .property-show-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-menu, .nav-cta { display: none; }
  .mobile-menu { display: flex; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
  }
  .hamburger span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 50px; }
  .properties-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; padding: 16px; gap: 12px; }
  .search-tabs { width: 100%; justify-content: center; border-right: none; border-bottom: 0.5px solid var(--line); }
  .search-field { width: 100%; border-right: none; border-bottom: 0.5px solid var(--line); }
  .search-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .page-header-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ===== ADMIN PANEL ===== */
.admin-body {
  background: #0a0908;
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-2);
  border-right: 0.5px solid var(--line);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 50;
  overflow-y: auto;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  border-bottom: 0.5px solid var(--line);
}

.admin-nav {
  flex: 1;
  padding: 24px 0;
}

.admin-nav-section {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 20px 24px 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.2s;
  position: relative;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.admin-nav-link:hover { color: var(--gold-light); background: rgba(201,163,92,0.04); }
.admin-nav-link.active {
  color: var(--gold);
  background: rgba(201,163,92,0.07);
}
.admin-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.admin-nav-link.sub {
  font-size: 11px;
  padding-left: 44px;
  color: var(--ink-dim);
}
.admin-nav-link.sub:hover { color: var(--gold); }

.admin-nav-icon {
  font-size: 14px;
  color: var(--gold-deep);
  width: 16px;
  text-align: center;
}

.admin-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  font-family: var(--sans);
}

.admin-sidebar-footer {
  padding: 16px 0;
  border-top: 0.5px solid var(--line);
}

.admin-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #e07b7b;
  text-decoration: none;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.admin-logout:hover { color: #f09090; }

.admin-main {
  margin-left: 260px;
  flex: 1;
  min-height: 100vh;
}
.admin-main.full { margin-left: 0; }

.admin-flash {
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.03em;
  border-bottom: 0.5px solid var(--line);
}
.admin-flash-notice { background: rgba(201,163,92,0.08); color: var(--gold-light); }
.admin-flash-alert  { background: rgba(224,123,123,0.08); color: #e07b7b; }

/* Admin pages */
.admin-page { padding: 48px 56px; }
.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--line);
}
.admin-page-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.admin-page-title em { font-style: italic; color: var(--gold-light); }
.admin-page-subtitle {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* Dashboard stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.admin-stat-card {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.admin-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.4;
}
.admin-stat-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.admin-stat-value {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.admin-stat-value.has-unread { color: var(--gold-light); }
.admin-stat-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.admin-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.admin-card {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
}
.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 0.5px solid var(--line);
}
.admin-card-title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.admin-card-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.admin-card-link:hover { color: var(--gold); }

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 0.5px solid var(--line);
  text-decoration: none;
  transition: background 0.2s;
}
.admin-list-item:last-child { border-bottom: none; }
.admin-list-item:hover { background: rgba(201,163,92,0.04); }
.admin-list-name {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  font-weight: 400;
}
.admin-list-detail {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.admin-list-meta {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
  text-align: right;
}
.admin-list-unread {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 8px;
  flex-shrink: 0;
}

/* Admin table (shared with public but slightly different) */
.admin-table-wrap { overflow-x: auto; }

/* Detail view */
.admin-detail {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  padding: 40px;
  max-width: 720px;
}
.admin-detail-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--line);
  gap: 24px;
}
.admin-detail-row:first-child { border-top: 0.5px solid var(--line); }
.admin-detail-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 2px;
}
.admin-detail-value {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 300;
}

/* Login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.admin-login-card {
  width: 420px;
  background: var(--bg-2);
  border: 0.5px solid var(--line-strong);
  padding: 56px 48px;
  position: relative;
}
.admin-login-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 40px; height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.admin-login-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 40px; height: 40px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 40px;
}
.admin-login-logo .brand-mark {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
}
.admin-login-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.admin-login-sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.admin-login-error {
  background: rgba(224,123,123,0.08);
  border: 0.5px solid rgba(224,123,123,0.3);
  color: #e07b7b;
  font-family: var(--sans);
  font-size: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 1024px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-page { padding: 32px 24px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SHOW PAGE – vertical scroll layout ===== */
.prop-page { padding-top: 110px; }

.prop-breadcrumb {
  padding: 14px 0;
  background: var(--bg-2);
  border-bottom: 0.5px solid var(--line);
}
.prop-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.prop-breadcrumb a { color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.prop-breadcrumb a:hover { color: var(--gold); }
.prop-bc-sep { color: var(--ink-dim); }

/* Mosaic */
.prop-mosaic {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  height: 560px;
  gap: 4px;
}
.prop-mosaic-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2419, #3a2f1f);
}
.prop-mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.prop-mosaic-main:hover img { transform: scale(1.03); }
.prop-mosaic-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.prop-mosaic-placeholder span {
  font-family: var(--serif);
  font-size: 100px;
  font-style: italic;
  color: var(--gold-deep);
  opacity: 0.35;
}
.prop-mosaic-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.prop-mosaic-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}
.prop-mosaic-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.prop-mosaic-thumb:hover img { transform: scale(1.07); }
.prop-mosaic-thumb.active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}
.prop-mosaic-more {
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.prop-mosaic-more span {
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* Header row */
.prop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0 40px;
  border-bottom: 0.5px solid var(--line);
}
.prop-header-left { flex: 1; }
.prop-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.prop-main-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.prop-price-block { text-align: right; }
.prop-price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.prop-price small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-right: 6px;
}
.prop-price-consult { font-size: 24px; color: var(--ink-muted); }
.prop-expensas {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 8px;
}
.prop-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.prop-cta-btn:hover { background: var(--gold-light); }
.prop-cta-btn::after { content: '→'; font-size: 13px; }

/* Stats bar */
.prop-stats-bar {
  display: flex;
  border: 0.5px solid var(--line);
  margin: 48px 0;
}
.prop-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 0.5px solid var(--line);
}
.prop-stat-item:last-child { border-right: none; }
.prop-stat-icon {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.prop-stat-icon svg { width: 100%; height: 100%; }
.prop-stat-val {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
}
.prop-stat-lbl {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

/* Sections */
.prop-section {
  padding: 56px 0;
  border-top: 0.5px solid var(--line);
}
.prop-section-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--ink);
}
.prop-section-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
  max-width: 800px;
}

/* Amenity chips */
.prop-amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.prop-amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0.5px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.prop-amenity-chip:hover { border-color: var(--line-strong); }
.prop-amenity-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.prop-amenity-icon svg { width: 100%; height: 100%; }
.prop-amenity-name {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

/* Map */
.prop-map {
  border: 0.5px solid var(--line);
  overflow: hidden;
}

.prop-back-row { padding: 40px 0 80px; }

/* Ver todas button */
.prop-mosaic-ver-todas {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,13,11,0.82);
  backdrop-filter: blur(8px);
  border: 0.5px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.prop-mosaic-ver-todas:hover { background: rgba(201,163,92,0.15); border-color: var(--gold); color: var(--gold); }
.prop-mosaic-ver-todas svg { width: 14px; height: 14px; }

/* Lightbox */
.prop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.prop-lightbox.open { opacity: 1; pointer-events: all; }

.prop-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,0.96);
  cursor: pointer;
}
.prop-lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  width: 40px; height: 40px;
  background: transparent;
  border: 0.5px solid var(--line-strong);
  color: var(--ink-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.prop-lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.prop-lightbox-close svg { width: 18px; height: 18px; }

.prop-lightbox-prev,
.prop-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  background: rgba(14,13,11,0.7);
  border: 0.5px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.prop-lightbox-prev { left: 24px; }
.prop-lightbox-next { right: 24px; }
.prop-lightbox-prev:hover,
.prop-lightbox-next:hover { background: rgba(201,163,92,0.15); border-color: var(--gold); }
.prop-lightbox-prev svg,
.prop-lightbox-next svg { width: 22px; height: 22px; }

.prop-lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prop-lightbox-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}

.prop-lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}

.prop-lightbox-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(14,13,11,0.85);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
}
.prop-lightbox-strip::-webkit-scrollbar { display: none; }
.prop-lightbox-strip-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.5;
}
.prop-lightbox-strip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prop-lightbox-strip-thumb:hover { opacity: 0.8; }
.prop-lightbox-strip-thumb.active { border-color: var(--gold); opacity: 1; }

/* Responsive */
@media (max-width: 960px) {
  .prop-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .prop-mosaic-main { height: 380px; }
  .prop-mosaic-thumbs {
    grid-template-rows: unset;
    grid-template-columns: repeat(4, 1fr);
    height: 120px;
  }
  .prop-header { flex-direction: column; gap: 28px; }
  .prop-header-right { align-items: flex-start; }
  .prop-price-block { text-align: left; }
}
@media (max-width: 640px) {
  .prop-stats-bar { flex-direction: column; }
  .prop-stat-item { border-right: none; border-bottom: 0.5px solid var(--line); }
  .prop-stat-item:last-child { border-bottom: none; }
  .prop-mosaic-thumbs {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .prop-mosaic-thumb { height: 120px; }
}

/* ===== NOSOTROS PAGE ===== */

/* Hero */
.nos-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 100px;
  height: 90vh;
}
.nos-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,0.3) 0%, rgba(14,13,11,0.6) 60%, var(--bg) 100%),
    linear-gradient(135deg, rgba(30,25,15,0.5) 0%, rgba(14,13,11,0.3) 100%),
    url("/images/edificios.jpg");
  background-size: cover;
  background-position: center 30%;
  background-color: #1a1612;
}
.nos-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.nos-hero-content {
  position: relative;
  z-index: 2;
      display: flex;
        flex-direction: column;
        align-items: center;
}
.nos-hero-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--line-strong);
  padding: 10px 20px;
  margin-bottom: 32px;
}
.nos-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
}
.nos-hero-title em { font-style: italic; color: var(--gold-light); }
.nos-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Sections */
.nos-section { padding: 120px 0; }
.nos-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 20px 0 36px;
}
.nos-section-title em { font-style: italic; color: var(--gold-light); }

/* Historia */
.nos-historia { background: var(--bg); }
.nos-historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.nos-historia-text p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.nos-historia-text p:last-child { margin-bottom: 0; }
.nos-img-wrap {
  position: relative;
  height: 520px;
}
.nos-img-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,163,92,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #2a2419, #1a1612);
  border: 0.5px solid var(--line);
}
.nos-img-inner::after {
  content: '"';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 200px;
  color: var(--gold-deep);
  opacity: 0.15;
  font-style: italic;
  line-height: 1;
}
.nos-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-right: 0.5px solid var(--line-strong);
  border-bottom: 0.5px solid var(--line-strong);
  pointer-events: none;
}

/* Numbers */
.nos-numbers {
  padding: 80px 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg-2);
}
.nos-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.nos-number {
  padding: 40px 40px;
  border-right: 0.5px solid var(--line);
  text-align: center;
}
.nos-number:last-child { border-right: none; }
.nos-number-val {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.nos-number-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* MVV */
.nos-mvv { background: var(--bg); }
.nos-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.nos-mvv-card {
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  padding: 52px 44px;
  position: relative;
  transition: border-color 0.4s;
}
.nos-mvv-card:hover { border-color: var(--line-strong); }
.nos-mvv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.nos-mvv-card:hover::before { opacity: 1; }
.nos-mvv-icon {
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
}
.nos-mvv-icon svg { width: 22px; height: 22px; }
.nos-mvv-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--ink);
}
.nos-mvv-text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
}

/* CTA */
.nos-cta {
  background: var(--bg-2);
  border-top: 0.5px solid var(--line);
}
.nos-cta-inner {
  max-width: 640px;
}
.nos-cta-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.nos-cta-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .nos-historia-grid { grid-template-columns: 1fr; gap: 60px; }
  .nos-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .nos-number { border-bottom: 0.5px solid var(--line); }
  .nos-number:nth-child(2n) { border-right: none; }
  .nos-number:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
  .nos-mvv-grid { grid-template-columns: 1fr; }
  .nos-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .nos-hero { min-height: 60vh; padding-bottom: 80px; }
  .nos-section { padding: 80px 0; }
}

/* ===== NOTICIAS ===== */

/* Grid compartida (home + index) */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.art-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Card */
.art-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg-2);
  border: 0.5px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.art-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

.art-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2419, #3a2f1f);
  flex-shrink: 0;
}
.art-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.art-card:hover .art-card-image img { transform: scale(1.04); }
.art-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a2419, #3a2f1f);
}
.art-card-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 12px;
  border: 0.5px solid var(--line-strong);
  z-index: 2;
}

.art-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.art-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.art-meta-sep { color: var(--gold-deep); }
.art-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.art-card:hover .art-card-title { color: var(--gold-light); }
.art-card-excerpt {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 20px;
  flex: 1;
}
.art-card-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
  margin-top: auto;
}
.art-card-link::after { content: '→'; font-size: 13px; }
.art-card:hover .art-card-link { gap: 14px; }

/* Index page */
.art-index-wrap { padding: 60px 0 100px; }
.art-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.art-filter-btn {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 0.5px solid var(--line);
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
}
.art-filter-btn:hover,
.art-filter-btn.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,163,92,0.06);
}

/* Show page */
.art-show { padding-top: 80px; }

.art-show-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.art-show-cover {
  position: absolute;
  inset: 0;
}
.art-show-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.art-show-cover-placeholder {
  background: linear-gradient(135deg, #2a2419, #3a2f1f);
}
.art-show-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.2) 0%, rgba(14,13,11,0.85) 100%);
}
.art-show-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding-bottom: 56px;
}
.art-show-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.art-show-breadcrumb a { color: var(--ink-muted); text-decoration: none; transition: color 0.2s; }
.art-show-breadcrumb a:hover { color: var(--gold); }
.art-show-breadcrumb span { color: var(--ink-dim); }
.art-show-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold-deep);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.art-show-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 820px;
  margin-bottom: 20px;
}
.art-show-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Body layout */
.art-show-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  padding: 64px 0 40px;
}
.art-show-lead {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--line);
}
.art-show-content p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.art-show-content p:last-child { margin-bottom: 0; }

/* Sidebar */
.art-show-sidebar { padding-top: 8px; }
.art-sidebar-block {
  padding: 20px 0;
  border-bottom: 0.5px solid var(--line);
}
.art-sidebar-block:first-child { border-top: 0.5px solid var(--line); }
.art-sidebar-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.art-sidebar-value {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}
.art-sidebar-value a { color: var(--gold); text-decoration: none; }
.art-sidebar-cta {
  margin-top: 32px;
  padding: 28px;
  border: 0.5px solid var(--line);
  background: var(--bg-2);
}
.art-sidebar-cta p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Related */
.art-related { padding: 60px 0; border-top: 0.5px solid var(--line); }
.art-related-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .art-grid { grid-template-columns: repeat(2, 1fr); }
  .art-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .art-show-layout { grid-template-columns: 1fr; gap: 40px; }
  .art-show-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .art-sidebar-cta { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .art-grid { grid-template-columns: 1fr; }
  .art-show-hero { height: 380px; }
  .art-show-sidebar { grid-template-columns: 1fr 1fr; }
}

/* ===== TASACIONES WIZARD ===== */
.tas-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tas-step-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tas-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}
.tas-progress-step {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background 0.4s;
}
.tas-progress-step.is-active { background: var(--gold); }

.tas-step { display: none; }
.tas-step.is-active { display: block; }

.tas-field { margin-bottom: 28px; }
.tas-field:last-child { margin-bottom: 0; }

/* Option cards (radio buttons) */
.tas-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tas-option { cursor: pointer; }
.tas-option input[type="radio"] { display: none; }
.tas-option-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0.5px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  transition: all 0.2s;
  white-space: nowrap;
  user-select: none;
}
.tas-option-inner svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.tas-option:hover .tas-option-inner {
  border-color: var(--gold-deep);
  color: var(--ink);
}
.tas-option input:checked + .tas-option-inner {
  border-color: var(--gold);
  background: rgba(201,163,92,0.07);
  color: var(--gold-light);
}
.tas-option input:checked + .tas-option-inner svg { color: var(--gold); }

.tas-option-sm .tas-option-inner {
  padding: 10px 20px;
  justify-content: center;
  min-width: 56px;
  font-size: 15px;
  font-family: var(--serif);
}

/* Navigation */
.tas-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
}
.tas-btn-prev {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink-muted);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.tas-btn-prev svg { width: 18px; height: 18px; }
.tas-btn-prev:hover { border-color: var(--gold); color: var(--gold); }

.tas-btn-next,
.tas-btn-submit {
  flex: 1;
  height: 44px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
}
.tas-btn-next svg,
.tas-btn-submit svg { width: 15px; height: 15px; }
.tas-btn-next:hover,
.tas-btn-submit:hover { background: var(--gold-light); }
.tas-btn-submit { display: none; }

/* ===== CONTACT MODAL ===== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-modal.open {
  pointer-events: all;
  opacity: 1;
}
.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.contact-modal-card {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 0.5px solid var(--line-strong);
  padding: 56px 52px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-modal-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 48px; height: 48px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.contact-modal-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 48px; height: 48px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.contact-modal.open .contact-modal-card {
  transform: translateY(0);
}
.contact-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none;
  border: 0.5px solid var(--line);
  color: var(--ink-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.contact-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.contact-modal-close svg { width: 16px; height: 16px; }
.contact-modal-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  margin: 16px 0 36px;
  letter-spacing: -0.01em;
}
.contact-modal-title em { font-style: italic; color: var(--gold-light); }

/* Success state */
.contact-modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  min-height: 260px;
}
.contact-success-icon {
  width: 64px; height: 64px;
  border: 0.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
}
.contact-success-icon svg { width: 30px; height: 30px; }
.contact-success-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-success-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .contact-modal-card { padding: 40px 28px; }
  .contact-modal-card .form-row { grid-template-columns: 1fr; }
}
