/* Base */
:root {
  --bg: #080706;
  --bg-soft: #0f0c0a;
  --panel: #12100d;
  --panel-soft: #1b1712;
  --glass: rgba(20, 16, 12, 0.72);
  --line: rgba(240, 197, 106, 0.16);
  --line-strong: rgba(240, 197, 106, 0.36);
  --text: #f7efe2;
  --muted: #b7aa99;
  --gold: #c99a45;
  --gold-soft: #f0c56a;
  --ember: #c4491d;
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.48);
  --shadow-md: 0 20px 44px rgba(0, 0, 0, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100vw - 2rem));
  --section-space: clamp(4.5rem, 8vw, 8.2rem);
  --card-space: clamp(1.15rem, 2.2vw, 1.8rem);
  --speed: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --speed-slow: 780ms cubic-bezier(0.19, 1, 0.22, 1);
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --noise:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 76% 12%, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 154, 69, 0.14), transparent 33%),
    radial-gradient(circle at 85% 8%, rgba(196, 73, 29, 0.11), transparent 32%),
    linear-gradient(180deg, #090807 0%, #080706 55%, #0a0908 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--noise);
  background-size: 170px 170px;
  opacity: 0.24;
  pointer-events: none;
}

body.no-js.is-loading .site-shell,
body.no-js.is-transitioning .site-shell {
  opacity: 1;
  transform: none;
}

body.js .site-shell {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--speed-slow), transform var(--speed-slow);
}

body.page-ready .site-shell {
  opacity: 1;
  transform: none;
}

body.is-transitioning .site-shell {
  opacity: 0;
  transform: translateY(10px);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section--intro {
  padding-top: clamp(2.8rem, 5vw, 4.5rem);
}

.section--panelled {
  padding-top: 0;
}

.section--menu {
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.95) 0%, rgba(8, 7, 6, 0.9) 50%, rgba(6, 5, 4, 0.95) 100%),
    url('https://images.unsplash.com/photo-1558030006-450675393462?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

h1,
h2,
h3,
.hero-copy {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-family: var(--heading-font);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  margin: 0 0 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.74rem;
}

.section-label::after {
  content: "";
  width: 3.1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading,
.split-intro,
.story-grid,
.panel-grid,
.gallery-grid,
.feature-grid,
.contact-grid,
.menu-meta,
.menu-sections,
.signature-strip__inner,
.experience-layout,
.highlight-grid,
.teaser-gallery-grid,
.philosophy-layout,
.cta-banner {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 7, 6, 0.2);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--speed), border-color var(--speed), backdrop-filter var(--speed), box-shadow var(--speed);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(8, 7, 6, 0.65), transparent);
  pointer-events: none;
  z-index: 1;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 6, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.brand__logoWrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: 3.5rem;
  max-height: 3.5rem;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .brand__logo {
    height: 2.875rem;
  }
}

.brand__wordmarkWrap {
  display: flex;
  align-items: center;
}

.brand__wordmark {
  display: block;
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .brand__wordmark {
    height: 2.625rem;
  }
}

.brand--wordmarkOnly .brand__wordmark {
  height: 4.25rem;
}

@media (max-width: 768px) {
  .brand--wordmarkOnly .brand__wordmark {
    height: 3.25rem;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.18rem;
}

.site-nav > a {
  position: relative;
  color: var(--muted);
  transition: color var(--speed);
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--speed);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="page"] {
  color: var(--text);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle,
.nav-backdrop {
  display: none;
}

/* Buttons */
.button-row,
.hero__actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button,
.filter-button,
.button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 197, 106, 0.5);
  color: var(--text);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(201, 154, 69, 0.42), rgba(169, 113, 37, 0.28));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 30px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(201, 154, 69, 0.16);
  transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed), background var(--speed);
}

.button--ghost,
.filter-button {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 20px rgba(0, 0, 0, 0.24);
}

.button--sm {
  min-height: 2.8rem;
  padding: 0.72rem 1.05rem;
}

.button:hover,
.button:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 197, 106, 0.82);
  box-shadow:
    0 0 0 1px rgba(240, 197, 106, 0.2),
    0 20px 36px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(201, 154, 69, 0.2);
}

.button:focus-visible,
.button--ghost:focus-visible,
.filter-button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid rgba(240, 197, 106, 0.8);
  outline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  margin-top: 1.18rem;
}

