/*
 * Latina Network — ln-member.css
 * Phase 8: Member Experience Layer
 * Version: 2.0.0
 *
 * Sections:
 *   01  Member Dashboard
 *   02  Visionary Directory
 *   03  Visionary Profile (single-ln_visionary)
 *   04  MyConnect Card
 *   05  [ln_member_only] Gate
 *   06  Shared Member Components
 *   07  Responsive
 */


/* ── 01 MEMBER DASHBOARD ──────────────────────────────────────────────────── */

.ln-dashboard {
  background: var(--crema);
  min-height: 100vh;
  padding-top: 84px; /* nav height */
}

/* Welcome band */
.dash-welcome {
  background: var(--plum-dark);
  position: relative;
  overflow: hidden;
  padding: 72px 80px 64px;
  border-bottom: 1px solid rgba(212,168,83,.12);
}

.dash-welcome::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tierra), var(--oro), var(--teal));
}

.dash-welcome::after {
  content: 'LN';
  position: absolute;
  right: -24px;
  bottom: -48px;
  font-family: var(--font-serif);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  letter-spacing: -.05em;
  line-height: .8;
}

.dash-welcome-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.dash-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,168,83,.4);
  flex-shrink: 0;
  background: rgba(245,237,216,.1);
}

.dash-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dash-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--oro);
  background: rgba(212,168,83,.1);
}

.dash-welcome-copy {
  flex: 1;
}

.dash-welcome-greeting {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 10px;
}

.dash-welcome-name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--crema);
  margin-bottom: 16px;
}

.dash-welcome-name em {
  font-style: italic;
  color: var(--tierra-light, #e8845a);
}

.dash-welcome-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.dash-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 2px;
}

.dash-tier-badge .tier-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}

.tier-rising     { background: rgba(28,169,160,.15); color: var(--teal); }
.tier-visionary  { background: rgba(212,168,83,.15); color: var(--oro); }
.tier-leader     { background: rgba(196,98,45,.18); color: var(--tierra-light, #e8845a); }
.tier-cofounder  { background: rgba(245,237,216,.12); color: var(--crema); }
.tier-member     { background: rgba(245,237,216,.08); color: rgba(245,237,216,.6); }

.dash-welcome-date {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,237,216,.35);
}

/* Dashboard grid */
.dash-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 80px 96px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.dash-main {}
.dash-aside {}

/* Section headers */
.dash-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(92,45,78,.12);
}

.dash-section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--plum);
  line-height: 1;
}

.dash-section-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--tierra);
  text-decoration: none;
  transition: color .2s;
}

.dash-section-link:hover { color: var(--plum); }

/* Article list */
.dash-articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.dash-article-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(92,45,78,.07);
  text-decoration: none;
  transition: background .2s;
}

.dash-article-row:first-child { border-top: none; }

.dash-article-thumb {
  width: 100px;
  height: 68px;
  overflow: hidden;
  background: rgba(92,45,78,.08);
  flex-shrink: 0;
}

.dash-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.dash-article-row:hover .dash-article-thumb img {
  transform: scale(1.04);
}

.dash-article-info {}

.dash-article-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tierra);
  margin-bottom: 6px;
  display: block;
}

.dash-article-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color .2s;
}

.dash-article-row:hover .dash-article-title { color: var(--tierra); }

.dash-article-date {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(92,45,78,.45);
}

.dash-no-articles {
  padding: 32px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(92,45,78,.45);
}

/* Aside: MyConnect preview card */
.dash-myconnect-preview {
  background: var(--plum-dark);
  border: 1px solid rgba(212,168,83,.15);
  padding: 32px;
  margin-bottom: 32px;
}

.dash-mc-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-mc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,168,83,.25);
}

.dash-mc-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-mc-mini-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(212,168,83,.3);
  flex-shrink: 0;
  background: rgba(245,237,216,.08);
}

.dash-mc-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dash-mc-mini-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--crema);
  line-height: 1.15;
}

.dash-mc-mini-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,237,216,.5);
  margin-top: 3px;
}

.dash-mc-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.dash-mc-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(245,237,216,.55);
}

.dash-mc-link-row svg {
  width: 14px;
  height: 14px;
  opacity: .5;
  flex-shrink: 0;
}

.dash-mc-btn {
  display: block;
  text-align: center;
  background: var(--tierra);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 20px;
  transition: background .2s;
}

