:root {
  --sand: #f5f0e8;
  --sand-dark: #e8dfd4;
  --stone: #5c5348;
  --stone-dark: #3d3832;
  --terracotta: #c76a3a;
  --terracotta-dark: #a8562f;
  --dusk: #2f3d4a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(47, 61, 74, 0.12);
  --radius: 14px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --header-h: 80px;
  --header-shell-radius: 18px;
  --layout-max: 1360px;
  --layout-gutter: 1.15rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--dusk);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--stone);
  background: var(--sand);
}

body.has-hero-header {
  background: var(--dusk);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terracotta-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--stone-dark);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(var(--layout-max), calc(100% - var(--layout-gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: var(--sand-dark);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head p {
  margin-top: 0.75rem;
  color: var(--stone);
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.lead {
  font-size: 1.125rem;
  max-width: 52ch;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand);
  opacity: 0.92;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

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

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

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

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* —— Header: invisible at top, pill appears on scroll —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  margin: 0;
  pointer-events: none;
  background: transparent;
}

.header-shell {
  pointer-events: auto;
  width: min(var(--layout-max), calc(100% - var(--layout-gutter) * 2));
  margin-inline: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    border-radius 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    width 0.4s ease,
    margin 0.4s ease;
}

.site-header.is-scrolled {
  padding: 0.5rem 0 0;
}

.site-header.is-scrolled .header-shell {
  width: min(var(--layout-max), calc(100% - var(--layout-gutter) * 2));
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.65);
  border-radius: var(--header-shell-radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 36px rgba(47, 61, 74, 0.1),
    0 2px 8px rgba(47, 61, 74, 0.05);
}

/* At top (no scroll): dark text — readable on light page background */
.site-header:not(.is-scrolled) .brand-text {
  color: var(--stone-dark);
}

.site-header:not(.is-scrolled) .brand-tagline {
  color: var(--terracotta);
}

.site-header:not(.is-scrolled) .nav-list a {
  color: var(--stone);
}

.site-header:not(.is-scrolled) .nav-list a:hover {
  color: var(--terracotta-dark);
  background: rgba(199, 106, 58, 0.08);
}

.site-header:not(.is-scrolled) .nav-list a.is-active {
  color: var(--terracotta);
  background: rgba(199, 106, 58, 0.12);
}

/* Hero pages: image goes under transparent header → white text */
.has-hero-header .hero--img,
.has-hero-header .page-hero--img {
  margin-top: calc(-1 * var(--header-h));
}

.has-hero-header .hero--img {
  min-height: calc(clamp(520px, 78vh, 760px) + var(--header-h));
  padding-top: calc(var(--header-h) + 1rem);
}

.has-hero-header .page-hero--img {
  min-height: calc(280px + var(--header-h));
  padding-top: calc(var(--header-h) + 1rem);
}

.has-hero-header .site-header:not(.is-scrolled) .brand-text {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.has-hero-header .site-header:not(.is-scrolled) .brand-tagline {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.has-hero-header .site-header:not(.is-scrolled) .nav-list a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.has-hero-header .site-header:not(.is-scrolled) .nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.has-hero-header .site-header:not(.is-scrolled) .nav-list a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.has-hero-header .site-header:not(.is-scrolled) .nav-panel-footer {
  border-inline-start-color: rgba(255, 255, 255, 0.25);
}

.has-hero-header .site-header:not(.is-scrolled) .lang-switch {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.has-hero-header .site-header:not(.is-scrolled) .lang-switch__item {
  color: rgba(255, 255, 255, 0.9);
}

.has-hero-header .site-header:not(.is-scrolled) .lang-switch__item.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--stone-dark);
  text-shadow: none;
}

.has-hero-header .site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.has-hero-header .site-header:not(.is-scrolled) .nav-toggle__bars span {
  background: #fff;
}

/* Scrolled pill always uses dark text (base styles below) */

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.55rem 1.15rem 0.55rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--stone-dark);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.88;
  color: var(--stone-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, var(--sand-dark) 100%);
  box-shadow:
    0 0 0 1px rgba(92, 83, 72, 0.08),
    0 4px 14px rgba(47, 61, 74, 0.1);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(92, 83, 72, 0.06);
  border: 1px solid rgba(92, 83, 72, 0.1);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--stone-dark);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(199, 106, 58, 0.1);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.nav-toggle__bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--stone-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle__label {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.5rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 993px) {
  .header-inner {
    position: relative;
  }

  .site-nav {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-list {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--stone);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover {
  color: var(--terracotta-dark);
  background: rgba(199, 106, 58, 0.08);
}

.nav-list a.is-active {
  color: var(--terracotta);
  background: rgba(199, 106, 58, 0.14);
  font-weight: 600;
}

.nav-panel-footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-inline-start: 0.5rem;
  padding-inline-start: 0.65rem;
  border-inline-start: 1px solid rgba(92, 83, 72, 0.12);
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: rgba(92, 83, 72, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(92, 83, 72, 0.08);
}

.lang-switch__item {
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--stone);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch__item:hover {
  color: var(--stone-dark);
}

.lang-switch__item.is-active {
  background: var(--white);
  color: var(--stone-dark);
  box-shadow: 0 1px 4px rgba(47, 61, 74, 0.12);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--white);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(199, 106, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(199, 106, 58, 0.45);
}

.btn-book__icon {
  opacity: 0.9;
}

html[dir="rtl"] .btn-book__icon {
  transform: scaleX(-1);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(47, 61, 74, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-backdrop[hidden] {
  display: block;
  visibility: hidden;
}

.nav-backdrop.is-visible[hidden] {
  visibility: visible;
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: center;
  background: var(--dusk);
  color: var(--white);
  overflow: hidden;
}

.hero.hero--portrait-focus {
  display: block;
}

.hero--img .hero__bg,
.page-hero--img .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Home hero: portrait subject — keep face + sunset visible (text stays left) */
.hero--portrait-focus .hero__bg {
  object-position: 72% 42%;
}

@media (max-width: 768px) {
  .hero--portrait-focus .hero__bg {
    object-position: 65% 38%;
  }
}

.hero--portrait-focus .hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(47, 61, 74, 0.88) 0%,
    rgba(47, 61, 74, 0.55) 42%,
    rgba(47, 61, 74, 0.18) 68%,
    rgba(47, 61, 74, 0.08) 100%
  );
}

.hero--img .hero__overlay,
.page-hero--img .hero__overlay {
  z-index: 1;
}

.hero--img .hero__content,
.page-hero--img .container {
  position: relative;
  z-index: 2;
}

.hero__overlay,
.page-hero--short .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 61, 74, 0.72), rgba(47, 61, 74, 0.35));
}

.hero--portrait-focus .hero__content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--layout-max), calc(100% - var(--layout-gutter) * 2));
  max-width: none;
  margin: 0;
  padding: 0 0 4.5rem;
  box-sizing: border-box;
}

