/* =============================================================
   Brasserie Ultimo — palette sampled from interior photography.
   ============================================================= */

:root {
  /* Brand-locked dark blue + sampled accents */
  --u-blue-darkest: #1B1448;
  --u-blue-deep:    #271a66;
  --u-blue-dark:    #1d4583;
  --u-blue:         #2d6eb8;
  --u-blue-light:   #5b8fc4;
  --u-blue-tile:    #94c0e0;

  --u-mustard:      #d4a437;
  --u-mustard-soft: #e8c46e;

  --u-terracotta:      #b97b6a;
  --u-terracotta-soft: #d6a08f;

  --u-cream:        #f5efe5;
  --u-cream-light:  #fdfaf3;
  --u-charcoal:     #15233f;
  --u-wood:         #a58968;

  /* Type */
  --font-heading: "Gilda Display", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-script:  "Babylonica", "Brush Script MT", cursive;

  /* Layout */
  --section-pad:   clamp(72px, 9vw, 144px);
  --container-max: 1280px;
  --container-pad: clamp(20px, 4vw, 48px);

  /* Motion */
  --ease-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --t-fast: 200ms;
  --t-slow: 500ms;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--u-cream);
  background: var(--u-blue-darkest);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================ Typography */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1 { font-size: clamp(48px, 9vw, 120px); }
h2 { font-size: clamp(40px, 6vw, 88px); line-height: 1.0; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
h4 { font-size: 14px; }

em.script-em {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--u-mustard);
  font-size: 0.85em;
  display: inline-block;
  padding-left: 0.4em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--u-charcoal);
  opacity: 0.7;
  margin-bottom: 24px;
}
.eyebrow-light { color: var(--u-cream); opacity: 0.75; }
.eyebrow-dark  { color: var(--u-blue-darkest); opacity: 1; }

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 56ch;
  margin-top: 24px;
}
.lede-dark {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--u-blue-darkest);
  max-width: 50ch;
  margin-top: 24px;
  font-weight: 400;
}
.aside-quote {
  font-style: italic;
  color: var(--u-terracotta);
  font-weight: 500;
  margin-top: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--u-terracotta);
  line-height: 1.5;
  max-width: 52ch;
}
.aside-dark {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--u-blue-darkest);
  opacity: 0.8;
}

/* ============================================================ Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) var(--ease-out), border-color var(--t-fast) ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--u-mustard);
  color: var(--u-blue-darkest);
}
.btn-primary:hover {
  background: var(--u-mustard-soft);
  transform: translateY(-2px);
}

.btn-mustard {
  background: var(--u-mustard);
  color: var(--u-blue-darkest);
  font-size: 15px;
  padding: 18px 36px;
}
.btn-mustard:hover {
  background: var(--u-mustard-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--u-cream);
  border-color: rgba(245, 239, 229, 0.4);
  padding: 18px 32px;
  font-size: 15px;
}
.btn-ghost:hover {
  border-color: var(--u-mustard);
  color: var(--u-mustard);
}

/* Block-style contact buttons (reservation section) */
.btn-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px 28px;
  width: 100%;
  border: 1px solid;
  transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
  text-decoration: none;
}
.btn-block-dark {
  background: var(--u-blue-darkest);
  color: var(--u-cream);
  border-color: var(--u-blue-darkest);
}
.btn-block-dark:hover { background: var(--u-blue-deep); transform: translateY(-2px); }
.btn-block-outline {
  background: transparent;
  color: var(--u-blue-darkest);
  border-color: var(--u-blue-darkest);
}
.btn-block-outline:hover { background: var(--u-blue-darkest); color: var(--u-cream); }
.btn-block .btn-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.btn-block .btn-detail {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================ Header / Nav */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 20, 72, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 239, 229, 0.08);
}
@supports not (backdrop-filter: blur(0)) {
  .site-header { background: rgba(27, 20, 72, 0.96); }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--u-cream);
  transition: color var(--t-fast) ease;
  position: relative;
  padding-block: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--u-mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--u-mustard); }
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav { gap: 12px; }
  .btn-primary { padding: 12px 18px; font-size: 12px; }
}

