@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --lava: #1f1f1f;
  --lava-soft: #2d2924;
  --sand: #d8c3a5;
  --ivory: #f7f2ea;
  --ivory-deep: #efe4d4;
  --terracotta: #a65a3f;
  --terracotta-dark: #85452f;
  --gold: #b89b5e;
  --white: #fffaf3;
  --muted: #6e6257;
  --line: rgba(31, 31, 31, 0.14);
  --line-light: rgba(247, 242, 234, 0.22);
  --shadow: 0 18px 60px rgba(31, 31, 31, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--lava);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--lava);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(31, 31, 31, 0.94);
  border-bottom-color: rgba(247, 242, 234, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 39px;
  color: var(--gold);
}

.brand__mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.brand__text {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.brand__text span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.brand__text small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.9px;
  color: var(--sand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav__item {
  position: relative;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-subnav {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 4;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(247, 242, 234, 0.14);
  border-radius: 8px;
  background: rgba(31, 31, 31, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.site-nav__item:hover .site-subnav,
.site-nav__item:focus-within .site-subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-subnav a {
  display: block;
  padding: 11px 12px;
  border-radius: 5px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 11px;
  line-height: 1.3;
  white-space: normal;
}

.site-subnav a::after {
  display: none;
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  background: rgba(247, 242, 234, 0.08);
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-switcher__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 58px;
  height: 38px;
  padding: 0 30px 0 13px;
  border: 1px solid rgba(247, 242, 234, 0.22);
  border-radius: 6px;
  background: rgba(247, 242, 234, 0.04);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.language-switcher__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(-35%);
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-switcher__button::after {
  transform: translateY(-55%) rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 176px;
  padding: 6px;
  border: 1px solid rgba(247, 242, 234, 0.16);
  border-radius: 8px;
  background: rgba(31, 31, 31, 0.98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__menu a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px;
  border-radius: 6px;
  color: rgba(255, 250, 243, 0.78);
  line-height: 1.2;
}

.language-switcher__menu span {
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.language-switcher__menu small {
  color: rgba(255, 250, 243, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.language-switcher__menu a:hover,
.language-switcher__menu a:focus-visible {
  background: rgba(247, 242, 234, 0.08);
}

.language-switcher__menu a[aria-current="true"] {
  background: var(--ivory);
}

.language-switcher__menu a[aria-current="true"] span,
.language-switcher__menu a[aria-current="true"] small {
  color: var(--lava);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--terracotta-dark);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(247, 242, 234, 0.36);
  background: rgba(31, 31, 31, 0.12);
}

.btn--secondary {
  background: var(--lava);
  color: var(--white);
}

.btn--whatsapp {
  gap: 8px;
  background: #1f7a4f;
  color: var(--white);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #17643f;
}

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(247, 242, 234, 0.2);
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  grid-area: 1 / 1;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--lava);
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
  opacity: 0.92;
}

.hero__image {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--lava-soft);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.92), rgba(31, 31, 31, 0.7) 42%, rgba(31, 31, 31, 0.26) 100%),
    linear-gradient(180deg, rgba(31, 31, 31, 0.3), rgba(31, 31, 31, 0.18) 36%, rgba(31, 31, 31, 0.52));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  padding-top: 86px;
}

.hero__content > * {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  font-size: clamp(58px, 8vw, 104px);
  max-width: 680px;
}

h1 span {
  color: var(--terracotta);
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
}

h3 {
  font-size: 31px;
}

.hero__content p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.feature-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}

.feature-item {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 42px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.icon-badge,
.service-item__icon {
  display: inline-grid;
  place-items: center;
  color: var(--terracotta);
}

.icon-badge svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h2 {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-item p {
  max-width: 260px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading--narrow {
  max-width: 650px;
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.split,
.location-grid,
.faq-grid,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.lava-panel {
  position: relative;
  padding: 44px;
  border-radius: 8px;
  background: var(--lava);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lava-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 195, 165, 0.22);
  border-radius: 4px;
  pointer-events: none;
}

.lava-panel ul,
.spot-list,
.final-cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lava-panel li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 250, 243, 0.88);
}

.lava-panel li:last-child {
  border-bottom: 0;
}

.lava-panel li::before,
.spot-list li::before,
.final-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.rooms-section {
  background: var(--ivory-deep);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(31, 31, 31, 0.08);
}

.room-card__media {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.room-card__image {
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.room-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card__overlay {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.82), rgba(31, 31, 31, 0));
  color: var(--white);
}

.room-card__overlay h3 {
  max-width: 280px;
  font-size: 30px;
  line-height: 1;
}

.room-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.room-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.room-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.room-card__link:hover,
.room-card__link:focus-visible {
  background: var(--terracotta-dark);
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--lava);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-detail-hero {
  padding: 156px 0 82px;
  background: var(--lava);
  color: var(--white);
}

.room-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.room-detail-hero__copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 18px;
}

.room-detail-hero__copy h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 92px);
}

.room-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-detail-hero__media {
  padding: 12px;
  border: 1px solid rgba(247, 242, 234, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.06);
}

.room-detail-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}

