@font-face {
  font-family: "Portada ARA";
  src: url("assets/fonts/PortadaARA-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Portada ARA";
  src: url("assets/fonts/PortadaARA-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Portada ARA";
  src: url("assets/fonts/PortadaARA-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Portada ARA";
  src: url("assets/fonts/PortadaARA-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --blue: #454b65;
  --blue-deep: #34394f;
  --ink: #101115;
  --paper: #f7f4ef;
  --cream: #e8e1db;
  --sand: #ddd1c3;
  --stone: #c5c2b9;
  --white: #fffdfa;
  --line: rgba(69, 75, 101, 0.2);
  --shadow: 0 24px 70px rgba(27, 30, 43, 0.16);
  --radius: 1.7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--blue-deep);
  background: var(--paper);
  font-family: "Portada ARA", "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  font-synthesis: none;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 14% 22%, rgba(69, 75, 101, 0.08) 0 0.7px, transparent 0.8px),
    radial-gradient(circle at 74% 66%, rgba(16, 17, 21, 0.06) 0 0.55px, transparent 0.7px);
  background-size: 8px 8px, 11px 11px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  gap: 2rem;
  background: var(--blue);
  transition: transform 1s var(--ease), visibility 1s;
}

.loader img {
  width: 7rem;
  margin: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: loader-logo 0.8s 0.1s var(--ease) forwards;
}

.loader__line {
  width: 11rem;
  height: 1px;
  overflow: hidden;
  background: rgba(232, 225, 219, 0.25);
}

.loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cream);
  transform: translateX(100%);
  animation: loader-line 1.4s var(--ease) forwards;
}

.loader.is-hidden {
  visibility: hidden;
  transform: translateY(-105%);
}

@keyframes loader-logo {
  to { opacity: 1; transform: none; }
}

@keyframes loader-line {
  50% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.site-header {
  position: fixed;
  top: 1.25rem;
  right: 2rem;
  left: 2rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  padding: 0.5rem 0.7rem 0.5rem 1rem;
  color: var(--paper);
  border: 1px solid rgba(232, 225, 219, 0.18);
  border-radius: 5rem;
  transition: 0.45s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(31, 34, 47, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: 0.45s var(--ease);
}

.site-header.is-scrolled {
  top: 0.75rem;
  color: var(--blue);
  border-color: rgba(69, 75, 101, 0.13);
  box-shadow: 0 12px 35px rgba(28, 31, 45, 0.1);
}

.site-header.is-scrolled::before {
  background: rgba(247, 244, 239, 0.9);
}

.brand {
  position: relative;
  z-index: 4;
  width: 4.25rem;
  height: 4.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  overflow: hidden;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 3vw, 3.2rem);
  font-size: 0.88rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0 1.5rem;
  color: var(--blue);
  background: var(--cream);
  border-radius: 4rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.35s;
}

.site-header.is-scrolled .header-cta {
  color: var(--paper);
  background: var(--blue);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100svh;
  color: var(--paper);
  background: var(--blue);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -24vw;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(232, 225, 219, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(232, 225, 219, 0.025), 0 0 0 16vw rgba(232, 225, 219, 0.02);
}

.hero__copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem clamp(2rem, 6.8vw, 8.5rem) 7rem clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  direction: ltr;
  text-align: right;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--blue);
}

.hero__title,
.section-heading h2,
.moments h2,
.menu-intro h2,
.gallery h2,
.closing h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7.6vw, 8.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__title span,
h2 em {
  color: var(--sand);
  font-family: "Portada ARA", "IBM Plex Sans Arabic", Tahoma, sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 36rem;
  margin: 2.25rem 0 0;
  color: rgba(247, 244, 239, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-width: 12.5rem;
  min-height: 3.8rem;
  padding: 0.5rem 1.5rem;
  border: 0;
  border-radius: 3rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  overflow: hidden;
  transition: color 0.4s, background 0.4s, transform 0.4s var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--sand);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
  transform: none;
}

.button--light {
  color: var(--blue);
  background: var(--paper);
}

.button--outline {
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(247, 244, 239, 0.7);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--blue);
}