/* ============================================================ Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: clamp(60px, 8vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-out);
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.55) saturate(1.12) contrast(1.04);
  animation: heroKenBurns 14s var(--ease-out) infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 20, 72, 0.55) 0%, rgba(27, 20, 72, 0.05) 25%, rgba(27, 20, 72, 0.92) 100%),
    linear-gradient(90deg, rgba(27, 20, 72, 0.5) 0%, rgba(27, 20, 72, 0) 60%);
}
.hero-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(245, 239, 229, 0.12);
  z-index: 1;
}
.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--u-mustard);
  transition: width 100ms linear;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--u-mustard);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--u-cream);
}
.hero-headline .display-line { display: block; }
.hero-headline .script-line {
  font-family: var(--font-script);
  font-size: 0.42em;
  font-weight: 400;
  color: var(--u-mustard);
  display: block;
  line-height: 1;
  padding-left: 0.6em;
  margin-block: -0.05em -0.05em;
}
.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  max-width: 50ch;
  color: rgba(245, 239, 229, 0.92);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ============================================================ Section foundations */

section { padding-block: var(--section-pad); position: relative; }
.section-cream  { background: var(--u-cream);        color: var(--u-charcoal); }
.section-white  { background: #ffffff;               color: var(--u-charcoal); }
.section-blue   { background: var(--u-blue-darkest); color: var(--u-cream); }
.section-mustard{ background: var(--u-mustard);      color: var(--u-blue-darkest); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 88px);
  max-width: 780px;
  margin-inline: auto;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-sub {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.8;
  max-width: 50ch;
}

/* ============================================================ Reveal-philosophy (text fades word-by-word on scroll) */

.reveal-philosophy { padding-block: clamp(120px, 18vw, 240px); }
.reveal-paragraph {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.4vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--u-blue-dark);
  max-width: 22ch;
  font-weight: 400;
}
.reveal-paragraph .word {
  display: inline-block;
  opacity: 0.18;
  filter: blur(0.4px);
  transform: translateY(0.1em);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out), filter 600ms var(--ease-out);
}
.reveal-paragraph .word.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-cards {
  margin-top: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.reveal-card {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.reveal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center; /* crop right side so the restaurant interior is visible */
  transition: transform 1.2s var(--ease-out);
}
.reveal-card:hover img { transform: scale(1.05); }

@media (max-width: 767px) {
  .reveal-cards { grid-template-columns: 1fr; }
}

/* ============================================================ Signature dishes mosaic (Pistroa structure) */

.dishes { padding-block: clamp(96px, 13vw, 200px); }
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  grid-template-areas:
    "head dish2 dish1"
    "dish3 dish4 dish5";
}
.dishes-heading {
  grid-area: head;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 32px) clamp(20px, 3vw, 40px) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.dishes-heading h2 {
  margin-top: 16px;
  color: var(--u-cream);
  line-height: 0.98;
}
.dishes-heading .dishes-lede {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 239, 229, 0.72);
  max-width: 38ch;
}

.dish-card {
  position: relative;
  background: var(--u-blue-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
}
.dish-card:hover { transform: translateY(-3px); }

.dish-area-1 { grid-area: dish1; }
.dish-area-2 { grid-area: dish2; }
.dish-area-3 { grid-area: dish3; }
.dish-area-4 { grid-area: dish4; }
.dish-area-5 { grid-area: dish5; }

.dish-card-large { min-height: 380px; }
.dish-card-large .dish-image {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.dish-card-large .dish-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.dish-card-large:hover .dish-image img { transform: scale(1.04); }
.dish-card-large .dish-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,29,61,0) 40%, rgba(10,29,61,0.85) 100%);
  pointer-events: none;
}
.dish-card-large .dish-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(24px, 2.4vw, 36px);
  z-index: 1;
}
.dish-card-large .dish-body h3 {
  color: var(--u-cream);
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 8px;
}
.dish-card-large .dish-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245, 239, 229, 0.82);
  max-width: 38ch;
}

.dish-card-icon {
  padding: clamp(24px, 2.4vw, 36px);
  background: rgba(245, 239, 229, 0.04);
  border: 1px solid rgba(245, 239, 229, 0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 200px;
}
.dish-card-icon .dish-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 164, 55, 0.16);
  color: var(--u-mustard);
  border: 1px solid rgba(212, 164, 55, 0.4);
}
.dish-card-icon .dish-body h3 {
  color: var(--u-cream);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  margin-bottom: 8px;
}
.dish-card-icon .dish-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245, 239, 229, 0.7);
}

