/* ============================================================
   EAST 23 — Cocktail Lounge & Pan-Asian Kitchen
   Light palette: sand base · ink text · clay blocks · dark photo moments
   ============================================================ */

:root {
  /* palette */
  --sand: #ede8dc;
  --sand-2: #f4f0e7;
  --dark: #12100c;
  --dark-2: #17140f;
  --clay: #b96748;
  --cream: #f0e8d8;
  --gold: #c2a05a;
  --gold-dark: #8f6f2c;
  --logo-gold: #bf9100;

  /* contextual (light-on-sand defaults) */
  --fg: #191510;
  --fg-muted: rgba(25, 21, 16, 0.62);
  --fg-faint: rgba(25, 21, 16, 0.34);
  --line-c: rgba(25, 21, 16, 0.18);
  --accent: var(--gold-dark);
  --btn-contrast: var(--sand);

  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-sans: "Manrope", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* dark context (photo sections, footer, overlay) */
.on-dark {
  --fg: var(--cream);
  --fg-muted: rgba(240, 232, 216, 0.55);
  --fg-faint: rgba(240, 232, 216, 0.25);
  --line-c: rgba(240, 232, 216, 0.16);
  --accent: var(--gold);
  --btn-contrast: var(--dark);
  color: var(--fg);
}

/* clay context (terracotta blocks) */
.on-clay {
  --fg: #f7efe0;
  --fg-muted: rgba(247, 239, 224, 0.8);
  --fg-faint: rgba(247, 239, 224, 0.45);
  --line-c: rgba(247, 239, 224, 0.32);
  --accent: #f2e0b8;
  --btn-contrast: var(--clay);
  color: var(--fg);
}

/* deep-sea context (experimental block color) */
.on-deep {
  --fg: #edeae0;
  --fg-muted: rgba(237, 234, 224, 0.72);
  --fg-faint: rgba(237, 234, 224, 0.4);
  --line-c: rgba(237, 234, 224, 0.28);
  --accent: #c2a05a;
  --btn-contrast: #283b42;
  color: var(--fg);
}
.splitblock__panel.on-deep { background: #283b42; }

/* light context (soft-white block) */
.on-light {
  --fg: #191510;
  --fg-muted: rgba(25, 21, 16, 0.62);
  --fg-faint: rgba(25, 21, 16, 0.34);
  --line-c: rgba(25, 21, 16, 0.18);
  --accent: var(--gold-dark);
  --btn-contrast: #f7f3ea;
  color: var(--fg);
}
.splitblock__panel.on-light { background: #f7f3ea; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-dark); color: var(--sand); }

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

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

/* ---------- cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cream);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              background 0.35s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 56px; height: 56px; }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3.2rem);
  transition: transform 0.5s var(--ease), background 0.5s, padding 0.5s var(--ease);
}
.header.is-scrolled, .header--light {
  background: rgba(237, 232, 220, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* flip to light context regardless of the on-dark default */
  --fg: #191510;
  --fg-muted: rgba(25, 21, 16, 0.62);
  --fg-faint: rgba(25, 21, 16, 0.34);
  --line-c: rgba(25, 21, 16, 0.18);
  --accent: var(--gold-dark);
  --btn-contrast: var(--sand);
  color: var(--fg);
}
.header.is-scrolled { padding-block: 0.9rem; }
.header.is-hidden { transform: translateY(-110%); }

/* brand: the East 23 logo, colored via currentColor (CSS mask) */
.brand {
  display: inline-flex; align-items: center;
  color: var(--cream);
  transition: color 0.5s;
}
.header.is-scrolled .brand { color: var(--fg); }
.header.header--light .brand, .header.header--light.is-scrolled .brand { color: var(--fg); }
.brand-logo {
  display: block; width: 138px; height: 28px;
  background: currentColor;
  -webkit-mask: url(../east-23.svg) no-repeat center / contain;
  mask: url(../east-23.svg) no-repeat center / contain;
}

.nav-desktop { display: flex; gap: 2.4rem; }
.nav-desktop a {
  position: relative;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
  padding: 0.3rem 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--fg); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.header__right { display: flex; align-items: center; gap: 1.6rem; }

.btn-book {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--btn-contrast); background: var(--fg);
  padding: 0.85rem 1.7rem; border-radius: 100px;
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease);
}
.btn-book:hover { background: var(--accent); color: var(--btn-contrast); transform: scale(1.04); }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 210;
}
.burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 26px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
/* burger lines must stay visible over the dark overlay */
.burger.is-open span { background: var(--cream); }