.button--blue {
  z-index: 1;
  color: var(--paper);
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  color: var(--paper);
  border: 0;
  background: none;
  cursor: pointer;
}

.play-dot {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(247, 244, 239, 0.45);
  border-radius: 50%;
  font-size: 0.58rem;
  transition: 0.35s var(--ease);
}

.text-link:hover .play-dot {
  color: var(--blue);
  background: var(--paper);
  transform: scale(1.08);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 4.5rem;
  color: rgba(247, 244, 239, 0.48);
  font-size: 0.7rem;
}

.hero__meta-line {
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.hero__visual {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero__photo--main {
  position: absolute;
  inset: 0;
}

.hero__photo--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(69, 75, 101, 0.02), rgba(35, 38, 52, 0.38));
}

.hero__photo--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.045);
  animation: hero-zoom 8s 1.2s var(--ease) forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero__photo--float {
  position: absolute;
  right: -4.5rem;
  bottom: 3.8rem;
  z-index: 3;
  width: clamp(11rem, 17vw, 19rem);
  padding: 0.55rem;
  color: var(--blue);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.hero__photo--float img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}

.hero__photo--float span {
  display: block;
  padding: 0.75rem 0.4rem 0.45rem;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero__badge {
  position: absolute;
  top: 21%;
  left: 2.25rem;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  color: var(--blue);
  background: rgba(247, 244, 239, 0.92);
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: badge-float 4s ease-in-out infinite;
}

.hero__badge img {
  width: 1.65rem;
  margin-bottom: -0.4rem;
}

.hero__badge span {
  font-size: 0.8rem;
  font-weight: 600;
}

@keyframes badge-float {
  50% { transform: translateY(-9px) rotate(-2deg); }
}

.steam {
  position: absolute;
  right: 4.5rem;
  bottom: 22rem;
  z-index: 5;
  width: 7rem;
  height: 11rem;
  opacity: 0.5;
}

.steam i {
  position: absolute;
  bottom: 0;
  width: 1.4rem;
  height: 8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: steam 3.8s ease-in-out infinite;
}

.steam i:nth-child(2) { right: 2.4rem; height: 10rem; animation-delay: -1.2s; }
.steam i:nth-child(3) { right: 4.6rem; height: 7rem; animation-delay: -2.4s; }

@keyframes steam {
  0%, 100% { opacity: 0; transform: translateY(1rem) scaleX(0.8); }
  40% { opacity: 1; }
  75% { opacity: 0.5; transform: translateY(-2rem) scaleX(1.15); }
}

.scroll-cue {
  position: absolute;
  right: 2.5rem;
  bottom: 1.5rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(247, 244, 239, 0.62);
  font-size: 0.68rem;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 3rem;
  background: currentColor;
  animation: scroll-cue 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-cue {
  50% { transform: scaleY(0.35); transform-origin: bottom; }
}

.ticker {
  direction: ltr;
  overflow: hidden;
  padding: 1.1rem 0;
  color: var(--blue);
  border-block: 1px solid var(--line);
  background: var(--sand);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker span {
  margin: 0 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.ticker b {
  font-size: 0.65rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(6.5rem, 11vw, 11rem) clamp(1.4rem, 6vw, 7.5rem);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.section-heading h2,
.moments h2,
.menu-intro h2,
.gallery h2,
.closing h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
}

.section-heading h2 {
  margin-inline-start: auto;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.story-collage {
  position: relative;
  min-height: 48rem;
}

.story-collage figure {
  margin: 0;
  overflow: hidden;
}

.story-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-collage figure:hover img {
  transform: scale(1.035);
}

.story-collage__large {
  position: absolute;
  top: 0;
  right: 0;
  width: 63%;
  height: 83%;
  border-radius: 14rem 14rem 1.4rem 1.4rem;
}

.story-collage__small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 58%;
  padding: 0.55rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.story-collage__caption {
  position: absolute;
  top: 2.5rem;
  left: 3%;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.story-copy__mark {
  width: 2.75rem;
  margin-bottom: 2.5rem;
}

.story-copy__intro {
  margin: 0 0 1.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.55;
}

.story-copy > p:not(.story-copy__intro) {
  max-width: 34rem;
  color: rgba(52, 57, 79, 0.68);
  font-size: 1rem;
  line-height: 2.1;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.story-values div {
  display: grid;
  gap: 0.45rem;
}

.story-values strong {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.story-values span {
  font-size: 0.78rem;
}

.section--blue {
  color: var(--paper);
  background: var(--blue);
}

.moments {
  position: relative;
  overflow: hidden;
}

.moments::before {
  content: "";
  position: absolute;
  top: -22rem;
  left: -13rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(232, 225, 219, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(232, 225, 219, 0.02), 0 0 0 12rem rgba(232, 225, 219, 0.015);
}

.moments__top {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.moments__top > p {
  max-width: 18rem;
  margin: 0 0 1rem;
  color: rgba(247, 244, 239, 0.62);
}

.story-reel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(9rem, 1fr));
  gap: clamp(1rem, 2.4vw, 2.6rem);
  margin-top: 6.5rem;
}

.story-bubble {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 0;
  color: var(--paper);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story-bubble__ring {
  position: relative;
  display: block;
  width: min(14vw, 11rem);
  min-width: 8rem;
  aspect-ratio: 1;
  padding: 0.35rem;
  border: 1px solid rgba(232, 225, 219, 0.55);
  border-radius: 50%;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}

.story-bubble__ring::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid rgba(232, 225, 219, 0.2);
  border-radius: inherit;
}

.story-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.82);
}

.story-bubble:hover .story-bubble__ring,
.story-bubble:focus-visible .story-bubble__ring {
  border-color: var(--paper);
  transform: rotate(4deg) scale(1.04);
}

.story-bubble strong {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.story-bubble small {
  color: rgba(247, 244, 239, 0.45);
  font-family: "Source Sans 3", sans-serif;
}

.menu-section {
  background: var(--paper);
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 28rem);
  align-items: end;
  gap: 5rem;
}

.menu-intro > p {
  margin: 0 0 1rem;
  color: rgba(52, 57, 79, 0.64);
  line-height: 2;
}

.menu-shell {
  margin-top: 5.5rem;
}

.menu-tabs {
  display: flex;
  gap: 0.6rem;
  padding-bottom: 1.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  padding: 0.75rem 1.35rem;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 4rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  transition: 0.35s var(--ease);
}

.menu-tab:hover,
.menu-tab.is-active {
  color: var(--paper);
  border-color: var(--blue);
  background: var(--blue);
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.67fr) 1.33fr;
  gap: 4rem;
  margin-top: 2.5rem;
}

.menu-feature__image {
  position: sticky;
  top: 7rem;
  height: min(72vh, 49rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue);
}

.menu-feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 14, 19, 0.72));
}

.menu-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.menu-feature__image:hover img {
  transform: scale(1.035);
}

.menu-feature__label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--paper);
}

