:root {
  --olive: #706943;
  --olive-dark: #5f5938;
  --ink: #606060;
  --soft: #f5f5f5;
  --line: #dedccf;
  --blue: #173f82;
  --shell: 1100px;
  --radius: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Raleway, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}
.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
}
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}
.topbar {
  height: 33px;
  background: var(--olive);
  font-size: 13px;
  line-height: 33px;
}
.topbar__inside {
  display: flex;
  justify-content: space-between;
}
.topbar a {
  color: #fff;
  text-decoration: none;
}
.topbar strong {
  font-weight: 800;
}
.header-main {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: block;
  height: 76px;
  width: 200px;
}
.brand img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.main-nav ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul {
  display: flex;
  height: 100px;
  align-items: center;
  gap: 0;
}
.main-nav a {
  display: block;
  padding: 38px 12px 34px;
  color: #5f5f5f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--olive);
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #ddd;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-position: center;
  background-size: cover;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slider__arrow,
.gallery-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  text-shadow: 0 1px 4px #333;
}
.hero-slider__arrow--prev {
  left: 24px;
}
.hero-slider__arrow--next {
  right: 24px;
}
.slider-dots {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.slider-dots button.is-active {
  background: #fff;
}
.slider-pause {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 15px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 999px;
  background: rgb(25 25 20 / 0.56);
  color: #fff;
  font: 700 11px Raleway, sans-serif;
  cursor: pointer;
}
.slider-pause:hover,
.slider-pause:focus-visible {
  background: var(--olive);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.section {
  padding: 62px 0;
}
.section--tight {
  padding: 38px 0;
}
.section-title {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}
.section-eyebrow {
  margin: 0 0 5px;
  color: var(--olive);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.home-welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
  padding: 68px 0;
}
.home-welcome__image img {
  display: block;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
}
.home-welcome p {
  margin: 0.35rem 0 1.1rem;
}
.home-welcome h1 {
  margin: 0;
  color: var(--olive);
  font-size: 30px;
  line-height: 1.25;
}
.home-welcome strong {
  font-weight: 700;
}
.banner-triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 68px;
}
.banner-triplet img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}
.feature-split:nth-child(even) .feature-split__media {
  order: -1;
}
.feature-split h2 {
  margin: 0;
  color: var(--olive);
  font-size: 24px;
  font-weight: 600;
}
.feature-split p {
  margin: 0.5rem 0 1.4rem;
}
.feature-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.text-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 21px;
  border: 0;
  background: var(--olive);
  color: #fff;
  text-decoration: none;
  font:
    700 13px Raleway,
    sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}
