:root {
  --espresso: #160501;
  --espresso-2: #260902;
  --espresso-3: #351006;
  --gold: #febb15;
  --gold-2: #d69a18;
  --cream: #f3eadb;
  --cream-2: #e6d6c0;
  --ink: #271006;
  --muted: #b9a89a;
  --line: 1px solid rgba(255, 255, 255, 0.08);
  --white: #fffaf2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --arabic: "Noto Naskh Arabic", serif;
}

/* =========================
   GLOBAL
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.rtl {
  font-family: var(--arabic);
  direction: rtl;
}

body.rtl h1,
body.rtl h2,
body.rtl h3 {
  font-family: var(--arabic);
  letter-spacing: 0;
}

body.rtl .nav a,
body.rtl .button,
body.rtl .kicker {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
}

.skip-link:focus {
  transform: none;
}

/* =========================
   NOISE
========================= */

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 125px;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
  padding: 0 4.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    to bottom,
    rgba(13, 3, 1, 0.94),
    rgba(13, 3, 1, 0.5),
    transparent
  );
  backdrop-filter: blur(16px);
  transition: 0.35s;
}

.site-header.scrolled {
  height: 110px;
  background: rgba(92, 64, 51, 0.25);
}

.brand {
  position: relative;
  z-index: 4;
}

.brand img {
  width: 190px;
  display: block;
  max-width: 100%;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.nav a,
.header-cta,
.language-button {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav a {
  color: #eadfd2;
  position: relative;
  padding: 9px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}

.nav a:hover::after {
  right: 0;
}

.nav a.active {
  color: var(--gold);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
}

/* =========================
   HEADER ACTIONS
========================= */

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 4;
}

.language-button {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  padding: 8px;
}

.header-cta {
  border: 1px solid rgba(254, 187, 21, 0.5);
  padding: 13px 17px;
  transition: 0.25s;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* =========================
   HAMBURGER
========================= */

.menu-toggle {
  display: none;
  position: relative;
  background: transparent;
  border: 0;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  z-index: 6;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px 0;
  background: var(--gold);
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Hamburger becomes X when open */

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: 7vw;
  align-items: center;
  padding: 145px 7vw 88px;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(254, 187, 21, 0.11),
      transparent 26%
    ),
    linear-gradient(
      130deg,
      #100301 0%,
      #240802 55%,
      #100301 100%
    );
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(254, 187, 21, 0.1);
  border-radius: 50%;
  right: -330px;
  top: -210px;
  box-shadow:
    0 0 0 70px rgba(254, 187, 21, 0.025),
    0 0 0 150px rgba(254, 187, 21, 0.018);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent calc(50% - 0.5px),
    rgba(255, 255, 255, 0.04) 50%,
    transparent calc(50% + 0.5px)
  );
  opacity: 0.6;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.kicker.dark {
  color: #9a6718;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(58px, 6.8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  max-width: 1000px;
}

.hero-intro {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.85;
  margin: 31px 0 35px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   BUTTONS
========================= */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.button-primary {
  background: var(--gold);
  color: #271005;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 42px rgba(254, 187, 21, 0.18);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.22);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================
   HERO TRUST
========================= */

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: center;
}

.hero-trust strong {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
}

.hero-trust span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aa998e;
  line-height: 1.5;
}

/* =========================
   SHOWCASE
========================= */

.showcase-frame {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(254, 187, 21, 0.3);
  padding: 28px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.showcase-frame::before {
  content: "";
  position: absolute;
  inset: 70px 26px 145px;
  border-radius: 50% 50% 10px 10px / 38% 38% 10px 10px;
  border: 1px solid rgba(254, 187, 21, 0.22);
  background: radial-gradient(
    circle at 50% 38%,
    rgba(254, 187, 21, 0.12),
    transparent 42%
  );
}

.showcase-topline {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.showcase-emblem {
  position: absolute;
  width: 69%;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.showcase-emblem img {
  width: 100%;
  display: block;
}

.showcase-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 17px;
}

.showcase-copy span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
}

.showcase-copy h2 {
  font-size: 34px;
  margin-top: 5px;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 4px 0 0;
}

.showcase-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #d7c8b8;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.showcase-note span {
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  left: 7vw;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #8f7e73;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-cue span {
  width: 46px;
  height: 1px;
  background: var(--gold);
}

/* =========================
   TICKER
========================= */

.ticker {
  overflow: hidden;
  background: #230702;
  border-block: 1px solid var(--line);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 17px 0;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: var(--serif);
  font-size: 23px;
}

.ticker i {
  color: var(--gold);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* =========================
   SECTIONS
========================= */

.section {
  position: relative;
  padding: 120px 7vw;
}

.cream {
  background: var(--cream);
  color: var(--ink);
}

.section-index {
  position: absolute;
  top: 36px;
  right: 7vw;
  font-family: var(--serif);
  font-size: 110px;
  line-height: 1;
  color: rgba(43, 16, 6, 0.06);
}

body.rtl .section-index {
  right: auto;
  left: 7vw;
}

/* =========================
   STORY
========================= */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: start;
}

.story h2,
.section-heading h2,
.services h2,
.reservation h2 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.story-body {
  padding-top: 55px;
}

.story-body .lead {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
  color: #442114;
}

.story-body > p:not(.lead) {
  color: #725d50;
  line-height: 1.9;
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid #a66d17;
  padding-bottom: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.story-visual {
  position: relative;
  margin-top: 85px;
  min-height: 520px;
  background: linear-gradient(135deg, #281008, #120401);
  overflow: hidden;
  border: 1px solid rgba(39, 16, 6, 0.16);
}

.visual-arch {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 10%;
  bottom: 0;
  border-radius: 260px 260px 0 0;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(254, 187, 21, 0.18),
      transparent 33%

    ),
    linear-gradient(#3a1409, #190601);
  border: 10px solid #e7d5bd;
  border-bottom: 0;
}

.hanging-lamp {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 110px;
  background: #b8801f;
}

.hanging-lamp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  width: 62px;
  height: 78px;
  clip-path: polygon(
    50% 0,
    88% 32%,
    75% 100%,
    25% 100%,
    12% 32%
  );
  background: linear-gradient(#ffe18a, #a76a13);
  box-shadow: 0 0 44px rgba(254, 187, 21, 0.42);
}

.visual-table {
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 13%;
  height: 20px;
  border-radius: 50%;
  background: #9d6329;
  box-shadow: 0 20px 0 -11px #6f3b16;
}

.visual-table::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 100px;
  background: #794018;
  left: 50%;
  top: 10px;
}

.story-visual > p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: 24px;
}

/* =========================
   MENU SECTION
========================= */

.menu {
  background: #150401;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
}

.menu-cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 760px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #2a0b04;
  min-height: 350px;
}

