:root {
  --bg: #110906;
  --bg-2: #1b0f0a;
  --espresso: #2b160d;
  --tobacco: #7b4327;
  --copper: #a76337;
  --bronze: #c69967;
  --gold: #d8ad4f;
  --gold-2: #f3d58a;
  --cream: #f4ebdc;
  --paper: #fff8ec;
  --muted: #bfae98;
  --ink: #22150f;
  --white: #fffaf1;
  --line: rgba(216, 173, 79, .25);
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}
.section-dark {
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 173, 79, .18), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(123, 67, 39, .35), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg-2) 48%, #080403);
  color: var(--white);
}
.section-cream {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), transparent 30%),
    var(--cream);
}
.section-heading h2,
.hero h1 {
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0;
}
.section-heading h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); }
.hero h1 { font-size: clamp(3.1rem, 7vw, 7.2rem); max-width: 920px; }
.section-heading p { color: rgba(34, 21, 15, .72); max-width: 720px; }
.section-dark .section-heading p,
.section-dark p { color: rgba(255, 250, 241, .72); }
.centered { text-align: center; margin: 0 auto 56px; }
.centered p { margin-left: auto; margin-right: auto; }
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 800;
  color: var(--tobacco);
}
.gold { color: var(--gold-2); }
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 660px;
  color: rgba(255, 250, 241, .78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: #1b0f0a;
  box-shadow: 0 18px 48px rgba(216, 173, 79, .22);
}
.btn-ghost {
  border-color: rgba(255, 250, 241, .28);
  color: var(--white);
  background: rgba(255, 250, 241, .05);
}
.btn-muted {
  border-color: rgba(255, 250, 241, .2);
  background: rgba(255, 250, 241, .05);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(15, 8, 5, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 173, 79, .16);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.brand-mark { width: 46px; height: 46px; object-fit: contain; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.08rem; line-height: 1; }
.brand em { display: block; color: var(--gold-2); font-size: .68rem; font-style: normal; letter-spacing: .16em; text-transform: uppercase; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; font-weight: 700; }
.main-nav a { color: rgba(255, 250, 241, .78); transition: color .2s ease; }
.main-nav a:hover { color: var(--gold-2); }
.nav-cta {
  border: 1px solid rgba(216, 173, 79, .42);
  color: var(--gold-2) !important;
  border-radius: 999px;
  padding: 11px 15px;
}
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 9px; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 6px 0; border-radius: 2px; }

.hero {
  min-height: 100vh;
  padding: 140px 0 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(216, 173, 79, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 173, 79, .13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .82fr);
  gap: 62px;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-metrics { display: flex; gap: 14px; margin-top: 42px; flex-wrap: wrap; }
.hero-metrics div {
  min-width: 126px;
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid rgba(216, 173, 79, .18);
  background: rgba(255, 250, 241, .06);
}
.hero-metrics strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--gold-2); line-height: 1; }
.hero-metrics span { color: rgba(255, 250, 241, .62); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-visual { min-height: 580px; position: relative; }
.membership-card,
.humidor,
.editorial-card {
  position: absolute;
  border: 1px solid rgba(216, 173, 79, .25);
  box-shadow: var(--shadow);
}
.membership-card {
  right: 40px;
  top: 34px;
  width: min(430px, 100%);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 248, 236, .95), rgba(216, 173, 79, .78));
  color: var(--ink);
  transform: rotate(2deg);
}
.membership-card img { width: 205px; margin: 0 auto 22px; }
.card-label { display: block; text-transform: uppercase; letter-spacing: .2em; font-size: .7rem; font-weight: 900; }
.card-number { display: block; margin-top: 32px; font-family: var(--serif); font-size: 1.4rem; }
.humidor {
  left: 4px;
  bottom: 52px;
  width: 390px;
  min-height: 260px;
  border-radius: 30px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(80, 38, 19, .96), rgba(25, 12, 7, .98)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 3px, transparent 3px 9px);
}
.humidor-lid {
  border: 1px solid rgba(216, 173, 79, .24);
  border-radius: 18px;
  padding: 12px 14px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 900;
}
.cigar-row { display: flex; gap: 10px; margin: 28px 0; }
.cigar-row span,
.cigar {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2b140a 0 12%, #8e4b25 12% 72%, #d7a64b 72% 80%, #3b1e12 80% 100%);
  box-shadow: inset 0 2px 5px rgba(255,255,255,.14), inset 0 -3px 8px rgba(0,0,0,.35);
}
.cigar-row span { flex: 1; height: 22px; }
.cata-note { background: rgba(255, 248, 236, .08); border-radius: 16px; padding: 14px; }
.cata-note strong { color: var(--white); display: block; }
.cata-note small { color: rgba(255,250,241,.62); }
.editorial-card {
  right: 0;
  bottom: 0;
  width: 250px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(244, 235, 220, .95);
  color: var(--ink);
}
.editorial-card span { color: var(--tobacco); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 900; }
.editorial-card strong { display: block; font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; margin-top: 9px; }
.smoke { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(38px); opacity: .18; pointer-events: none; }
.smoke-one { top: 12%; right: 4%; background: radial-gradient(circle, rgba(216,173,79,.72), transparent 64%); animation: drift 11s ease-in-out infinite alternate; }
.smoke-two { bottom: 3%; left: 3%; background: radial-gradient(circle, rgba(166,99,55,.58), transparent 66%); animation: drift 13s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate3d(24px, -18px, 0) scale(1.07); } }

