:root {
  --bg: #f3eee6;
  --panel: rgba(255, 251, 245, 0.78);
  --text: #23211e;
  --muted: #686158;
  --line: rgba(35, 33, 30, 0.12);
  --line-strong: rgba(35, 33, 30, 0.2);
  --accent: #9c8361;
  --accent-soft: rgba(156, 131, 97, 0.14);
  --shadow: 0 26px 80px rgba(42, 32, 20, 0.12);
  --shadow-soft: 0 12px 36px rgba(42, 32, 20, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 92px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #efe8de 48%, #f7f2eb 100%);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

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

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 12% 10%, rgba(156, 131, 97, 0.08), transparent 24%);
  z-index: -1;
}

.section {
  padding: 110px 0;
}

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

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #1e1b17 0%, #504234 100%);
  color: #fbf5ef;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border-color: rgba(35, 33, 30, 0.12);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  transition:
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 238, 229, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 33, 30, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  color: #fff;
}

.brand-sub {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-open .brand-mark {
  color: var(--text);
}

.site-header.is-scrolled .brand-sub,
.site-header.menu-open .brand-sub {
  color: var(--muted);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 3;
}

.lang-switch {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.lang-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  min-width: 44px;
  min-height: 36px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-button.active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-header.is-scrolled .lang-switch,
.site-header.menu-open .lang-switch {
  background: rgba(35, 33, 30, 0.04);
  border-color: rgba(35, 33, 30, 0.12);
}

.site-header.is-scrolled .lang-button,
.site-header.menu-open .lang-button {
  color: var(--muted);
}

.site-header.is-scrolled .lang-button.active,
.site-header.menu-open .lang-button.active {
  color: var(--text);
  background: rgba(35, 33, 30, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .site-nav {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] ul {
  padding-left: 0;
  padding-right: 1.15rem;
}

html[dir="rtl"] .gallery-item::after {
  text-align: right;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.site-header.is-scrolled .site-nav a,
.site-header.menu-open .site-nav a {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition: transform 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
  border-color: rgba(35, 33, 30, 0.14);
}

.site-header.is-scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span {
  background: var(--text);
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  background: #0f0e0d;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14, 12, 11, 0.14) 0%, rgba(14, 12, 11, 0.4) 44%, rgba(14, 12, 11, 0.88) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 227, 185, 0.12), transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 180px 0 120px;
  max-width: 760px;
}

.hero-content .eyebrow,
.hero-location,
.hero-text,
.hero-price {
  color: rgba(255, 250, 243, 0.88);
}

.hero-content h1 {
  color: #fff9f1;
}

.hero-location {
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.92rem;
}

.hero-price {
  margin-top: 26px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-family: var(--font-display);
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-facts {
  position: absolute;
  right: min(6vw, 80px);
  bottom: 52px;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(320px, calc(100vw - 40px));
}

.hero-fact {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-fact span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 243, 0.68);
}

.hero-fact strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff8ef;
}

.private-visits {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.private-visits .container {
  background: rgba(29, 26, 22, 0.9);
  color: #f7efe4;
  border-radius: 999px;
  padding: 14px 24px;
  text-align: center;
  max-width: 760px;
  box-shadow: var(--shadow-soft);
}

.private-visits p {
  margin: 0;
  color: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.intro-grid,
.experience-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.highlights-grid,
.metrics-grid,
.equipment-grid,
.amenities-grid,
.gallery-grid,
.video-grid,
.contact-actions {
  display: grid;
  gap: 24px;
}

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

.highlight-card,
.metric,
.equipment-card,
.tab-panel,
.video-card,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.highlight-card {
  padding: 28px;
}

.highlight-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.highlight-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.experience-media img,
.location-media img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.experience-points {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.experience-points strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

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

.metric {
  padding: 24px 18px;
  text-align: center;
}

.metric span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--text);
}

.tabs {
  display: grid;
  gap: 24px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tab-button {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
  cursor: pointer;
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus-visible {
  background: linear-gradient(135deg, #25211d 0%, #574736 100%);
  color: #f8f1e6;
  border-color: transparent;
  transform: translateY(-2px);
}

.tab-panel {
  display: none;
  padding: 32px;
}

.tab-panel.active {
  display: block;
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
}

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

.equipment-card {
  padding: 30px;
}

.equipment-card h3 {
  margin-bottom: 18px;
}

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

.amenity-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.amenity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 14, 0.08) 15%, rgba(18, 16, 14, 0.72) 100%);
}

.amenity-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.amenity-copy h3,
.amenity-copy p {
  color: #f8f1e8;
}

.amenity-card:hover img {
  transform: scale(1.03);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background: #ddd2c5;
}

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

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding-top: 22px;
  font-size: 0.95rem;
  color: #fff8ef;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease, transform 280ms ease;
  text-align: left;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 15, 13, 0.02), rgba(17, 15, 13, 0.72));
  opacity: 0;
  transition: opacity 280ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

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

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

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

.video-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #0e0c0b;
}

.video-frame video {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
}

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

.video-card {
  padding: 18px;
}

.video-card .video-frame {
  margin-bottom: 18px;
}

.video-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.cta {
  padding-top: 40px;
}

.cta-panel {
  padding: 48px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(42, 35, 28, 0.95), rgba(76, 61, 47, 0.95)),
    var(--panel);
}

.cta-panel h2,
.cta-panel p {
  color: #f8f1e6;
}

.contact-compact {
  padding-top: 40px;
}

.contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.button-contact {
  min-height: 74px;
  font-size: 1rem;
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

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

.footer-brand {
  margin-bottom: 6px;
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(15, 12, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 80;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-figure {
  max-width: min(1100px, 92vw);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-figure figcaption {
  margin-top: 14px;
  color: rgba(255, 250, 243, 0.82);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .highlights-grid,
  .equipment-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-facts {
    position: static;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -56px auto 0;
    padding: 0 20px 40px;
  }

  .hero {
    display: block;
  }

  .hero-content {
    padding-bottom: 88px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% - 6px);
    left: 20px;
    right: 20px;
    padding: 22px;
    background: rgba(247, 242, 233, 0.96);
    border: 1px solid rgba(35, 33, 30, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav a {
    color: var(--text);
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.menu-open {
    background: rgba(244, 238, 229, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(35, 33, 30, 0.08);
  }

  .intro-grid,
  .experience-grid,
  .location-grid,
  .video-feature,
  .tab-panel-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .gallery-grid,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .experience-media img,
  .location-media img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 82px 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-controls {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    padding-top: 154px;
  }

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

  .hero-actions,
  .tab-buttons,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .tab-button {
    width: 100%;
  }

  .highlights-grid,
  .equipment-grid,
  .amenities-grid,
  .gallery-grid,
  .video-grid,
  .metrics-grid,
  .hero-facts,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    padding-left: 0;
    padding-right: 0;
  }

  .highlight-card,
  .equipment-card,
  .metric,
  .tab-panel,
  .cta-panel,
  .video-card {
    padding: 22px;
  }

  .amenity-card {
    min-height: 420px;
  }

  .lightbox {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