/* ---------- fullscreen menu ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--dark-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.4rem, 5vw, 4rem);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
  visibility: hidden;
}
.menu-overlay.is-open { clip-path: inset(0 0 0% 0); visibility: visible; }
.menu-overlay__top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3.2rem);
}
.menu-overlay__top .brand-logo { color: var(--cream); }
.menu-overlay__close {
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative;
}
.menu-overlay__close span {
  position: absolute; left: 8px; right: 8px; top: 21px; height: 1.5px;
  background: var(--cream);
}
.menu-overlay__close span:nth-child(1) { transform: rotate(45deg); }
.menu-overlay__close span:nth-child(2) { transform: rotate(-45deg); }
.menu-overlay__links { display: flex; flex-direction: column; gap: 1.1rem; }
.menu-overlay__links a {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 6.5vw, 3.8rem);
  font-weight: 420; line-height: 1;
  letter-spacing: 0.08em;
  display: flex; align-items: baseline; gap: 1.4rem;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
}
.menu-overlay.is-open .menu-overlay__links a {
  opacity: 1; transform: translateY(0);
}
.menu-overlay.is-open .menu-overlay__links a:nth-child(1) { transition-delay: 0.25s; }
.menu-overlay.is-open .menu-overlay__links a:nth-child(2) { transition-delay: 0.33s; }
.menu-overlay.is-open .menu-overlay__links a:nth-child(3) { transition-delay: 0.41s; }
.menu-overlay.is-open .menu-overlay__links a:nth-child(4) { transition-delay: 0.49s; }
.menu-overlay__links a:hover { color: var(--accent); }
.menu-overlay__links a small {
  font-family: var(--font-sans);
  font-size: 0.65rem; letter-spacing: 0.3em; color: var(--fg-muted);
}
.menu-overlay__meta {
  margin-top: 3.4rem; display: flex; gap: 3rem; flex-wrap: wrap;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0; transition: opacity 0.6s 0.6s;
}
.menu-overlay.is-open .menu-overlay__meta { opacity: 1; }

/* ---------- shared layout ---------- */
.container { padding-inline: clamp(1.2rem, 4vw, 3.2rem); }

.label {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.label::before { content: ""; width: 2.4rem; height: 1px; background: currentColor; }

.display {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  text-transform: uppercase;
  font-weight: 380;
  line-height: 1.14;
  letter-spacing: 0.055em;
}
.display em { font-style: normal; color: var(--accent); }

.section { padding-block: clamp(5rem, 10vh, 9rem); }
/* sections adjacent to full-bleed blocks: match the doubled section-to-section rhythm */
.splitblock + .section, .videoblock + .section, .cta + .section {
  padding-top: calc(2 * clamp(5rem, 10vh, 9rem));
}
.section:has(+ .splitblock), .section:has(+ .videoblock), .section:has(+ .cta) {
  padding-bottom: calc(2 * clamp(5rem, 10vh, 9rem));
}
.splitblock + .menu-section, .videoblock + .menu-section, .cta + .menu-section {
  padding-top: calc(2 * clamp(3rem, 8vh, 5.5rem));
}
.menu-section:has(+ .splitblock), .menu-section:has(+ .videoblock), .menu-section:has(+ .cta) {
  padding-bottom: calc(2 * clamp(3rem, 8vh, 5.5rem));
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img { transform: scale(1.15); transition: transform 1.6s var(--ease); }
.reveal-img.is-in img { transform: scale(1); }

/* word-by-word title reveal */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .w > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.split.is-in .w > span { transform: translateY(0); }

/* parallax image wrapper — image is pre-offset upward so translateY never exposes the section background */
.plx { overflow: hidden; position: relative; }
.plx img { width: 100%; height: 115%; object-fit: cover; will-change: transform; position: relative; top: -5.5%; }
.plx video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- hero ---------- */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; background: var(--dark); }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.35) 0%, rgba(18,16,12,0.05) 40%, rgba(18,16,12,0.88) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 clamp(1.2rem, 4vw, 3.2rem) clamp(2.2rem, 6vh, 4rem);
}
.hero__title {
  font-size: clamp(2.1rem, 6.4vw, 5.9rem);
  max-width: 18ch;
}
.hero__row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap;
}
.hero__sub {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-muted); line-height: 2;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .hero__sub { white-space: normal; }
}
.hero__scroll {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fg-muted);
}
.hero__scroll i {
  display: block; width: 1px; height: 3.4rem; background: var(--fg-faint);
  position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%; background: var(--accent);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ---------- split color block (Ballena-style) ---------- */
.splitblock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100svh;
}
.splitblock__img { min-height: 0; }
/* image fills the column absolutely so the text panel dictates the block height */
.splitblock__img img { position: absolute; top: -5.5%; left: 0; width: 100%; height: 112%; }
.splitblock__panel {
  background: var(--clay);
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1.6rem, 4.5vw, 4.5rem);
}
.splitblock__title { font-size: clamp(1.5rem, 3.1vw, 2.7rem); max-width: 24ch; }
.splitblock__body { color: var(--fg-muted); max-width: 46ch; font-size: 1rem; }
.splitblock__body + .splitblock__body { margin-top: 1.1rem; }
.splitblock__panel .link-arrow { color: var(--fg); margin-top: 2rem; }
.splitblock__panel .link-arrow:hover { color: var(--accent); }