.text-link::after {
  content: "→";
  color: var(--gold-soft);
  transition: transform var(--speed);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

/* Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(196, 73, 29, 0.18), transparent 30%),
    radial-gradient(circle at 58% 55%, rgba(201, 154, 69, 0.16), transparent 35%),
    linear-gradient(180deg, #030302 0%, #080706 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease-out, visibility 320ms ease-out;
}

/* Page fully loaded — fade out (skip when leaving to a new page) */
body.page-ready:not(.is-leaving) .site-loader {
  opacity: 0;
  visibility: hidden;
}

/* Internal page transition — snap loader to visible immediately, no fade-in lag */
body.is-leaving .site-loader {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.site-loader__inner {
  width: min(430px, calc(100vw - 3rem));
  text-align: center;
}

.site-loader__eyebrow,
.site-loader__detail {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
}

.site-loader__title {
  margin: 0.65rem 0;
  font-size: clamp(2.5rem, 6.8vw, 4.4rem);
}

.site-loader__line {
  display: block;
  margin-top: 1.2rem;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.site-loader__line span {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  animation: loadingLine 1.2s ease-in-out infinite;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero--interior {
  min-height: 66svh;
}

.hero--menu {
  min-height: 70svh;
}

.hero__media,
.hero__smoke,
.hero__embers {
  position: absolute;
  inset: 0;
}

.hero__media,
.feature-card--image,
.gallery-card--image,
.image-panel,
.gallery-photo,
.teaser-tile,
.hero-visual-card__media,
.experience-card {
  --fallback-image:
    radial-gradient(circle at 18% 18%, rgba(240, 197, 106, 0.24), transparent 30%),
    radial-gradient(circle at 75% 75%, rgba(196, 73, 29, 0.21), transparent 35%),
    linear-gradient(135deg, #17120d 0%, #0d0b09 100%);
}

.hero__media,
.feature-card--image,
.gallery-card--image,
.image-panel {
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.55)),
    radial-gradient(circle at 35% 20%, rgba(240, 197, 106, 0.10), transparent 34%),
    var(--image, var(--fallback-image));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.52) 42%, rgba(8, 7, 6, 0.20) 100%),
    var(--image, var(--fallback-image));
  opacity: 0.9;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.08);
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero.has-hero-image .hero__media {
  filter: saturate(1.02) contrast(1.08);
}

.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__media::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(201, 154, 69, 0.23), transparent 35%),
    radial-gradient(circle at 20% 78%, rgba(196, 73, 29, 0.2), transparent 37%);
  mix-blend-mode: screen;
}

.hero__media::after {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.08), rgba(5, 4, 3, 0.25));
}

.hero__smoke::before,
.hero__smoke::after {
  content: "";
  position: absolute;
  width: 56vw;
  max-width: 760px;
  aspect-ratio: 1;
  right: -10%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 58%);
  filter: blur(36px);
  animation: smokeFloat 16s ease-in-out infinite;
}

.hero__smoke::after {
  left: -8%;
  top: 10%;
  width: 40vw;
  opacity: 0.52;
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

.hero__embers {
  pointer-events: none;
}

.ember {
  position: absolute;
  left: var(--left, 50%);
  bottom: -1.5rem;
  width: var(--size, 6px);
  height: var(--size, 6px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 242, 214, 0.96) 0%, rgba(201, 154, 69, 0.9) 48%, rgba(196, 73, 29, 0.15) 100%);
  opacity: 0;
  animation: emberRise var(--duration, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
}

.hero__content--compact {
  padding-top: clamp(6.2rem, 14vh, 8rem);
}

.hero-copy {
  display: grid;
  gap: 0.28rem;
  font-size: clamp(2.8rem, 8vw, 6rem);
  max-width: 11ch;
}

.hero-copy--compact {
  font-size: clamp(2.45rem, 6vw, 4.45rem);
  max-width: 12ch;
}

.hero-line {
  display: block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(16px);
  animation: lineReveal 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-line:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.24s;
}

.hero__lede {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  max-width: 44rem;
}

.hero__actions {
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.2rem, 2.8vw, 2rem);
  align-items: end;
}

.hero-split__copy {
  max-width: 650px;
}