.dash-mc-btn:hover {
  background: var(--tierra-light, #e8845a);
  color: var(--crema);
}

/* Aside: quick links */
.dash-quick-links {
  background: white;
  border: 1px solid rgba(92,45,78,.1);
  padding: 28px;
  margin-bottom: 24px;
}

.dash-quick-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(92,45,78,.45);
  margin-bottom: 16px;
}

.dash-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(92,45,78,.07);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--plum);
  transition: color .2s;
}

.dash-quick-item:last-child { border-bottom: none; }

.dash-quick-item:hover { color: var(--tierra); }

.dash-quick-item svg {
  width: 16px;
  height: 16px;
  opacity: .4;
  flex-shrink: 0;
  transition: opacity .2s;
}

.dash-quick-item:hover svg { opacity: .8; }

/* Aside: Events */
.dash-events {
  background: white;
  border: 1px solid rgba(92,45,78,.1);
  padding: 28px;
}

.dash-event-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(92,45,78,.07);
}

.dash-event-item:first-of-type { padding-top: 0; }
.dash-event-item:last-child { border-bottom: none; padding-bottom: 0; }

.dash-event-date-block {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.dash-event-day {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--tierra);
  line-height: 1;
  display: block;
}

.dash-event-month {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(92,45,78,.45);
  display: block;
}

.dash-event-info {}

.dash-event-type {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.dash-event-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.25;
  text-decoration: none;
  display: block;
  transition: color .2s;
}

.dash-event-title:hover { color: var(--tierra); }

.dash-event-location {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(92,45,78,.4);
  margin-top: 3px;
}

.dash-no-events {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(92,45,78,.4);
  padding: 8px 0;
}

/* Login redirect notice */
.ln-login-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-dark);
  padding: 80px 24px;
  text-align: center;
}

.ln-login-gate-inner {
  max-width: 480px;
}

.ln-login-gate h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--crema);
  margin-bottom: 16px;
  line-height: 1.1;
}

.ln-login-gate h2 em {
  font-style: italic;
  color: var(--tierra-light, #e8845a);
}

.ln-login-gate p {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,237,216,.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ln-login-gate-btn {
  display: inline-block;
  background: var(--tierra);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  transition: background .2s;
}

.ln-login-gate-btn:hover {
  background: var(--tierra-light, #e8845a);
  color: var(--crema);
}


/* ── 02 VISIONARY DIRECTORY ───────────────────────────────────────────────── */

.ln-directory {
  background: var(--crema);
  min-height: 100vh;
  padding-top: 84px;
}

/* Directory hero */
.dir-hero {
  background: var(--plum-dark);
  padding: 80px 80px 72px;
  position: relative;
  overflow: hidden;
}

.dir-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tierra), var(--oro), var(--teal));
}

.dir-hero::after {
  content: 'V';
  position: absolute;
  right: -24px;
  bottom: -48px;
  font-family: var(--font-serif);
  font-size: 30vw;
  font-weight: 700;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  letter-spacing: -.05em;
  line-height: .8;
}

.dir-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dir-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dir-hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--oro);
}

.dir-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--crema);
  margin-bottom: 24px;
}

.dir-hero h1 em {
  font-style: italic;
  color: var(--tierra-light, #e8845a);
}

.dir-hero-body {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,237,216,.6);
  max-width: 560px;
}

/* Filter bar */
.dir-filter-bar {
  background: var(--plum);
  border-bottom: 1px solid rgba(245,237,216,.08);
  padding: 0 80px;
}

.dir-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.dir-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.dir-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(245,237,216,.35);
  pointer-events: none;
}

.dir-search {
  width: 100%;
  background: rgba(245,237,216,.07);
  border: 1px solid rgba(245,237,216,.1);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 16px 10px 40px;
  outline: none;
  border-radius: 0;
  transition: border-color .2s, background .2s;
}

.dir-search::placeholder { color: rgba(245,237,216,.3); }

.dir-search:focus {
  border-color: rgba(212,168,83,.45);
  background: rgba(245,237,216,.1);
}

.dir-city-filter {
  background: rgba(245,237,216,.07);
  border: 1px solid rgba(245,237,216,.1);
  color: rgba(245,237,216,.75);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 36px 10px 14px;
  outline: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,237,216,.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s;
  min-width: 180px;
}

.dir-city-filter:focus { border-color: rgba(212,168,83,.45); }

.dir-count {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,237,216,.3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Directory grid */
.dir-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 80px 96px;
}

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