.splitblock__prices {
  display: flex; flex-wrap: wrap; gap: 1rem 4rem;
  margin-top: 1.8rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-c);
  color: var(--fg-muted); font-size: 0.95rem;
}
.splitblock__prices span { display: inline-flex; align-items: baseline; gap: 0.7rem; }
.splitblock__prices b {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.2rem;
  color: var(--fg);
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; padding-block: clamp(3rem, 8vh, 5rem);
  border-block: 1px solid var(--line-c);
}
.marquee__track {
  display: flex; gap: clamp(1rem, 2vw, 1.6rem);
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  width: clamp(200px, 24vw, 330px);
  aspect-ratio: 3 / 4;
  overflow: hidden; flex-shrink: 0;
}
.marquee__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.marquee__item:hover img { transform: scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- kitchen ---------- */
.kitchen__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
}
.kitchen__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.kitchen__imgs .plx:first-child { aspect-ratio: 3/4; margin-top: 3.5rem; }
.kitchen__imgs .plx:last-child { aspect-ratio: 3/4; }
.kitchen__title { font-size: clamp(1.6rem, 3.4vw, 3rem); }
.kitchen__title--narrow { max-width: 22ch; }
.kitchen__body { margin-top: 2.2rem; color: var(--fg-muted); max-width: 44ch; }
.kitchen__body + .kitchen__body { margin-top: 1.2rem; }
.kitchen__cuisines {
  margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 0.8rem;
}
.kitchen__cuisines span {
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  border: 1px solid var(--line-c); border-radius: 100px;
  padding: 0.7rem 1.4rem; color: var(--fg-muted);
}

/* ---------- signatures ---------- */
.sig-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: clamp(2.5rem, 6vh, 4.5rem); flex-wrap: wrap;
}
.sig-head .display { font-size: clamp(1.6rem, 3.4vw, 3rem); }
.link-arrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 0.7rem;
  transition: color 0.3s;
}
.link-arrow::after { content: "→"; transition: transform 0.4s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: translateX(6px); }

.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.sig-card { position: relative; }
.sig-card:nth-child(even) { margin-top: clamp(1.5rem, 5vh, 4rem); }
.sig-card__img { aspect-ratio: 3 / 4; overflow: hidden; }
.sig-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s;
}
.sig-card:hover .sig-card__img img { transform: scale(1.07); }
.sig-card__num {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--cream); opacity: 0.9;
}
.sig-card__name {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 116;
  text-transform: uppercase;
  font-weight: 520; font-size: 0.95rem;
  letter-spacing: 0.16em;
}
.sig-card__desc { margin-top: 0.6rem; font-size: 0.85rem; color: var(--fg-muted); max-width: 30ch; }