.split,
.experience-grid,
.editorial-grid,
.platform-grid,
.invitation-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.intro-copy p { font-size: 1.08rem; color: rgba(34,21,15,.72); }

.pillar-grid,
.alliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar-card,
.alliance-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(123, 67, 39, .14);
  background: rgba(255, 250, 241, .75);
  box-shadow: 0 18px 42px rgba(43, 22, 13, .07);
}
.pillar-card .icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 22px;
}
.pillar-card h3,
.alliance-card h3,
.editorial-stack h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
  margin: 0 0 12px;
}
.pillar-card p,
.alliance-card p,
.editorial-stack p { margin: 0; color: rgba(34,21,15,.68); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, .07);
  border: 1px solid rgba(216, 173, 79, .18);
  overflow: hidden;
}
.tier-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--bronze);
}
.tier-card.plata::before { background: #cfcac1; }
.tier-card.oro::before { background: var(--gold); }
.tier-card.black::before { background: #0a0908; box-shadow: 0 0 0 1px rgba(216,173,79,.4); }
.tier-card.featured { background: linear-gradient(180deg, rgba(216,173,79,.18), rgba(255,250,241,.08)); transform: translateY(-14px); }
.featured-ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  transform: rotate(38deg);
  background: var(--gold);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 6px 42px;
}
.tier-top span { display: block; font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.tier-top small { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .68rem; }
.tier-card p { margin: 24px 0; min-height: 52px; }
.tier-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.tier-card li { color: rgba(255,250,241,.78); padding-left: 20px; position: relative; }
.tier-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tier-link { margin-top: auto; color: var(--gold-2); font-weight: 900; padding-top: 26px; }

.experience { background: var(--paper); }
.experience-visual { min-height: 480px; position: relative; }
.box-scene {
  position: relative;
  width: min(480px, 100%);
  min-height: 440px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 15%, rgba(216,173,79,.2), transparent 42%), linear-gradient(135deg, #2a140b, #110906);
  box-shadow: var(--shadow);
  padding: 32px;
  transform: rotate(-1deg);
}
.box-cover {
  height: 170px;
  border-radius: 28px;
  border: 1px solid rgba(216,173,79,.24);
  background: linear-gradient(135deg, rgba(244,235,220,.95), rgba(201,157,89,.75));
  display: grid;
  place-items: center;
}
.box-cover img { width: 180px; }
.box-content {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 16px;
  padding: 26px 4px 0;
}
.cigar { width: 100%; margin-bottom: 10px; grid-column: 1; }
.cigar.long { width: 94%; }
.cigar.medium { width: 78%; }
.qr-card,
.mini-mag {
  border-radius: 16px;
  border: 1px solid rgba(216,173,79,.22);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
}
.qr-card { grid-column: 2; grid-row: 1 / 3; min-height: 86px; background: rgba(255,250,241,.07); }
.mini-mag { grid-column: 1 / 3; min-height: 70px; background: rgba(255,250,241,.1); font-family: var(--serif); font-size: 1.25rem; }
.check-list { display: grid; gap: 12px; margin-top: 28px; }
.check-list span {
  position: relative;
  padding: 14px 18px 14px 46px;
  border-radius: 16px;
  background: rgba(43,22,13,.05);
  color: rgba(34,21,15,.76);
}
.check-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--tobacco);
  font-weight: 900;
}