.gallery-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.gallery-intro h2 {
  margin: 0;
  color: var(--olive);
  font-size: 24px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.photo-grid button {
  position: relative;
  display: block;
  min-height: 155px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.photo-grid button:hover img {
  transform: scale(1.05);
}
.photo-grid button::after {
  content: "⌕";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(0 0 0/0.3);
  color: #fff;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.2s;
}
.photo-grid button:hover::after {
  opacity: 1;
}
.page-title {
  min-height: 132px;
  display: grid;
  place-items: center;
  background: #f7f7f7 url("../media/titulo-fondo.webp") center/cover;
  color: var(--olive);
  text-align: center;
}
.page-title h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.4);
}
.page-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-intro h2 {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 24px;
  font-weight: 600;
}
.page-intro p {
  margin: 0;
}
.divider-title {
  position: relative;
  margin: 0 0 52px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.divider-title span {
  position: relative;
  top: -20px;
  display: inline-block;
  padding: 13px 36px;
  background: #f6f6f6;
  color: var(--olive);
  font-size: 22px;
  font-weight: 700;
}
.room {
  padding: 14px 0 44px;
}
.room + .room {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.room__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.room__copy h2 {
  margin: 0;
  color: var(--olive);
  font-size: 29px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.room__tagline {
  margin: 3px 0 5px;
  font-size: 22px;
  line-height: 1.4;
}
.capacity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 7px 0 31px;
  color: #333;
  font-size: 22px;
  font-weight: 900;
}
.capacity__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 29px;
}
.room__description {
  margin: 0;
  padding: 22px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.65;
}
.room__description strong {
  font-weight: 800;
}
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
}
.amenities li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.amenities li::before {
  content: "›";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 30px;
  line-height: 25px;
}
.room__note {
  margin: 24px 0 28px;
  font-size: 13px;
  font-style: italic;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.price-grid span {
  display: block;
  color: var(--olive);
  font-size: 23px;
}
.price-grid strong {
  display: block;
  color: var(--olive);
  font-size: 34px;
  line-height: 1.1;
}
.price-grid em {
  font-size: 16px;
  font-style: normal;
}
.gallery-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.5;
  background: #eee;
}
.gallery-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.gallery-slider__slide.is-active {
  opacity: 1;
}
.gallery-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-slider__arrow {
  font-size: 45px;
}
.gallery-slider__arrow--prev {
  left: 18px;
}
.gallery-slider__arrow--next {
  right: 18px;
}
.room__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.room__banners img {
  display: block;
  width: 100%;
  height: auto;
}
.callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.callout {
  position: relative;
  overflow: hidden;
}
.callout img {
  width: 100%;
  display: block;
}
.content-block {
  padding: 44px 0;
}
.content-block h2,
.content-block h3 {
  color: var(--olive);
}
.content-block h2 {
  font-size: 25px;
}
.content-block h3 {
  font-size: 21px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.content-grid img {
  display: block;
  width: 100%;
  height: auto;
}
.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.spa-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.spa-card h3 {
  margin: 10px 0 0;
  color: var(--olive);
  font-size: 18px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
}
.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 60px;
}
.reservation-form label {
  display: block;
  margin: 0 0 18px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 11px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #555;
  font:
    16px Raleway,
    sans-serif;
}
.reservation-form textarea {
  min-height: 140px;
  resize: vertical;
}
.reservation-form__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-status {
  min-height: 26px;
  margin: 16px 0 0;
  font-weight: 600;
}
.form-status.is-error {
  color: #9c2b2b;
}
.form-status.is-success {
  color: #416b35;
}
.reserve-aside img {
  display: block;
  width: 100%;
  margin-bottom: 22px;
}
.site-footer {
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.2fr 0.9fr;
  gap: 35px;
  align-items: center;
  padding: 70px 0 45px;
}
.footer-brand img {
  display: block;
  width: 150px;
}
.footer-nav {
  display: grid;
  gap: 10px;
}
.footer-nav a,
.footer-contact,
.footer-contact a {
  color: #888;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.footer-contact strong {
  color: #777;
}
.footer-booking img {
  display: block;
  width: 100%;
  max-width: 190px;
  margin-left: auto;
}
.footer-bottom {
  padding: 17px 20px;
  background: var(--olive);
  color: #fff;
  text-align: center;
  font-size: 12px;
}
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  width: 54px;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #aaa;
  font-size: 30px;
  cursor: pointer;
}
.lightbox {
  max-width: min(1100px, 94vw);
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: transparent;
}
.lightbox::backdrop {
  background: rgb(0 0 0/0.82);
}
.lightbox img {
  display: block;
  max-width: 94vw;
  max-height: 88vh;
}
.lightbox button {
  position: absolute;
  z-index: 3;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  text-shadow: 0 1px 5px #000;
}
.lightbox__close {
  top: -54px;
  right: 0;
}
.lightbox__prev {
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }
  .topbar__booking {
    display: none;
  }
  .topbar__inside {
    justify-content: flex-end;
  }
  .header-main {
    height: 100px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 40px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--olive);
  }
  .mobile-nav {
    display: block;
    border-top: 1px solid #eee;
    background: #fff;
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav a {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
  .hero-slider {
    height: 420px;
  }
  .home-welcome,
  .feature-split,
  .room__grid,
  .reserve-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .feature-split:nth-child(even) .feature-split__media {
    order: 0;
  }
  .home-welcome {
    gap: 28px;
  }
  .home-welcome__image {
    order: -1;
  }
  .room__grid {
    gap: 30px;
  }
  .room__media {
    order: -1;
  }
  .room__banners {
    max-width: 600px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-booking img {
    margin-left: 0;
  }
  .spa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .topbar {
    height: 40px;
    line-height: 40px;
  }
  .topbar__phone {
    font-size: 12px;
  }
  .brand {
    height: 68px;
    width: 170px;
  }
  .header-main {
    height: 100px;
  }
  .hero-slider {
    height: 350px;
  }
  .hero-slider__arrow {
    font-size: 42px;
  }
  .slider-pause {
    right: 12px;
    bottom: 12px;
  }
  .section {
    padding: 42px 0;
  }
  .banner-triplet,
  .callouts {
    grid-template-columns: 1fr;
  }
  .banner-triplet {
    gap: 16px;
    margin-bottom: 42px;
  }
  .feature-split {
    gap: 24px;
    padding: 40px 0;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid button {
    min-height: 125px;
  }
  .page-title {
    min-height: 102px;
  }
  .page-title h1 {
    font-size: 25px;
  }
  .divider-title {
    margin-bottom: 35px;
  }
  .divider-title span {
    font-size: 18px;
    padding: 10px 22px;
  }
  .room {
    padding-bottom: 35px;
  }
  .room + .room {
    padding-top: 45px;
  }
  .room__copy h2 {
    font-size: 23px;
  }
  .room__tagline {
    font-size: 18px;
  }
  .room__description {
    font-size: 16px;
  }
  .amenities {
    grid-template-columns: 1fr;
    gap: 13px;
    font-size: 16px;
  }
  .price-grid {
    gap: 18px;
  }
  .price-grid span {
    font-size: 18px;
  }
  .price-grid strong {
    font-size: 30px;
  }
  .room__banners {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-slider {
    aspect-ratio: 1.45;
  }
  .section-title {
    font-size: 25px;
  }
  .reservation-form__cols {
    grid-template-columns: 1fr;
  }
  .spa-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 45px 0 30px;
  }
  .footer-brand img {
    width: 135px;
  }
  .footer-booking img {
    max-width: 160px;
  }
  .lightbox__prev {
    left: 6px;
  }
  .lightbox__next {
    right: 6px;
  }
  .lightbox button {
    font-size: 40px;
  }
  .lightbox__close {
    top: 4px;
    right: 4px;
  }
  .scroll-top {
    width: 45px;
    height: 45px;
    right: 14px;
    bottom: 14px;
  }
  .reviews {
    margin-top: 25px;
  }
}