/* ---------- experience cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.card {
  position: relative; display: block;
  aspect-ratio: 3 / 4; overflow: hidden;
  color: var(--cream);
}
.card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.card:hover img { transform: scale(1.06); }
.card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.25) 0%, rgba(18,16,12,0) 40%, rgba(18,16,12,0.75) 100%);
  transition: background 0.5s;
}
.card__tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 232, 216, 0.4);
  border-radius: 100px;
  padding: 0.45rem 0.9rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.card__name {
  position: absolute; left: 1.2rem; right: 3.6rem; bottom: 1.2rem; z-index: 2;
  font-family: var(--font-display);
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  font-weight: 440;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  letter-spacing: 0.08em; line-height: 1.25;
}
.card__arrow {
  position: absolute; right: 1.2rem; bottom: 1.2rem; z-index: 2;
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  border: 1px solid rgba(240, 232, 216, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.card:hover .card__arrow {
  background: var(--cream); color: var(--dark);
  transform: rotate(-45deg);
}

/* ---------- full-bleed video block ---------- */
.videoblock {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.videoblock video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.videoblock::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.3) 0%, rgba(18,16,12,0.05) 45%, rgba(18,16,12,0.85) 100%);
}
.videoblock__content {
  position: relative; z-index: 2; width: 100%;
  padding: clamp(2.4rem, 6vh, 4rem) clamp(1.2rem, 4vw, 3.2rem);
}
.videoblock__title { font-size: clamp(1.8rem, 3.8vw, 3.4rem); max-width: 22ch; }
.videoblock__cols {
  margin-top: 2.2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 62rem;
  color: var(--fg-muted); font-size: 0.95rem;
}
@media (max-width: 700px) {
  .videoblock__cols { grid-template-columns: 1fr; }
}

/* ---------- big CTA ---------- */
.cta {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta .plx { position: absolute; inset: 0; }
.cta .plx img { height: 120%; }
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(18, 16, 12, 0.55);
}
.cta__content { position: relative; z-index: 2; padding: 2rem; }
.cta__title { font-size: clamp(1.9rem, 4.8vw, 4.4rem); }
.cta__hours {
  margin-top: 1.6rem; font-size: 0.74rem; letter-spacing: 0.32em;
  text-transform: uppercase; opacity: 0.85;
}
.cta .btn-book { display: inline-block; margin-top: 2.6rem; padding: 1.1rem 2.6rem; }
.cta__map {
  display: block; margin-top: 1.6rem;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}
.cta__map:hover { color: var(--accent); }
.cta__map-arrow { display: inline-block; transform: rotate(-45deg); }

/* ---------- awards (about CTA) ---------- */
.awards {
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 62rem;
  text-align: center;
}
.award {
  border-top: 1px solid var(--line-c);
  padding-top: 1.3rem;
}
.award b {
  display: block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}
.award span {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 116;
  font-weight: 450; font-size: 1.02rem;
  letter-spacing: 0.06em; line-height: 1.5;
}
@media (max-width: 700px) {
  .awards { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer {
  padding: clamp(4rem, 9vh, 6rem) clamp(1.2rem, 4vw, 3.2rem) 2rem;
  background: var(--dark-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__logo-vert {
  display: block; width: 176px; aspect-ratio: 389 / 220;
  background: var(--accent);
  -webkit-mask: url(../east-23-vert.svg) no-repeat center / contain;
  mask: url(../east-23-vert.svg) no-repeat center / contain;
}
.footer__tag { margin-top: 1.4rem; color: var(--fg-muted); font-size: 0.85rem; max-width: 30ch; }
.footer h4 {
  font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 1.3rem; font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer address + ul { margin-top: 0.7rem; }
.footer ul a, .footer address {
  font-style: normal; font-size: 0.9rem; color: var(--fg-muted);
  transition: color 0.3s; line-height: 1.8;
}
.footer ul a:hover { color: var(--accent); }
.footer__bottom a { transition: color 0.3s; }
.footer__credit { margin-left: 40px; }
.footer__bottom a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 4.5rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line-c);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-faint);
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; min-height: 74svh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: 8rem;
  background: var(--dark);
}
.page-hero .plx { position: absolute; inset: 0; }
.page-hero .plx img { height: 118%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,16,12,0.5), rgba(18,16,12,0.15) 45%, rgba(18,16,12,0.92) 100%);
}
.page-hero__content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 clamp(1.2rem, 4vw, 3.2rem) clamp(2.2rem, 6vh, 3.6rem);
}
.page-hero--full { min-height: 100svh; }
.page-hero__title { font-size: clamp(2rem, 5.8vw, 5.2rem); max-width: 90%; }
.hero__row .page-hero__sub { margin-top: 0; }
.page-hero .hero__row { margin-top: 1.2rem; align-items: center; }
.page-hero__sub {
  margin-top: 1.4rem; font-size: 0.76rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--fg-muted);
}

