:root {
  --black: #11110f;
  --black-2: #1a1916;
  --ivory: #f4f0e8;
  --beige: #d9cdbb;
  --gold: #b8965a;
  --white: #fffdf9;
  --text: #292722;
  --muted: #706a60;
  --line: rgba(24, 22, 18, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font: 16px/1.7 var(--sans)
}

img {
  display: block;
  width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: auto
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0
}

.site-header .brand {
  position: relative
}

.site-header .brand::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg,
      transparent 35%,
      rgba(255, 255, 255, 0.85) 50%,
      transparent 65%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-mask-image: url('../pics/del_realSuites_logo.png');
  mask-image: url('../pics/del_realSuites_logo.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
  animation: logo-shine 4s ease-in-out infinite
}

@keyframes logo-shine {
  0% {
    background-position: 100% 0
  }

  30% {
    background-position: 0% 0
  }

  100% {
    background-position: 0% 0
  }
}

.brand-logo {
  width: auto;
  height: 70px
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font: 600 18px/1 var(--serif)
}

.brand-name {
  font: 600 23px/1 var(--serif)
}

.brand-name small {
  display: block;
  margin-top: 5px;
  font: 500 9px/1 var(--sans);
  letter-spacing: .35em;
  text-transform: uppercase
}

.nav {
  display: flex;
  gap: clamp(20px, 3vw, 45px);
  font-size: 15px;
  letter-spacing: .08em
}

.nav a {
  position: relative;
  padding: 34px 0
}

.nav a:after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .25s
}

.nav a:hover:after {
  width: 100%
}

.nav-toggle {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  flex-shrink: 0;
  width: 34px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: .25s
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(12px) rotate(45deg)
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg)
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: .2s
}

.button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px)
}

.button-small {
  min-height: 42px;
  padding: 0 20px
}

.header-button {
  font-size: 13px
}



.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #24211c url("../pics/fachada.png") center/cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 8, .8), rgba(10, 10, 8, .4) 55%, rgba(10, 10, 8, .12)), linear-gradient(0deg, rgba(8, 8, 7, .36), transparent 40%)
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 95px
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--beige);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 1px;
  margin: 0 13px 4px 0;
  background: var(--gold)
}

.eyebrow.dark {
  color: #877967
}

h1,
h2,
h3,
p {
  margin-top: 0
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font: 600 clamp(63px, 8vw, 112px)/.82 var(--serif);
  letter-spacing: -.045em
}

.hero-text {
  max-width: 590px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .82);
  font-size: 20px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap
}

.underlined-link {
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  padding: 8px 0;
  font-size: 13px
}

.underlined-link span {
  margin-left: 12px;
  color: var(--gold)
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 35px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase
}

.scroll-cue span {
  margin-left: 15px;
  color: var(--gold)
}

.section {
  padding: 125px 0
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px)
}

h2 {
  max-width: 700px;
  margin-bottom: 26px;
  font: 600 clamp(43px, 5vw, 67px)/1 var(--serif);
  letter-spacing: -.025em
}

.intro-copy {
  max-width: 620px;
  color: var(--muted)
}

.intro-copy .lead {
  color: var(--text);
  font-size: 19px
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line)
}

.facts strong {
  display: block;
  color: var(--gold);
  font: 600 38px/1 var(--serif)
}

.facts span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase
}

.rooms {
  background: var(--black);
  color: white
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px
}

.section-heading h2 {
  margin: 0
}

.section-heading>p {
  max-width: 440px;
  margin-bottom: 10px;
  color: #aaa398
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.room-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, .09);
  overflow: hidden
}

.room-card.featured {
  border-color: rgba(184, 150, 90, .7);
  transform: translateY(-14px)
}

.room-card img {
  height: 285px;
  object-fit: cover;
  filter: saturate(.78);
  transition: .5s;
  cursor: pointer
}

.room-card:hover img {
  transform: scale(1.03);
  filter: saturate(1)
}

.room-body {
  padding: 30px
}

.number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase
}

.room-body h3 {
  margin: 15px 0 13px;
  font: 600 31px/1.1 var(--serif)
}

.room-body>p {
  color: #aaa398;
  font-size: 14px
}

.room-body ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  list-style: none;
  color: var(--beige);
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase
}

.room-body ul li {
  padding-left: 15px;
  position: relative
}

