:root {
  --bg: #060606;
  --surface: rgba(17, 17, 17, 0.94);
  --surface-soft: rgba(24, 24, 24, 0.88);
  --surface-card: rgba(14, 14, 14, 0.86);
  --gold: #c9a961;
  --gold-bright: #e9ce90;
  --gold-deep: #7d6230;
  --text: #f7f2e8;
  --text-soft: #c5bcae;
  --text-dim: #8f8777;
  --line: rgba(201, 169, 97, 0.18);
  --line-strong: rgba(201, 169, 97, 0.42);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-gold: 0 20px 70px rgba(201, 169, 97, 0.18);
  --display: 'Cormorant Garamond', serif;
  --body: 'Montserrat', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(201, 169, 97, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(89, 57, 18, 0.22), transparent 36%),
    linear-gradient(180deg, #060606 0%, #090909 45%, #050505 100%);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 22rem;
  height: 22rem;
  top: -8rem;
  right: -8rem;
  background: rgba(201, 169, 97, 0.12);
}

body::after {
  width: 18rem;
  height: 18rem;
  left: -6rem;
  bottom: 8rem;
  background: rgba(81, 55, 16, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  z-index: 1;
  width: min(95vw, 1560px);
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 1.5rem;
  min-height: calc(100vh - 2rem);
  align-items: stretch;
}

.hero-media-panel,
.hero-copy-panel {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  border-radius: 1.9rem;
}

.hero-media-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 169, 97, 0.08);
  border-radius: 1.45rem;
  pointer-events: none;
}

.media-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-inline: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-bright);
}

.media-badge::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f8e2b2);
  box-shadow: 0 0 16px rgba(201, 169, 97, 0.45);
}

.media-stage {
  position: relative;
  flex: 1;
  min-height: 26rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(201, 169, 97, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(7, 7, 7, 0.98));
  border: 1px solid rgba(201, 169, 97, 0.12);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.media-stage::before,
.media-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.media-stage::before {
  width: 14rem;
  height: 14rem;
  top: -2rem;
  right: -2rem;
  background: rgba(201, 169, 97, 0.22);
}

.media-stage::after {
  width: 12rem;
  height: 12rem;
  bottom: -3rem;
  left: -2rem;
  background: rgba(96, 58, 17, 0.24);
}

.video-shell {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.52), rgba(9, 9, 9, 0.9)),
    radial-gradient(circle at top, rgba(201, 169, 97, 0.14), transparent 44%);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

.video-shell[data-mode="embed"],
.video-shell[data-mode="local-video"],
.video-shell[data-mode="placeholder"] {
  min-height: 100%;
  height: 100%;
}

.video-shell[data-mode="embed"],
.video-shell[data-mode="local-video"] {
  aspect-ratio: auto;
}

/* PASO CSS — VIDEO VERTICAL 9:16 v2 */
.video-shell[data-video-orientation="vertical"] {
  aspect-ratio: 9 / 16;
  max-width: 26rem;
  margin: 0 auto;
  min-height: 0;
}

.video-shell[data-video-orientation="vertical"] iframe {
  object-fit: contain;
  background: #000;
}

.video-shell[data-mode="placeholder"] {
  display: grid;
  place-items: center;
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.06), rgba(6, 6, 6, 0.94)),
    radial-gradient(circle at top, rgba(201, 169, 97, 0.18), transparent 44%);
}

.video-poster::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  pointer-events: none;
}

.video-poster-inner {
  position: relative;
  width: min(100%, 26rem);
  min-height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%),
    radial-gradient(circle at top, rgba(201, 169, 97, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.88), rgba(8, 8, 8, 0.98));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.35rem;
}

.video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.07) 1px, transparent 1px);
  background-size: 100% 16%, 12% 100%;
  opacity: 0.18;
}

.video-copy {
  position: relative;
  text-align: center;
}

.play-ring {
  width: 5.75rem;
  height: 5.75rem;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.92), rgba(255, 230, 171, 0.98));
  color: #080808;
  box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.35);
  animation: pulse 2.4s infinite;
}

.play-ring svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.18rem;
  fill: currentColor;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.38);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(201, 169, 97, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
  }
}

.video-kicker {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.24);
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold-bright);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 0.9rem;
}

.video-copy h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 0.8rem;
}

.video-copy p {
  color: var(--text-soft);
  max-width: 24rem;
  margin: 0 auto;
  font-size: 0.98rem;
}

.media-footer {
  display: flex;
  gap: 0.9rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding-inline: 0.2rem;
  font-size: 0.84rem;
  color: var(--text-dim);
}

.hero-copy-panel {
  border-radius: 1.7rem;
  padding: clamp(1.8rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(11, 11, 11, 0.96)),
    radial-gradient(circle at top right, rgba(201, 169, 97, 0.08), transparent 28%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  color: var(--gold-bright);
}

.brand-mark::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-copy-panel h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.94;
  margin-bottom: 1rem;
}

.hero-copy-panel h1 .accent {
  color: var(--gold);
  font-style: italic;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.protocol-box,
.promise-card {
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: var(--surface-card);
  padding: 1.35rem;
  margin-bottom: 1.1rem;
}

.protocol-title,
.promise-title {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold-bright);
  margin-bottom: 0.95rem;
}

.protocol-list {
  display: grid;
  gap: 0.75rem;
}