.hero-stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-stat-chips--compact {
  margin-top: 1.1rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  color: #f9f2e6;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 197, 106, 0.28);
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(10px);
}

.hero-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.74);
  box-shadow: var(--shadow-lg);
}

.hero-visual-card__media {
  min-height: 250px;
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.10), rgba(8, 7, 6, 0.52)),
    radial-gradient(circle at 70% 20%, rgba(240, 197, 106, 0.12), transparent 30%),
    var(--image, var(--fallback-image));
  background-size: cover;
  background-position: center;
}

.hero-visual-card__content {
  padding: 1.25rem 1.3rem;
  display: grid;
  gap: 0.6rem;
}

/* Cards */
.split-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.feature-grid,
.panel-grid,
.contact-grid,
.highlight-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-card,
.info-panel,
.story-card,
.gallery-card,
.contact-card,
.menu-item,
.menu-category,
.highlight-card,
.experience-copy,
.cta-banner,
.philosophy-copy {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(24, 20, 15, 0.95), rgba(16, 13, 10, 0.9));
  box-shadow: var(--shadow-md);
  transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
}

.feature-card::before,
.info-panel::before,
.story-card::before,
.gallery-card::before,
.contact-card::before,
.menu-item::before,
.menu-category::before,
.highlight-card::before,
.experience-copy::before,
.cta-banner::before,
.philosophy-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(122deg, rgba(240, 197, 106, 0.08), transparent 35%, transparent 65%, rgba(196, 73, 29, 0.08));
  transition: opacity var(--speed);
}

.feature-card:hover,
.feature-card:focus-within,
.info-panel:hover,
.info-panel:focus-within,
.story-card:hover,
.story-card:focus-within,
.gallery-card:hover,
.gallery-card:focus-within,
.contact-card:hover,
.contact-card:focus-within,
.menu-item:hover,
.menu-item:focus-within,
.menu-category:hover,
.highlight-card:hover,
.highlight-card:focus-within,
.experience-copy:hover,
.cta-banner:hover,
.philosophy-copy:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 197, 106, 0.24);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(240, 197, 106, 0.1);
}

.feature-card:hover::before,
.feature-card:focus-within::before,
.info-panel:hover::before,
.info-panel:focus-within::before,
.story-card:hover::before,
.story-card:focus-within::before,
.gallery-card:hover::before,
.gallery-card:focus-within::before,
.contact-card:hover::before,
.contact-card:focus-within::before,
.menu-item:hover::before,
.menu-item:focus-within::before,
.menu-category:hover::before,
.highlight-card:hover::before,
.highlight-card:focus-within::before,
.experience-copy:hover::before,
.cta-banner:hover::before,
.philosophy-copy:hover::before {
  opacity: 1;
}

.feature-card,
.info-panel,
.story-card,
.contact-card,
.menu-item,
.highlight-card,
.experience-copy,
.cta-banner,
.philosophy-copy {
  padding: var(--card-space);
}

.feature-card.feature-card--image {
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.55)),
    radial-gradient(circle at 35% 20%, rgba(240, 197, 106, 0.10), transparent 34%),
    var(--image, var(--fallback-image));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card__badge,
.menu-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.85rem;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 197, 106, 0.22);
  background: rgba(11, 9, 7, 0.52);
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.feature-card h3,
.info-panel h3,
.menu-item__title {
  margin-top: 0.95rem;
}

.feature-card--image,
.gallery-card--image {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  border-color: rgba(240, 197, 106, 0.2);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    filter 320ms ease;
}

.feature-card--image::before {
  z-index: -1;
  opacity: 0.65;
  background:
    radial-gradient(circle at 72% 20%, rgba(201, 154, 69, 0.20), transparent 32%),
    radial-gradient(circle at 25% 85%, rgba(196, 73, 29, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.35));
  transition: transform 700ms ease, opacity 320ms ease;
}

.image-panel::after,
.feature-card--image::after,
.gallery-card--image::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(240, 197, 106, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -50px 70px rgba(0, 0, 0, 0.22);
}

.feature-card--image:hover::before,
.feature-card--image:focus-within::before {
  transform: scale(1.03);
  opacity: 1;
}

.feature-card--image:hover,
.gallery-card--image:hover,
.image-panel:hover {
  transform: translateY(-4px);
  filter: saturate(1.06) contrast(1.04);
}