.dish-price, .dish-tag {
  display: flex;
  align-items: flex-end;
  min-height: 42px; /* unified block height so the stroke (border-top) lines up across cards */
  margin-top: 16px;
  padding-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--u-mustard);
  border-top: 1px solid rgba(212, 164, 55, 0.28);
  line-height: 1;
}
.dish-price { font-size: 18px; letter-spacing: 0.02em; text-transform: none; }
.dish-price .dish-price-unit {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

@media (max-width: 991px) {
  .dishes-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "head head"
      "dish1 dish1"
      "dish2 dish4"
      "dish3 dish3"
      "dish5 dish5";
  }
  .dish-card-large { min-height: 320px; }
}
@media (max-width: 479px) {
  .dishes-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "dish1"
      "dish2"
      "dish3"
      "dish4"
      "dish5";
  }
  .dish-card-large { min-height: 300px; }
}

/* ============================================================ Super-large wordmark section */

.wordmark {
  padding-block: clamp(80px, 11vw, 200px);
  text-align: center;
  overflow: hidden;
}
.wordmark-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wordmark-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--u-blue-dark);
  opacity: 0.7;
}
.wordmark-script {
  font-family: var(--font-script);
  font-size: clamp(120px, 28vw, 460px);
  line-height: 0.85;
  color: var(--u-blue-dark);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.wordmark-logo {
  width: clamp(320px, 64vw, 880px);
  height: auto;
  max-width: 100%;
  margin-block: 16px;
}
.wordmark-meta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--u-terracotta);
  margin-top: 16px;
}

/* ============================================================ Culinary Philosophy (asymmetric grid) */

.philosophy { padding-block: clamp(96px, 13vw, 200px); background: var(--u-cream); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 28px);
  grid-template-areas:
    "text image aside"
    "text image aside";
  align-items: stretch;
}
.philosophy-text {
  grid-area: text;
  align-self: center;
  max-width: 420px;
  padding-right: 12px;
}
.philosophy-text h2 {
  color: var(--u-blue-dark);
  margin-top: 8px;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
}
.philosophy-image {
  grid-area: image;
  margin: 0;
  overflow: hidden;
  align-self: stretch;
  min-height: 480px;
}
.philosophy-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.philosophy-image:hover img { transform: scale(1.04); }

.philosophy-aside {
  grid-area: aside;
  display: grid;
  grid-template-rows: 1.05fr 0.95fr;
  gap: clamp(16px, 2vw, 28px);
}
.aside-card {
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.aside-card hr {
  border: none;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
  margin: 4px 0 0;
}
.aside-card-mustard {
  background: var(--u-mustard);
  color: var(--u-blue-darkest);
}
.aside-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--u-blue-darkest);
  flex: none;
}
.aside-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
}
.aside-card-mustard blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--u-blue-darkest);
  margin: 0;
}
.aside-card-mustard .aside-cite {
  font-size: 14px;
  line-height: 1.5;
  color: var(--u-blue-darkest);
  opacity: 0.85;
}
.aside-card-mustard .aside-cite strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.aside-card-deep {
  background: var(--u-blue-darkest);
  color: var(--u-cream);
}
.aside-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 239, 229, 0.04);
  border: 1px solid rgba(245, 239, 229, 0.22);
  color: var(--u-cream);
  flex: none;
}
.aside-card-deep h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--u-cream);
  letter-spacing: -0.01em;
}
.aside-card-deep p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 239, 229, 0.82);
}

@media (max-width: 991px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text text"
      "image aside";
  }
  .philosophy-image { min-height: 380px; }
}
@media (max-width: 767px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image"
      "aside";
  }
  .philosophy-image { min-height: 320px; }
  .philosophy-aside { grid-template-rows: auto auto; }
}

/* ============================================================ Reservation */