.editorial-stack { display: grid; gap: 16px; }
.editorial-stack article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(123,67,39,.14);
}

.event-board {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(123,67,39,.18);
  background: linear-gradient(135deg, rgba(43,22,13,.97), rgba(17,9,6,.97));
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}
.event-date {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(216,173,79,.2);
}
.event-date strong { font-family: var(--serif); font-size: 3rem; color: var(--gold-2); line-height: 1; }
.event-date span { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: rgba(255,250,241,.62); }
.event-board ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.event-board li { padding: 18px; border-radius: 18px; background: rgba(255,250,241,.07); }
.event-board strong { display: block; color: var(--gold-2); }
.event-board span { color: rgba(255,250,241,.66); }

.platform-grid { grid-template-columns: minmax(0, 1fr) 360px; }
.device {
  width: 320px;
  margin: 0 auto;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(135deg, #0c0705, #2b160d);
  border: 1px solid rgba(216,173,79,.26);
  box-shadow: var(--shadow);
}
.device-top { width: 94px; height: 6px; border-radius: 999px; background: rgba(255,250,241,.2); margin: 6px auto 16px; }
.device-screen {
  min-height: 520px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(244,235,220,.96), rgba(255,248,236,.86));
  color: var(--ink);
  padding: 28px;
}
.device-screen img { width: 72px; margin: 0 auto 18px; }
.device-screen h3 { text-align: center; font-family: var(--serif); font-size: 1.8rem; line-height: 1; margin: 0 0 28px; }
.screen-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(43,22,13,.14); gap: 12px; }
.screen-row span { color: rgba(34,21,15,.58); }
.screen-row strong { text-align: right; }
.device-screen button {
  width: 100%;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  padding: 14px;
  background: var(--espresso);
  color: var(--gold-2);
  font-weight: 900;
}

.alliances { background: var(--paper); }
.alliance-card { background: linear-gradient(180deg, #fffaf1, #f6eddd); }
.responsibility-copy p,
.responsibility-copy li { color: rgba(34,21,15,.72); }
.responsibility-copy ul { margin: 18px 0 0; padding-left: 20px; }

.invitation-grid { grid-template-columns: minmax(0, .86fr) minmax(380px, .7fr); }
.waitlist-form {
  background: rgba(255,250,241,.08);
  border: 1px solid rgba(216,173,79,.22);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}
.waitlist-form label { display: block; color: rgba(255,250,241,.82); font-weight: 800; margin-bottom: 16px; }
.waitlist-form input,
.waitlist-form select {
  width: 100%;
  margin-top: 8px;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(216,173,79,.2);
  background: rgba(255,250,241,.08);
  color: var(--white);
  padding: 0 14px;
  outline: none;
}
.waitlist-form select option { color: var(--ink); }
.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,173,79,.14); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px; font-weight: 500 !important; align-items: start; color: rgba(255,250,241,.68) !important; }
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.form-note { min-height: 24px; color: var(--gold-2) !important; font-weight: 800; }