.feature-card--image > * {
  position: relative;
  z-index: 1;
}

.feature-card--image h3,
.feature-card--image p {
  color: #fbf5ec;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.experience-layout,
.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.experience-copy,
.philosophy-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.experience-stack,
.philosophy-cards {
  display: grid;
  gap: 1.1rem;
}

.experience-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(240, 197, 106, 0.2);
  display: flex;
  align-items: end;
  padding: 1rem 1.1rem;
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.10), rgba(8, 7, 6, 0.58)),
    radial-gradient(circle at 70% 20%, rgba(240, 197, 106, 0.12), transparent 34%),
    var(--image, var(--fallback-image));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--speed), border-color var(--speed);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(240, 197, 106, 0.2);
  pointer-events: none;
}

.experience-card:hover,
.experience-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(240, 197, 106, 0.3);
}

.experience-card h3 {
  color: #fbf6eb;
}

.experience-card--text {
  background-image:
    radial-gradient(circle at 15% 85%, rgba(240, 197, 106, 0.09), transparent 42%),
    linear-gradient(135deg, rgba(22, 17, 11, 0.97), rgba(13, 10, 7, 0.95));
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.experience-card--text > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.experience-card--text h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.05;
}

.experience-card--text p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(251, 245, 236, 0.72);
}

.highlight-grid {
  margin-top: 1.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-card {
  display: grid;
  gap: 0.8rem;
}

.highlight-card__price {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(240, 197, 106, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.section-cta {
  justify-content: center;
  margin-top: 1.5rem;
}

.teaser-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.teaser-tile {
  grid-column: span 4;
  min-height: 180px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 197, 106, 0.2);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 0.9rem;
  background-image:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.55)),
    radial-gradient(circle at 68% 18%, rgba(240, 197, 106, 0.10), transparent 34%),
    var(--image, var(--fallback-image));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--speed), border-color var(--speed);
}

.teaser-tile--large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 380px;
}

.teaser-tile span {
  color: #fff5e5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.teaser-tile:hover,
.teaser-tile:focus-within {
  transform: translateY(-4px);
  border-color: rgba(240, 197, 106, 0.32);
}

.signature-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(196, 73, 29, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(28, 20, 15, 0.96), rgba(13, 10, 8, 0.9));
}

.signature-strip__meta {
  margin-top: 1rem;
  color: var(--gold-soft);
}

.panel-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-panel--glow {
  background:
    radial-gradient(circle at right top, rgba(201, 154, 69, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(24, 20, 15, 0.94), rgba(16, 13, 10, 0.9));
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.story-card--quote {
  display: grid;
  align-items: end;
  font-family: var(--heading-font);
  font-size: clamp(1.38rem, 2vw, 2rem);
}

.story-emphasis {
  margin-top: 1rem;
  color: var(--gold-soft);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Menu */
.menu-controls {
  padding: 1rem 1.1rem 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 197, 106, 0.1);
  background: rgba(8, 7, 6, 0.72);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(240, 197, 106, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}

.menu-meta {
  display: grid;
  gap: 0.6rem;
}

.menu-meta__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.menu-meta__updated::after {
  content: " · ";
  padding: 0 0.2em;
  color: var(--muted);
}

.menu-meta__currency {
  color: var(--muted);
}

.menu-meta__status strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.menu-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.menu-note {
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 197, 106, 0.18);
  background: rgba(240, 197, 106, 0.04);
  font-size: 0.73rem;
  line-height: 1.5;
  color: var(--muted);
}

.menu-filters {
  position: sticky;
  top: 5rem;
  z-index: 12;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.55rem 0 0.65rem;
  margin-top: 0.5rem;
  scrollbar-width: none;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.97), rgba(8, 7, 6, 0.85));
  border-radius: 12px;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

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

.filter-button {
  white-space: nowrap;
  min-height: 2.1rem;
  padding: 0.32rem 0.88rem;
  font-size: 0.82rem;
}

.filter-button.is-active {
  border-color: rgba(240, 197, 106, 0.8);
  color: var(--text);
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(201, 154, 69, 0.34), rgba(180, 120, 40, 0.2));
}

.menu-state {
  margin-top: 1.1rem;
}

.menu-state[hidden] {
  display: none;
}