.menu-feature__label span {
  font-size: 0.75rem;
}

.menu-feature__label strong {
  font-size: 1.45rem;
  font-weight: 500;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 1rem;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 12rem;
  padding: 1.5rem;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 253, 250, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: card-in 0.55s var(--ease) forwards;
  transition: color 0.4s, border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 100% 0 0;
  background: var(--blue);
  transition: inset 0.48s var(--ease);
}

.menu-card:hover {
  color: var(--paper);
  border-color: var(--blue);
  box-shadow: 0 18px 45px rgba(52, 57, 79, 0.14);
  transform: translateY(-4px);
}

.menu-card:hover::before {
  inset: 0;
}

.menu-card--dessert {
  grid-template-rows: auto 1fr;
  min-height: 23rem;
  padding: 0;
  background: var(--cream);
}

.menu-card__media {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  height: 15.5rem;
  overflow: hidden;
  background: var(--cream);
  clip-path: inset(0 0 100% 0 round 1.2rem 1.2rem 0 0);
  animation: dessert-reveal 0.95s calc(var(--card-delay) + 120ms) var(--ease) forwards;
}

.menu-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 35%, rgba(255, 255, 255, 0.48) 50%, transparent 65%);
  transform: translateX(115%);
  transition: transform 0.9s var(--ease);
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 0.85s var(--ease), filter 0.6s;
  animation: dessert-breathe 7s ease-in-out infinite alternate;
}