.room-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-carousel {
  display: grid;
  gap: 12px;
}

.room-carousel__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: rgba(255, 250, 243, 0.08);
}

.room-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.room-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.room-carousel__picture,
.room-carousel__picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.room-carousel__picture img {
  object-fit: cover;
}

.room-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 242, 234, 0.44);
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.44);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.room-carousel__control:hover,
.room-carousel__control:focus-visible {
  background: rgba(166, 90, 63, 0.88);
  transform: translateY(-50%) scale(1.04);
}

.room-carousel__control--prev {
  left: 14px;
}

.room-carousel__control--next {
  right: 14px;
}

.room-carousel__control span {
  font-size: 24px;
  line-height: 1;
}

.room-carousel__meta {
  display: flex;
  justify-content: flex-end;
  color: rgba(255, 250, 243, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.room-carousel__thumbs {
  display: grid;
  grid-auto-columns: 72px;
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.room-carousel__thumb {
  overflow: hidden;
  width: 72px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: rgba(255, 250, 243, 0.1);
  cursor: pointer;
  opacity: 0.64;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.room-carousel__thumb:hover,
.room-carousel__thumb:focus-visible,
.room-carousel__thumb.is-active {
  border-color: var(--sand);
  opacity: 1;
}

.room-carousel__thumb.is-active {
  transform: translateY(-1px);
}

.room-carousel__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-block {
  padding: 24px;
}

.room-gallery-block h2 {
  margin-bottom: 18px;
}

.room-carousel--content .room-carousel__viewport {
  aspect-ratio: 4 / 3;
  background: var(--ivory);
}

.room-carousel--content .room-carousel__meta {
  color: var(--muted);
}

.room-carousel--content .room-carousel__thumb {
  background: var(--ivory);
}

.room-carousel--content .room-carousel__thumb:hover,
.room-carousel--content .room-carousel__thumb:focus-visible,
.room-carousel--content .room-carousel__thumb.is-active {
  border-color: var(--terracotta);
}

.room-detail-section {
  background: var(--ivory);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.room-summary {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(31, 31, 31, 0.08);
}

.room-summary h2,
.room-detail-block h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.room-summary dl {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.room-summary dl > div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.room-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-summary dd {
  margin: 5px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.room-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.room-detail-content {
  display: grid;
  gap: 18px;
}

.room-feature-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.room-feature-band span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--lava);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.room-detail-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.advice-hero {
  padding: 150px 0 88px;
  background: var(--lava);
  color: var(--white);
}

.advice-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 70px;
  align-items: center;
}

.advice-hero h1 {
  max-width: 850px;
  font-size: clamp(54px, 7vw, 96px);
}

.advice-hero__copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 18px;
}

.advice-hero__media {
  padding: 12px;
  border: 1px solid rgba(247, 242, 234, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.06);
}

.advice-hero__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}

.advice-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advice-quick {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.advice-quick__grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 42px 0;
}

.advice-quick h2 {
  font-size: 42px;
}

.advice-quick ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.advice-quick li {
  padding: 24px;
  background: var(--white);
  color: var(--muted);
  font-size: 15px;
}

.advice-list {
  display: grid;
  gap: 56px;
}

.advice-destination {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.advice-destination:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.advice-destination__intro {
  position: sticky;
  top: 110px;
}

.advice-destination__intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.advice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.advice-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.advice-card h3,
.itinerary-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.advice-card p,
.itinerary-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.itinerary-section {
  background: var(--ivory-deep);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.itinerary-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.advice-sources {
  padding: 82px 0;
  background: var(--lava);
  color: var(--white);
}

.advice-sources__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.advice-sources h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
}

.advice-sources nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.advice-sources a {
  padding: 11px 13px;
  border: 1px solid rgba(247, 242, 234, 0.2);
  border-radius: 4px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.services-section {
  background: var(--lava);
  color: var(--white);
}

.services-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 243, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.service-item {
  min-height: 230px;
  padding: 34px;
  background: #27231f;
}

.service-item__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  margin-top: 24px;
  font-size: 27px;
}

.service-item p {
  margin: 12px 0 0;
  color: rgba(255, 250, 243, 0.7);
  font-size: 15px;
}

.location-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
}

.location-media {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-media::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: 36px;
  width: 68px;
  height: 150px;
  border: 1px solid var(--gold);
  border-radius: 40px 40px 0 0;
  opacity: 0.55;
}

.location-image {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.spot-list li,
.final-cta li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.spot-list li::before,
.final-cta li::before {
  top: 9px;
}

.gallery-section {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.trust-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-grid {
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-list article {
  padding: 28px;
  background: var(--ivory);
}

.trust-list h3 {
  font-size: 28px;
}

.trust-list p {
  margin: 9px 0 0;
  color: var(--muted);
}

.faq-grid {
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.faq-grid .section-copy {
  max-width: 760px;
}

.faq-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 12px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 23px 58px 23px 24px;
  cursor: pointer;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 21px;
  color: var(--terracotta);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.booking-section {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: 110px 0;
  background: var(--lava);
  color: var(--white);
}

.booking-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 195, 165, 0.18);
  pointer-events: none;
}

.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.booking-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.76);
}

.booking-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.booking-copy li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.booking-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.booking-form {
  max-width: 100%;
  padding: 30px;
  border: 1px solid rgba(216, 195, 165, 0.32);
  border-radius: 8px;
  background: var(--white);
  color: var(--lava);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--lava);
  font: inherit;
  padding: 12px 13px;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(166, 90, 63, 0.28);
  border-color: var(--terracotta);
}

.booking-form__note,
.booking-form__status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.booking-form__status {
  padding: 13px 14px;
  border: 1px solid rgba(166, 90, 63, 0.26);
  border-radius: 6px;
  background: rgba(166, 90, 63, 0.08);
  color: var(--lava);
}

.booking-form__status[hidden] {
  display: none;
}

.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.booking-form__actions .btn {
  flex: 1 1 190px;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #1f7a4f;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.26);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #17643f;
  box-shadow: 0 22px 50px rgba(31, 31, 31, 0.32);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--lava);
  color: var(--white);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 195, 165, 0.18);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  margin: 20px auto 0;
  max-width: 650px;
  color: rgba(255, 250, 243, 0.76);
}

