/* ==========================================================================
   OUI Lunch & Dining — Stylesheet
   Palette: onyx black · ivory · gold · olive
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Palette */
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-mid: #1d1d1d;
  --char: #2a2a2a;
  --ivory: #f5efe4;
  --ivory-dim: #ece4d2;
  --bone: #faf6ed;
  --paper: #fbf8f1;

  --gold: #c9a961;
  --gold-bright: #d9b975;
  --gold-soft: #b8985a;
  --gold-ink: #7a6535;

  --olive: #5b6c3d;
  --olive-deep: #3f4d2a;
  --olive-soft: #8a9668;

  --rule: rgba(201, 169, 97, 0.28);
  --rule-strong: rgba(201, 169, 97, 0.55);
  --rule-ivory: rgba(245, 239, 228, 0.14);

  /* Typography */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-script: "Italianno", "Allura", "Pinyon Script", cursive;
  --f-body: "Jost", "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --radius: 2px;
  --nav-h: 100px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.08;
}

p { margin: 0 0 1em; }

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

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow--center::before { display: none; }
.eyebrow--center {
  justify-content: center;
  position: relative;
  padding: 0 3rem;
}
.eyebrow--center::before,
.eyebrow--center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center::before { left: 0; display: block; }
.eyebrow--center::after  { right: 0; }

.script {
  font-family: var(--f-script);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  color: var(--gold);
}

.serif { font-family: var(--f-display); }

.hidden { display: none !important; }

/* i18n swap */
[data-en], [data-pt] { transition: opacity 0.15s ease; }
html:not([lang="en"]) [data-lang="en"] { display: none; }
html[lang="en"] [data-lang="pt"] { display: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--ivory);
  --btn-brd: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-brd);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-brd: var(--gold);
}

.btn::after {
  content: "→";
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}

.btn:hover::after { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  --btn-brd: rgba(245, 239, 228, 0.4);
}

.btn--ghost:hover {
  --btn-bg: var(--ivory);
  --btn-fg: var(--ink);
  --btn-brd: var(--ivory);
}

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-brd: var(--gold);
}

.btn--gold:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--gold);
  --btn-brd: var(--ink);
}

.btn--outline-ink {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-brd: var(--ink);
}

.btn--outline-ink:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--ivory);
}

.link-gold {
  color: var(--gold-ink);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.link-gold:hover { color: var(--ink); border-color: var(--ink); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), height 0.3s ease;
}

.nav--solid,
.nav--inverse {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule-ivory);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.nav__logo {
  height: 72px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.3s ease;
}

.nav__logo:hover { transform: scale(1.04); }

.nav__logo img { height: 100%; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  list-style: none;
  padding: 0; margin: 0;
}

.nav__link {
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 1px solid rgba(245, 239, 228, 0.28);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.lang-toggle__slash { opacity: 0.35; padding: 0 0.2rem; }
.lang-toggle__active { color: var(--gold); }

.nav__menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: var(--ivory);
}

.nav__menu-btn svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: inline-flex; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    padding: 1.75rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    border-bottom: 1px solid var(--rule-ivory);
  }

  .nav--open .nav__link { font-size: 0.85rem; padding: 0.5rem 0; }
}

/* ==========================================================================
   Hero (Home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/hero-home.jpg");
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.55) saturate(1.05);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(10,10,10,0.0), rgba(10,10,10,0.5) 65%),
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.75) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 2rem;
}

.hero__mark {
  width: clamp(180px, 20vw, 240px);
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: riseFade 1.2s var(--ease) 0.2s forwards;
  display: block;
}

.hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  color: var(--ivory);
  letter-spacing: -0.015em;
  line-height: 1.04;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(18px);
  animation: riseFade 1.4s var(--ease) 0.5s forwards;
}

.hero__title .script {
  font-style: normal;
  display: block;
  font-size: 1.6em;
  color: var(--gold-bright);
  line-height: 0.85;
  margin-bottom: -0.05em;
}

.hero__sub {
  font-family: var(--f-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.82);
  margin: 1.5rem auto 2rem;
  max-width: 620px;
  line-height: 1.7;
  opacity: 0;
  animation: riseFade 1s var(--ease) 0.9s forwards;
}

.hero__sub::before,
.hero__sub::after {
  content: "·";
  display: inline-block;
  margin: 0 0.6em;
  color: var(--gold);
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseFade 1s var(--ease) 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  color: rgba(245, 239, 228, 0.6);
  font-family: var(--f-body);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: riseFade 1s var(--ease) 1.6s forwards;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(0.6); opacity: 1; }
}

@media (max-width: 860px), (max-height: 760px) {
  .hero__scroll { display: none; }
}

@keyframes riseFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Page Hero (internal pages)
   ========================================================================== */