.menu-card--dessert:hover .menu-card__media::after {
  transform: translateX(-115%);
}

.menu-card--dessert:hover .menu-card__media img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.09) rotate(-0.7deg);
  animation-play-state: paused;
}

.menu-card--dessert .menu-card__info {
  padding: 1.25rem 1.4rem 1.35rem;
}

.menu-card--dessert .menu-card__price {
  margin: 1.3rem 0 0 1.4rem;
}

@keyframes dessert-reveal {
  to { clip-path: inset(0 0 0 0 round 1.2rem 1.2rem 0 0); }
}

@keyframes dessert-breathe {
  0% { transform: scale(1.015) translate3d(0, 0, 0); }
  100% { transform: scale(1.055) translate3d(-0.45rem, -0.3rem, 0); }
}

@keyframes card-in {
  to { opacity: 1; transform: none; }
}

.menu-card__info,
.menu-card__price,
.menu-card__cal {
  position: relative;
  z-index: 1;
}

.menu-card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card__category {
  color: rgba(69, 75, 101, 0.52);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  transition: color 0.4s;
}

.menu-card:hover .menu-card__category,
.menu-card:hover .menu-card__en,
.menu-card:hover .menu-card__cal {
  color: rgba(247, 244, 239, 0.55);
}

.menu-card__name {
  display: block;
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 600;
}

.menu-card__en {
  display: block;
  color: rgba(69, 75, 101, 0.55);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.4s;
}

.menu-card__price {
  align-self: start;
  direction: ltr;
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.menu-card__cal {
  align-self: end;
  color: rgba(69, 75, 101, 0.46);
  direction: ltr;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.63rem;
  transition: color 0.4s;
}

.menu-empty {
  grid-column: 1 / -1;
  padding: 4rem 1rem;
  text-align: center;
}

.menu-note {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  font-size: 0.78rem;
}

.menu-note > span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 1.2rem;
}

.menu-note p {
  margin: 0;
}

.ritual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90svh;
  padding: 8rem clamp(1.4rem, 8vw, 9rem);
  color: var(--paper);
  overflow: hidden;
}

.ritual__background,
.ritual__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ritual__background {
  object-fit: cover;
}

.ritual__shade {
  background: linear-gradient(90deg, rgba(20, 21, 28, 0.18), rgba(29, 31, 43, 0.88) 75%);
}

.ritual__copy {
  position: relative;
  z-index: 2;
  width: min(44rem, 72%);
}

.ritual blockquote {
  margin: 0 0 2rem;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.ritual__copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 2.5rem;
  color: rgba(247, 244, 239, 0.72);
  font-size: 1.05rem;
  line-height: 2;
}

.ritual__side {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  z-index: 2;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) 1.35fr;
  gap: 5rem;
  align-items: start;
}

.gallery__heading {
  position: sticky;
  top: 8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 21rem;
  gap: 1.2rem;
}

.gallery-card {
  position: relative;
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.gallery-card--wide {
  grid-column: 1 / -1;
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 19, 25, 0.75));
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.3rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper);
}

.gallery-card figcaption span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.gallery-card figcaption strong {
  font-size: 1rem;
  font-weight: 500;
}

.closing {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.closing::before,
.closing::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 25rem;
  height: 25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.closing::before { right: -12rem; top: 10%; }
.closing::after { left: -12rem; bottom: 2%; }

.closing__mark {
  width: 3.2rem;
  margin-bottom: 2.5rem;
}

.closing > p:not(.eyebrow) {
  margin: 2rem 0 2.5rem;
  color: rgba(52, 57, 79, 0.62);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem clamp(1.4rem, 5vw, 5rem);
  color: var(--paper);
  background: var(--blue-deep);
}

.site-footer > img {
  width: 5rem;
}

.site-footer__middle {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  color: rgba(247, 244, 239, 0.5);
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.story-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}

.story-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.story-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 21, 0.82);
  backdrop-filter: blur(13px);
}