.site-footer {
  padding: 64px 0;
  background: #090504;
  color: rgba(255,250,241,.68);
  border-top: 1px solid rgba(216,173,79,.16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.footer-logo { width: 170px; margin-bottom: 16px; }
.site-footer h3 { color: var(--gold-2); margin: 0 0 12px; font-family: var(--serif); }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,250,241,.7); }
.site-footer p { margin: 0; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(216,173,79,.2), transparent 32%),
    linear-gradient(135deg, rgba(10,5,3,.96), rgba(27,15,10,.98));
  color: var(--white);
}
.age-gate.hidden { display: none; }
.age-card {
  width: min(560px, 100%);
  padding: 42px;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216,173,79,.22);
  background: rgba(255,250,241,.07);
  box-shadow: var(--shadow);
}
.age-logo { width: 116px; margin: 0 auto 20px; }
.age-card h1 { font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1; margin: 0 0 18px; }
.age-card p { color: rgba(255,250,241,.72); }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 28px 0 18px; }
.age-card small { color: rgba(255,250,241,.48); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .main-nav { gap: 16px; }
  .hero-grid,
  .split,
  .split.reverse,
  .experience-grid,
  .editorial-grid,
  .platform-grid,
  .invitation-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .pillar-grid,
  .tier-grid,
  .alliance-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-card.featured { transform: none; }
  .platform-grid .section-heading { order: 1; }
  .device { order: 2; }
}

