/* =========================================
   TRAS LA PANTALLA DEL NARRADOR — BASE
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #071017;
  color: #eadfc8;
}

.wp-site-blocks {
  padding: 0 !important;
}

.tpn-header,
.tpn-hero {
  box-sizing: border-box;
}

.tpn-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 86px;
  padding: 18px clamp(24px, 5vw, 78px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-bottom: 1px solid rgba(199, 150, 78, 0.28);
  background: linear-gradient(
    180deg,
    rgba(3, 10, 15, 0.96),
    rgba(3, 10, 15, 0.62),
    transparent
  );
}

.tpn-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e4c286;
  text-decoration: none;
}

.tpn-brand-symbol {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(206, 159, 89, 0.7);
  border-radius: 50%;

  font-size: 20px;
}

.tpn-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 500;
  letter-spacing: 0.035em;
}

.tpn-brand small {
  display: block;
  margin-top: 3px;
  color: #ad8c5a;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tpn-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.tpn-nav a {
  position: relative;
  color: #d8c8a9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.tpn-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;

  width: 0;
  height: 1px;

  background: #c9954d;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.tpn-nav a:hover::after {
  width: 100%;
}

/* HERO */

.tpn-hero {
  position: relative;
  min-height: 100vh;
  padding: 135px 24px 70px;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(3, 9, 14, 0.96) 0%,
      rgba(3, 9, 14, 0.72) 42%,
      rgba(3, 9, 14, 0.38) 68%,
      rgba(3, 9, 14, 0.84) 100%
    ),
    url("REEMPLAZAR-POR-LA-URL-DE-LA-IMAGEN");

  background-size: cover;
  background-position: center;
}

.tpn-hero-shade {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(203, 147, 67, 0.13),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(2, 8, 12, 0.18),
      rgba(2, 8, 12, 0.84)
    );
}

.tpn-hero-frame {
  position: absolute;
  inset: 112px 26px 26px;

  border: 1px solid rgba(200, 151, 79, 0.3);
  pointer-events: none;
}

.tpn-hero-content {
  position: relative;
  z-index: 2;

  width: min(920px, 92%);
  text-align: center;
}

.tpn-eyebrow {
  margin: 0 0 24px;
  color: #c79750;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.tpn-hero h1 {
  margin: 0;

  color: #e7c68c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.5vw, 126px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.015em;
  text-transform: uppercase;

  text-shadow:
    0 3px 2px rgba(0, 0, 0, 0.82),
    0 0 34px rgba(194, 137, 62, 0.12);
}

.tpn-hero h1 span {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.57em;
  letter-spacing: 0.11em;
}

.tpn-hero-text {
  max-width: 720px;
  margin: 38px auto 0;

  color: #e6dcc8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.tpn-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 42px;
  padding: 17px 34px;

  border: 1px solid #b88643;
  outline: 1px solid rgba(184, 134, 67, 0.32);
  outline-offset: 5px;

  background: linear-gradient(
    180deg,
    rgba(19, 39, 47, 0.96),
    rgba(5, 17, 24, 0.98)
  );

  color: #e7bf7b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.tpn-primary-button:hover {
  color: #ffe4ac;
  transform: translateY(-3px);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(196, 143, 68, 0.15);
}

.tpn-scroll {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  left: 50%;

  width: 28px;
  height: 45px;

  border: 1px solid rgba(220, 181, 116, 0.58);
  border-radius: 18px;

  transform: translateX(-50%);
}

.tpn-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;

  width: 3px;
  height: 8px;

  border-radius: 4px;
  background: #d6ad6a;

  transform: translateX(-50%);
  animation: tpn-scroll-move 1.8s infinite;
}

@keyframes tpn-scroll-move {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 17px);
  }
}

/* MÓVIL */

@media (max-width: 800px) {
  .tpn-header {
    position: absolute;
    padding: 16px 20px;
  }

  .tpn-brand small {
    display: none;
  }

  .tpn-nav {
    display: none;
  }

  .tpn-hero {
    min-height: 820px;
    padding-top: 120px;
    background-position: 58% center;
  }

  .tpn-hero-frame {
    inset: 92px 12px 12px;
  }

  .tpn-hero h1 {
    font-size: clamp(44px, 14vw, 72px);
    line-height: 0.92;
  }

  .tpn-hero h1 span {
    margin-top: 13px;
    font-size: 0.58em;
  }

  .tpn-hero-text {
    font-size: 18px;
  }

  .tpn-primary-button {
    width: min(100%, 320px);
    padding: 16px 18px;
  }
}