.dir-card {
  background: white;
  border: 1px solid rgba(92,45,78,.1);
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dir-card:hover {
  border-color: rgba(196,98,45,.3);
  box-shadow: 0 4px 24px rgba(61,29,52,.12);
}

.dir-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.dir-card-photo {
  position: relative;
  overflow: hidden;
}

.dir-card:not(.featured) .dir-card-photo {
  aspect-ratio: 4 / 3;
}

.dir-card.featured .dir-card-photo {
  width: 280px;
  flex-shrink: 0;
}

.dir-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: saturate(.92);
}

.dir-card:hover .dir-card-photo img {
  transform: scale(1.04);
}

.dir-card-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: var(--plum-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(245,237,216,.25);
}

.dir-card-tier {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.dir-card-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dir-card-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 4px;
  line-height: 1.15;
  transition: color .2s;
}

.dir-card:hover .dir-card-name { color: var(--tierra); }

.dir-card-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--tierra);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.dir-card-city {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(92,45,78,.45);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dir-card-city svg {
  width: 11px;
  height: 11px;
  opacity: .5;
}

.dir-card-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(92,45,78,.65);
  flex: 1;
  margin-bottom: 16px;
}

.dir-card-instagram {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(92,45,78,.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.dir-card:hover .dir-card-instagram { color: var(--tierra); }

.dir-card-instagram svg {
  width: 14px;
  height: 14px;
}

/* No results */
.dir-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
}

.dir-no-results p {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: rgba(92,45,78,.4);
}


/* ── 03 VISIONARY PROFILE ─────────────────────────────────────────────────── */

.ln-profile {
  background: var(--crema);
  min-height: 100vh;
  padding-top: 84px;
}

/* Profile hero */
.vp-hero {
  background: var(--plum-dark);
  display: grid;
  grid-template-columns: 460px 1fr;
  min-height: 72vh;
  position: relative;
  overflow: hidden;
}

.vp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tierra), var(--oro), var(--teal));
  z-index: 5;
}

.vp-hero-photo {
  position: relative;
  overflow: hidden;
}

.vp-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.88) brightness(.8);
}

.vp-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(61,29,52,.6) 100%),
              linear-gradient(0deg, rgba(61,29,52,.85) 0%, transparent 50%);
}

.vp-hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 300;
  color: rgba(245,237,216,.2);
}

.vp-hero-copy {
  padding: 80px 80px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,237,216,.4);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color .2s;
  width: fit-content;
}

.vp-back:hover { color: var(--oro); }

.vp-back svg { width: 14px; height: 14px; }

.vp-tier-badge-large {
  margin-bottom: 24px;
}

.vp-name {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--crema);
  margin-bottom: 10px;
}

.vp-name em {
  font-style: italic;
  color: var(--tierra-light, #e8845a);
  display: block;
}

.vp-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: rgba(245,237,216,.6);
  margin-bottom: 10px;
}

.vp-city {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--oro);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vp-city svg { width: 13px; height: 13px; }

.vp-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vp-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,237,216,.15);
  color: rgba(245,237,216,.7);
  transition: border-color .2s, color .2s, background .2s;
}

.vp-social-link:hover {
  border-color: var(--tierra);
  color: var(--crema);
  background: rgba(196,98,45,.12);
}

.vp-social-link svg { width: 14px; height: 14px; }

.vp-myconnect-link {
  background: var(--tierra);
  border-color: var(--tierra);
  color: var(--crema);
}

.vp-myconnect-link:hover {
  background: var(--tierra-light, #e8845a);
  border-color: var(--tierra-light, #e8845a);
  color: var(--crema);
}

/* Profile body */
.vp-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px 96px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.vp-main {}

.vp-bio-section {
  margin-bottom: 56px;
}

.vp-section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tierra);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vp-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,98,45,.25);
}

.vp-bio-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(61,29,52,.8);
}

.vp-bio-text p { margin-bottom: 20px; }
.vp-bio-text p:last-child { margin-bottom: 0; }

/* Profile articles */
.vp-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.vp-article-card {
  background: white;
  border: 1px solid rgba(92,45,78,.1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}

.vp-article-card:hover {
  border-color: rgba(196,98,45,.25);
  box-shadow: 0 2px 12px rgba(61,29,52,.08);
}

.vp-article-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(92,45,78,.06);
}

.vp-article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.vp-article-card:hover .vp-article-card-thumb img {
  transform: scale(1.04);
}

.vp-article-card-body {
  padding: 18px;
  flex: 1;
}