.page-hero {
  background: var(--ink);
  color: var(--ivory);
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 169, 97, 0.08), transparent 60%),
    radial-gradient(ellipse at 0% 0%, rgba(91, 108, 61, 0.12), transparent 55%);
  z-index: -1;
}

.page-hero__eyebrow {
  color: var(--gold);
}

.page-hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 1rem 0 1.25rem;
  color: var(--ivory);
}

.page-hero__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(245, 239, 228, 0.78);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-hero__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2.25rem auto 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */
section { position: relative; }

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section--ink {
  background: var(--ink);
  color: var(--ivory);
}

.section--ivory { background: var(--ivory); }

.section__head {
  margin-bottom: 3.5rem;
}

.section__head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0.75rem 0 1rem;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--f-display);
}

.section--ink .section__title { color: var(--ivory); }

.section__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--char);
  max-width: 56ch;
}

.section--ink .section__lead { color: rgba(245, 239, 228, 0.78); }

.section__head--center .section__lead { margin: 0 auto; }

.rule-hair {
  width: 48px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 2rem 0;
}

.section__head--center .rule-hair { margin: 1.5rem auto 2rem; }

/* ==========================================================================
   Home: Concept (split)
   ========================================================================== */
.concept {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.concept__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.concept__media:hover img { transform: scale(1.04); }

.concept__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--rule);
  pointer-events: none;
  transform: translate(12px, 12px);
  transition: transform 0.6s var(--ease);
}

.concept__media:hover::after { transform: translate(6px, 6px); }

.concept__body {
  max-width: 520px;
}

.concept__script {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--gold);
  display: block;
  margin: 0 0 0.5rem;
}

.concept__title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.concept__text p {
  margin-bottom: 1.25em;
  color: #333;
  line-height: 1.8;
}

.concept__sign {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--char);
}

.concept__sign::before {
  content: "";
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

@media (max-width: 780px) {
  .concept__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept__media { aspect-ratio: 4/3; }
}

/* ==========================================================================
   Home: Philosophy (dark)
   ========================================================================== */
.philo {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}

.philo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(91, 108, 61, 0.15), transparent 55%);
  pointer-events: none;
}

.philo__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.philo__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.philo__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.philo__body h2 {
  color: var(--ivory);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.philo__body h2 em {
  color: var(--gold);
  font-style: italic;
}

.philo__body p {
  color: rgba(245, 239, 228, 0.82);
  line-height: 1.8;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rule-ivory);
}

.review {
  padding: 1.25rem;
  background: rgba(245, 239, 228, 0.04);
  border: 1px solid var(--rule-ivory);
}

.review__score {
  font-family: var(--f-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.review__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.review__name {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.9;
}

.review__count {
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.55);
  margin-top: 0.25rem;
}

@media (max-width: 780px) {
  .philo__grid { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Home: Signature
   ========================================================================== */
.signature {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.signature__deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 360px;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-15deg);
}

.signature__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.signature__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin: 1.25rem 0 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.signature__title em {
  color: var(--gold);
  font-style: italic;
}

.signature__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--char);
  line-height: 1.6;
  margin: 0 auto 2.5rem;
  max-width: 54ch;
}

.signature__ornament {
  width: 80px;
  height: auto;
  margin: 2rem auto 0;
  display: block;
  opacity: 0.45;
}

/* ==========================================================================
   Home: Reservation strip
   ========================================================================== */
.reservation {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4rem, 9vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(91, 108, 61, 0.1), transparent 50%);
}

.reservation__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.reservation__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin: 1rem 0 1rem;
  color: var(--ivory);
}

.reservation__title em { color: var(--gold); font-style: italic; }

.reservation__text {
  color: rgba(245, 239, 228, 0.78);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

.reservation__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.reservation__contact {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.65);
}

.reservation__contact a {
  color: var(--gold);
  transition: color 0.2s;
}
.reservation__contact a:hover { color: var(--ivory); }

/* ==========================================================================
   Sobre: Intro
   ========================================================================== */
.about-intro {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--paper);
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-intro__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-intro__media:hover img { transform: scale(1.03); }