.menu-card-main {
  grid-row: 1 / 3;
}

.menu-art {
  position: absolute;
  inset: 0;
  transition: 0.7s;
}

.menu-card:hover .menu-art {
  transform: scale(1.05);
}

.menu-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 2, 1, 0.96),
    rgba(10, 2, 1, 0.1) 68%
  );
}

.art-platter {
  background:
    radial-gradient(
      circle at 50% 38%,
      #e4b35a 0 9%,
      #b66822 10% 14%,
      #e8c170 15% 20%,
      #51200c 21% 25%,
      transparent 26%
    ),
    radial-gradient(
      circle at 50% 40%,
      #4f2b18,
      #160501 65%
    );
}

.art-platter::after {
  content: "";
  position: absolute;
  left: 20%;
  top: 12%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(254, 187, 21, 0.3);
  box-shadow:
    inset 0 0 0 22px rgba(255, 255, 255, 0.02),
    0 25px 70px rgba(0, 0, 0, 0.35);
}

.art-grill {
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.7)
    ),
    radial-gradient(
      ellipse at 50% 40%,
      #bc6124,
      #4b1708 53%,
      #160501 54%
    );
}

.art-grill::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 25%;
  height: 22px;
  border-radius: 60%;
  background: linear-gradient(
    90deg,
    #4f1706,
    #d58a35,
    #5d1d07
  );
  transform: rotate(-8deg);
  box-shadow:
    0 36px 0 #934114,
    0 72px 0 #6f2b0c;
}

