@font-face {
  font-family: "Noto Sans";
  src: url("fonts/noto-sans-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/noto-sans-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/noto-sans-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Noto Sans";
  src: url("fonts/noto-sans-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Noto Serif";
  src: url("fonts/noto-serif-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Noto Serif";
  src: url("fonts/noto-serif-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Noto Serif";
  src: url("fonts/noto-serif-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Noto Serif";
  src: url("fonts/noto-serif-italic-400.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  --surface: #eef1ec;
  --surface-soft: #e3e9e1;
  --ink: #14252a;
  --ink-muted: #4b5a5e;
  --night: #12222c;
  --accent: #d3a243;
  --line: rgba(20, 37, 42, 0.16);
  --white: #f7f8f5;
  --radius-image: 22px;
  --radius-button: 999px;
  --shadow-soft: 0 18px 50px rgba(18, 34, 44, 0.12);
  --content: 1240px;
  --sans: "Noto Sans", Arial, sans-serif;
  --display: "Noto Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  color: var(--ink);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  outline: 1px solid rgba(20, 37, 42, 0.08);
  outline-offset: -1px;
}

iframe {
  border: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--night);
  font-size: 0.8rem;
  transform: translateY(-160%);
  transition: transform 160ms ease-out;
}

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

h1 {
  max-width: 10ch;
  font-size: clamp(3.35rem, 8vw, 7.5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.4vw, 6rem);
}

h3 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

p {
  max-width: 66ch;
  text-wrap: pretty;
}

::selection {
  background: var(--accent);
  color: var(--night);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(10, 22, 29, 0.46), rgba(10, 22, 29, 0.16) 64%, transparent);
  color: var(--white);
  transition-property: background-color, color, box-shadow, backdrop-filter;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.site-header.is-solid {
  background: rgba(238, 241, 236, 0.9);
  border-bottom: 1px solid rgba(20, 37, 42, 0.12);
  box-shadow: 0 10px 26px rgba(20, 37, 42, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

.brand-mark {
  width: 42px;
  height: 50px;
  padding: 3px;
  border: 1px solid rgba(247, 248, 245, 0.28);
  border-radius: 50%;
  background: var(--night);
  object-fit: contain;
}

.is-solid .brand-mark {
  border-color: rgba(20, 37, 42, 0.18);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.42rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  padding-inline: 24px;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  list-style: none;
}

.main-nav .nav-dropdown {
  position: relative;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease-out;
}

.nav-dropdown[open] > summary::after {
  transform: translateY(1px) rotate(225deg);
}

.main-nav a,
.footer-actions a {
  position: relative;
  transition-property: color, opacity;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition-property: opacity, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-actions a:hover {
  opacity: 0.68;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav .nav-dropdown > summary > span {
  position: relative;
}

.main-nav .nav-dropdown > summary > span::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.main-nav .nav-dropdown > summary:hover,
.main-nav .nav-dropdown > summary[aria-current="page"] {
  opacity: 0.68;
}

.main-nav .nav-dropdown > summary:hover > span::after,
.main-nav .nav-dropdown > summary[aria-current="page"] > span::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 218px;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(20, 37, 42, 0.12);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  transform: translateX(-50%);
}

.main-nav .nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}

.main-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
}

.main-nav .nav-dropdown-menu a::after {
  display: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a[aria-current="page"] {
  background: rgba(20, 37, 42, 0.08);
  opacity: 1;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switcher,
.mobile-languages {
  display: flex;
  align-items: center;
  gap: 2px;
}

.language-switcher button,
.mobile-languages button {
  min-width: 32px;
  min-height: 32px;
  padding: 4px 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  opacity: 0.78;
  transition-property: background-color, color, opacity, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.language-switcher button:hover,
.language-switcher button.is-active,
.mobile-languages button:hover,
.mobile-languages button.is-active {
  background: rgba(247, 248, 245, 0.15);
  opacity: 1;
}

.is-solid .language-switcher button:hover,
.is-solid .language-switcher button.is-active {
  background: rgba(20, 37, 42, 0.09);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  transition-property: transform, background-color, border-color, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

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

.button:active {
  transform: translateY(0) scale(0.97);
}

.button-small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.76rem;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.site-header:not(.is-solid) .button-dark {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(10, 22, 29, 0.16);
}

.site-header:not(.is-solid) .button-dark:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 22, 29, 0.24);
}

.button-dark:hover {
  background: #24383d;
  box-shadow: 0 8px 18px rgba(20, 37, 42, 0.18);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.button-outline-light {
  border-color: rgba(247, 248, 245, 0.64);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(247, 248, 245, 0.12);
}

.button-outline-dark {
  border-color: rgba(20, 37, 42, 0.35);
  color: var(--ink);
}

.button-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(20, 37, 42, 0.06);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(247, 248, 245, 0.7);
  border-radius: 50%;
  background: rgba(10, 22, 29, 0.32);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 22, 29, 0.14);
  transition-property: background-color, border-color, transform;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.menu-toggle:hover {
  border-color: var(--white);
  background: rgba(10, 22, 29, 0.52);
  transform: translateY(-1px);
}

.is-solid .menu-toggle {
  border-color: rgba(20, 37, 42, 0.3);
  background: rgba(20, 37, 42, 0.06);
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
  transition-property: transform;
  transition-duration: 180ms;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  inset: 0;
  display: grid;
  align-content: start;
  padding: 120px 24px 32px;
  background: var(--night);
  color: var(--white);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: grid;
  gap: 8px;
}

.mobile-nav nav a:not(.button) {
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 248, 245, 0.17);
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}

.mobile-nav .nav-dropdown {
  width: 100%;
}

.mobile-nav .nav-dropdown > summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 248, 245, 0.17);
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.03em;
}

.mobile-nav .nav-dropdown > summary::after {
  margin-right: 6px;
  border-width: 2px;
}

.mobile-nav .nav-dropdown-menu {
  display: grid;
  gap: 0;
  padding: 4px 0 8px 20px;
  border-bottom: 1px solid rgba(247, 248, 245, 0.17);
}

.mobile-nav .nav-dropdown-menu a:not(.button) {
  padding: 11px 0;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.mobile-nav .button {
  margin-top: 24px;
  width: max-content;
}

.mobile-languages {
  margin-top: 44px;
}

.mobile-languages button {
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.hero-media,
.hero-media::after,
.hero-poster,
.hero-media iframe {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: var(--night) url("images/camel-caravan.jpg") center / cover no-repeat;
}

.hero-poster {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-media iframe {
  z-index: -1;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.34);
  transform-origin: center;
  top: 50%;
  left: 50%;
  opacity: 0.98;
}

.hero-media::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 29, 0.82) 0%, rgba(10, 22, 29, 0.42) 42%, rgba(10, 22, 29, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 22, 29, 0.7), transparent 45%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 86px;
}

.hero h1 {
  max-width: 8ch;
}

.hero h1 em,
.display-emphasis {
  color: var(--accent);
  font-style: normal;
}

.hero-copy {
  max-width: 31rem;
  margin-top: 26px;
  color: rgba(247, 248, 245, 0.94);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-watch {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 42px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 48px);
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(247, 248, 245, 0.28);
  border-radius: 999px;
  background: rgba(10, 22, 29, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(247, 248, 245, 0.86);
  font-size: 0.8rem;
  transition-property: background-color, border-color, transform;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.hero-watch:hover {
  border-color: rgba(247, 248, 245, 0.52);
  background: rgba(10, 22, 29, 0.5);
  transform: translateY(-2px);
}

.hero-camel-mark {
  position: absolute;
  right: clamp(-18px, 1vw, 28px);
  bottom: clamp(-175px, -12vw, -100px);
  z-index: 0;
  width: clamp(190px, 20vw, 320px);
  pointer-events: none;
  opacity: 0.72;
  filter: drop-shadow(0 16px 25px rgba(10, 22, 29, 0.2));
}

.hero-camel-mark img {
  width: 100%;
  height: auto;
  outline: 0;
}

.hero-watch::before {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "▶";
  font-size: 0.56rem;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.section-soft {
  background: var(--surface-soft);
}

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

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

.section-heading p {
  max-width: 55ch;
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.section-night .section-heading p,
.section-night .muted {
  color: rgba(247, 248, 245, 0.72);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 150px);
}

.intro-copy p {
  max-width: 50ch;
  margin-top: 28px;
  color: var(--ink-muted);
  font-size: 1.06rem;
}

.intro-copy .text-link {
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.86rem;
  text-wrap: pretty;
  transition-property: gap, opacity;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.text-link::after {
  content: "↗";
  font-size: 1rem;
}

.text-link:hover {
  gap: 15px;
  opacity: 0.66;
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-image);
  background: var(--night);
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame:hover img {
  transform: scale(1.035);
}

.intro-image {
  height: min(68vw, 690px);
  min-height: 420px;
}

.intro-image img {
  object-position: 46% center;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--night);
  color: var(--white);
}

.experience-card:first-child {
  grid-row: 1 / span 2;
  min-height: 580px;
}

.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition-property: transform, opacity;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-card:hover img {
  opacity: 0.96;
  transform: scale(1.035);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(10, 22, 29, 0.9), rgba(10, 22, 29, 0.04) 74%);
  content: "";
}

.experience-card-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(22px, 4vw, 48px);
}

.experience-card h3 {
  max-width: 10ch;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.experience-card p {
  max-width: 38ch;
  margin-top: 15px;
  color: rgba(247, 248, 245, 0.82);
}

.experience-card .text-link {
  margin-top: 22px;
}

.card-flatbread img {
  object-position: 58% center;
}

.card-dinner img {
  object-position: 50% center;
}

.food-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(42px, 8vw, 140px);
}

.food-photo {
  height: min(66vw, 640px);
  min-height: 430px;
}

.food-photo img {
  object-position: center;
}

.food-copy p {
  max-width: 48ch;
  margin-top: 22px;
  color: rgba(247, 248, 245, 0.74);
  font-size: 1.05rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
}

.menu-item {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(247, 248, 245, 0.22);
  border-radius: 16px;
}

.menu-item h3 {
  max-width: 10ch;
  color: var(--accent);
  font-size: 2rem;
}

.menu-item p {
  margin-top: 12px;
  color: rgba(247, 248, 245, 0.7);
  font-size: 0.92rem;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 9vw, 150px);
}

.event-photo {
  height: min(65vw, 660px);
  min-height: 440px;
}

.event-photo img {
  object-position: 58% center;
}

.event-copy p {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.event-list {
  display: grid;
  gap: 0;
  margin: 36px 0 34px;
}

.event-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.event-list li:first-child {
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 150px);
}

.story-photo {
  height: min(66vw, 700px);
  min-height: 460px;
}

.story-photo img {
  object-position: 45% center;
}

.story-copy p {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: clamp(38px, 6vw, 78px);
  border-radius: var(--radius-image);
  background: var(--accent);
  color: var(--night);
}

.closing-panel h2 {
  max-width: 8ch;
}

.closing-panel p {
  max-width: 42ch;
  margin-top: 20px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(520px, 60vh, 680px);
  overflow: hidden;
  background: var(--night) var(--hero-image) center / cover no-repeat;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 22, 29, 0.78), rgba(10, 22, 29, 0.3) 56%, rgba(10, 22, 29, 0.14)), linear-gradient(0deg, rgba(10, 22, 29, 0.64), transparent 62%);
  content: "";
}

.page-hero-content {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 180px 0 82px;
}

.page-hero h1 {
  max-width: 9ch;
}

.page-hero p {
  max-width: 38ch;
  margin-top: 24px;
  color: rgba(247, 248, 245, 0.92);
  font-size: 1.12rem;
  line-height: 1.55;
}

.page-body {
  padding: clamp(56px, 7vw, 92px) 0;
}

.page-body > .container > p.lead {
  max-width: 60ch;
  color: var(--ink-muted);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.service-card {
  display: grid;
  grid-template-rows: minmax(250px, 28vw) auto;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--surface-soft);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-copy {
  padding: 30px;
}

.service-card-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.15rem, 3.8vw, 4rem);
}

.service-card-copy p {
  margin-top: 16px;
  color: var(--ink-muted);
}

.service-card-copy .text-link {
  margin-top: 22px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(48px, 9vw, 150px);
}

.detail-grid + .detail-grid {
  margin-top: clamp(60px, 8vw, 110px);
}

.detail-grid.reverse .detail-image {
  order: 2;
}

.detail-grid.reverse .detail-copy {
  order: 1;
}

.detail-image {
  min-height: 500px;
  height: min(60vw, 670px);
}

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

.detail-copy p {
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.detail-copy .button,
.detail-copy .text-link {
  margin-top: 28px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
}

.inline-actions .button,
.inline-actions .text-link {
  margin-top: 0;
}

.detail-copy h2 {
  max-width: 10ch;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.detail-list-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.detail-list-item h3 {
  max-width: 12ch;
  font-size: 2rem;
}

.detail-list-item p {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.contact-grid,
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-panel,
.book-panel {
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-image);
  background: var(--surface-soft);
}

.contact-panel:nth-child(2),
.book-panel:nth-child(2) {
  background: var(--night);
  color: var(--white);
}

.contact-panel h2,
.book-panel h2 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.contact-panel p,
.book-panel p {
  margin-top: 20px;
  color: var(--ink-muted);
}

.contact-panel:nth-child(2) p,
.book-panel:nth-child(2) p {
  color: rgba(247, 248, 245, 0.72);
}

.book-panel-featured {
  border: 1px solid rgba(211, 162, 67, 0.46);
  box-shadow: var(--shadow-soft);
}

.book-panel-featured .button {
  max-width: 30ch;
}

.contact-panel .button,
.book-panel .button {
  margin-top: 28px;
}

.contact-email {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(34px, 7vw, 110px);
}

.booking-image {
  height: min(62vw, 640px);
  min-height: 430px;
}

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

.booking-summary h2,
.booking-panel h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
}

.booking-summary > p,
.booking-panel > p {
  margin-top: 22px;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.booking-facts {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.booking-fact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.booking-fact span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.booking-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.booking-commercial-callout {
  margin-top: 24px;
  padding: 24px;
  border-top: 2px solid var(--accent);
  border-radius: 14px;
  background: rgba(211, 162, 67, 0.1);
}

.booking-commercial-callout h3 {
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
}

.booking-commercial-callout p {
  margin-top: 12px;
  color: var(--ink-muted);
}

.booking-commercial-callout .text-link {
  margin-top: 18px;
}

.booking-panel {
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-image);
  background: var(--surface-soft);
}

.booking-form {
  display: grid;
  gap: 17px;
  margin-top: 34px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.82rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 37, 42, 0.26);
  border-radius: 10px;
  background: rgba(247, 248, 245, 0.72);
  color: var(--ink);
  font: inherit;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.booking-form textarea {
  min-height: 116px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(211, 162, 67, 0.24);
  outline: 0;
}

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

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

.booking-feedback {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

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

.site-footer {
  padding: 74px clamp(24px, 5vw, 72px) 22px;
  background: var(--night);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 32px;
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.brand-footer {
  align-self: start;
}

.footer-line {
  max-width: 28ch;
  color: rgba(247, 248, 245, 0.66);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--content), 100%);
  margin: 74px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 248, 245, 0.18);
  color: rgba(247, 248, 245, 0.5);
  font-size: 0.72rem;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-tools {
    display: none;
  }

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

  .intro-grid,
  .food-grid,
  .event-grid,
  .story-grid,
  .detail-grid,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .detail-grid.reverse .detail-image,
  .detail-grid.reverse .detail-copy {
    order: initial;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(420px, auto) minmax(260px, auto);
  }

  .experience-card:first-child {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 480px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-actions {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 4.9rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  h3 {
    max-width: 100%;
  }

  .container,
  .hero-content,
  .page-hero-content {
    width: min(100% - 36px, var(--content));
  }

  .hero-content {
    padding-top: 148px;
    padding-bottom: 94px;
  }

  .hero-media iframe {
    transform: translate(-50%, -50%) scale(1.3);
  }

  .hero-camel-mark {
    right: -52px;
    bottom: -102px;
    width: clamp(108px, 28vw, 150px);
    opacity: 0.66;
  }

  .hero-watch {
    right: 14px;
    bottom: 16px;
    max-width: calc(100% - 28px);
    font-size: 0.72rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .page-body {
    padding: 64px 0;
  }

  .intro-image,
  .food-photo,
  .event-photo,
  .story-photo,
  .detail-image {
    min-height: 360px;
    height: 112vw;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-card:first-child {
    grid-column: auto;
    min-height: 440px;
  }

  .experience-card {
    min-height: 310px;
  }

  .menu-list,
  .service-grid,
  .detail-list,
  .contact-grid,
  .book-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .menu-list {
    gap: 10px;
  }

  .menu-item {
    min-height: 0;
  }

  .closing-panel {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .contact-panel,
  .book-panel {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .contact-panel h2,
  .book-panel h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .page-hero {
    min-height: clamp(500px, 56vh, 620px);
  }

  .page-hero-content {
    padding-top: 150px;
    padding-bottom: 58px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .page-hero p {
    max-width: 34ch;
    font-size: 1rem;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-actions {
    margin-top: 10px;
  }

  .footer-bottom {
    display: flex;
    gap: 8px;
    margin-top: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
