/* Owners / Propietarios landing page (scoped) */
.owners-page {
  background: var(--bg);
}

.owners-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.owners-hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.10) 100%);
}

.owners-hero-inner{
  position: relative;
  padding: 44px 38px;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: end;
}

@media (max-width: 980px){
  .owners-hero-inner{ grid-template-columns:1fr; padding: 34px 22px; }
  .owners-hero{ min-height: 320px; }
}

.owners-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.owners-title{
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.owners-subtitle{
  margin: 0;
  color: rgba(255,255,255,.86);
  max-width: 62ch;
}

.owners-hero-card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.owners-hero-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.owners-hero-card p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.owners-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owners-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration:none;
  cursor:pointer;
  transition: transform .08s ease, filter .15s ease;
  border: 1px solid rgba(0,0,0,.10);
}

.owners-btn:hover{ filter: brightness(1.03); transform: translateY(-1px); }

.owners-btn-primary{
  background: var(--gold1);
  color: #1b1406;
  border-color: rgba(0,0,0,.12);
}

.owners-btn-ghost{
  background: rgba(255,255,255,.88);
  color: #1b1406;
}

.owners-section{
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 16px;
}

.owners-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 980px){ .owners-grid{ grid-template-columns: 1fr; } }

.owners-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.owners-card h4{
  margin: 0 0 6px;
  font-size: 15px;
}

.owners-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.owners-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 980px){ .owners-split{ grid-template-columns: 1fr; } }

.owners-note{
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