.art-sweets {
  background:
    radial-gradient(
      circle at 50% 38%,
      #fff0c5 0 10%,
      #c47a37 11% 16%,
      #521b0c 17% 24%,
      transparent 25%
    ),
    linear-gradient(140deg, #4a1a0e, #160501);
}

.art-sweets::after {
  content: "";
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 28%;
  top: 18%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
}

.menu-copy small {
  color: var(--gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.menu-copy h3 {
  font-size: 42px;
  margin: 4px 0;
}

.menu-copy p {
  color: #b4a396;
  font-size: 12px;
  margin: 0;
}

.menu-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.menu-action p {
  color: var(--muted);
  max-width: 460px;
  font-size: 12px;
}

.dark-heading > p {
  color: #725d50;
}

/* =========================
   SPACES
========================= */

.spaces {
  overflow: hidden;
}

.space-list {
  border-top: 1px solid rgba(39, 16, 6, 0.2);
}

.space-row {
  display: grid;
  grid-template-columns: 55px 1.05fr 0.9fr 30px;
  gap: 24px;
  align-items: center;
  padding: 31px 0;
  border-bottom: 1px solid rgba(39, 16, 6, 0.2);
  transition: 0.25s;
}

.space-row:hover {
  padding-left: 14px;
  background: rgba(175, 117, 24, 0.05);
}

body.rtl .space-row:hover {
  padding-left: 0;
  padding-right: 14px;
}

.space-row span {
  font-size: 10px;
  color: #9a6c2d;
}

.space-row h3 {
  font-size: 36px;
}

.space-row p {
  color: #725e52;
  line-height: 1.7;
  font-size: 13px;
}

.space-row b {
  color: #a8721c;
  font-size: 22px;
}

/* =========================
   SERVICES
========================= */

.services {
  background: radial-gradient(
    circle at 50% 20%,
    #341008,
    #140401 65%
  );
}

.services-intro {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 7vw;
  align-items: start;
}

.services-intro h2 {
  grid-column: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.service-card {
  min-height: 330px;
  border: 1px solid rgba(254, 187, 21, 0.22);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.012)
  );
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 187, 21, 0.55);
}

.service-card > span {
  margin-bottom: auto;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 40px;
}

.service-card h3 {
  font-size: 42px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

/* =========================
   QUOTE
========================= */

.quote-panel {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 110px 8vw;
  background:
    linear-gradient(
      rgba(17, 4, 1, 0.8),
      rgba(17, 4, 1, 0.9)
    ),
    radial-gradient(
      circle at 50% 40%,
      #713018,
      #160501 65%
    );
  border-block: 1px solid var(--line);
}

.quote-icon {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 90px;
  height: 70px;
}

.quote-panel blockquote {
  max-width: 1150px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 86px);
  line-height: 1.03;
}

.quote-panel p {
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 30px;
}

/* =========================
   RESERVATION
========================= */

.reservation-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  border: 1px solid rgba(39, 16, 6, 0.22);
  padding: 70px;
}

.reservation-copy > p:last-child {
  color: #735e50;
  line-height: 1.8;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reservation-form label.full {
  grid-column: 1 / -1;
}

.reservation-form label span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #805a28;
}

.reservation-form input,
.reservation-form select {
  border: 0;
  border-bottom: 1px solid rgba(39, 16, 6, 0.28);
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  outline: none;
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: #a97019;
}

.reservation-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  margin-top: 8px;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #6f4b17;
  font-size: 12px;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0e0301;
  border-top: 1px solid var(--line);
  padding: 76px 7vw 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 6vw;
}

.footer-brand img {
  width: 250px;
  max-width: 100%;
}

.footer-brand p,
.footer-main > div > p {
  color: #a49184;
  line-height: 1.8;
  font-size: 12px;
}

.footer-main h3 {
  font-family: var(--sans);
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #75665d;
  font-size: 10px;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

/* =========================
   MULTI-PAGE
========================= */

.page-hero {
  min-height: 62vh;
  padding: 190px 7vw 90px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(254, 187, 21, 0.14),
      transparent 28%
    ),
    #160501;
}

.page-hero-copy {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  line-height: 0.92;
  max-width: 980px;
  margin: 0.18em 0;
}