.menu-state--error,
.menu-fallback {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.menu-state--error {
  border-color: rgba(196, 73, 29, 0.4);
  background: rgba(196, 73, 29, 0.1);
}

body.menu-script-ready .menu-fallback {
  display: none;
}

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

.menu-skeleton-card {
  display: block;
  min-height: 190px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.menu-sections {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.menu-category {
  padding: clamp(0.9rem, 1.5vw, 1.4rem);
  background:
    radial-gradient(circle at 80% 8%, rgba(240, 197, 106, 0.05), transparent 25%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.88), rgba(12, 10, 7, 0.82));
  border-color: rgba(240, 197, 106, 0.08);
}

.menu-category:hover {
  transform: none;
}

.menu-category__header {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.menu-category__eyebrow {
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-category__description {
  max-width: 70ch;
}

.menu-category__grid {
  transition: opacity var(--speed), transform var(--speed), filter var(--speed);
}

.menu-category.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.menu-category[hidden] {
  display: none;
}

.menu-item {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background:
    radial-gradient(circle at 75% 15%, rgba(240, 197, 106, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.9), rgba(12, 10, 7, 0.84));
  border-color: rgba(255, 255, 255, 0.04);
}

.menu-item__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item__title-wrap {
  display: grid;
  gap: 0.4rem;
}

.menu-item__title {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
}

.menu-item__meta {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.menu-item__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.88rem;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid rgba(240, 197, 106, 0.25);
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.16), transparent 48%),
    rgba(240, 197, 106, 0.08);
}

.menu-item__badges,
.menu-item__allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.allergen-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 69, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 197, 106, 0.8);
  cursor: help;
  flex-shrink: 0;
  padding: 0;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--speed), background var(--speed), color var(--speed);
}

.allergen-icon:hover,
.allergen-icon:focus-visible {
  border-color: rgba(201, 154, 69, 0.7);
  background: rgba(201, 154, 69, 0.1);
  color: var(--gold-soft);
  outline: none;
}

.allergen-icon:focus-visible {
  box-shadow: 0 0 0 2px rgba(201, 154, 69, 0.45);
}

.allergen-icon svg {
  display: block;
}

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

.allergen-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
  background: rgba(14, 11, 8, 0.96);
  border: 1px solid rgba(212, 166, 74, 0.65);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.allergen-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, -14px);
}

.allergen-legend {
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 154, 69, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.allergen-legend__title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.6rem;
}

.allergen-legend__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.allergen-legend__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.allergen-legend__item svg {
  color: rgba(240, 197, 106, 0.7);
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.35rem);
  align-items: stretch;
}

.gallery-photo {
  grid-column: span 4;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 162, 74, 0.24);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78)),
    var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transition: transform var(--speed), border-color var(--speed);
}

.gallery-photo--featured {
  grid-column: span 12;
  min-height: clamp(320px, 38vw, 430px);
}

.gallery-photo--wide {
  grid-column: span 7;
  min-height: 320px;
}

.gallery-photo--tall {
  grid-column: span 5;
  min-height: 320px;
}

.gallery-photo__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  z-index: 1;
}

.gallery-photo__label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.gallery-photo h2,
.gallery-photo h3 {
  max-width: 780px;
  margin-top: 0.35rem;
  margin-bottom: 0;
  line-height: 0.95;
  color: #fbf5ec;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.gallery-photo h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.gallery-photo h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
}

.gallery-photo:hover,
.gallery-photo:focus-within {
  transform: translateY(-3px);
  border-color: rgba(212, 162, 74, 0.44);
}

/* Contact */
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card--primary {
  grid-row: span 2;
  background:
    radial-gradient(circle at right top, rgba(201, 154, 69, 0.2), transparent 26%),
    radial-gradient(circle at left bottom, rgba(196, 73, 29, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(26, 21, 16, 0.95), rgba(14, 11, 9, 0.88));
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.92rem;
}

.contact-list li,
.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list span,
.hours-list span {
  color: var(--muted);
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 72% 18%, rgba(240, 197, 106, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(17, 13, 10, 0.96), rgba(12, 10, 8, 0.88));
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(1) saturate(0.45) contrast(1.05);
}

.contact-note {
  margin-top: 1rem;
  color: var(--gold-soft);
}

/* Footer */
.site-footer {
  padding: 3rem 0 0;
  border-top: 1px solid rgba(240, 197, 106, 0.1);
  background:
    radial-gradient(circle at 15% 80%, rgba(196, 73, 29, 0.06), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(240, 197, 106, 0.05), transparent 40%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.96), rgba(5, 4, 3, 0.99));
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__col-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.site-footer__logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 0.85rem;
  filter: invert(1);
  mix-blend-mode: screen;
}