.story-viewer {
  position: relative;
  width: min(28rem, 94vw);
  height: min(49rem, 91svh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  background: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.46);
  transform: translateY(25px) scale(0.97);
  transition: transform 0.5s var(--ease);
}

.story-modal.is-open .story-viewer {
  transform: none;
}

.story-viewer__image,
.story-viewer__gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-viewer__image {
  object-fit: cover;
  transition: opacity 0.25s, transform 6s linear;
}

.story-modal.is-open .story-viewer__image {
  transform: scale(1.045);
}

.story-viewer__gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 35%, rgba(0, 0, 0, 0.82));
}

.story-progress {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  left: 0.8rem;
  z-index: 5;
  display: flex;
  gap: 0.3rem;
}

.story-progress span {
  position: relative;
  flex: 1;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.story-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
}

.story-progress span.is-done::after {
  transform: scaleX(1);
}

.story-progress span.is-active::after {
  animation: story-progress 5.5s linear forwards;
}

@keyframes story-progress {
  to { transform: scaleX(1); }
}

.story-close {
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.story-viewer__brand {
  position: absolute;
  top: 1.45rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-viewer__brand img {
  width: 1.2rem;
  max-height: 1.5rem;
  object-fit: contain;
}

.story-viewer__copy {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 5;
  color: white;
}

.story-viewer__copy span {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.story-viewer__copy h3 {
  margin: 0.3rem 0 0.35rem;
  font-size: 2.5rem;
  font-weight: 500;
}

.story-viewer__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.story-nav {
  position: absolute;
  top: 5rem;
  bottom: 7rem;
  z-index: 6;
  width: 34%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story-nav--prev { right: 0; }
.story-nav--next { left: 0; }

.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-up:nth-child(2) { transition-delay: 0.08s; }
.reveal-up:nth-child(3) { transition-delay: 0.16s; }
.reveal-up:nth-child(4) { transition-delay: 0.24s; }
.reveal-up:nth-child(5) { transition-delay: 0.32s; }

body.is-loaded .hero .reveal-up,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 57% 43%;
  }

  .hero__copy {
    padding-right: 4rem;
  }

  .hero__photo--float {
    right: -5rem;
  }

  .story-layout {
    gap: 4rem;
  }

  .story-collage {
    min-height: 40rem;
  }

  .menu-feature {
    grid-template-columns: minmax(16rem, 0.6fr) 1.4fr;
    gap: 2rem;
  }

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

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

  .gallery__heading {
    position: static;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header {
    top: 0.55rem;
    right: 0.55rem;
    left: 0.55rem;
    min-height: 4rem;
    padding: 0.35rem;
  }

  .brand {
    width: 3.3rem;
    height: 3.3rem;
  }

  .brand img {
    width: 2.4rem;
    height: 2.4rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    color: inherit;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
  }

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

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 7rem 2rem 3rem;
    color: var(--paper);
    background: var(--blue-deep);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-2rem);
    transition: 0.45s var(--ease);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav a {
    font-size: 1.9rem;
    font-weight: 500;
  }

  .site-header:has(.main-nav.is-open) {
    color: var(--paper);
    border-color: transparent;
  }

  .site-header:has(.main-nav.is-open)::before {
    background: transparent;
    backdrop-filter: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }

  .hero__copy {
    min-height: 0;
    padding: 3rem 1.35rem 4.5rem;
    background: var(--blue);
  }

  .hero__title {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
  }

  .hero__lead {
    max-width: 30rem;
    margin-top: 1.5rem;
    color: rgba(247, 244, 239, 0.88);
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .hero__meta {
    display: none;
  }

  .hero__visual {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    height: 60svh;
    min-height: 26rem;
    max-height: 42rem;
    flex: 0 0 auto;
  }

  .hero__photo--main::after {
    background: linear-gradient(180deg, rgba(23, 25, 34, 0.08), transparent 48%, rgba(52, 57, 79, 0.58));
  }

  .hero__photo--main img {
    object-position: 50% 42%;
  }

  .hero__photo--float {
    display: none;
  }

  .hero__badge {
    display: none;
  }

  .steam,
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 4.75rem 1.35rem;
  }

  .section-heading,
  .moments__top,
  .menu-intro {
    display: block;
  }

  .section-heading h2,
  .moments h2,
  .menu-intro h2,
  .gallery h2,
  .closing h2 {
    font-size: clamp(2.75rem, 11.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .section-heading {
    margin-bottom: 2.75rem;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .story-collage {
    min-height: 27rem;
  }

  .story-collage__large {
    width: 72%;
    border-radius: 9rem 9rem 1.2rem 1.2rem;
  }

  .story-collage__small {
    width: 49%;
    height: 51%;
  }

  .story-copy__intro {
    font-size: 1.35rem;
    line-height: 1.65;
  }

  .story-copy > p:not(.story-copy__intro) {
    color: rgba(52, 57, 79, 0.82);
    font-size: 0.98rem;
    line-height: 1.95;
  }

  .story-values {
    margin-top: 2.5rem;
  }

  .story-reel {
    grid-template-columns: repeat(5, 6.9rem);
    gap: 0.9rem;
    margin-top: 3.25rem;
    margin-right: -1.35rem;
    margin-left: -1.35rem;
    padding: 0 1.35rem 1rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .story-bubble__ring {
    width: 6.9rem;
    min-width: 0;
  }

  .moments__top > p {
    margin-top: 1.5rem;
    color: rgba(247, 244, 239, 0.78);
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .menu-intro > p {
    margin-top: 1.25rem;
    color: rgba(52, 57, 79, 0.8);
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .menu-shell {
    margin-top: 3rem;
  }

  .menu-tabs {
    gap: 0.35rem;
    margin-inline: -1.35rem;
    padding: 0 1.35rem 0.85rem;
  }

  .menu-tab {
    min-height: 2.55rem;
    padding: 0.5rem 0.82rem;
    font-size: 0.75rem;
  }

  .menu-feature {
    grid-template-columns: 1fr;
  }

  .menu-feature.reveal {
    opacity: 1;
    transform: none;
  }

  .menu-feature__image {
    position: relative;
    top: 0;
    height: 22rem;
  }

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

  .menu-card {
    min-height: 9rem;
    padding: 1.15rem;
  }

  .menu-card__name {
    font-size: 1.12rem;
  }

  .menu-card__category {
    color: rgba(69, 75, 101, 0.66);
    font-size: 0.65rem;
  }

  .menu-card__en {
    color: rgba(69, 75, 101, 0.68);
    font-size: 0.72rem;
  }

  .menu-card__price {
    font-size: 1.05rem;
  }

  .menu-card__cal {
    color: rgba(69, 75, 101, 0.62);
    font-size: 0.67rem;
  }

  .menu-card--dessert {
    min-height: 21rem;
  }

  .menu-card__media {
    height: 14rem;
  }

  .menu-note {
    grid-template-columns: auto 1fr;
    gap: 0.65rem 1rem;
    color: rgba(52, 57, 79, 0.8);
    font-size: 0.8rem;
  }

  .menu-note p:last-child {
    grid-column: 2;
  }

  .ritual {
    min-height: 68svh;
    padding: 4.75rem 1.35rem;
  }

  .ritual__shade {
    background: linear-gradient(180deg, rgba(20, 21, 28, 0.22), rgba(29, 31, 43, 0.94) 78%);
  }

  .ritual__copy {
    align-self: end;
    width: 100%;
  }

  .ritual blockquote {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    line-height: 1.14;
  }

  .ritual__side {
    display: none;
  }

  .gallery {
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 21rem;
  }

  .gallery-card--wide {
    grid-column: auto;
  }

  .gallery-card--tall {
    grid-row: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.25rem;
  }

  .site-footer__middle {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__copy {
    padding: 2.6rem 1.2rem 4rem;
  }

  .eyebrow {
    letter-spacing: 0.11em;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .story-values {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-values div {
    grid-template-columns: 5.5rem 1fr;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .story-values div:last-child {
    border-bottom: 0;
  }

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

  .menu-card {
    min-height: 8.75rem;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-footer > p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