.reserve-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.reserve-text h2 {
  margin-bottom: 8px;
  color: var(--u-blue-darkest);
}
.reserve-actions { display: flex; flex-direction: column; gap: 14px; }
.form-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--u-blue-darkest);
  opacity: 0.7;
  margin-top: 6px;
}

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

/* ============================================================ Testimonials */

.rating-display {
  font-size: clamp(72px, 14vw, 180px);
  color: var(--u-mustard);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  line-height: 0.9;
}
.rating-display .rating-symbol {
  font-size: 0.55em;
  color: var(--u-mustard);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(29, 69, 131, 0.05);
  border: 1px solid rgba(29, 69, 131, 0.14);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  transition: background var(--t-fast) ease, border-color var(--t-fast) ease, transform var(--t-fast) var(--ease-out);
}
.testimonial:hover {
  background: rgba(29, 69, 131, 0.08);
  border-color: var(--u-blue-dark);
  transform: translateY(-3px);
}
.testimonial .stars {
  color: var(--u-mustard);
  font-size: 16px;
  letter-spacing: 4px;
}
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--u-blue-dark);
  font-style: italic;
}
.testimonial figcaption {
  font-size: 14px;
  color: var(--u-charcoal);
}
.testimonial figcaption strong {
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonial figcaption span {
  font-weight: 400;
  opacity: 0.6;
}

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

/* ============================================================ Footer */

.site-footer {
  background: var(--u-blue-darkest);
  color: var(--u-cream);
  padding-top: var(--section-pad);
  padding-bottom: 0;
  border-top: 1px solid rgba(245, 239, 229, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}
.footer-brand .footer-logo {
  height: 56px;
  margin-bottom: 24px;
  width: auto;
}
.footer-tag {
  font-family: var(--font-script);
  font-size: clamp(32px, 3vw, 42px);
  color: var(--u-mustard);
  line-height: 1.05;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--u-mustard);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.footer-col p.muted { opacity: 0.6; font-size: 13px; margin-top: 8px; }
.footer-col a {
  transition: color var(--t-fast) ease;
}
.footer-col a:hover { color: var(--u-mustard); }
.socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.socials a {
  font-size: 16px;
  font-weight: 400;
}
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 229, 0.08);
  padding-block: 28px;
}
.footer-bottom p {
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.55;
  text-align: center;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================ Floating sticky reserve button (bottom-right pill) */

.reserve-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--u-blue-darkest);
  color: var(--u-cream);
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(27, 20, 72, 0.28), 0 4px 10px rgba(27, 20, 72, 0.22);
  transition: transform 220ms var(--ease-out), background 200ms ease, box-shadow 200ms ease;
}
.reserve-sticky:hover {
  background: var(--u-mustard);
  color: var(--u-blue-darkest);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(27, 20, 72, 0.32), 0 6px 14px rgba(27, 20, 72, 0.24);
}
.reserve-sticky:hover .reserve-sticky-arrow {
  background: transparent;
  border-color: rgba(27, 20, 72, 0.45);
  color: var(--u-blue-darkest);
}
.reserve-sticky-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(245, 239, 229, 0.55);
  color: var(--u-cream);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  order: -1; /* place icon before label, like the Ultimo reference */
}

