:root {
  --gold: #c8a974;
  --coral: #e2a68d;
  --cream: #fbf7ef;
  --ochre: #af7e42;
  --ink: #2a231c;
  --sand: #d3b899;
  --aqua: #5eaca0;
  --muted: #6d625a;
  --line: rgba(42, 35, 28, 0.14);
  --max: 1180px;
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
.eyebrow,
.button,
.brand,
.nav,
.mini-brand,
.top-book,
.header-book,
.hero-wordmark,
.hero-tagline,
.image-caption,
.footer__brand,
.footer__heading {
  font-family: "Jost", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.11em;
  line-height: 1.12;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

p {
  margin-top: 0;
}

.section {
  width: min(var(--max), calc(100% - 72px));
  margin: auto;
  padding: 88px 0;
}

.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--ochre);
  margin-bottom: 19px;
}

.eyebrow--light {
  color: #f0d8aa;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.75;
}

.lead--narrow {
  max-width: 790px;
}

.actions,
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 29px;
}

.button,
.header-book,
.top-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  transition: 0.25s ease;
}

.button:hover,
.header-book:hover,
.top-book:hover {
  transform: translateY(-2px);
}

.button--dark,
.header-book {
  background: var(--ink);
  color: #fff;
}

.button--light,
.top-book {
  background: var(--cream);
  color: var(--ink);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
}

.button--outline {
  border: 1px solid rgba(42, 35, 28, 0.28);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--ochre);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

/* =========================
   WELCOME HERO
========================= */

.welcome {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.welcome__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.welcome__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(42, 35, 28, 0.64),
      rgba(42, 35, 28, 0.3) 45%,
      rgba(42, 35, 28, 0.08) 77%
    ),
    linear-gradient(
      0deg,
      rgba(42, 35, 28, 0.36),
      transparent 58%
    );
}