.hero__content {
  position: relative;
  max-width: 36rem;
  padding: 6rem 0 4rem;
}

.hero__content .kicker {
  margin-bottom: 0.75rem;
  letter-spacing: 0.16em;
}

.hero__title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  white-space: pre-line;
  max-width: none;
  margin: 0 0 1.25rem;
}

.hero__subtitle {
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.65;
  opacity: 0.96;
  margin-bottom: 0.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-hero {
  padding: 4rem 0 2.5rem;
  background: var(--sand-dark);
}

.page-hero--short {
  position: relative;
  color: var(--white);
  background: var(--dusk);
  overflow: hidden;
}

.page-hero--img {
  min-height: 280px;
  display: grid;
  align-items: end;
  padding: 3rem 0 2rem;
}

.page-hero--short .container {
  position: relative;
  z-index: 1;
}

.page-hero--short h1,
.page-hero--short .lead {
  color: var(--white);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Home intro — distinct from full-bleed hero & experience cards */
.intro-section {
  background: var(--white);
  border-block: 1px solid rgba(92, 83, 72, 0.08);
}

.intro-kicker {
  margin: 0 0 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
}

.intro-split__media img {
  aspect-ratio: 16 / 11;
  min-height: 0;
  object-position: center;
}

.intro-split__content {
  max-width: 36rem;
}

@media (min-width: 900px) {
  .split--reverse .split__content {
    order: 1;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .intro-split {
    gap: 3rem;
  }

  .intro-split__content {
    padding-inline-end: 0.5rem;
  }
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.exp-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.exp-card__media img,
.exp-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.exp-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp-card__price {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  font-weight: 700;
}

.exp-card__title {
  margin: 0 0 0.5rem;
}

.exp-card__title a {
  text-decoration: none;
  color: inherit;
}

.exp-card__text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.exp-card__meta {
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}

.exp-card__link {
  margin-top: auto;
  font-weight: 600;
  text-decoration: none;
}

.exp-grid--compact .exp-card__text {
  display: none;
}

.cta-band {
  background: var(--dusk);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band__inner {
  text-align: center;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* —— Gallery (bento showcase) —— */
.gallery-section .container {
  max-width: var(--layout-max);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(148px, 18vw);
  gap: clamp(0.55rem, 1vw, 0.85rem);
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stone-dark);
  width: 100%;
  height: 100%;
  min-height: 0;
  box-shadow: 0 8px 28px rgba(42, 36, 30, 0.1);
  animation: galleryTileIn 0.55s ease backwards;
  animation-delay: calc(var(--gallery-i, 0) * 0.035s);
}

.gallery-item--hero {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 6;
  grid-row: span 1;
}

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

.gallery-item--sm {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item__frame {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 24, 0) 35%,
    rgba(15, 20, 24, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item__zoom {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--terracotta-dark);
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

html[dir="rtl"] .gallery-item__zoom {
  right: auto;
  left: 0.85rem;
}

.gallery-item:hover .gallery-item__frame img,
.gallery-item:focus-visible .gallery-item__frame img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item__shade,
.gallery-item:focus-visible .gallery-item__shade {
  opacity: 1;
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@keyframes galleryTileIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .gallery-showcase {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(130px, 22vw);
  }

  .gallery-item--hero {
    grid-column: span 6;
    grid-row: span 2;
  }

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

  .gallery-item--tall,
  .gallery-item--sm {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .gallery-showcase {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(150px, 42vw);
    gap: 0.55rem;
  }

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

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

  .gallery-item--tall,
  .gallery-item--sm {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--stone);
  font-size: 0.95rem;
}

.content-narrow {
  max-width: min(760px, 100%);
}

.check-list {
  padding-left: 1.2rem;
}

.check-list li {
  margin-bottom: 0.5rem;
}

.check-list--compact {
  font-size: 0.95rem;
}

.price-note {
  font-weight: 600;
  color: var(--terracotta);
}

/* —— Contact page —— */
.contact-section .container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 83, 72, 0.06);
  height: 100%;
}

.contact-channel--accent {
  border-color: rgba(199, 106, 58, 0.2);
  background: linear-gradient(165deg, #fff 0%, rgba(199, 106, 58, 0.06) 100%);
}

.contact-channel__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(199, 106, 58, 0.12);
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.contact-channel__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0;
  color: var(--stone-dark);
}

.contact-channel__main {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.contact-channel__main a {
  text-decoration: none;
}

.contact-channel__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}

.contact-channel .btn-block {
  margin-top: auto;
  padding-top: 0.75rem;
  width: 100%;
}

.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(92, 83, 72, 0.06);
}

.contact-form-panel__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(92, 83, 72, 0.1);
}

.contact-form-panel__head h2 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
}

.contact-tips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.contact-tips li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.92rem;
  color: var(--stone);
}

.contact-tips li::before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.booking-form--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}

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

@media (min-width: 640px) {
  .contact-channels {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

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

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(92, 83, 72, 0.25);
  border-radius: 8px;
  font: inherit;
  background: var(--sand);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  background: var(--dusk);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 0;
  margin-top: 3rem;
}

.site-footer a {
  color: #f0e6d8;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.4rem;
}

.footer-tagline {
  max-width: 28ch;
}

.footer-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.88rem;
  opacity: 0.8;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.04);
}

