/* ------------------------------------------------------------ */
/* ENTORNO — PREMIUM EDITORIAL                                  */
/* ------------------------------------------------------------ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
}

.ent-main {
  font-family: 'Montserrat', sans-serif;
  color: var(--bj-text, #1a1a1a);
  background: #fff;
  line-height: 1.7;
}


/* ============================================ */
/* HERO                                         */
/* ============================================ */

.ent-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ent-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) contrast(1.05);
  z-index: 1;
}

.ent-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.ent-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 780px;
  padding: 0 2rem;
}

.ent-hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.2rem;
}

.ent-hero__h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.ent-hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto;
}


/* ============================================ */
/* INTRO                                        */
/* ============================================ */

.ent-intro {
  background: #fff;
  padding: 120px 2rem;
  text-align: center;
}

.ent-intro__inner {
  max-width: 680px;
  margin: 0 auto;
}

.ent-intro__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
}

.ent-intro__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bj-navy, #002244);
  margin-bottom: 1.5rem;
}

.ent-intro__text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}


/* ============================================ */
/* LOCATIONS GRID                               */
/* ============================================ */

.ent-locations {
  padding: 100px 0 80px;
  background: #eeeeee;
}

.ent-locations__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ent-locations__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 2rem;
  border-left: 2px solid var(--bj-gold, #c8a84e);
  padding-left: 0.8rem;
}

.ent-locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.ent-locations__card {
  margin: 0;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.ent-locations__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ent-locations__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 44, 0.4);
  transition: background 0.4s ease;
  pointer-events: none;
}

.ent-locations__card:hover::after {
  background: rgba(0, 22, 44, 0.25);
}

.ent-locations__card figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.ent-locations__card figcaption strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ent-locations__card figcaption span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================ */
/* SERVICES — PARALLAX                          */
/* ============================================ */

.ent-services {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ent-services__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.ent-services__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 44, 0.75);
  z-index: 2;
}

.ent-services__content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 2rem;
  text-align: center;
}

.ent-services__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 3rem;
}

.ent-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}

.ent-services__item {
  text-align: center;
}

.ent-services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.ent-services__item p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 200px;
  margin: 0 auto;
}

.ent-services__item p strong {
  font-weight: 600;
  color: #fff;
}


/* ============================================ */
/* GASTRONOMY — MURAL                           */
/* ============================================ */

.ent-gastro {
  padding: 100px 0 0;
  background: #fff;
}

.ent-gastro__inner {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 2rem;
}

.ent-gastro__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
}

.ent-gastro__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bj-navy, #002244);
}

.ent-gastro__mural {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 100%;
}

.ent-gastro__mural img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}


/* ============================================ */
/* GUACHINCHES                                  */
/* ============================================ */

.ent-guach {
  padding: 100px 0 80px;
  background: #eeeeee;
}

.ent-guach__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ent-guach__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.ent-guach__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bj-navy, #002244);
  text-align: center;
  margin-bottom: 3rem;
}

.ent-guach__text {
  margin-bottom: 3rem;
}

.ent-guach__text p {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.ent-guach__text p:last-child {
  margin-bottom: 0;
}

.ent-guach__subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--bj-gold, #c8a84e);
  padding-left: 0.8rem;
}

.ent-guach__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ent-guach__list li {
  font-size: 0.92rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #444;
}

.ent-guach__list li:last-child {
  border-bottom: none;
}

.ent-guach__list i {
  color: var(--bj-gold, #c8a84e);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ent-guach__list strong {
  color: var(--bj-navy, #002244);
  font-weight: 600;
}

.ent-guach__list span {
  font-weight: 300;
  color: #888;
  font-size: 0.82rem;
}


/* ============================================ */
/* CTA FINAL                                    */
/* ============================================ */

.ent-cta {
  background: var(--bj-navy, #002244);
  padding: 100px 2rem;
  text-align: center;
}

.ent-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.ent-cta__eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bj-gold, #c8a84e);
  margin-bottom: 1.5rem;
}

.ent-cta__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.ent-cta__text {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.ent-cta__btn {
  display: inline-block;
  padding: 0.8rem 2.8rem;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.ent-cta__btn:hover {
  background: #fff;
  color: var(--bj-navy, #002244);
}


/* ============================================ */
/* RESPONSIVE — TABLET                          */
/* ============================================ */

@media (max-width: 992px) {
  .ent-intro {
    padding: 80px 2rem;
  }

  .ent-intro__title {
    font-size: 2.2rem;
  }

  .ent-locations__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ent-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
  }

  .ent-gastro__mural {
    grid-template-columns: repeat(4, 1fr);
  }

  .ent-gastro__mural img {
    height: 260px;
  }

  .ent-gastro__title {
    font-size: 2.2rem;
  }

  .ent-guach__title {
    font-size: 2rem;
  }

  .ent-cta {
    padding: 80px 2rem;
  }

  .ent-cta__title {
    font-size: 2.2rem;
  }
}


/* ============================================ */
/* RESPONSIVE — MOBILE                          */
/* ============================================ */

@media (max-width: 768px) {
  .ent-hero {
    height: 100vh;
  }

  .ent-hero__h1 {
    font-size: 2.4rem;
  }

  .ent-hero__sub {
    font-size: 1rem;
  }

  .ent-intro {
    padding: 64px 1.5rem;
  }

  .ent-intro__title {
    font-size: 1.9rem;
  }

  .ent-intro__text {
    font-size: 1rem;
  }

  .ent-locations {
    padding: 64px 0 56px;
  }

  .ent-locations__inner {
    padding: 0 1rem;
  }

  .ent-locations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .ent-locations__card {
    height: 240px;
  }

  .ent-services__bg {
    background-attachment: scroll;
  }

  .ent-services__content {
    padding: 64px 1.5rem;
  }

  .ent-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .ent-gastro {
    padding: 64px 0 0;
  }

  .ent-gastro__title {
    font-size: 1.9rem;
  }

  .ent-gastro__mural {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .ent-gastro__mural img {
    height: 200px;
  }

  .ent-guach {
    padding: 64px 0 56px;
  }

  .ent-guach__inner {
    padding: 0 1.5rem;
  }

  .ent-guach__title {
    font-size: 1.7rem;
  }

  .ent-guach__text p {
    font-size: 1rem;
  }

  .ent-cta {
    padding: 64px 1.5rem;
  }

  .ent-cta__title {
    font-size: 1.9rem;
  }
}


/* ============================================ */
/* RESPONSIVE — SMALL MOBILE                    */
/* ============================================ */

@media (max-width: 480px) {
  .ent-hero__h1 {
    font-size: 2rem;
  }

  .ent-hero__eyebrow {
    font-size: 0.6rem;
  }

  .ent-locations__grid {
    grid-template-columns: 1fr;
  }

  .ent-locations__card {
    height: 260px;
  }

  .ent-services__grid {
    grid-template-columns: 1fr;
  }

  .ent-gastro__title {
    font-size: 1.7rem;
  }

  .ent-gastro__mural {
    grid-template-columns: 1fr 1fr;
  }

  .ent-guach__title {
    font-size: 1.5rem;
  }

  .ent-intro__title {
    font-size: 1.7rem;
  }

  .ent-cta__title {
    font-size: 1.7rem;
  }
}