.protocol-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.protocol-item strong {
  font-family: var(--display);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.protocol-item span,
.promise-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.promise-card p strong {
  color: var(--text);
  font-weight: 600;
}

.cta-form {
  display: grid;
  gap: 0.82rem;
  margin-top: 0.45rem;
}

.field-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

.input-field {
  width: 100%;
  border: 1px solid rgba(201, 169, 97, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.98rem;
  padding: 1rem 1.15rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.input-field::placeholder {
  color: #7f786d;
}

.input-field:focus {
  outline: none;
  border-color: rgba(201, 169, 97, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.08);
  transform: translateY(-1px);
}

.cta-button {
  border: 0;
  border-radius: 999px;
  padding: 1.08rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 48%, var(--gold-bright) 100%);
  color: #050505;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  box-shadow: 0 18px 38px rgba(201, 169, 97, 0.18);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 24px 44px rgba(201, 169, 97, 0.24);
}

.cta-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.15);
  outline-offset: 3px;
}

.cta-button[disabled] {
  cursor: wait;
  opacity: 0.85;
}

.form-note {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 0.2rem;
  color: var(--text-dim);
  font-size: 0.78rem;
}

.support-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.support-row span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.74);
}

.story-section {
  margin-top: 1.5rem;
  padding: 2.2rem clamp(1.4rem, 4vw, 3rem);
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(8, 8, 8, 0.98)),
    radial-gradient(circle at top left, rgba(201, 169, 97, 0.08), transparent 28%);
  box-shadow: var(--shadow);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold-bright);
  font-size: 0.72rem;
  margin-bottom: 1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.story-card {
  padding: 1.2rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(201, 169, 97, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.story-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.story-card p,
.story-copy {
  color: var(--text-soft);
}

.story-copy {
  max-width: 54rem;
  font-size: 1rem;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(201, 169, 97, 0.08);
}

.secondary-cta svg {
  width: 1rem;
  height: 1rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .page {
    width: min(95vw, 1200px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media-panel {
    order: -1;
    padding: 0.85rem;
  }

  .hero-media-panel,
  .hero-copy-panel {
    border-radius: 1.5rem;
  }

  .hero-media-panel::before {
    inset: 0.65rem;
  }

  .media-stage {
    min-height: min(84vh, 48rem);
    padding: 0.65rem;
  }

  .video-shell,
  .video-shell[data-mode="embed"],
  .video-shell[data-mode="local-video"],
  .video-shell[data-mode="placeholder"] {
    width: min(100%, 520px);
    aspect-ratio: 9 / 16;
    min-height: min(78vh, 46rem);
    margin-inline: auto;
  }

  .video-shell iframe,
  .video-shell video {
    object-fit: cover;
  }

  .video-poster-inner {
    width: 100%;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: 95vw;
    padding-bottom: 2.5rem;
  }

  .hero {
    gap: 0.95rem;
  }

  .hero-media-panel {
    padding: 0.65rem;
  }

  .hero-media-panel::before {
    inset: 0.45rem;
    border-radius: 1.15rem;
  }

  .media-stage {
    min-height: min(80vh, 42rem);
    padding: 0.35rem;
  }

  .hero-copy-panel {
    padding: 1.35rem;
  }

  .hero-copy-panel h1 {
    font-size: clamp(2.6rem, 10vw, 4.2rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .video-shell,
  .video-shell[data-mode="embed"],
  .video-shell[data-mode="local-video"],
  .video-shell[data-mode="placeholder"] {
    width: 100%;
    max-width: none;
    min-height: min(74vh, 40rem);
  }

  .media-footer {
    flex-direction: column;
    gap: 0.35rem;
  }

  .story-section {
    padding: 1.6rem 1.2rem;
  }
}

@media (min-width: 1101px) {
  .page {
    padding: 0.75rem 0 3rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
    gap: 1rem;
    min-height: calc(100vh - 1.5rem);
  }

  .hero-media-panel {
    padding: 1rem;
  }

  .media-header {
    margin-bottom: 0.7rem;
    font-size: 0.68rem;
  }

  .media-stage {
    min-height: 0;
    padding: 0.9rem;
  }

  .video-shell {
    min-height: 22rem;
  }

  .video-poster {
    padding: 1rem;
  }

  .video-poster-inner {
    width: 100%;
    padding: 1.35rem 1rem;
  }

  .play-ring {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 1rem;
  }

  .video-copy h2 {
    font-size: clamp(1.7rem, 2.7vw, 2.7rem);
    margin-bottom: 0.55rem;
  }

  .video-copy p {
    max-width: 20rem;
    font-size: 0.9rem;
  }

  .media-footer {
    margin-top: 0.7rem;
    font-size: 0.75rem;
  }

  .hero-copy-panel {
    padding: 1.45rem 1.5rem;
  }

  .brand-mark {
    margin-bottom: 0.9rem;
  }

  .hero-copy-panel h1 {
    font-size: clamp(2.45rem, 3.6vw, 3.85rem);
    margin-bottom: 0.75rem;
  }

  .lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .protocol-box,
  .promise-card {
    padding: 1rem 1.05rem;
    margin-bottom: 0.8rem;
  }

  .protocol-title,
  .promise-title {
    font-size: 0.68rem;
    margin-bottom: 0.7rem;
  }

  .protocol-list {
    gap: 0.55rem;
  }

  .protocol-item {
    gap: 0.6rem;
  }

  .protocol-item strong {
    font-size: 1.2rem;
  }

  .protocol-item span,
  .promise-card p {
    font-size: 0.88rem;
  }

  .cta-form {
    gap: 0.65rem;
  }

  .field-label {
    font-size: 0.68rem;
  }

  .input-field {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .cta-button {
    padding: 0.95rem 1.2rem;
  }

  .form-note {
    font-size: 0.76rem;
  }

  .support-row {
    gap: 0.45rem 1rem;
    font-size: 0.72rem;
  }
}