@media (max-width: 820px) {
  .site-header { height: 74px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(216,173,79,.18);
    border-radius: 22px;
    background: rgba(15,8,5,.94);
    backdrop-filter: blur(16px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 13px 14px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .brand em { display: none; }
  .hero { padding-top: 115px; }
  .hero-visual { display: none; }
  .section { padding: 78px 0; }
  .pillar-grid,
  .tier-grid,
  .alliance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .box-scene { min-height: 380px; }
  .box-content { grid-template-columns: 1fr; }
  .qr-card, .mini-mag { grid-column: auto; grid-row: auto; }
  .device { width: min(320px, 100%); }
  .age-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- Refinamientos solicitados: membresías por color documental + cajas reales --- */
:root {
  --plan-bronze: #c79a68;
  --plan-bronze-dark: #7e4f2b;
  --plan-silver: #d4d1ca;
  --plan-silver-dark: #8f8a80;
  --plan-gold: #d8ad4f;
  --plan-gold-dark: #8b6420;
  --plan-black: #171512;
}

.memberships {
  overflow: hidden;
}
.memberships::after {
  content: "";
  position: absolute;
  inset: auto -18% -22% 48%;
  height: 420px;
  background: radial-gradient(circle, rgba(216,173,79,.18), transparent 68%);
  pointer-events: none;
}
.membership-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: stretch;
  margin: -12px 0 34px;
  z-index: 1;
}
.membership-photo-card,
.membership-note {
  border: 1px solid rgba(216,173,79,.22);
  border-radius: var(--radius-xl);
  background: rgba(255,250,241,.07);
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
  overflow: hidden;
}
.membership-photo-card {
  margin: 0;
  position: relative;
  min-height: 360px;
}
.membership-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.03);
}
.membership-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10,5,3,.74));
  pointer-events: none;
}
.membership-photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
}
.membership-note {
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,173,79,.25), transparent 38%),
    linear-gradient(135deg, rgba(43,22,13,.94), rgba(12,6,4,.92));
}
.membership-note .note-kicker {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}
.membership-note h3 {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.membership-note p { color: rgba(255,250,241,.72) !important; margin: 0; }

.tier-grid { position: relative; z-index: 1; gap: 20px; }
.tier-card {
  min-height: 455px;
  padding: 30px;
  border-radius: 30px;
  color: var(--ink);
  border: 1px solid rgba(255,250,241,.22);
  background: var(--plan-bg);
  box-shadow: 0 28px 68px rgba(0,0,0,.30);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 82px rgba(0,0,0,.42);
  filter: saturate(1.04);
}
.tier-card::before {
  inset: 0;
  height: auto;
  opacity: .28;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.38), transparent 24%),
    radial-gradient(circle at 90% 85%, rgba(0,0,0,.32), transparent 38%);
  z-index: -1;
}
.tier-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.20);
  pointer-events: none;
  z-index: -1;
}
.tier-card.bronze {
  --plan-bg: linear-gradient(145deg, #d0a06e 0%, var(--plan-bronze) 42%, #87532d 100%);
  --plan-accent: #4e2b18;
}
.tier-card.plata {
  --plan-bg: linear-gradient(145deg, #f0eee8 0%, var(--plan-silver) 48%, #9c9589 100%);
  --plan-accent: #56514a;
}
.tier-card.oro {
  --plan-bg: linear-gradient(145deg, #f4cd68 0%, var(--plan-gold) 50%, #9b7225 100%);
  --plan-accent: #50350d;
}
.tier-card.black {
  --plan-bg: linear-gradient(145deg, #27231f 0%, var(--plan-black) 52%, #050403 100%);
  --plan-accent: var(--gold-2);
  color: var(--white);
  border-color: rgba(216,173,79,.34);
}
.tier-card.plata::before { background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.70), transparent 28%), radial-gradient(circle at 90% 80%, rgba(68,63,57,.30), transparent 44%); }
.tier-card.black::before { background: radial-gradient(circle at 12% 10%, rgba(216,173,79,.20), transparent 28%), radial-gradient(circle at 90% 80%, rgba(255,255,255,.08), transparent 42%); }
.tier-card.featured {
  background: var(--plan-bg);
  transform: translateY(-12px);
}
.tier-card.featured:hover { transform: translateY(-20px); }
.tier-number {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
  color: rgba(255,255,255,.22);
  z-index: -1;
}
.tier-card.plata .tier-number,
.tier-card.oro .tier-number,
.tier-card.bronze .tier-number { color: rgba(34,21,15,.16); }
.tier-top span { color: currentColor; }
.tier-top small {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--plan-accent);
  background: rgba(255,250,241,.32);
  border: 1px solid rgba(255,255,255,.22);
}
.tier-card.black .tier-top small {
  color: var(--gold-2);
  background: rgba(216,173,79,.08);
  border-color: rgba(216,173,79,.24);
}
.tier-card p {
  color: currentColor !important;
  opacity: .82;
  min-height: 58px;
}
.tier-card ul { gap: 12px; }
.tier-card li {
  color: currentColor;
  opacity: .88;
  font-weight: 650;
}
.tier-card li::before { background: var(--plan-accent); box-shadow: 0 0 0 4px rgba(255,250,241,.20); }
.tier-card.black li::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(216,173,79,.12); }
.tier-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 11px 0 0;
  font-weight: 950;
  color: currentColor;
  border-bottom: 2px solid currentColor;
}
.featured-ribbon {
  background: #110906;
  color: var(--gold-2);
  border: 1px solid rgba(216,173,79,.45);
}

.product-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 50%, rgba(216,173,79,.16), transparent 46%),
    linear-gradient(135deg, #140906, #2c160d 56%, #090403);
  border: 1px solid rgba(216,173,79,.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  border: 1px solid rgba(216,173,79,.16);
}
.product-halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,213,138,.28), transparent 66%);
  filter: blur(10px);
}
.floating-box-img {
  position: relative;
  z-index: 2;
  width: min(440px, 82%);
  filter: drop-shadow(0 34px 48px rgba(0,0,0,.48));
  transform: rotate(-3deg);
}
.experience-note {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(216,173,79,.20);
  background: rgba(255,250,241,.92);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.experience-note strong { display: block; color: var(--tobacco); font-family: var(--serif); font-size: 1.25rem; line-height: 1; margin-bottom: 8px; }
.experience-note span { display: block; color: rgba(34,21,15,.68); font-size: .88rem; line-height: 1.45; }
.note-one { top: 48px; left: 38px; }
.note-two { right: 34px; bottom: 44px; }

.platform-grid { grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr); }
.platform-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}
.platform-box-img {
  position: absolute;
  top: 20px;
  left: -40px;
  width: 260px;
  opacity: .94;
  transform: rotate(-8deg);
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.42));
}
.platform-visual .device {
  position: relative;
  z-index: 2;
  transform: translateX(34px);
}