.vp-article-card-cat {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tierra);
  margin-bottom: 8px;
  display: block;
}

.vp-article-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.25;
  transition: color .2s;
}

.vp-article-card:hover .vp-article-card-title { color: var(--tierra); }

/* Aside: podcast */
.vp-aside {}

.vp-podcast-card {
  background: var(--plum-dark);
  border: 1px solid rgba(212,168,83,.12);
  padding: 28px;
  margin-bottom: 24px;
}

.vp-podcast-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.vp-podcast-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--crema);
  margin-bottom: 12px;
  line-height: 1.2;
}

.vp-podcast-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,237,216,.55);
  margin-bottom: 20px;
}

.vp-podcast-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oro);
  text-decoration: none;
  transition: color .2s;
}

.vp-podcast-btn:hover { color: var(--crema); }
.vp-podcast-btn svg { width: 14px; height: 14px; }

/* MyConnect embed aside */
.vp-mc-aside {
  background: white;
  border: 1px solid rgba(92,45,78,.1);
  padding: 24px;
}

.vp-mc-aside-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(92,45,78,.4);
  margin-bottom: 16px;
}

.vp-mc-embed {
  width: 100%;
  border: none;
  display: block;
}


/* ── 04 MYCONNECT CARD ────────────────────────────────────────────────────── */

.ln-myconnect-page {
  min-height: 100vh;
  background: var(--plum-dark);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px 64px;
}

.mc-card {
  width: 100%;
  max-width: 420px;
  background: var(--plum-dark);
  position: relative;
}

/* Card top band */
.mc-band {
  height: 4px;
  background: linear-gradient(90deg, var(--tierra), var(--oro), var(--teal));
}

/* Card header */
.mc-header {
  background: var(--plum);
  padding: 48px 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mc-header::after {
  content: 'LN';
  position: absolute;
  right: -20px;
  bottom: -24px;
  font-family: var(--font-serif);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  line-height: .8;
}

.mc-logo {
  margin: 0 auto 28px;
  display: block;
  height: 32px;
  width: auto;
  position: relative;
  z-index: 2;
}

.mc-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid rgba(212,168,83,.4);
  position: relative;
  z-index: 2;
  background: rgba(245,237,216,.08);
}

.mc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mc-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--oro);
}

.mc-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--crema);
  line-height: 1.1;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.mc-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,237,216,.5);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.mc-city {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--oro);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mc-city svg { width: 11px; height: 11px; }

/* Card body */
.mc-body {
  padding: 0 32px;
}

/* Bio */
.mc-bio {
  padding: 28px 0;
  border-bottom: 1px solid rgba(245,237,216,.07);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,237,216,.65);
  font-weight: 300;
}

/* Action links */
.mc-actions {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(245,237,216,.07);
}

.mc-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.mc-action-btn svg {
  width: 16px;
  height: 16px;
  opacity: .6;
  flex-shrink: 0;
}

.mc-btn-booking {
  background: var(--tierra);
  color: var(--crema);
}

.mc-btn-booking:hover {
  background: var(--tierra-light, #e8845a);
  color: var(--crema);
}

.mc-btn-instagram {
  background: rgba(245,237,216,.08);
  color: rgba(245,237,216,.8);
  border: 1px solid rgba(245,237,216,.1);
}

.mc-btn-instagram:hover {
  background: rgba(245,237,216,.14);
  color: var(--crema);
}

.mc-btn-podcast {
  background: rgba(28,169,160,.1);
  color: var(--teal);
  border: 1px solid rgba(28,169,160,.2);
}

.mc-btn-podcast:hover {
  background: rgba(28,169,160,.18);
  color: #1de8de;
}

/* Offer box */
.mc-offer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(245,237,216,.07);
}

.mc-offer-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 10px;
}

.mc-offer-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--crema);
  line-height: 1.3;
}

/* Email capture */
.mc-email-section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(245,237,216,.07);
}

.mc-email-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,237,216,.35);
  margin-bottom: 12px;
}

/* Footer */
.mc-footer {
  padding: 24px 32px 40px;
  text-align: center;
}

.mc-footer-logo {
  margin: 0 auto 10px;
  display: block;
  height: 20px;
  width: auto;
  opacity: .35;
  filter: brightness(10);
}

.mc-footer-text {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(245,237,216,.2);
  letter-spacing: .08em;
}

.mc-footer-text a {
  color: rgba(245,237,216,.3);
  text-decoration: none;
}