.about-intro__media::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 40%; height: 40%;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.about-intro__media::after {
  content: "";
  position: absolute;
  right: -12px; bottom: -12px;
  width: 40%; height: 40%;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.about-intro__body p {
  color: #333;
  line-height: 1.85;
  margin-bottom: 1.25em;
}

.about-intro__body p + p { border-top: none; }

.about-intro__quote {
  margin-top: 2.5rem;
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 780px) {
  .about-intro__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Team
   ========================================================================== */
.team {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.06), transparent 60%);
}

.team__head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.team__head h2 {
  color: var(--ivory);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
}

.team__head em { color: var(--gold); font-style: italic; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  position: relative;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  transition: transform 0.5s var(--ease);
}

.team-card:hover { transform: translateY(-6px); }

.team-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) brightness(0.92) contrast(1.02);
  transition: transform 1.2s var(--ease), filter 0.6s ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1) contrast(1);
}

.team-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent 55%);
  pointer-events: none;
}

.team-card__body {
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
}

.team-card__name {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--ivory);
}

.team-card__role {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.team-card__bio {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.72);
}

.team-card__num {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  z-index: 2;
}

@media (max-width: 860px) {
  .team__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-page {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.menu-page__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0 4rem;
  flex-wrap: wrap;
}

.menu-section {
  margin-bottom: 4rem;
  position: relative;
}

.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-strong);
  flex-wrap: wrap;
}

.menu-section__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.menu-section__note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--char);
  opacity: 0.7;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-bottom: 1px dotted rgba(42, 42, 42, 0.18);
  align-items: baseline;
}

.menu-item:last-child { border-bottom: 0; }

.menu-item__name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.menu-item__desc {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--char);
  opacity: 0.78;
  margin-top: 0.25rem;
  line-height: 1.45;
}

.menu-item__price {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-ink);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.menu-section--chef {
  margin-top: 6rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.menu-section--chef::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(201, 169, 97, 0.12), transparent 50%);
  pointer-events: none;
}

.menu-section--chef .menu-section__head { border-color: var(--rule-strong); }
.menu-section--chef .menu-section__title { color: var(--ivory); }
.menu-section--chef .menu-section__title em { color: var(--gold); font-style: italic; }
.menu-section--chef .menu-section__note { color: rgba(245, 239, 228, 0.68); }

.menu-section--chef .menu-item { border-color: rgba(201, 169, 97, 0.18); }
.menu-section--chef .menu-item__name { color: var(--ivory); }
.menu-section--chef .menu-item__desc { color: rgba(245, 239, 228, 0.65); }
.menu-section--chef .menu-item__price { color: var(--gold); }

.menu-legal {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  color: var(--char);
  opacity: 0.75;
  line-height: 1.75;
  text-align: center;
}

.menu-legal p { margin-bottom: 0.5em; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact__block {
  margin-bottom: 2.5rem;
}

.contact__block h3 {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}

.contact__block p,
.contact__block a {
  font-family: var(--f-display);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
}

.contact__block a {
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.contact__block a:hover { color: var(--gold-ink); border-color: var(--gold); }

.hours-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(42, 42, 42, 0.15);
  font-family: var(--f-display);
  font-size: 1.05rem;
}

.hours-row:last-child { border-bottom: 0; }

.hours-row__day {
  font-weight: 500;
  color: var(--char);
  letter-spacing: 0.04em;
}

.hours-row__time {
  color: var(--char);
  font-style: italic;
}

.hours-row--closed .hours-row__time { color: var(--gold-ink); }

.contact__map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ivory);
  overflow: hidden;
  border: 1px solid var(--rule);
}

.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

@media (max-width: 780px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { aspect-ratio: 4/3; margin-top: 2rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-ivory);
}

.footer__brand {
  display: block;
  margin-bottom: 1.25rem;
}

.footer__brand img { height: 96px; width: auto; }

.footer__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.footer__heading {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: rgba(245, 239, 228, 0.75);
}

.footer a {
  color: rgba(245, 239, 228, 0.75);
  transition: color 0.2s;
}
.footer a:hover { color: var(--gold); }

.footer__address {
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.75);
  font-size: 0.95rem;
}

.footer__partners {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-ivory);
  flex-wrap: wrap;
}

.footer__partners-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.55);
}

.footer__partners-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__partner {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 239, 228, 0.8);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer__partner:hover { color: var(--gold); border-color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.5);
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.5);
  margin-right: 1.5rem;
}

.footer__legal a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal--stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }

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