.alliance-product-callout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: center;
  margin: -14px 0 30px;
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 50%, rgba(216,173,79,.18), transparent 34%),
    linear-gradient(135deg, #fffaf1, #f1e3cc);
  border: 1px solid rgba(123,67,39,.14);
  box-shadow: 0 22px 58px rgba(43,22,13,.10);
}
.alliance-product-callout img {
  width: 230px;
  filter: drop-shadow(0 22px 30px rgba(43,22,13,.25));
}
.alliance-product-callout span {
  color: var(--tobacco);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 900;
}
.alliance-product-callout strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

@media (max-width: 1060px) {
  .membership-showcase,
  .platform-grid { grid-template-columns: 1fr; }
  .membership-showcase { margin-top: 0; }
  .platform-visual .device { transform: none; }
  .platform-box-img { left: 4%; }
  .alliance-product-callout { grid-template-columns: 180px 1fr; }
  .alliance-product-callout img { width: 180px; }
}

@media (max-width: 820px) {
  .membership-photo-card,
  .membership-photo-card img { min-height: 270px; }
  .tier-card,
  .tier-card.featured { min-height: auto; transform: none; }
  .tier-card:hover,
  .tier-card.featured:hover { transform: translateY(-4px); }
  .product-stage { min-height: 420px; }
  .floating-box-img { width: min(360px, 86%); }
  .experience-note { position: relative; inset: auto; margin: 8px; max-width: none; width: calc(100% - 42px); }
  .note-one { align-self: end; justify-self: start; }
  .note-two { align-self: start; justify-self: end; }
  .platform-visual { min-height: 620px; }
  .platform-box-img { width: 210px; top: 0; left: 50%; transform: translateX(-58%) rotate(-6deg); }
  .alliance-product-callout { grid-template-columns: 1fr; text-align: center; }
  .alliance-product-callout img { margin: 0 auto; }
}

/* --- Ajustes finales solicitados: hero con foto real, limpieza visual y footer legible --- */
.hero {
  background:
    linear-gradient(90deg, rgba(8, 4, 3, .94) 0%, rgba(15, 8, 5, .82) 29%, rgba(19, 10, 6, .42) 57%, rgba(19, 10, 6, .12) 100%),
    linear-gradient(180deg, rgba(9, 5, 3, .22), rgba(9, 5, 3, .48)),
    url("assets/hero-ritual-bg.jpg") center right / cover no-repeat;
}
.hero::before {
  display: none;
}
.hero .smoke {
  display: none;
}
.hero-grid {
  grid-template-columns: minmax(0, 720px);
  gap: 0;
}
.hero-copy {
  max-width: 720px;
  padding: 18px 0;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.25vw, 5.9rem);
  line-height: .91;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .72);
}
.hero .lead {
  max-width: 610px;
  color: rgba(255, 250, 241, .82);
  text-shadow: 0 10px 28px rgba(0, 0, 0, .68);
}
.hero-visual,
.membership-card,
.humidor,
.editorial-card {
  display: none !important;
}

.experience-note,
.platform-box-img {
  display: none !important;
}
.product-stage {
  min-height: 500px;
  align-content: center;
}
.floating-box-img {
  width: min(470px, 86%);
}
.platform-visual {
  min-height: 600px;
}
.platform-visual .device {
  transform: none;
}
.footer-logo.footer-symbol {
  width: 118px;
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 28px rgba(216, 173, 79, .12));
}
.site-footer > .container > div:first-child {
  max-width: 360px;
}

@media (max-width: 1060px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(8, 4, 3, .94) 0%, rgba(15, 8, 5, .84) 44%, rgba(19, 10, 6, .44) 100%),
      url("assets/hero-ritual-bg.jpg") center right / cover no-repeat;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 760px);
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 86vh;
    background:
      linear-gradient(180deg, rgba(8, 4, 3, .92), rgba(13, 7, 5, .82)),
      url("assets/hero-ritual-bg.jpg") center / cover no-repeat;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
    max-width: 100%;
  }
  .hero .lead {
    max-width: 100%;
  }
  .product-stage {
    min-height: 360px;
  }
  .floating-box-img {
    width: min(360px, 88%);
  }
  .platform-visual {
    min-height: auto;
  }
}