.welcome__top {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  padding: 26px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-brand {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.welcome__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 1s linear;
}

.dandelion-mark {
  font-size: 4.6rem;
  line-height: 1;
  color: #f2d7a2;
}

.hero-wordmark {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-tagline {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  margin: 10px 0 24px;
}

.hero-rule {
  width: 70px;
  height: 1px;
  background: rgba(242, 215, 162, 0.78);
  margin: 0 auto 26px;
}

.welcome h1 {
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  letter-spacing: 0.17em;
  line-height: 1.22;
}

.hero-script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  line-height: 1.3;
  margin: 22px 0 0;
}

.hero-actions {
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 4vh;
  z-index: 2;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

/* =========================
   HEADER
========================= */

.site-header {
  height: 88px;
  padding: 0 5vw;
  background: rgba(251, 247, 239, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  gap: 31px;
}

.nav a {
  font-size: 0.69rem;
  letter-spacing: 0.16em;
}

.header-book {
  justify-self: end;
  min-height: 46px;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
}

/* =========================
   HERO EDITORIAL
========================= */

.editorial {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;

  padding-top: 82px;
  padding-bottom: 58px;
}

.editorial h2 {
  font-size: clamp(3.4rem, 6vw, 6.3rem);
}

.editorial__image {
  min-height: 530px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.editorial__image img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.image-caption {
  position: absolute;
  left: 34px;
  bottom: 27px;

  font-size: 0.66rem;
  letter-spacing: 0.23em;
  color: #5b5049;
}

/* =========================
   CUERPO EMOCIÓN ALMA
========================= */

.trinity {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto 8px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trinity__item {
  min-height: 132px;
  border-radius: 24px;
  padding: 25px 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.trinity__icon {
  font-size: 2rem;
}

.trinity__item small {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  opacity: 0.7;
}

.trinity__item strong {
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.trinity__item--gold {
  background: rgba(200, 169, 116, 0.28);
}

.trinity__item--coral {
  background: rgba(226, 166, 141, 0.34);
}

.trinity__item--aqua {
  background: rgba(94, 172, 160, 0.28);
}

/* =========================
   QUÉ ES BETIUFULNESS
========================= */

.about {
  padding-top: 82px;
}

.about__heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
}

.about__heading .eyebrow {
  grid-column: 1 / -1;
}

.about__statement {
  margin: 44px 0 56px;
  margin-left: 42%;
  max-width: 620px;

  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.6;
  color: var(--muted);
}

.bridge {
  background: var(--ink);
  color: #fff;
  border-radius: 30px;
  padding: 46px 52px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.bridge h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.bridge > p {
  margin: 0;

  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.35;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.info-card {
  min-height: 340px;
  border-radius: 26px;
  padding: 36px 32px;
}

.info-card > span {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.info-card h3 {
  margin: 52px 0 22px;
  font-size: 1.5rem;
}

.info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.info-card--coral {
  background: rgba(226, 166, 141, 0.68);
}

.info-card--aqua {
  background: rgba(94, 172, 160, 0.47);
}

.info-card--gold {
  background: rgba(200, 169, 116, 0.5);
}

/* =========================
   SERVICIOS
========================= */

.services {
  padding-top: 90px;
  padding-bottom: 78px;
}

.section-heading {
  margin-bottom: 48px;
}

.service {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 66px;
  align-items: center;

  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.service--reverse .service__image {
  order: 2;
}

.service--reverse .service__copy {
  order: 1;
}

.service__image {
  min-height: 465px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--sand);
}

.service__image img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.service__number {
  position: absolute;
  left: 22px;
  top: 22px;

  width: 54px;
  height: 54px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(251, 247, 239, 0.94);
  color: var(--ochre);

  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
}

.service__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.service__copy h3 {
  margin-bottom: 27px;
}

.for-you {
  border-left: 3px solid var(--aqua);
  padding-left: 19px;
  margin-top: 22px;
}

.protocol {
  margin: 26px auto 0;
  max-width: 900px;

  background: rgba(94, 172, 160, 0.16);
  border: 1px solid rgba(94, 172, 160, 0.28);
  border-radius: 24px;

  padding: 27px 30px;

  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 20px;
  align-items: stretch;
}

.protocol__accent {
  background: var(--coral);
  border-radius: 20px;
}

.protocol p {
  margin: 0;
  color: #5f5a53;
  font-size: 1.02rem;
  line-height: 1.72;
}

/* =========================
   MÉTODO
========================= */

.method-wrap {
  background: rgba(211, 184, 153, 0.15);
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;

  padding-top: 94px;
  padding-bottom: 94px;
}

.method__image {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: rgba(94, 172, 160, 0.2);
}

.method__image img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.method__image span {
  position: absolute;
  inset: auto 0 44%;

  text-align: center;

  font-family: "Jost", sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;

  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--coral);

  font-family: "Jost", sans-serif;
  font-size: 1.35rem;
}

.steps h4 {
  margin: 0 0 5px;

  font-family: "Jost", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.09em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* =========================
   TIU
========================= */

.founder {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
  align-items: center;
}

.founder__image {
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.founder__image img {
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.founder blockquote {
  margin: 32px 0;

  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.3;

  color: var(--ochre);
}

.founder p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

/* =========================
   WELL-AGING
========================= */

.manifesto {
  background: var(--ochre);
  color: #fff;
  padding: 108px 5vw;
}

.manifesto__inner {
  width: min(var(--max), 100%);
  margin: auto;
}

.manifesto__items {
  margin-top: 58px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.manifesto__items span {
  padding: 24px 16px;

  border-right: 1px solid rgba(255, 255, 255, 0.22);

  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.manifesto__items span:nth-child(2) {
  background: rgba(226, 166, 141, 0.18);
}

.manifesto__items span:nth-child(4) {
  background: rgba(94, 172, 160, 0.16);
}

.manifesto__items span:last-child {
  border-right: 0;
}

/* =========================
   PROMESA
========================= */

.promise {
  min-height: 400px;
  background: var(--ink);
  color: #fff;
  padding: 70px 8vw;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.promise__mark {
  font-size: 3rem;
  color: var(--coral);
}

.promise blockquote {
  max-width: 920px;
  margin: 24px 0 18px;

  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.28;
}

.promise p {
  color: var(--gold);

  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.23em;
}

/* =========================
   CONTACTO
========================= */

.contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact__box {
  border-radius: 34px;
  padding: 46px;

  background:
    linear-gradient(
      120deg,
      rgba(200, 169, 116, 0.34),
      rgba(226, 166, 141, 0.25),
      rgba(94, 172, 160, 0.2)
    );

  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 66px;
  align-items: center;
}

.contact__box p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--ink);
  color: #ddd4cc;
  padding: 66px 5vw 28px;
}

.footer__grid {
  width: min(var(--max), 100%);
  margin: auto;

  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: 70px;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__mark {
  font-size: 3.5rem;
  color: var(--coral);
}

.footer__brand {
  font-size: 1.6rem;
  color: #fff;
}

.footer__heading {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}

.footer a:hover {
  color: var(--aqua);
}

.footer small {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.footer__bottom {
  width: min(var(--max), 100%);
  margin: 50px auto 0;
  padding-top: 23px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  display: flex;
  justify-content: space-between;

  font-size: 0.7rem;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  body {
    font-size: 16px;
  }

  .section {
    width: min(var(--max), calc(100% - 36px));
    padding: 70px 0;
  }

  .welcome__content {
    /*margin: 50px auto 0;*/
    /*width: calc(100% - 44px);*/
  }

  .welcome__top {
    padding: 20px 22px;
  }

  .scroll-cue {
    display: none;
  }

  .site-header {
    height: 76px;
    padding: 0 20px;

    grid-template-columns: 1fr auto auto;
  }

  .header-book {
    display: none;
  }

  .menu-toggle {
    display: block;
    border: 0;
    background: none;
    font-size: 1.45rem;
  }

  .nav {
    display: none;

    position: absolute;
    top: 76px;
    left: 0;
    right: 0;

    background: var(--cream);
    padding: 24px;

    flex-direction: column;
    align-items: center;

    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .editorial,
  .about__heading,
  .bridge,
  .service,
  .method,
  .founder,
  .contact__box {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .editorial__image,
  .service__image,
  .method__image {
    min-height: 430px;
  }

  .trinity {
    width: calc(100% - 36px);
  }

  .about__statement {
    margin-left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .service--reverse .service__image,
  .service--reverse .service__copy {
    order: initial;
  }

  .founder__image {
    min-height: 530px;
  }

  .manifesto {
    padding: 78px 18px;
  }

  .manifesto__items {
    grid-template-columns: 1fr;
  }

  .manifesto__items span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 560px) {

  h2 {
    letter-spacing: 0.08em;
  }

  .mini-brand {
    font-size: 0.95rem;
  }

  .hero-wordmark {
    font-size: 2.3rem;
  }

  .welcome h1 {
    font-size: 1.85rem;
    letter-spacing: 0.13em;
  }

  .hero-actions .button {
    width: 100%;
  }

  .editorial h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .editorial__image,
  .service__image,
  .method__image {
    min-height: 330px;
  }

  .trinity {
    grid-template-columns: 1fr;
  }

  .trinity__item {
    min-height: 86px;
  }

  .bridge {
    padding: 30px 24px;
  }

  .founder__image {
    min-height: 420px;
  }

  .contact__box {
    padding: 29px 22px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   CTA FIJO EN MOBILE
========================= */

.mobile-book {
  display: none;
}

@media (max-width: 700px) {

  .mobile-book {
    display: flex;

    position: fixed;
    z-index: 30;

    left: 12px;
    right: 12px;
    bottom: 12px;

    min-height: 52px;
    border-radius: 999px;

    background: var(--ink);
    color: #fff;

    align-items: center;
    justify-content: center;

    font-family: "Jost", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;

    box-shadow: 0 14px 35px rgba(42, 35, 28, 0.25);
  }

  body {
    padding-bottom: 72px;
  }
}

/* ==================================================
   LOGOS OFICIALES BETIUFULNESS
   ================================================== */

/* Evita que las reglas generales de imágenes
   deformen o agranden los logos */
.logo-header,
.hero-official-logo,
.logo-nav,
.promise-logo,
.footer-logo {
  display: block;
  height: auto;
  object-fit: contain;
}


/* ------------------------------------------
   1. LOGO SUPERIOR SOBRE EL HERO
   logotipo crema
------------------------------------------ */

.mini-brand {
  display: block;
  width: auto;
}

.logo-header {
  width: 165px;
  max-width: 100%;
}


/* ------------------------------------------
   2. LOGO PRINCIPAL DEL HERO
   imagotipo arena
------------------------------------------ */

.hero-official-logo {
  width: min(520px, 78vw);
  max-height: 230px;
  object-fit: contain;
  margin: 0 auto 28px;
}


/* Ya no utilizamos los logos recreados
   anteriormente con texto y símbolos */
.dandelion-mark,
.hero-wordmark,
.hero-tagline {
  display: none;
}


/* ------------------------------------------
   3. LOGO DEL MENÚ STICKY
   imagotipo dorado
------------------------------------------ */

.brand {
  display: flex;
  align-items: center;
  width: auto;
}

.logo-nav {
  width: 145px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}


/* ------------------------------------------
   4. ISOTIPO DURAZNO
   sección oscura de la promesa
------------------------------------------ */

.promise-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

/* Ocultamos el símbolo falso anterior */
.promise__mark {
  display: none;
}


/* ------------------------------------------
   5. IMAGOTIPO DORADO DEL FOOTER
------------------------------------------ */

.footer-logo {
  width: 260px;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: left center;
}


/* ------------------------------------------
   MOBILE
------------------------------------------ */

@media (max-width: 700px) {

  .logo-header {
    width: 135px;
  }

  .hero-official-logo {
    width: min(390px, 82vw);
    max-height: 190px;
    margin-bottom: 22px;
  }

  .logo-nav {
    width: 115px;
    max-height: 48px;
  }

  .promise-logo {
    width: 72px;
    height: 72px;
  }

  .footer-logo {
    width: 220px;
  }
}


/* ------------------------------------------
   MOBILE PEQUEÑO
------------------------------------------ */

@media (max-width: 420px) {

  .logo-header {
    width: 120px;
  }

  .hero-official-logo {
    width: 84vw;
  }

  .logo-nav {
    width: 105px;
  }

  .footer-logo {
    width: 200px;
  }
}

/* ==================================================
   AJUSTES NAVEGACIÓN HERO + MÉTODO
   ================================================== */


/* ------------------------------------------
   MENÚ SUPERIOR DENTRO DEL HERO
------------------------------------------ */

.welcome__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.welcome-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.4vw, 44px);
}

.welcome-nav a {
  color: #fbf7ef;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.welcome-nav a:hover {
  opacity: 0.65;
}

.mini-brand {
  justify-self: start;
}

.top-book {
  justify-self: end;
}


/* Eliminamos definitivamente la segunda barra */
.site-header {
  display: none !important;
}


/* ------------------------------------------
   CAPTION DEL MÉTODO
------------------------------------------ */

.method__image {
  position: relative;
  display: flex;
  flex-direction: column;
}

.method__image img {
  display: block;
  width: 100%;
}

.method__image > span {
  position: static !important;
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 0;
  color: #2a231c;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-align: left;
  background: transparent;
  transform: none !important;
}


/* ------------------------------------------
   TABLET / MOBILE
------------------------------------------ */

@media (max-width: 900px) {

  .welcome__top {
    display: flex;
    justify-content: space-between;
  }

  .welcome-nav {
    display: none;
  }

  .method__image > span {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-top: 12px;
  }
}

/* ==================================================
   AJUSTE FINAL — NAVEGACIÓN HERO
   ================================================== */

.welcome__top {
  width: 100%;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 28px 4.5% !important;
  box-sizing: border-box;
}

/* MENÚ CENTRAL */
.welcome-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;

  /* ESTE ES EL ESPACIO ENTRE CADA PALABRA */
  gap: 52px !important;

  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.welcome-nav a {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #fbf7ef !important;
  text-decoration: none !important;

  font-family: "Jost", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;

  white-space: nowrap !important;
}

/* LOGO IZQUIERDA */
.mini-brand {
  justify-self: start !important;
}

/* RESERVAR DERECHA */
.top-book {
  justify-self: end !important;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 1100px) {

  .welcome-nav {
    gap: 28px !important;
  }

  .welcome-nav a {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }
}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 850px) {

  .welcome__top {
    display: flex !important;
    justify-content: space-between !important;
  }

  .welcome-nav {
    display: none !important;
  }
}

/* ==================================================
   NAVEGACIÓN HERO — AJUSTE DEFINITIVO
   ================================================== */

.welcome .welcome__top {
  display: grid !important;
  grid-template-columns: 190px 1fr 150px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 26px 4.5% !important;
}


/* LOGO IZQUIERDO */

.welcome .mini-brand {
  justify-self: start !important;
}


/* MENÚ CENTRAL */

.welcome .welcome-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;

  width: 620px !important;
  max-width: 100% !important;

  margin: 0 auto !important;
  padding: 0 !important;
}


.welcome .welcome-nav > a {
  display: block !important;

  margin: 0 !important;
  padding: 0 10px !important;

  color: #fbf7ef !important;

  font-family: "Jost", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;

  letter-spacing: 0.15em !important;
  line-height: 1 !important;

  white-space: nowrap !important;
}


/* BOTÓN DERECHA */

.welcome .top-book {
  justify-self: end !important;
}


/* ==================================================
   PANTALLAS MEDIANAS
   ================================================== */

@media (max-width: 1200px) {

  .welcome .welcome__top {
    grid-template-columns: 160px 1fr 130px !important;
  }

  .welcome .welcome-nav {
    width: 540px !important;
  }

  .welcome .welcome-nav > a {
    font-size: 11px !important;
    padding: 0 8px !important;
  }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 850px) {

  .welcome .welcome__top {
    display: flex !important;
    justify-content: space-between !important;
  }

  .welcome .welcome-nav {
    display: none !important;
  }

}

/* ==================================================
   HERO VIDEO — BETIUFULNESS
   ================================================== */

.welcome {
  position: relative;
  overflow: hidden;
  background: #2a231c;
}

.welcome__video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  z-index: 0;
}

/* Capa suave para que logos y navegación se lean */
.welcome__video-overlay {
  position: absolute;
  inset: 0;

  background: rgba(42, 35, 28, 0.20);

  z-index: 1;
  pointer-events: none;
}

/* Todo el contenido original queda encima del video */

.welcome > *:not(.welcome__video):not(.welcome__video-overlay) {
  position: absolute;
  z-index: 2;
}