.final-cta ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 28px 0 34px;
}

.final-cta li::before {
  background: var(--gold);
}

.site-footer {
  padding: 72px 0 28px;
  background: #171717;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 42px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 250, 243, 0.72);
}

.footer-grid .license {
  color: rgba(255, 250, 243, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.footer-grid p {
  margin: 20px 0 0;
}

.footer-links,
.footer-grid > div:last-child {
  display: grid;
  gap: 9px;
}

.footer-links a:hover,
.footer-grid a:hover {
  color: var(--sand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  color: rgba(255, 250, 243, 0.55);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.gallery-dialog {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(18, 18, 18, 0.88);
}

.gallery-dialog.is-open {
  display: grid;
}

.gallery-dialog img {
  max-height: min(86vh, 980px);
  width: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.gallery-dialog button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 242, 234, 0.3);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .site-nav,
  .header-actions > .language-switcher,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-inner {
    position: relative;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .mobile-panel {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 24px;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px max(20px, calc((100vw - 1120px) / 2)) 34px;
    background: rgba(31, 31, 31, 0.98);
    border-bottom: 1px solid rgba(247, 242, 234, 0.14);
    transform: translateY(-115%);
    transition: transform 190ms ease;
  }

  .site-header.is-open .mobile-panel {
    transform: translateY(0);
  }

  .mobile-nav,
  .mobile-language-wrap,
  .mobile-languages {
    display: grid;
    gap: 12px;
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(247, 242, 234, 0.12);
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-subnav {
    display: grid;
    gap: 4px;
    margin: -5px 0 8px;
    padding: 0 0 8px 14px;
    border-bottom: 1px solid rgba(247, 242, 234, 0.12);
  }

  .mobile-subnav a {
    padding: 8px 0;
    border-bottom: 0;
    color: rgba(255, 250, 243, 0.72);
    font-size: 12px;
    line-height: 1.25;
    text-transform: none;
  }

  .mobile-languages {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-languages a {
    padding: 12px;
    border: 1px solid rgba(247, 242, 234, 0.18);
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-languages a[aria-current="true"] {
    background: var(--ivory);
    color: var(--lava);
  }

  .mobile-language-wrap {
    justify-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(247, 242, 234, 0.12);
  }

  .language-switcher--mobile {
    width: min(100%, 240px);
  }

  .language-switcher--mobile .language-switcher__button {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switcher--mobile .language-switcher__menu {
    position: absolute;
    margin-top: 8px;
    width: 100%;
    max-height: none;
    transform: translateY(-4px);
  }

  .language-switcher--mobile.is-open .language-switcher__menu {
    position: static;
    transform: translateY(0);
  }

  .hero {
    min-height: 720px;
  }

  .feature-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .location-grid,
  .faq-grid,
  .trust-grid,
  .room-detail-hero__grid,
  .room-detail-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .room-summary {
    position: static;
  }

  .location-media {
    max-width: 560px;
  }

  .advice-hero__grid,
  .advice-quick__grid,
  .advice-destination,
  .advice-sources__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .advice-destination__intro {
    position: static;
  }

  .advice-quick ul,
  .itinerary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .booking-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(640px, calc(100vw - 28px));
  }

  body {
    font-size: 15px;
  }

  [id] {
    scroll-margin-top: 86px;
  }

  .header-inner {
    min-height: 74px;
    width: var(--container);
  }

  .brand__mark {
    width: 34px;
  }

  .brand__text span {
    font-size: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand__text span {
    max-width: 190px;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .brand__text small {
    font-size: 8px;
  }

  .mobile-panel {
    inset: 74px 0 auto;
    max-height: calc(100dvh - 74px);
    padding-inline: 14px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image img {
    object-position: center 48%;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(31, 31, 31, 0.84), rgba(31, 31, 31, 0.62)),
      linear-gradient(180deg, rgba(31, 31, 31, 0.18), rgba(31, 31, 31, 0.62));
  }

  .hero__content {
    padding-top: 116px;
    align-self: end;
    padding-bottom: 72px;
  }

  h1 {
    max-width: 320px;
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h3 {
    font-size: 28px;
  }

  .hero__content p:not(.eyebrow) {
    max-width: 330px;
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .feature-grid,
  .room-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-hero {
    padding: 120px 0 62px;
  }

  .room-detail-hero__copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .room-detail-hero__actions {
    width: 100%;
  }

  .room-carousel__control {
    width: 38px;
    height: 38px;
  }

  .room-carousel__thumbs {
    grid-auto-columns: 62px;
  }

  .room-carousel__thumb {
    width: 62px;
  }

  .detail-list--columns {
    grid-template-columns: 1fr;
  }

  .advice-hero {
    padding: 118px 0 62px;
  }

  .advice-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.03;
  }

  .advice-hero__copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .advice-quick h2 {
    font-size: 38px;
  }

  .advice-quick ul,
  .advice-card-grid,
  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .advice-card {
    min-height: auto;
    padding: 24px;
  }

  .advice-sources {
    padding: 64px 0;
  }

  .booking-section {
    padding: 78px 0;
  }

  .booking-form {
    padding: 22px;
  }

  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .feature-item {
    min-height: 180px;
  }

  .lava-panel,
  .room-card__content,
  .service-item,
  .trust-list article {
    padding: 26px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }

  .location-media::after {
    display: none;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 460px) {
  .brand__text span {
    max-width: 150px;
  }

  .mobile-languages {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .final-cta ul {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }
}