/* ── 05 MEMBER GATE SHORTCODE ─────────────────────────────────────────────── */

.ln-member-gate {
  position: relative;
  margin: 32px 0;
  border: 1px solid rgba(92,45,78,.12);
  overflow: hidden;
}

.ln-member-gate-blur {
  padding: 24px 32px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(61,29,52,.7);
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  max-height: 140px;
  overflow: hidden;
}

.ln-member-gate-cta {
  background: white;
  border-top: 2px solid var(--tierra);
  padding: 40px 48px 48px;
  text-align: center;
}

.ln-member-gate-lock {
  width: 48px;
  height: 48px;
  background: rgba(196,98,45,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.ln-member-gate-lock svg {
  width: 22px;
  height: 22px;
  color: var(--tierra);
}

.ln-member-gate-headline {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--plum);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ln-member-gate-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(61,29,52,.6);
  max-width: 420px;
  margin: 0 auto 28px;
}

.ln-member-gate-btn {
  display: inline-block;
  background: var(--tierra);
  color: var(--crema);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: background .2s;
  margin-bottom: 16px;
}

.ln-member-gate-btn:hover {
  background: var(--tierra-light, #e8845a);
  color: var(--crema);
}

.ln-member-gate-login {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(61,29,52,.45);
  margin: 0;
}

.ln-member-gate-login a {
  color: var(--tierra);
  text-decoration: none;
  font-weight: 500;
}

.ln-member-gate-login a:hover {
  color: var(--plum);
}


/* ── 06 SHARED MEMBER COMPONENTS ─────────────────────────────────────────── */

/* Member status pill (used in header for logged-in state) */
.ln-member-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(212,168,83,.15);
  color: var(--oro);
  border-radius: 2px;
  text-decoration: none;
}

.ln-member-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--oro);
  animation: lnMemberPulse 2.5s ease infinite;
}

@keyframes lnMemberPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,.5); }
  50% { box-shadow: 0 0 0 6px rgba(212,168,83,0); }
}


/* ── 07 RESPONSIVE ────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .dash-welcome { padding: 56px 40px 48px; }
  .dash-body { padding: 40px 40px 72px; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-aside { order: -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .dash-myconnect-preview { margin-bottom: 0; }
  .dash-quick-links { margin-bottom: 0; }

  .dir-hero { padding: 64px 40px 56px; }
  .dir-filter-bar { padding: 0 40px; }
  .dir-body { padding: 40px 40px 72px; }
  .dir-grid { grid-template-columns: 1fr 1fr; }
  .dir-card.featured { grid-column: span 2; }

  .vp-hero { grid-template-columns: 360px 1fr; }
  .vp-hero-copy { padding: 80px 48px 56px 40px; }
  .vp-body { padding: 48px 40px 72px; gap: 40px; }
}

@media (max-width: 900px) {
  .dash-welcome-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .dash-welcome { padding: 48px 28px 40px; }
  .dash-body { padding: 32px 28px 64px; }
  .dash-aside { grid-template-columns: 1fr; }

  .dir-hero { padding: 56px 28px 48px; }
  .dir-filter-bar { padding: 0 28px; }
  .dir-filter-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .dir-body { padding: 32px 28px 64px; }
  .dir-grid { grid-template-columns: 1fr 1fr; }
  .dir-card.featured { grid-column: span 2; flex-direction: column; }
  .dir-card.featured .dir-card-photo { width: 100%; }

  .vp-hero { grid-template-columns: 1fr; }
  .vp-hero-photo { height: 420px; }
  .vp-hero-copy { padding: 48px 28px 48px; }
  .vp-back { margin-bottom: 28px; }
  .vp-body { grid-template-columns: 1fr; padding: 40px 28px 64px; gap: 40px; }
  .vp-articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .dir-grid { grid-template-columns: 1fr; }
  .dir-card.featured { grid-column: span 1; flex-direction: column; }
  .dir-card.featured .dir-card-photo { width: 100%; }

  .dash-grid { gap: 24px; }
  .dash-article-row { grid-template-columns: 80px 1fr; gap: 14px; }
  .dash-article-thumb { width: 80px; height: 56px; }

  .ln-member-gate-cta { padding: 32px 24px 40px; }
  .ln-member-gate-headline { font-size: 22px; }

  .vp-social-row { flex-direction: column; align-items: flex-start; }

  .mc-header { padding: 40px 24px 28px; }
  .mc-body { padding: 0 24px; }
  .mc-footer { padding: 20px 24px 36px; }
}