.site-footer__tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22ch;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.52rem;
}

.site-footer__list li {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

.site-footer__list a {
  color: rgba(251, 245, 236, 0.65);
  text-decoration: none;
  transition: color var(--speed);
}

.site-footer__list a:hover {
  color: var(--gold-soft);
}

.site-footer__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.83rem;
  padding-bottom: 0.42rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer__hours-list span {
  color: var(--muted);
}

.site-footer__hours-list strong {
  color: rgba(251, 245, 236, 0.8);
  font-weight: 500;
}

.site-footer__social {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__social a {
  font-size: 0.82rem;
  color: rgba(251, 245, 236, 0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--speed);
}

.site-footer__social a:hover {
  color: var(--gold-soft);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.1rem 0 1.3rem;
}

.site-footer__bottom > p {
  font-size: 0.78rem;
  color: rgba(251, 245, 236, 0.35);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}

.site-footer__legal a {
  font-size: 0.76rem;
  color: rgba(251, 245, 236, 0.35);
  text-decoration: none;
  transition: color var(--speed);
}

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

/* ─── Contact page ─────────────────────────────────────── */

/* 4-card overview grid */
.contact-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.contact-overview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 197, 106, 0.14);
  background:
    radial-gradient(circle at 78% 12%, rgba(240, 197, 106, 0.08), transparent 45%),
    linear-gradient(160deg, rgba(24, 20, 15, 0.97), rgba(14, 11, 9, 0.94));
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  overflow: hidden;
  transition: border-color var(--speed), box-shadow var(--speed), transform var(--speed);
}

.contact-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(122deg, rgba(240, 197, 106, 0.07), transparent 50%);
  transition: opacity var(--speed);
  pointer-events: none;
}

.contact-overview-card:hover {
  border-color: rgba(240, 197, 106, 0.28);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(240, 197, 106, 0.08);
  transform: translateY(-4px);
}

.contact-overview-card:hover::before {
  opacity: 1;
}

.contact-overview-card .section-label {
  margin-bottom: 0.7rem;
}

.contact-overview-card__heading {
  font-family: var(--heading-font);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.contact-overview-card__detail {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 0.6rem;
}

.contact-overview-card__detail a {
  color: rgba(251, 245, 236, 0.65);
  text-decoration: none;
  transition: color var(--speed);
}

.contact-overview-card__detail a:hover {
  color: var(--gold-soft);
}

.contact-overview-card__actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Hours card */
.contact-hours-compact {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  padding-bottom: 1rem;
  display: grid;
  gap: 0;
}

.contact-hours-compact li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.31rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
}

.contact-hours-compact li:last-child {
  border-bottom: none;
}

.contact-hours-compact span {
  color: var(--muted);
  min-width: 2.6rem;
}

.contact-hours-compact strong {
  color: rgba(251, 245, 236, 0.8);
  font-weight: 500;
}

.contact-hours-compact li.is-closed span,
.contact-hours-compact li.is-closed strong {
  color: rgba(196, 73, 29, 0.75);
}

.page-contact .contact-note {
  margin: 0.5rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Map section */
.section--map {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.contact-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 197, 106, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 480px;
}

.contact-map-section__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 3rem);
  background:
    radial-gradient(circle at 8% 50%, rgba(196, 73, 29, 0.10), transparent 38%),
    radial-gradient(circle at 90% 20%, rgba(240, 197, 106, 0.08), transparent 40%),
    linear-gradient(135deg, rgba(20, 16, 12, 0.98), rgba(10, 8, 6, 0.96));
}

.contact-map-section__heading {
  font-family: var(--heading-font);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
  color: var(--text);
}

.contact-map-section__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(251, 245, 236, 0.75);
  margin: 0 0 0.4rem;
}

.contact-map-section__meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 1.8rem;
  flex: 1;
}

.contact-map-section__map {
  position: relative;
}