/* ---------- menu page ---------- */
.menu-section { padding-block: clamp(3rem, 8vh, 5.5rem); }
.menu-section__head {
  display: flex; align-items: baseline; gap: 1.6rem; flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vh, 3.4rem);
}
.menu-section__head .display { font-size: clamp(1.5rem, 3.2vw, 2.8rem); }
.menu-section__head span {
  font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-faint);
}
.menu-lead {
  margin: -1.2rem 0 2.6rem;
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--fg-muted);
}
.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.menu-grid--flip { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
.menu-grid__img { position: sticky; top: 7rem; aspect-ratio: 3/4; }
.menu-list { list-style: none; }
.menu-item {
  padding: 1.7rem 0; border-bottom: 1px solid var(--line-c);
  display: grid; grid-template-columns: 1fr auto; gap: 0.55rem 2rem;
  transition: padding-left 0.4s var(--ease);
}
.menu-item:first-child { padding-top: 0.4rem; }
.menu-item:hover { padding-left: 1rem; }
.menu-item__name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 116;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.14em;
  transition: color 0.3s;
}
.menu-item:hover .menu-item__name { color: var(--accent); }
.menu-item__desc { grid-column: 1; color: var(--fg-muted); font-size: 0.9rem; max-width: 46ch; }
.menu-item__price {
  grid-row: 1; grid-column: 2;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  color: var(--fg); align-self: center; white-space: nowrap;
}
.menu-item__name small {
  font-size: 0.62em; font-weight: 400; color: var(--fg-muted); letter-spacing: 0.1em;
}
.menu-list--narrow { max-width: 760px; }
.menu-item__tag {
  grid-row: 1; grid-column: 2;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fg-faint); align-self: center; white-space: nowrap;
}
.menu-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.4rem; }
.menu-duo .plx { aspect-ratio: 3/4; }
.menu-duo .plx:first-child { margin-top: 2.4rem; }

/* ---------- about page ---------- */
.story__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.4rem, 6vw, 6.5rem); align-items: center;
}
.story__title { font-size: clamp(1.5rem, 3vw, 2.6rem); }
.story__body { margin-top: 1.8rem; color: var(--fg-muted); max-width: 46ch; }
.story__body + .story__body { margin-top: 1.1rem; }
.story__img { aspect-ratio: 3/4; }
.story__img--wide { aspect-ratio: 4/3; }

.quote {
  text-align: center;
  max-width: 30ch; margin: 0 auto;
  font-size: clamp(1.3rem, 2.9vw, 2.4rem);
}
.quote-wrap {
  padding-block: clamp(4.5rem, 11vh, 8rem);
  background: var(--clay);
}
.quote-attr {
  margin-top: 2rem; text-align: center;
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--fg-muted);
}

.facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.fact {
  border: 1px solid var(--line-c); padding: 2.4rem 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.fact b {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  font-weight: 380;
  font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--accent);
}
.fact span { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--fg-muted); }

/* ---------- book page ---------- */
.book-wrap {
  min-height: 100svh; display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.book-media { position: relative; overflow: hidden; min-height: 50vh; }
.book-media img, .book-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.book-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(18,16,12,0.15), rgba(18,16,12,0.55));
}
.book-media__caption {
  position: absolute; bottom: 2rem; left: 2rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream); opacity: 0.85;
}
.book-panel {
  padding: clamp(7rem, 14vh, 10rem) clamp(1.2rem, 4vw, 3.2rem) clamp(3rem, 6vh, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.book-panel .display { font-size: clamp(1.9rem, 4vw, 3.4rem); }
.book-panel__sub { margin-top: 1.4rem; color: var(--fg-muted); max-width: 42ch; }

.book-form { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--fg-muted);
}
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line-c);
  color: var(--fg); font-family: var(--font-sans); font-size: 1rem;
  padding: 0.7rem 0.1rem; outline: none; border-radius: 0;
  transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.field select { cursor: pointer; }
.field select option { background: var(--sand-2); color: var(--fg); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }

.book-form .btn-book {
  grid-column: 1 / -1; justify-self: start;
  border: none; cursor: pointer; font-family: var(--font-sans);
  padding: 1.05rem 2.6rem;
}
.book-alt {
  margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line-c);
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  font-size: 0.85rem; color: var(--fg-muted);
}
.book-alt b { display: block; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 0.4rem; font-weight: 700; }
.book-alt a { color: var(--fg); transition: color 0.3s; }
.book-alt a:hover { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header .btn-book { display: none; }
  .burger { display: block; }

  .splitblock { grid-template-columns: 1fr; }
  .splitblock__img { min-height: 52vh; }
  .splitblock__panel { min-height: auto; gap: 2.4rem; }

  .kitchen__grid, .story__grid,
  .menu-grid, .menu-grid--flip { grid-template-columns: 1fr; }
  .menu-grid__img { position: static; max-width: 480px; }
  .menu-grid--flip .menu-grid__img { order: -1; }

  .sig-grid { grid-template-columns: 1fr 1fr; }
  .sig-card:nth-child(even) { margin-top: 0; }

  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .card { aspect-ratio: 4 / 3; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .facts { grid-template-columns: 1fr; }

  .page-hero { min-height: 100svh; }

  .book-wrap { grid-template-columns: 1fr; }
  .book-media { min-height: 74svh; order: -1; }
  .book-panel { padding-top: 3rem; }

  /* book header: transparent over the video at top, like the other pages */
  .header--light:not(.is-scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-block: 1.4rem;
    --fg: var(--cream);
    --fg-muted: rgba(240, 232, 216, 0.55);
    color: var(--fg);
  }
  .header--light:not(.is-scrolled) .brand { color: var(--cream); }
}

@media (max-width: 560px) {
  .sig-grid { grid-template-columns: 1fr; }
  .book-form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .kitchen__imgs { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .split .w > span { opacity: 1; transform: none; }
}

/* feedback do formulário de reserva */
.book-feedback { padding: .9rem 1.1rem; border: 1px solid currentColor; margin-top: 1.6rem; font-size: .95rem; }
.book-feedback--success { color: #4a7c59; }
.book-feedback--error { color: #a4442f; }
.menu-overlay__meta .langs a.is-active { text-decoration: underline; }

/* páginas legais (privacidade / cookies) */
.legal__body { max-width: 64ch; line-height: 1.75; color: var(--fg-muted); }
.legal__body p { margin-bottom: 1.2rem; }
.legal__body strong { color: var(--fg); font-weight: 700; }
.legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__body h3 { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 118; text-transform: uppercase; letter-spacing: .06em; font-size: 1.05rem; color: var(--fg); margin: 2.4rem 0 1rem; }
.legal__cat { margin-top: clamp(2.5rem, 6vh, 4rem); }
.legal__cat-title { font-family: "Archivo", sans-serif; font-variation-settings: "wdth" 118; text-transform: uppercase; letter-spacing: .06em; font-size: 1.05rem; color: var(--fg); margin-bottom: 1rem; }
.legal__table-wrap { overflow-x: auto; margin-top: 1.4rem; }
.legal__table { width: 100%; border-collapse: collapse; font-size: .92rem; line-height: 1.5; }
.legal__table th { font-family: "Archivo", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--fg-faint); text-align: left; padding: .6rem .9rem .6rem 0; border-bottom: 1px solid var(--line-c); }
.legal__table td { vertical-align: top; padding: .8rem .9rem .8rem 0; border-bottom: 1px solid var(--line-c); color: var(--fg-muted); }
.legal__table td:first-child { color: var(--fg); font-weight: 600; }

/* links legais no rodapé */
.footer__bottom { flex-wrap: wrap; gap: .5rem 2rem; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }

/* coluna de língua no rodapé */
.footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr auto; }
.footer__lang { display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem; }
.footer__globe svg { display: block; width: 22px; height: 22px; color: var(--accent); }
.footer__lang-links { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; letter-spacing: 0.14em; }
.footer__lang-links a { color: var(--fg-muted); transition: color 0.3s; }
.footer__lang-links a.is-active { color: var(--accent); }
.footer__lang-links a:hover { color: var(--accent); }
.footer__lang-links span { color: var(--fg-faint); font-size: 0.7rem; }

/* dessert panel: list on colored background + footnote */
.splitblock__panel .menu-list .menu-item:first-child { padding-top: 0; border-top: none; }
.splitblock__foot {
  margin-top: 1.6rem;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-faint);
}

.menu-morelink { margin-top: clamp(2rem, 5vh, 3rem); }