/* --- Ajuste v4: header premium con marca ampliada y contraccion al hacer scroll --- */
.site-header {
  --nav-offset: 118px;
  height: 118px;
  padding: 0 clamp(24px, 4.8vw, 64px);
  background: linear-gradient(180deg, rgba(9, 4, 3, .74) 0%, rgba(9, 4, 3, .36) 72%, transparent 100%);
  transition:
    height .32s ease,
    padding .32s ease,
    background .28s ease,
    backdrop-filter .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}
.site-header.scrolled {
  --nav-offset: 78px;
  height: 78px;
  background: rgba(15, 8, 5, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 173, 79, .18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
}
.brand {
  gap: 18px;
  min-width: 380px;
  transition: gap .32s ease, min-width .32s ease;
}
.brand-mark {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .35));
  transition: width .32s ease, height .32s ease, filter .32s ease;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.82rem, 2.35vw, 2.16rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition: font-size .32s ease, letter-spacing .32s ease, text-shadow .32s ease;
}
.brand em {
  display: block;
  color: var(--gold-2);
  font-size: clamp(.84rem, 1.05vw, 1.08rem);
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 8px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition: font-size .32s ease, margin .32s ease, letter-spacing .32s ease, text-shadow .32s ease;
}
.site-header.scrolled .brand {
  gap: 12px;
  min-width: 210px;
}
.site-header.scrolled .brand-mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .28));
}
.site-header.scrolled .brand strong {
  font-size: 1.1rem;
  letter-spacing: 0;
  text-shadow: none;
}
.site-header.scrolled .brand em {
  font-size: .68rem;
  margin-top: 5px;
  letter-spacing: .16em;
  text-shadow: none;
}
.main-nav {
  transition: gap .32s ease, font-size .32s ease;
}
.site-header.scrolled .main-nav {
  font-size: .84rem;
}

@media (max-width: 1180px) {
  .site-header {
    --nav-offset: 104px;
    height: 104px;
    padding: 0 clamp(20px, 3.8vw, 44px);
  }
  .site-header.scrolled {
    --nav-offset: 76px;
    height: 76px;
  }
  .brand {
    min-width: 310px;
    gap: 14px;
  }
  .brand-mark {
    width: 78px;
    height: 78px;
  }
  .brand strong {
    font-size: clamp(1.48rem, 2.25vw, 1.82rem);
  }
  .brand em {
    font-size: .78rem;
    letter-spacing: .16em;
  }
  .main-nav {
    gap: 18px;
    font-size: .82rem;
  }
  .nav-cta {
    padding-inline: 13px;
  }
}

@media (max-width: 820px) {
  .site-header {
    --nav-offset: 86px;
    height: 86px;
    padding: 0 18px;
  }
  .site-header.scrolled {
    --nav-offset: 72px;
    height: 72px;
  }
  .brand {
    min-width: auto;
    gap: 12px;
  }
  .brand-mark {
    width: 58px;
    height: 58px;
  }
  .brand strong {
    font-size: 1.28rem;
  }
  .brand em {
    display: block;
    font-size: .58rem;
    letter-spacing: .14em;
    margin-top: 4px;
  }
  .site-header.scrolled .brand-mark {
    width: 42px;
    height: 42px;
  }
  .site-header.scrolled .brand strong {
    font-size: 1.02rem;
  }
  .site-header.scrolled .brand em {
    display: none;
  }
  .main-nav {
    top: var(--nav-offset);
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 1.08rem;
  }
  .brand em {
    font-size: .5rem;
    letter-spacing: .12em;
  }
  .brand-mark {
    width: 52px;
    height: 52px;
  }
}