.contact-map-section__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Contact responsive */
@media (max-width: 1080px) {
  .contact-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-map-section__map {
    height: 360px;
  }

  .contact-map-section__map iframe {
    position: absolute;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .contact-overview-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-section__map {
    height: 320px;
  }
}

/* Legal pages */
.page-legal .section--legal {
  padding: clamp(2rem, 4vw, 4rem) 0;
}

.legal-prose {
  max-width: 72ch;
  margin: 0 auto;
}

.legal-prose h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gold-soft);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-prose h3 {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(251, 245, 236, 0.9);
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.legal-prose p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(251, 245, 236, 0.72);
  margin-bottom: 0.8rem;
}

.legal-prose ul {
  padding-left: 1.3rem;
  margin-bottom: 0.9rem;
}

.legal-prose ul li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(251, 245, 236, 0.65);
  margin-bottom: 0.3rem;
}

.legal-prose a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: opacity var(--speed);
}

.legal-prose a:hover {
  opacity: 0.75;
}

.legal-back {
  margin-bottom: 2rem;
}

.legal-back a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--speed);
}

.legal-back a:hover {
  color: var(--gold-soft);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(10px);
  transition:
    opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@keyframes loadingLine {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(320%); }
}

@keyframes lineReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroPan {
  from { transform: scale(1.08) translate3d(-1.4%, 0.8%, 0); }
  to { transform: scale(1.14) translate3d(1.3%, -1.2%, 0); }
}

@keyframes smokeFloat {
  0%,
  100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, -5%, 0) scale(1.08); }
}

@keyframes emberRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.66);
  }
  15% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift, 24px), -84vh, 0) scale(1.3);
  }
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* About page */
.page-about .section {
  padding: clamp(2.2rem, 3.8vw, 3.8rem) 0;
}

.page-about .info-panel {
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.page-about .story-card h2,
.page-about .philosophy-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  line-height: 1.02;
  margin-bottom: 0.65rem;
}

.page-about .info-panel h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.1;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}

.page-about .story-card p,
.page-about .philosophy-copy p,
.page-about .info-panel p {
  line-height: 1.65;
}

.page-about .philosophy-copy {
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-split,
  .experience-layout,
  .philosophy-layout,
  .split-intro,
  .signature-strip__inner,
  .panel-grid--three,
  .panel-grid--two,
  .story-grid,
  .contact-grid,
  .site-footer__grid,
  .menu-skeleton-grid,
  .menu-category__grid,
  .highlight-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .teaser-tile,
  .teaser-tile--large,
  .gallery-card,
  .gallery-card--wide,
  .gallery-card--image {
    grid-column: span 12;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    top: 5rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 9, 8, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--speed), transform var(--speed), visibility var(--speed);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    flex-direction: column;
    gap: 0.32rem;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span {
    width: 1rem;
    height: 1px;
    background: var(--text);
    transition: transform var(--speed), opacity var(--speed);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--speed), visibility var(--speed);
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding-bottom: 3.5rem;
  }

  .feature-card,
  .info-panel,
  .story-card,
  .contact-card,
  .menu-category,
  .menu-item,
  .highlight-card,
  .experience-copy,
  .cta-banner,
  .philosophy-copy {
    padding: 1.05rem;
  }

  .feature-card--image {
    min-height: 300px;
  }

  .gallery-card--image {
    min-height: 280px;
  }

  .hero-visual-card__media {
    min-height: 200px;
  }

  .menu-filters {
    top: 4.7rem;
    margin-inline: -0.1rem;
  }

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

  .teaser-tile,
  .teaser-tile--large,
  .gallery-card,
  .gallery-card--wide {
    grid-column: auto;
    min-height: 220px;
  }

  .teaser-tile--large {
    min-height: 320px;
  }
}

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

  .gallery-photo,
  .gallery-photo--featured,
  .gallery-photo--wide,
  .gallery-photo--tall {
    grid-column: 1;
    min-height: 260px;
  }

  .gallery-photo--featured {
    min-height: 320px;
  }
}

@media (max-width: 520px) {
  .gallery-photo,
  .gallery-photo--featured,
  .gallery-photo--wide,
  .gallery-photo--tall {
    min-height: 230px;
  }

  .gallery-photo h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .gallery-photo h3 {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__media,
  .hero__smoke,
  .hero__embers,
  [data-reveal],
  .hero-line,
  .hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .site-loader {
    transition-duration: 0.01ms;
  }
}