.room-body ul li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold)
}

.amenities {
  padding: 70px 0;
  background: #e6ddcf
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.amenity-grid article {
  padding: 5px 34px;
  border-left: 1px solid var(--line)
}

.amenity-grid article:first-child {
  border: 0;
  padding-left: 0
}

.amenity-grid span {
  color: var(--gold);
  font: 600 13px var(--serif)
}

.amenity-grid h3 {
  margin: 17px 0 10px;
  font: 600 24px/1.1 var(--serif)
}

.amenity-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.gallery {
  background: var(--white)
}

.light-heading>p {
  color: var(--muted)
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 285px 285px;
  gap: 15px
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #ddd4c7
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.gallery-grid figure:hover img {
  transform: scale(1.025)
}

.gallery-tall {
  grid-row: 1/3
}

.gallery-wide {
  grid-column: 2/4
}

.contact {
  padding: 115px 0;
  background: var(--black);
  color: white
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 520px
}

.contact-copy {
  padding: 35px clamp(35px, 6vw, 90px) 35px 0;
  align-self: center
}

.contact-copy>p:not(.eyebrow) {
  max-width: 520px;
  color: #aaa398
}

.contact-copy address {
  display: grid;
  gap: 8px;
  margin: 30px 0 35px;
  color: var(--beige);
  font-style: normal
}

.contact-copy address span {
  margin-top: 10px;
  color: #aaa398
}

.map-card {
  min-height: 520px;
  background-color: #d8cebf
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block
}

.footer {
  padding: 45px 0;
  background: #090908;
  color: #8c877f;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  font-size: 11px
}

.footer-inner p {
  margin: 0
}

.footer .brand {
  color: white
}

.whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: #1d9f5a;
  color: white;
  border-radius: 99px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .24);
  font-size: 12px;
  font-weight: 600
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 10, 8, .92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  transform: scale(.96);
  transition: transform .25s ease
}

.lightbox.is-open img {
  transform: scale(1)
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: none;
  color: white;
  font-size: 18px;
  cursor: pointer
}

@media(max-width:900px) {
  .nav-toggle {
    display: flex
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--black);
    transition: max-height .3s ease
  }

  .nav.is-open {
    max-height: 320px
  }

  .nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .header-inner {
    min-height: 78px
  }

  .hero {
    min-height: 780px
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 90px 0
  }

  .section-heading {
    display: block
  }

  .section-heading>p {
    margin-top: 22px
  }

  .room-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: auto
  }

  .room-card.featured {
    transform: none
  }

  .amenity-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0
  }

  .amenity-grid article:nth-child(3) {
    border-left: 0;
    padding-left: 0
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 240px 300px
  }

  .gallery-tall {
    grid-column: 1/3;
    grid-row: auto
  }

  .gallery-wide {
    grid-column: 1/3
  }

  .contact-copy {
    padding-right: 0
  }
}

@media(max-width:600px) {
  .container {
    width: calc(100% - 32px)
  }

  .brand-name {
    font-size: 20px
  }

  .brand-mark {
    width: 39px;
    height: 39px
  }

  .header-button {
    display: none
  }

  .hero {
    min-height: 720px;
    background-position: 62% center
  }

  .hero-content {
    padding-top: 115px
  }

  h1 {
    font-size: clamp(55px, 18vw, 76px)
  }

  .hero-text {
    font-size: 15px
  }

  .scroll-cue {
    display: none
  }

  .section {
    padding: 75px 0
  }

  h2 {
    font-size: 44px
  }

  .split {
    gap: 25px
  }

  .facts {
    gap: 12px
  }

  .facts strong {
    font-size: 31px
  }

  .room-card img {
    height: 245px
  }

  .amenity-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .amenity-grid article,
  .amenity-grid article:first-child,
  .amenity-grid article:nth-child(3) {
    padding: 25px 0;
    border: 0;
    border-top: 1px solid var(--line)
  }

  .amenity-grid article:first-child {
    border-top: 0
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 350px repeat(3, 240px)
  }

  .gallery-tall,
  .gallery-wide {
    grid-column: auto
  }

  .map-card,
  .map-card iframe {
    min-height: 400px
  }

  .footer-inner {
    flex-direction: column;
    text-align: center
  }

  .whatsapp {
    right: 15px;
    bottom: 15px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    transition-duration: .01ms !important
  }
}