/* Compact on small screens */
@media (max-width: 767px) {
  .reserve-sticky {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px 12px 14px;
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .reserve-sticky-arrow { width: 22px; height: 22px; }
}

/* ============================================================ Hero scroll cue */

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--u-mustard);
  z-index: 1;
  pointer-events: none;
}
.hero-scroll-cue svg {
  display: block;
  animation: scrollCueBob 2.2s ease-in-out infinite;
}
@keyframes scrollCueBob {
  0%, 100% { transform: translateY(-3px); opacity: 0.85; }
  50%      { transform: translateY(3px);  opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue svg { animation: none; }
}

/* ============================================================ Scroll-reveal motion */

[data-reveal], [data-reveal-line] {
  opacity: 0;
  transform: translateY(20px);
  /* Quintic ease-out for a softer, more "settled" feel */
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal-line] { transform: translateY(32px); }
[data-reveal].is-revealed,
[data-reveal-line].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle stagger inside menu-card grids so the second card lands a beat after the first */
.menu-cards > [data-reveal]:nth-child(2n)   { transition-delay: 90ms; }
.menu-cards > [data-reveal]:nth-child(3),
.menu-cards > [data-reveal]:nth-child(4)    { transition-delay: 60ms; }
.menu-cards > [data-reveal]:nth-child(5),
.menu-cards > [data-reveal]:nth-child(6)    { transition-delay: 120ms; }

/* Stagger child reveals inside dishes-grid for a cascading effect */
.dishes-grid > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.dishes-grid > [data-reveal]:nth-child(2) { transition-delay: 100ms; }
.dishes-grid > [data-reveal]:nth-child(3) { transition-delay: 180ms; }
.dishes-grid > [data-reveal]:nth-child(4) { transition-delay: 240ms; }
.dishes-grid > [data-reveal]:nth-child(5) { transition-delay: 300ms; }
.dishes-grid > [data-reveal]:nth-child(6) { transition-delay: 360ms; }

.testimonial-grid > [data-reveal]:nth-child(1) { transition-delay: 0ms; }
.testimonial-grid > [data-reveal]:nth-child(2) { transition-delay: 120ms; }
.testimonial-grid > [data-reveal]:nth-child(3) { transition-delay: 240ms; }

.philosophy-aside > [data-reveal]:nth-child(2) { transition-delay: 140ms; }

.reveal-cards > [data-reveal]:nth-child(2) { transition-delay: 140ms; }

/* ============================================================ Menu page */

.menu-page { padding-top: 0; }

.menu-hero {
  padding-block: clamp(140px, 18vw, 240px) clamp(72px, 10vw, 140px);
  background: var(--u-cream);
}
.menu-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.menu-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--u-blue-darkest);
  margin-top: 12px;
}
.menu-hero-aside .lede { margin-top: 0; }
.menu-hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--u-charcoal);
  opacity: 0.8;
}
.dietary-key { display: inline-flex; align-items: center; gap: 8px; }
.dietary-key .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--u-mustard);
  color: var(--u-blue-darkest);
}
.dietary-key .dot.vg { background: var(--u-terracotta); color: var(--u-cream); }

@media (max-width: 767px) {
  .menu-hero-grid { grid-template-columns: 1fr; }
}

.menu-cat {
  padding-block: clamp(40px, 5vw, 80px);
  /* Tighten between consecutive cream sections — no double padding */
}
.menu-cat + .menu-cat { padding-top: 0; }

.menu-cat-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 56ch;
}
.menu-cat-head-center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}
.menu-cat-head .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--u-terracotta);
  opacity: 1;
  margin-bottom: 18px;
}
.menu-cat-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--u-blue-darkest);
}

/* Card grid (image-left + body-right cards on dark navy) */
.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 767px) {
  .menu-cards { grid-template-columns: 1fr; }
}

.menu-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  background: var(--u-blue-darkest);
  color: var(--u-cream);
  overflow: hidden;
  min-height: 220px;
  text-decoration: none;
}
.menu-card-image {
  position: relative;
  overflow: hidden;
  background: var(--u-blue-deep);
}
.menu-card-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.menu-card:hover .menu-card-image img { transform: scale(1.05); }

.menu-card-body {
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--u-cream);
}
.menu-card-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 239, 229, 0.74);
}
.menu-card-price {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--u-mustard);
}
.menu-card-price .muted {
  font-weight: 400;
  font-size: 13px;
  color: rgba(212, 164, 55, 0.7);
  letter-spacing: 0.02em;
}

/* Dietary inline badge */
.diet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 164, 55, 0.16);
  color: var(--u-mustard);
  vertical-align: 2px;
  line-height: 1;
}

@media (max-width: 991px) {
  .menu-card { grid-template-columns: 42% 1fr; }
}
@media (max-width: 479px) {
  .menu-card { grid-template-columns: 1fr; min-height: 0; }
  .menu-card-image { aspect-ratio: 16 / 10; }
}

/* Active nav link */
.nav-links a.is-current {
  color: var(--u-mustard);
}
.nav-links a.is-current::after { transform: scaleX(1); }

/* ============================================================ Reduced motion */

@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;
  }
  [data-reveal], [data-reveal-line] {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal-paragraph .word { opacity: 1 !important; transform: none !important; filter: none !important; }
}