.text-center {
  text-align: center;
}

.text-muted {
  opacity: 0.85;
  font-size: 0.95rem;
}

.page-404 {
  min-height: 50vh;
  display: grid;
  place-items: center;
}

html[dir="rtl"] .nav-list {
  justify-content: flex-end;
}

html[dir="rtl"] .nav-panel-footer {
  border-inline-start: none;
  border-inline-end: 1px solid rgba(92, 83, 72, 0.12);
  padding-inline-start: 0;
  padding-inline-end: 0.65rem;
  margin-inline-start: 0;
  margin-inline-end: 0.5rem;
}

html[dir="rtl"] .hero__actions,
html[dir="rtl"] .form-actions,
html[dir="rtl"] .cta-band__actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .exp-card__link {
  text-align: end;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 1.1rem;
}

html[dir="rtl"] .check-list {
  padding-right: 1.2rem;
  padding-left: 0;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 1100px) {
  .nav-list a {
    font-size: 0.78rem;
    padding: 0.4rem 0.45rem;
  }

  .brand-tagline {
    display: none;
  }
}

@media (max-width: 992px) {
  .site-header:not(.is-scrolled) .header-shell {
    width: 100%;
  }

  .site-header.is-scrolled .header-shell {
    width: calc(100% - var(--layout-gutter) * 2);
    border-radius: 14px;
    margin-top: 0.35rem;
  }

  .header-inner {
    padding: 0.5rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle__label {
    display: inline;
  }

  .brand-tagline {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 0.5rem) 1.25rem 1.5rem;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -8px 0 40px rgba(47, 61, 74, 0.15);
    transform: translateX(105%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    overflow-y: auto;
  }

  html[dir="rtl"] .site-nav {
    inset-inline-end: auto;
    inset-inline-start: 0;
    box-shadow: 8px 0 40px rgba(47, 61, 74, 0.15);
    transform: translateX(-105%);
  }

  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    flex: 1;
    position: static;
    transform: none;
  }

  .nav-list a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }

  .nav-panel-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding: 1.25rem 0 0;
    border-inline: none;
    border-top: 1px solid rgba(92, 83, 72, 0.12);
  }

  .lang-switch {
    justify-content: center;
    width: 100%;
  }

  .lang-switch__item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .btn-book {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --layout-gutter: 0.9rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero {
    min-height: clamp(460px, 76vh, 620px);
  }

  .has-hero-header .hero--img {
    min-height: calc(clamp(460px, 76vh, 620px) + var(--header-h));
  }

  .hero__content {
    padding: 5rem 0 3rem;
  }

  .hero--portrait-focus .hero__content {
    padding: 0 0 3rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .site-header.is-scrolled {
    padding-top: 0.35rem;
  }

  .header-inner {
    min-height: 72px;
    gap: 0.7rem;
    padding: 0.45rem 0.8rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .site-nav {
    width: min(340px, 90vw);
    padding: calc(var(--header-h) + 0.35rem) 1rem 1.25rem;
  }

  .feature-grid,
  .exp-grid {
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .contact-form-panel {
    padding: 1.4rem 1.2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 68px;
  }

  .section {
    padding: 2.8rem 0;
  }

  .hero {
    min-height: clamp(420px, 72vh, 540px);
  }

  .has-hero-header .hero--img {
    min-height: calc(clamp(420px, 72vh, 540px) + var(--header-h));
  }

  .hero__content {
    padding: 4.4rem 0 2.4rem;
  }

  .hero--portrait-focus .hero__content {
    padding: 0 0 2.4rem;
  }

  .hero__actions,
  .cta-band__actions,
  .faq-section__cta,
  .exp-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .cta-band__actions .btn,
  .faq-section__cta .btn,
  .exp-detail-actions .btn {
    width: 100%;
  }

  .site-header.is-scrolled .header-shell {
    width: calc(100% - var(--layout-gutter) * 2);
    border-radius: 12px;
  }

  .header-inner {
    min-height: 68px;
    padding: 0.4rem 0.7rem;
  }

  .brand {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 44vw;
  }

  .nav-toggle {
    padding: 0.4rem 0.55rem;
  }

  .nav-toggle__label {
    display: none;
  }

  .site-nav {
    width: 100%;
    max-width: none;
    padding: calc(var(--header-h) + 0.3rem) 0.85rem 1rem;
  }

  .nav-list a {
    font-size: 0.97rem;
    padding: 0.7rem 0.85rem;
  }

  .contact-form-panel__head h2 {
    font-size: 1.3rem;
  }

  .lightbox {
    padding: 4.5rem 0.75rem 1rem;
  }

  .lightbox__img {
    max-height: 72vh;
  }

  .lightbox__nav {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.25rem;
    top: auto;
    bottom: 0.9rem;
    transform: none;
  }

  .lightbox__prev {
    left: 0.75rem;
  }

  .lightbox__next {
    right: 0.75rem;
  }

  .lightbox__nav:hover {
    transform: scale(1.04);
  }
}

.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(199, 106, 58, 0.12);
  color: var(--stone-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.form-feedback.is-error {
  background: rgba(180, 50, 40, 0.12);
  color: #8b2e26;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 20, 24, 0.94);
  display: grid;
  place-items: center;
  padding: 3.5rem 4rem;
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(1200px, 100%);
  width: 100%;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s ease;
}

.lightbox__img.is-changing {
  opacity: 0.35;
}

.lightbox__counter {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

html[dir="rtl"] .lightbox__close {
  right: auto;
  left: 1rem;
}

html[dir="rtl"] .lightbox__prev {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .lightbox__next {
  right: auto;
  left: 1rem;
}

body.lightbox-open {
  overflow: hidden;
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 0.5rem;
  opacity: 0.6;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--white);
}

.page-hero--short:not(.page-hero--img) .breadcrumbs a,
.page-hero--short:not(.page-hero--img) .breadcrumbs span {
  color: var(--stone);
}

/* —— FAQ accordion (all pages) —— */
.faq-section__inner {
  max-width: 820px;
  margin-inline: auto;
}

.faq-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.faq-accordion {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(92, 83, 72, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-accordion__item {
  border-bottom: 1px solid rgba(92, 83, 72, 0.08);
}

.faq-accordion__item:last-child {
  border-bottom: none;
}

.faq-accordion__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;
  width: 100%;
  padding: 1.1rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--stone-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

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

.faq-accordion__trigger::marker {
  content: "";
}

.faq-accordion__item[open] .faq-accordion__trigger {
  background: rgba(199, 106, 58, 0.06);
  color: var(--terracotta-dark);
}

.faq-accordion__trigger:hover {
  background: rgba(199, 106, 58, 0.04);
}

.faq-accordion__index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  opacity: 0.85;
  min-width: 1.5rem;
}

.faq-accordion__question {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  text-align: start;
}

.faq-accordion__toggle {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(199, 106, 58, 0.12);
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-accordion__toggle::before,
.faq-accordion__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.faq-accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion__item[open] .faq-accordion__toggle {
  background: var(--terracotta);
  transform: rotate(0deg);
}

.faq-accordion__item[open] .faq-accordion__toggle::before,
.faq-accordion__item[open] .faq-accordion__toggle::after {
  background: var(--white);
}

.faq-accordion__item[open] .faq-accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-accordion__answer {
  padding: 0 1.35rem 1.15rem 3.7rem;
  animation: faqReveal 0.35s ease;
}

.faq-accordion__answer p {
  margin: 0;
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.65;
  border-inline-start: 2px solid rgba(199, 106, 58, 0.35);
  padding-inline-start: 1rem;
}

.faq-accordion--preview .faq-accordion__trigger {
  padding: 1rem 1.2rem;
}

.faq-accordion--preview .faq-accordion__answer {
  padding-inline-start: 3.4rem;
}

html[dir="rtl"] .faq-accordion__answer {
  padding: 0 3.7rem 1.15rem 1.35rem;
}

html[dir="rtl"] .faq-accordion--preview .faq-accordion__answer {
  padding-inline-start: 1.35rem;
  padding-inline-end: 3.4rem;
}

html[dir="rtl"] .faq-accordion__answer p {
  border-inline-start: none;
  border-inline-end: 2px solid rgba(199, 106, 58, 0.35);
  padding-inline-start: 0;
  padding-inline-end: 1rem;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .faq-accordion__trigger {
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    padding: 1rem 1rem;
  }

  .faq-accordion__index {
    display: none;
  }

  .faq-accordion__answer {
    padding: 0 1rem 1rem;
  }

  html[dir="rtl"] .faq-accordion__answer {
    padding: 0 1rem 1rem;
  }
}

.h3-like {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem;
}

.exp-detail {
  font-size: 1.05rem;
}

.exp-detail-meta {
  margin: 1.25rem 0;
}

.exp-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.exp-card__link--book {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

html[dir="rtl"] .breadcrumbs li:not(:last-child)::after {
  content: "\\";
}