.page-hero-copy > p:last-child {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-mark {
  justify-self: end;
  width: min(31vw, 430px);
  opacity: 0.18;
  filter: drop-shadow(
    0 24px 55px rgba(254, 187, 21, 0.15)
  );
}

.page-hero-mark img {
  width: 100%;
}

.home-intro,
.home-cta {
  position: relative;
}

.dark-outline {
  color: #351005;
  border-color: rgba(53, 16, 5, 0.35);
}

.dark-outline:hover {
  border-color: #351005;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(53, 16, 5, 0.15);
  margin-top: 70px;
}

.contact-grid .service-card {
  background: #f5ecdf;
  color: #351005;
}

.contact-grid .service-card p {
  color: rgba(53, 16, 5, 0.7);
}

body[data-page="reservation"] .reservation {
  padding-top: 70px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 180px 1fr 180px;
  }

  .brand img {
    width: 155px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-showcase {
    width: min(540px, 92vw);
  }

  .story-grid,
  .reservation-panel {
    grid-template-columns: 1fr;
  }

  .story-body {
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .services-intro h2 {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   PAGE HERO TABLET
========================= */

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
    min-height: 70vh;
  }

  .page-hero-mark {
    position: absolute;
    right: -70px;
    bottom: 20px;
    width: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   MOBILE NAVIGATION
   THIS IS THE IMPORTANT HAMBURGER FIX
====================================================== */

@media (max-width: 760px) {

  .site-header {
    height: 74px;
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
    background: rgba(16, 4, 1, 0.96);
  }

  .site-header.scrolled {
    height: 68px;
  }

  .brand {
    z-index: 6;
  }

  .brand img {
    width: 138px;
  }

  /* Show hamburger on mobile */
  .menu-toggle {
    display: block;
    order: 3;
    z-index: 7;
    color: var(--gold);
  }

  /* Language button stays visible */
  .header-actions {
    order: 2;
    z-index: 7;
    gap: 8px;
  }

  .language-button {
    position: relative;
    z-index: 7;
  }

  /* Hide reservation header button on small screens */
  .header-cta {
    display: none;
  }

  /*
   Mobile navigation overlay.

   IMPORTANT:
   Do NOT use display:none here.
   JavaScript toggles the .open class.
  */
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 5;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;
    padding: 100px 24px 40px;

    background:
      radial-gradient(
        circle at 50% 20%,
        rgba(254, 187, 21, 0.08),
        transparent 30%
      ),
      #120401;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-100%);
    transition:
      transform 0.4s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  /* Menu becomes visible after hamburger click */
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Mobile page names */
  .nav a {
    width: min(420px, 90%);
    padding: 14px 10px;

    font-family: var(--serif);
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;

    text-align: center;
    text-transform: none;
    letter-spacing: 0;

    color: var(--cream);
    border-bottom: 1px solid rgba(254, 187, 21, 0.12);

    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .nav a:hover,
  .nav a:focus {
    color: var(--gold);
    transform: translateY(-2px);
  }

  .nav a::after {
    display: none;
  }

  .nav a.active {
    color: var(--gold);
  }

  .nav a.active::after {
    display: none;
  }

  /* RTL mobile navigation */
  body.rtl .nav a {
    font-family: var(--arabic);
  }

  /* =========================
     MOBILE HERO
  ========================= */

  .hero {
    padding: 115px 22px 78px;
  }

  .hero h1 {
    font-size: 57px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 38px;
  }

  .showcase-frame {
    min-height: 510px;
  }

  /* =========================
     MOBILE SECTIONS
  ========================= */

  .section {
    padding: 84px 22px;
  }

  .story h2,
  .section-heading h2,
  .services h2,
  .reservation h2 {
    font-size: 50px;
  }

  .story-visual {
    min-height: 430px;
    margin-top: 58px;
  }

  .story-visual > p {
    font-size: 18px;
    max-width: 90%;
  }

  /* =========================
     MOBILE MENU CARDS
  ========================= */

  .menu-cards {
    display: block;
    min-height: 0;
  }

  .menu-card,
  .menu-card-main {
    min-height: 390px;
    margin-bottom: 14px;
  }

  .menu-action {
    align-items: flex-start;
    flex-direction: column;
  }

  /* =========================
     MOBILE SPACES
  ========================= */

  .space-row {
    grid-template-columns: 38px 1fr 20px;
    gap: 10px;
  }

  .space-row p {
    grid-column: 2 / 4;
    margin: 0;
  }

  .space-row h3 {
    font-size: 28px;
  }

  /* =========================
     MOBILE SERVICES
  ========================= */

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  /* =========================
     MOBILE RESERVATION
  ========================= */

  .reservation-panel {
    padding: 34px 22px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .reservation-form label.full,
  .reservation-form button,
  .form-status {
    grid-column: auto;
  }

  .reservation-form button {
    width: 100%;
  }

  /* =========================
     MOBILE FOOTER
  ========================= */

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .section-index {
    font-size: 80px;
  }

  .showcase-copy h2 {
    font-size: 30px;
  }

  /* =========================
     MOBILE PAGE HERO
  ========================= */

  .page-hero {
    padding:
      120px 22px
      70px;
    min-height: 65vh;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .page-hero-copy > p:last-child {
    font-size: 0.98rem;
  }

  .page-hero-mark {
    width: 260px;
    right: -90px;
    opacity: 0.12;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .site-header {
    padding: 0 15px;
  }

  .brand img {
    width: 120px;
  }

  .menu-toggle {
    padding: 8px;
  }

  .menu-toggle span {
    width: 23px;
  }

  .language-button {
    font-size: 9px;
    padding: 6px;
  }

  .nav {
    padding-left: 18px;
    padding-right: 18px;
    gap: 8px;
  }

  .nav a {
    font-size: 29px;
    padding: 12px 8px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 57px);
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story h2,
  .section-heading h2,
  .services h2,
  .reservation h2 {
    font-size: 44px;
  }

  .reservation-panel {
    padding: 30px 18px;
  }

  .menu-copy {
    left: 22px;
    right: 22px;
  }

  .menu-copy h3 {
    font-size: 36px;
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}