:root {
  color-scheme: light;
  --black: #080604;
  --espresso: #1b100b;
  --coffee: #3e2619;
  --mocha: #6f4a32;
  --caramel: #b98552;
  --caramel-soft: #d4a875;
  --cream: #f5eadc;
  --paper: #fff9ef;
  --smoke: #e8d7c3;
  --muted: #766454;
  --line: rgba(62, 38, 25, 0.14);
  --line-dark: rgba(245, 234, 220, 0.16);
  --shadow: 0 28px 80px rgba(39, 22, 12, 0.18);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0B0705;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(62, 38, 25, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(62, 38, 25, 0.03) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
  color: var(--espresso);
  font-family: var(--font-body);
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 168, 95, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(139, 90, 43, 0.12), transparent 30%),
    radial-gradient(circle at 54% 86%, rgba(212, 168, 95, 0.08), transparent 32%),
    linear-gradient(rgba(212, 168, 95, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 95, 0.07) 1px, transparent 1px),
    #0B0705;
  background-size: auto, auto, auto, 44px 44px, 44px 44px, auto;
  content: "";
  pointer-events: none;
  animation: gridMove 20s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 20%, rgba(11, 7, 5, 0.42) 72%),
    linear-gradient(180deg, rgba(11, 7, 5, 0.18), rgba(11, 7, 5, 0.68));
  content: "";
  pointer-events: none;
}

@keyframes gridMove {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 0, 0 0, 44px 44px, 44px 44px, 0 0;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(245, 234, 220, 0.22);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  background: rgba(12, 8, 5, 0.7);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.brand img {
  width: 150px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.mobile-menu a {
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] {
  background: rgba(255, 249, 239, 0.1);
  color: var(--paper);
}

.visit-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 249, 239, 0.32);
  border-radius: 999px;
  padding: 10px 19px;
  background: linear-gradient(135deg, var(--paper), #dfc09c);
  color: var(--espresso);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 249, 239, 0.25);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--paper);
}

.mobile-menu {
  position: fixed;
  top: 98px;
  right: 16px;
  left: 16px;
  z-index: 29;
  display: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(18, 11, 7, 0.96);
  box-shadow: var(--shadow-dark);
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px 22px 128px;
  color: var(--paper);
  isolation: isolate;
}

.hero-bg,
.hero-overlay,
.ambient-grain {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 76% 28%, rgba(185, 133, 82, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(8, 6, 4, 0.95), rgba(27, 16, 11, 0.76) 48%, rgba(8, 6, 4, 0.44)),
    linear-gradient(0deg, rgba(8, 6, 4, 0.82), transparent 45%);
}

.ambient-grain {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 249, 239, 0.025) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.steam-wrap {
  position: absolute;
  right: max(42px, calc((100vw - 1180px) / 2 + 30px));
  bottom: 28%;
  z-index: -1;
  width: min(360px, 34vw);
  height: 360px;
  pointer-events: none;
}

.steam-wrap span {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(transparent, rgba(255, 249, 239, 0.42), transparent);
  filter: blur(0.4px);
  opacity: 0.58;
  animation: steamRise 5.8s ease-in-out infinite;
}

.steam-wrap span:nth-child(1) {
  left: 22%;
}

.steam-wrap span:nth-child(2) {
  left: 42%;
  height: 230px;
  animation-delay: 1s;
}

.steam-wrap span:nth-child(3) {
  left: 61%;
  height: 200px;
  animation-delay: 1.8s;
}

.steam-wrap span:nth-child(4) {
  left: 76%;
  height: 150px;
  animation-delay: 2.6s;
}

@keyframes steamRise {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(18px) translateX(0) rotate(0deg);
  }

  45% {
    opacity: 0.58;
  }

  70% {
    transform: translateY(-54px) translateX(22px) rotate(9deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--caramel-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(3.55rem, 8vw, 7.6rem);
  font-weight: 700;
  line-height: 0.9;
}

h1 span,
.split-heading h2 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: var(--espresso);
  font-size: clamp(2.55rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.32rem, 2.3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.04;
}

.hero-content p:not(.eyebrow) {
  max-width: 615px;
  color: rgba(255, 249, 239, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.3), transparent 80%);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button.primary {
  background: linear-gradient(135deg, var(--espresso), var(--coffee));
  color: var(--paper);
  box-shadow: 0 18px 42px rgba(39, 22, 12, 0.22);
}

.hero .button.primary {
  border-color: rgba(255, 249, 239, 0.26);
  background: linear-gradient(135deg, var(--paper), var(--caramel-soft));
  color: var(--espresso);
}

.button.ghost {
  border-color: rgba(255, 249, 239, 0.34);
  background: rgba(255, 249, 239, 0.06);
  color: var(--paper);
}

.hero-card {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  top: 172px;
  z-index: 2;
  width: min(270px, calc(100% - 44px));
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(18, 11, 7, 0.58);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 160px;
  margin-bottom: 18px;
}

.hero-card span {
  display: block;
  color: rgba(255, 249, 239, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card strong {
  color: var(--paper);
}

.hero-stats {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 54px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 12px;
  width: min(545px, calc(100% - 44px));
}

.hero-stats article {
  border: 1px solid rgba(255, 249, 239, 0.17);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(18, 11, 7, 0.46);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 249, 239, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-divider {
  height: 28px;
  background:
    linear-gradient(90deg, transparent, rgba(185, 133, 82, 0.44), transparent),
    linear-gradient(180deg, var(--black), var(--paper));
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 122px) 22px;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 44px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 38, 25, 0.18), transparent);
  content: "";
  transform: translateX(-50%);
}

.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about,
.signature,
.contact {
  background: var(--paper);
}

.about-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 6vw, 68px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 124px;
}

.about-copy > p,
.center-heading > p,
.location-copy > p,
.contact p,
.footer p,
li {
  color: var(--muted);
}

.about-copy > p {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.about-cards,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.about-cards article,
.experience-grid article,
.contact-form,
.info-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 239, 0.74)),
    var(--paper);
  box-shadow: 0 16px 44px rgba(61, 35, 20, 0.08);
}

.about-cards article,
.experience-grid article {
  padding: 24px;
}

.about-cards span {
  display: block;
  margin-bottom: 20px;
  color: var(--caramel);
  font-size: 0.76rem;
  font-weight: 900;
}

.about-cards p,
.experience-grid p,
.menu-card p,
.signature p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu,
.gallery {
  background: var(--cream);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading .eyebrow::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.menu-filters button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 17px;
  background: rgba(255, 249, 239, 0.68);
  color: var(--coffee);
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-filters button:hover,
.menu-filters button:focus-visible {
  transform: translateY(-1px);
}

.menu-filters button[aria-pressed="true"] {
  background: var(--espresso);
  color: var(--paper);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid rgba(62, 38, 25, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-card:hover {
  box-shadow: 0 30px 86px rgba(61, 35, 20, 0.22);
  transform: translateY(-6px);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 500ms ease;
}

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

.menu-card div {
  position: relative;
  min-height: 214px;
  padding: 24px;
}

.menu-card span,
.signature span,
.info-list span,
.contact-links span {
  color: var(--caramel);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card strong {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--coffee);
  font-size: 0.9rem;
  font-weight: 900;
}

.menu-card h3 {
  padding-right: 86px;
}

.luxury-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px 22px;
  background: var(--espresso);
  color: rgba(255, 249, 239, 0.74);
  text-align: center;
}

.luxury-band span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 117, 0.6));
}

.luxury-band span:last-child {
  background: linear-gradient(90deg, rgba(212, 168, 117, 0.6), transparent);
}

.luxury-band p {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.split-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.signature-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 54px rgba(61, 35, 20, 0.08);
}

.signature-grid img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.signature-grid div {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 238px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(61, 35, 20, 0.1);
  filter: saturate(0.88) contrast(1.05);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-grid img:hover {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.015);
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(4) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 2;
}

.experience {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(27, 16, 11, 0.95), rgba(62, 38, 25, 0.96)),
    var(--espresso);
  color: var(--paper);
}

.experience h2 {
  color: var(--paper);
}

.experience .center-heading > p {
  color: rgba(255, 249, 239, 0.66);
}

.experience-grid {
  margin-top: 0;
}

.experience-grid article {
  min-height: 202px;
  display: grid;
  align-content: end;
  border-color: var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.1), rgba(255, 249, 239, 0.035));
  box-shadow: none;
}

.experience-grid h3 {
  color: var(--paper);
}

.experience-grid p {
  color: rgba(255, 249, 239, 0.64);
}

.location {
  background:
    radial-gradient(circle at 12% 10%, rgba(185, 133, 82, 0.13), transparent 28%),
    linear-gradient(135deg, var(--cream), #efe0cc);
}

.location-copy {
  padding-top: 12px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.info-list article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.info-list strong {
  color: var(--espresso);
}

iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: sepia(0.2) saturate(0.82) contrast(0.94);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-links a {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  font-weight: 900;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--coffee);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--cream);
}

label {
  display: grid;
  gap: 7px;
  color: var(--coffee);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(62, 38, 25, 0.16);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 249, 239, 0.86);
  color: var(--espresso);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(185, 133, 82, 0.68);
  box-shadow: 0 0 0 4px rgba(185, 133, 82, 0.14);
}

input {
  min-height: 50px;
}

textarea {
  min-height: 146px;
  resize: vertical;
}

.footer {
  background:
    linear-gradient(180deg, var(--espresso), var(--black));
  color: var(--paper);
  padding: 68px 22px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.65fr 0.65fr;
  gap: 34px;
}

.footer img {
  width: 190px;
  margin-bottom: 18px;
}

.footer h3 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.96rem;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .socials a {
  border-color: rgba(255, 249, 239, 0.16);
  color: rgba(255, 249, 239, 0.76);
}

.footer-bottom {
  display: flex;
  width: min(1180px, 100%);
  justify-content: space-between;
  gap: 16px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(255, 249, 239, 0.14);
  padding-top: 22px;
  color: rgba(255, 249, 239, 0.62);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: 340px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: var(--shadow-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.menu-page-hero {
  position: relative;
  display: grid;
  min-height: 62svh;
  align-items: end;
  overflow: hidden;
  padding: 150px 22px 76px;
  color: var(--paper);
  isolation: isolate;
}

.menu-page-hero-bg,
.menu-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.menu-page-hero-bg {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.menu-page-hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 75% 20%, rgba(185, 133, 82, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(8, 6, 4, 0.95), rgba(27, 16, 11, 0.78) 52%, rgba(8, 6, 4, 0.42)),
    linear-gradient(0deg, rgba(8, 6, 4, 0.74), transparent 48%);
}

.menu-page-hero-content {
  position: relative;
  z-index: 2;
}

.menu-page-hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
}

.menu-page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.menu-catalog {
  background:
    radial-gradient(circle at 15% 6%, rgba(185, 133, 82, 0.2), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(212, 168, 117, 0.12), transparent 26%),
    linear-gradient(180deg, #100a07, #080604 62%, #120c08);
  color: var(--paper);
}

.menu-toolbar {
  position: sticky;
  top: 104px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(212, 168, 117, 0.28);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(27, 16, 11, 0.82);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.menu-search {
  display: grid;
  gap: 8px;
}

.menu-search span {
  color: var(--caramel-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-search input {
  min-height: 50px;
  color: var(--paper);
  border: 1px solid rgba(212, 168, 117, 0.34);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(8, 6, 4, 0.58);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.menu-search input::placeholder {
  color: rgba(255, 249, 239, 0.5);
}

.menu-search input:focus {
  border-color: rgba(212, 168, 117, 0.8);
  background: rgba(8, 6, 4, 0.72);
  box-shadow: 0 0 0 4px rgba(212, 168, 117, 0.12);
}

.menu-toolbar > p {
  justify-self: end;
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.72);
  font-weight: 700;
  text-align: right;
}

.menu-catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 18px;
  color: rgba(255, 249, 239, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
}

.menu-catalog-meta p {
  margin-bottom: 0;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.menu-category-card {
  overflow: hidden;
  border: 1px solid rgba(212, 168, 117, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 249, 239, 0.065), rgba(185, 133, 82, 0.045)),
    rgba(27, 16, 11, 0.86);
  box-shadow: var(--shadow-dark);
  animation: fadeUp 650ms ease forwards;
  animation-delay: var(--delay, 0ms);
  opacity: 0;
  transform: translateY(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.menu-category-card:hover,
.menu-category-card.is-open {
  border-color: rgba(212, 168, 117, 0.58);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.46), 0 0 34px rgba(212, 168, 117, 0.14);
  transform: translateY(-6px);
}

.menu-category-trigger {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 1.1fr;
  width: 100%;
  min-height: 248px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.menu-category-media {
  position: relative;
  overflow: hidden;
  min-height: 248px;
}

.menu-category-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 20%, rgba(8, 6, 4, 0.54)),
    radial-gradient(circle at 68% 22%, rgba(212, 168, 117, 0.18), transparent 28%);
}

.menu-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 520ms ease, filter 520ms ease;
}

.menu-category-card:hover img,
.menu-category-card.is-open img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.055);
}

.menu-category-content {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(22px, 3vw, 34px);
}

.menu-category-kicker {
  color: var(--caramel-soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-category-title {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.92;
}

.menu-category-subtitle {
  color: rgba(255, 249, 239, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.menu-category-action {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(212, 168, 117, 0.38);
  border-radius: 999px;
  padding: 10px 14px 10px 18px;
  background: rgba(212, 168, 117, 0.11);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.menu-category-card:hover .menu-category-action,
.menu-category-card.is-open .menu-category-action {
  border-color: rgba(212, 168, 117, 0.8);
  background: var(--caramel-soft);
  color: var(--black);
}

.menu-category-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 220ms ease;
}

.menu-category-icon::before,
.menu-category-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-category-icon::after {
  transform: rotate(90deg);
  transition: opacity 180ms ease;
}

.menu-category-card.is-open .menu-category-icon {
  transform: rotate(180deg);
}

.menu-category-card.is-open .menu-category-icon::after {
  opacity: 0;
}

.menu-category-panel {
  border-top: 1px solid rgba(212, 168, 117, 0.22);
  background:
    linear-gradient(180deg, rgba(8, 6, 4, 0.22), rgba(8, 6, 4, 0.38)),
    rgba(18, 12, 8, 0.72);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 260ms ease;
}

.menu-category-card.is-open .menu-category-panel {
  max-height: 1800px;
  opacity: 1;
  transform: translateY(0);
}

.menu-category-panel-inner {
  padding: clamp(18px, 3vw, 28px);
}

.menu-category-note {
  margin: 0 0 16px;
  border: 1px solid rgba(212, 168, 117, 0.28);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(212, 168, 117, 0.09);
  color: var(--caramel-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

.menu-item-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.menu-item-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(212, 168, 117, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(255, 249, 239, 0.045);
  color: rgba(255, 249, 239, 0.86);
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-item-list li:hover {
  border-color: rgba(212, 168, 117, 0.48);
  background: rgba(255, 249, 239, 0.075);
  transform: translateY(-2px);
}

.menu-item-list strong {
  min-width: max-content;
  color: var(--caramel-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.empty-menu-state {
  border: 1px solid rgba(212, 168, 117, 0.28);
  border-radius: var(--radius);
  padding: 54px 22px;
  background: rgba(27, 16, 11, 0.72);
  text-align: center;
}

.empty-menu-state h2 {
  margin-bottom: 10px;
  color: var(--paper);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.empty-menu-state p {
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.68);
}


.pf-page {
  min-height: 100svh;
  background: var(--black);
}

.pf-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px 22px 54px;
  color: var(--paper);
  isolation: isolate;
}

.pf-hero-bg,
.pf-overlay,
.pf-grain {
  position: absolute;
  inset: 0;
}

.pf-hero-bg {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.12) brightness(0.64);
  transform: scale(1.03);
}

.pf-overlay {
  z-index: -4;
  background:
    radial-gradient(circle at 78% 30%, rgba(185, 133, 82, 0.22), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(212, 168, 117, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(8, 6, 4, 0.96), rgba(27, 16, 11, 0.78) 54%, rgba(8, 6, 4, 0.48)),
    linear-gradient(0deg, rgba(8, 6, 4, 0.86), transparent 48%);
}

.pf-grain {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 249, 239, 0.026) 1px, transparent 1px);
  background-size: 84px 84px;
  pointer-events: none;
}

.pf-steam {
  position: absolute;
  right: max(30px, calc((100vw - 1180px) / 2 + 24px));
  bottom: 16%;
  z-index: -1;
  width: min(360px, 36vw);
  height: 430px;
  opacity: 0.74;
  pointer-events: none;
}

.pf-steam span {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 190px;
  border-radius: 999px;
  background: linear-gradient(transparent, rgba(255, 249, 239, 0.42), transparent);
  animation: steamRise 6.4s ease-in-out infinite;
}

.pf-steam span:nth-child(1) {
  left: 18%;
}

.pf-steam span:nth-child(2) {
  left: 38%;
  height: 250px;
  animation-delay: 1.1s;
}

.pf-steam span:nth-child(3) {
  left: 58%;
  height: 215px;
  animation-delay: 2s;
}

.pf-steam span:nth-child(4) {
  left: 78%;
  height: 165px;
  animation-delay: 2.9s;
}

.pf-nav {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 8;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(245, 234, 220, 0.2);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  background: rgba(12, 8, 5, 0.68);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.pf-brand {
  display: grid;
  line-height: 0.9;
}

.pf-brand span {
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pf-brand strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.pf-instagram-top {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 249, 239, 0.25);
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--paper), var(--caramel-soft));
  color: var(--espresso);
  font-weight: 900;
}

.pf-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  width: min(1180px, 100%);
  gap: clamp(30px, 6vw, 72px);
  align-items: end;
  margin: 0 auto;
}

.pf-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(4rem, 9vw, 8.4rem);
}

.pf-subtitle {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--caramel-soft);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
}

.pf-text {
  max-width: 620px;
  color: rgba(255, 249, 239, 0.72);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.pf-form {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-top: 34px;
  border: 1px solid rgba(255, 249, 239, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(18, 11, 7, 0.54);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.pf-form > span {
  color: rgba(255, 249, 239, 0.76);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.pf-form input {
  min-height: 54px;
  border-color: rgba(255, 249, 239, 0.16);
  background: rgba(255, 249, 239, 0.1);
  color: var(--paper);
}

.pf-form input::placeholder {
  color: rgba(255, 249, 239, 0.56);
}

.pf-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.pf-socials a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.06);
  color: var(--paper);
  transition: transform 180ms ease, background 180ms ease;
}

.pf-socials a:hover,
.pf-socials a:focus-visible {
  background: rgba(255, 249, 239, 0.12);
  transform: translateY(-2px);
}

.pf-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pf-panel {
  border: 1px solid rgba(255, 249, 239, 0.16);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.1), rgba(255, 249, 239, 0.04)),
    rgba(18, 11, 7, 0.58);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(20px);
}

.pf-countdown p,
.pf-address span {
  margin: 0 0 14px;
  color: var(--caramel-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pf-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pf-time-grid span {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 249, 239, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  color: rgba(255, 249, 239, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.pf-time-grid strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 0.9;
}

.pf-address {
  margin: 26px 0;
  border-top: 1px solid rgba(255, 249, 239, 0.14);
  padding-top: 24px;
}

.pf-address h2 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.pf-address p {
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.68);
  font-weight: 800;
}

.pf-instagram-button {
  width: 100%;
}

[data-pf-toast] {
  border-color: rgba(255, 249, 239, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.reveal-group .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-group .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-group .reveal:nth-child(4) {
  transition-delay: 60ms;
}

.reveal-group .reveal:nth-child(5) {
  transition-delay: 140ms;
}

.reveal-group .reveal:nth-child(6) {
  transition-delay: 220ms;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-card {
    display: none;
  }
}

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

  .nav-links,
  .visit-pill {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .brand,
  .brand img {
    width: 132px;
  }

  .hero {
    padding-bottom: 220px;
  }

  .steam-wrap {
    right: -30px;
    width: 320px;
    opacity: 0.48;
  }

  .hero-stats {
    left: 22px;
    right: 22px;
    width: auto;
  }

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

  .menu-toolbar > p {
    justify-self: start;
    text-align: left;
  }

  .pf-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pf-panel {
    max-width: 620px;
  }

  .pf-form-row {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .about-cards,
  .experience-grid,
  .menu-grid,
  .signature-grid,
  .menu-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding-left: 12px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 70px;
  }

  .menu-page-hero {
    min-height: 52svh;
    padding: 124px 16px 60px;
  }

  .pf-hero {
    min-height: auto;
    padding: 112px 16px 46px;
  }

  .pf-nav {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding-left: 16px;
  }

  .pf-instagram-top {
    display: none;
  }

  .pf-brand strong {
    font-size: 1.7rem;
  }

  .pf-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .pf-socials {
    justify-content: center;
  }

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

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    position: relative;
    grid-template-columns: 1fr;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 28px;
  }

  .section {
    padding: 76px 16px;
  }

  .about-cards,
  .experience-grid,
  .menu-grid,
  .signature-grid,
  .gallery-grid,
  .menu-category-grid {
    grid-template-columns: 1fr;
  }

  .menu-catalog-meta {
    flex-direction: column;
    gap: 4px;
  }

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

  .menu-category-media,
  .menu-category-trigger {
    min-height: 0;
  }

  .menu-category-media {
    aspect-ratio: 1.55;
  }

  .menu-category-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

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

  .menu-item-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .luxury-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  iframe {
    min-height: 360px;
  }
}

/* Premium homepage visual refresh */
.home-page {
  --black: #0B0705;
  --espresso: #120C08;
  --coffee: #8B5A2B;
  --caramel: #D4A85F;
  --caramel-soft: #F1C879;
  --cream: #120C08;
  --paper: #FFF7E8;
  --smoke: #D8C3A5;
  --muted: #BFA68A;
  --line: rgba(212, 168, 95, 0.35);
  --line-dark: rgba(212, 168, 95, 0.35);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, 0.48);
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 168, 95, 0.14), transparent 28%),
    linear-gradient(180deg, #0B0705, #120C08 48%, #0B0705);
  color: var(--paper);
}

.home-page .site-header {
  position: fixed;
  border-color: rgba(212, 168, 95, 0.35);
  background: rgba(11, 7, 5, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(212, 168, 95, 0.08);
}

.home-page .nav-links a {
  position: relative;
  color: #D8C3A5;
  transition: color 180ms ease, background 180ms ease;
}

.home-page .nav-links a::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  border-radius: 999px;
  background: #D4A85F;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-page .nav-links a:hover,
.home-page .nav-links a:focus-visible,
.home-page .nav-links a[aria-current="page"] {
  background: rgba(212, 168, 95, 0.1);
  color: #FFF7E8;
}

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

.home-page .visit-pill,
.home-page .button.primary {
  border-color: rgba(212, 168, 95, 0.58);
  background: #D4A85F;
  color: #0B0705;
  box-shadow: 0 16px 42px rgba(212, 168, 95, 0.22);
}

.home-page .visit-pill:hover,
.home-page .button.primary:hover,
.home-page .button.primary:focus-visible {
  background: #F1C879;
  box-shadow: 0 18px 54px rgba(212, 168, 95, 0.34);
}

.home-page .button.ghost {
  border-color: rgba(212, 168, 95, 0.45);
  background: rgba(27, 18, 12, 0.68);
  color: #FFF7E8;
}

.home-page .hero {
  background: #0B0705;
}

.home-page .hero-bg {
  filter: saturate(0.82) contrast(1.16) brightness(0.58);
}

.home-page .hero-overlay {
  background:
    radial-gradient(circle at 76% 24%, rgba(212, 168, 95, 0.2), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(139, 90, 43, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(11, 7, 5, 0.98), rgba(18, 12, 8, 0.86) 50%, rgba(11, 7, 5, 0.58)),
    linear-gradient(0deg, rgba(11, 7, 5, 0.9), transparent 48%);
}

.home-page .hero-content h1,
.home-page h1,
.home-page h2,
.home-page h3 {
  color: #FFF7E8;
}

.home-page .hero-content p:not(.eyebrow),
.home-page .center-heading > p,
.home-page .about-copy > p,
.home-page .location-copy > p,
.home-page .contact p,
.home-page .footer p,
.home-page li {
  color: #D8C3A5;
}

.home-page .eyebrow,
.home-page .menu-card span,
.home-page .signature span,
.home-page .info-list span,
.home-page .contact-links span {
  color: #D4A85F;
}

.home-page .hero-card,
.home-page .hero-stats article,
.home-page .about-cards article,
.home-page .menu-card,
.home-page .signature-grid article,
.home-page .experience-grid article,
.home-page .info-list article,
.home-page .contact-form,
.home-page .home-review-grid article {
  border-color: rgba(212, 168, 95, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.06), rgba(212, 168, 95, 0.04)),
    rgba(27, 18, 12, 0.92);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.36);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .hero-card:hover,
.home-page .hero-stats article:hover,
.home-page .about-cards article:hover,
.home-page .menu-card:hover,
.home-page .signature-grid article:hover,
.home-page .experience-grid article:hover,
.home-page .info-list article:hover,
.home-page .contact-form:hover,
.home-page .home-review-grid article:hover {
  border-color: rgba(212, 168, 95, 0.62);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.46), 0 0 32px rgba(212, 168, 95, 0.14);
  transform: translateY(-5px);
}

.home-page .hero-card span,
.home-page .hero-stats span,
.home-page .about-cards p,
.home-page .experience-grid p,
.home-page .menu-card p,
.home-page .signature p,
.home-page .footer-bottom {
  color: #BFA68A;
}

.home-page .about,
.home-page .menu,
.home-page .signature,
.home-page .gallery,
.home-page .location,
.home-page .contact,
.home-page .reviews-preview {
  background:
    radial-gradient(circle at 10% 4%, rgba(212, 168, 95, 0.12), transparent 26%),
    linear-gradient(180deg, #120C08, #0B0705);
}

.home-page .section::before {
  background: linear-gradient(90deg, transparent, rgba(212, 168, 95, 0.35), transparent);
}

.home-page .section-divider {
  background:
    linear-gradient(90deg, transparent, rgba(212, 168, 95, 0.5), transparent),
    linear-gradient(180deg, #0B0705, #120C08);
}

.home-page .about-cards article {
  position: relative;
  overflow: hidden;
}

.home-page .about-cards i,
.home-page .experience-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 168, 95, 0.4);
  border-radius: 50%;
  color: #D4A85F;
  font-style: normal;
  font-weight: 900;
}

.home-page .menu-filters button {
  border-color: rgba(212, 168, 95, 0.35);
  background: rgba(27, 18, 12, 0.74);
  color: #D8C3A5;
}

.home-page .menu-filters button[aria-pressed="true"],
.home-page .menu-filters button:hover,
.home-page .menu-filters button:focus-visible {
  background: #D4A85F;
  color: #0B0705;
}

.home-page .menu-card {
  background: #1B120C;
}

.home-page .menu-card img,
.home-page .signature-grid img,
.home-page .gallery-grid img {
  filter: saturate(0.94) contrast(1.1) brightness(0.88);
}

.home-page .menu-card strong {
  border: 1px solid rgba(212, 168, 95, 0.4);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(212, 168, 95, 0.14);
  color: #F1C879;
}

.home-page .menu-preview-action,
.home-page .gallery-action,
.home-page .reviews-preview-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-page .signature-grid article {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 320px;
}

.home-page .signature-grid {
  grid-template-columns: 1fr;
}

.home-page .signature-grid img {
  height: 100%;
  aspect-ratio: auto;
}

.home-page .signature-grid div {
  display: grid;
  align-content: center;
}

.home-page .gallery-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(212, 168, 95, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.home-page .gallery-grid figure:first-child,
.home-page .gallery-grid figure:nth-child(4) {
  grid-row: span 2;
}

.home-page .gallery-grid figure:nth-child(3) {
  grid-column: span 2;
}

.home-page .gallery-grid img {
  border-radius: 0;
  box-shadow: none;
}

.home-page .gallery-grid figure:hover img {
  filter: saturate(1.05) contrast(1.12) brightness(0.94);
  transform: scale(1.055);
}

.home-page .gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(212, 168, 95, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(11, 7, 5, 0.72);
  color: #FFF7E8;
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.home-page .experience {
  background:
    radial-gradient(circle at 80% 12%, rgba(212, 168, 95, 0.12), transparent 28%),
    linear-gradient(135deg, #120C08, #0B0705);
}

.home-page .home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-page .home-review-grid article {
  padding: 24px;
}

.home-page .home-review-grid span {
  display: block;
  margin-bottom: 16px;
  color: #D4A85F;
  letter-spacing: 0.08em;
}

.home-page .home-review-grid p {
  color: #D8C3A5;
}

.home-page .home-review-grid strong {
  color: #FFF7E8;
}

.home-page .opening-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 22px;
  border-block: 1px solid rgba(212, 168, 95, 0.35);
  background:
    linear-gradient(90deg, rgba(11, 7, 5, 0.96), rgba(27, 18, 12, 0.96), rgba(11, 7, 5, 0.96));
}

.home-page .opening-strip p {
  margin: 0;
  color: #FFF7E8;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.home-page .opening-strip span {
  display: inline-flex;
  gap: 8px;
}

.home-page .opening-strip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D4A85F;
  animation: openingPulse 1.3s ease-in-out infinite;
}

.home-page .opening-strip i:nth-child(2) {
  animation-delay: 160ms;
}

.home-page .opening-strip i:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes openingPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.home-page iframe {
  border: 1px solid rgba(212, 168, 95, 0.32);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.38);
}

.home-page .location h2 {
  color: #FFF7E8;
}

.home-page .location-copy > p {
  color: #E6D3B3;
}

.home-page .location .info-list article {
  border-color: rgba(212, 168, 95, 0.45);
  background: rgba(27, 18, 12, 0.95);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36), 0 0 26px rgba(212, 168, 95, 0.1);
}

.home-page .location .info-list span {
  color: #D4A85F;
}

.home-page .location .info-list strong {
  color: #FFF7E8;
}

.home-page .location .button.primary {
  background: #D4A85F;
  color: #0B0705;
}

.home-page .location .button.primary:hover,
.home-page .location .button.primary:focus-visible {
  background: #F1C879;
  color: #0B0705;
}

.home-page .contact-form label {
  color: #D4A85F;
}

.home-page input,
.home-page textarea {
  border-color: rgba(212, 168, 95, 0.38);
  background: #FFF7E8;
  color: #0B0705;
}

.home-page input::placeholder,
.home-page textarea::placeholder {
  color: #8B7A65;
}

.home-page .socials a {
  border-color: rgba(212, 168, 95, 0.35);
  color: #D8C3A5;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-page .socials a:hover,
.home-page .socials a:focus-visible {
  background: rgba(212, 168, 95, 0.14);
  color: #FFF7E8;
  transform: translateY(-2px);
}

.home-page .footer {
  border-top: 1px solid rgba(212, 168, 95, 0.35);
  background: linear-gradient(180deg, #120C08, #0B0705);
}

@media (max-width: 960px) {
  .home-page .signature-grid article,
  .home-page .home-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-page .gallery-grid figure:first-child,
  .home-page .gallery-grid figure:nth-child(3),
  .home-page .gallery-grid figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .opening-strip {
    flex-direction: column;
    text-align: center;
  }
}

/* iOS-style glassmorphism system */
.glass,
.glass-card,
.glass-navbar,
.glass-button,
.glass-input {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.1), rgba(255, 247, 232, 0.045)),
    rgba(18, 12, 8, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(212, 168, 95, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
}

.glass-card {
  border-color: rgba(212, 168, 95, 0.25);
  border-radius: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.glass-card:hover,
.glass-card:focus-within {
  border-color: rgba(212, 168, 95, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.13), rgba(212, 168, 95, 0.055)),
    rgba(18, 12, 8, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 86px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(212, 168, 95, 0.15);
  transform: translateY(-4px);
}

.glass-navbar {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.1), rgba(255, 247, 232, 0.035)),
    rgba(11, 7, 5, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(212, 168, 95, 0.08),
    0 18px 62px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(212, 168, 95, 0.1);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  backdrop-filter: blur(26px) saturate(1.35);
}

.glass-button {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.14), rgba(212, 168, 95, 0.12)),
    rgba(18, 12, 8, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 36px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(212, 168, 95, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.glass-input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 247, 232, 0.12);
  color: #FFF7E8;
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 247, 232, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.scroll-progress__bar {
  width: 0%;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #FFF7E8, #D4A85F, #F1C879);
  box-shadow: 0 0 14px rgba(212, 168, 95, 0.72), 0 0 30px rgba(255, 247, 232, 0.22);
  transition: width 90ms linear;
}

.site-header,
.pf-nav {
  border-radius: 999px;
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  backdrop-filter: blur(26px) saturate(1.35);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled,
.pf-nav.is-scrolled {
  border-color: rgba(212, 168, 95, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.12), rgba(255, 247, 232, 0.045)),
    rgba(11, 7, 5, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 76px rgba(0, 0, 0, 0.44),
    0 0 40px rgba(212, 168, 95, 0.12);
}

.nav-links a,
.mobile-menu a {
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 18px rgba(212, 168, 95, 0.12);
}

.hero-card,
.hero-stats article,
.about-cards article,
.menu-card,
.signature-grid article,
.experience-grid article,
.info-list article,
.contact-form,
.menu-toolbar,
.menu-category-card,
.empty-menu-state,
.pf-form,
.pf-panel,
.pf-time-grid span,
.gallery-grid figure,
.home-review-grid article,
.reviews-page article,
.reviews-page form,
.reviews-page [class*="bg-cardBrown"],
.reviews-page [class*="bg-espresso"] {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 247, 232, 0.1), rgba(255, 247, 232, 0.04)),
    rgba(18, 12, 8, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(212, 168, 95, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
}

.hero-card:hover,
.hero-stats article:hover,
.about-cards article:hover,
.menu-card:hover,
.signature-grid article:hover,
.experience-grid article:hover,
.info-list article:hover,
.contact-form:hover,
.menu-category-card:hover,
.menu-category-card.is-open,
.pf-panel:hover,
.gallery-grid figure:hover,
.home-review-grid article:hover,
.reviews-page article:hover,
.reviews-page form:hover {
  border-color: rgba(212, 168, 95, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 86px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(212, 168, 95, 0.15);
}

.button,
.visit-pill,
.pf-instagram-top,
.pf-instagram-button,
.socials a,
.menu-filters button,
.menu-category-action {
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.button.ghost,
.socials a,
.menu-category-action {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.13), rgba(212, 168, 95, 0.1)),
    rgba(18, 12, 8, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 36px rgba(0, 0, 0, 0.26);
}

input,
textarea,
.menu-search input,
.pf-form input {
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

img {
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.08), rgba(212, 168, 95, 0.06)),
    rgba(27, 18, 12, 0.72);
}

.home-page input,
.home-page textarea,
.reviews-page input,
.reviews-page textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.12), rgba(255, 247, 232, 0.07)),
    rgba(18, 12, 8, 0.48);
  color: #FFF7E8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.home-page input::placeholder,
.home-page textarea::placeholder,
.reviews-page input::placeholder,
.reviews-page textarea::placeholder {
  color: rgba(255, 247, 232, 0.68);
  opacity: 1;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .glass-card,
  .glass-navbar,
  .glass-button,
  .glass-input,
  .site-header,
  .hero-card,
  .about-cards article,
  .menu-card,
  .signature-grid article,
  .experience-grid article,
  .contact-form {
    background: rgba(27, 18, 12, 0.92);
  }
}

/* Reviews page hard contrast overrides */
.reviews-page {
  --bg-main: #0B0705;
  --bg-section: #120C08;
  --bg-card: #1B120C;
  --text-main: #FFF7E8;
  --text-secondary: #E6D3B3;
  --text-muted: #C7AA83;
  --gold: #D4A85F;
  --gold-light: #F1C879;
  --coffee: #8B5A2B;
  --border-gold: rgba(212, 168, 95, 0.45);
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
}

.reviews-page main,
.reviews-page #reviews-root,
.reviews-page #reviews-root > div {
  background: var(--bg-main) !important;
  color: var(--text-main) !important;
}

.reviews-page section {
  background-color: var(--bg-section) !important;
  color: var(--text-main) !important;
}

.reviews-page section:first-child,
.reviews-page section:nth-child(3) {
  background-color: var(--bg-main) !important;
}

.reviews-page h1,
.reviews-page h2,
.reviews-page h3,
.reviews-page strong {
  color: var(--text-main) !important;
}

.reviews-page p,
.reviews-page span,
.reviews-page label,
.reviews-page div {
  color: var(--text-secondary) !important;
}

.reviews-page p[class*="text-xs"],
.reviews-page span[class*="text-xs"],
.reviews-page .eyebrow,
.reviews-page label,
.reviews-page form > p,
.reviews-page article > p:first-child {
  color: var(--gold) !important;
}

.reviews-page article,
.reviews-page form,
.reviews-page [class*="bg-cardBrown"],
.reviews-page [class*="bg-paper"],
.reviews-page [class*="bg-espresso"] {
  border-color: var(--border-gold) !important;
  background: rgba(27, 18, 12, 0.92) !important;
  color: var(--text-main) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 28px rgba(212, 168, 95, 0.12) !important;
}

.reviews-page article p,
.reviews-page form p {
  color: var(--text-secondary) !important;
}

.reviews-page article h3,
.reviews-page article strong {
  color: var(--text-main) !important;
}

.reviews-page article p[class*="text-sm"] {
  color: var(--text-muted) !important;
}

.reviews-page button:not([type="submit"]) {
  color: var(--gold) !important;
  opacity: 1 !important;
}

.reviews-page input,
.reviews-page textarea {
  border: 1px solid var(--border-gold) !important;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.12), rgba(255, 247, 232, 0.07)),
    rgba(18, 12, 8, 0.58) !important;
  color: var(--text-main) !important;
}

.reviews-page input::placeholder,
.reviews-page textarea::placeholder {
  color: rgba(255, 247, 232, 0.68) !important;
  opacity: 1 !important;
}

.reviews-page button[type="submit"] {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--bg-main) !important;
  box-shadow: 0 0 28px rgba(212, 168, 95, 0.24) !important;
}

.reviews-page button[type="submit"]:hover,
.reviews-page button[type="submit"]:focus-visible {
  background: var(--gold-light) !important;
  color: var(--bg-main) !important;
  box-shadow: 0 0 36px rgba(212, 168, 95, 0.4) !important;
}

.reviews-page .site-header,
.reviews-page .mobile-menu {
  border-color: var(--border-gold) !important;
  background: rgba(11, 7, 5, 0.84) !important;
}

.reviews-page .nav-links a,
.reviews-page .mobile-menu a {
  color: var(--text-secondary) !important;
}

.reviews-page .nav-links a:hover,
.reviews-page .nav-links a:focus-visible,
.reviews-page .nav-links a[aria-current="page"],
.reviews-page .mobile-menu a:hover,
.reviews-page .mobile-menu a:focus-visible,
.reviews-page .mobile-menu a[aria-current="page"] {
  background: rgba(212, 168, 95, 0.14) !important;
  color: var(--text-main) !important;
}

.reviews-page .visit-pill {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--bg-main) !important;
}

/* Final Barock visual system and location-card polish */
:root {
  color-scheme: dark;
  --coffee-black: #0B0705;
  --coffee-dark: #1B1713;
  --coffee-card: #2A211B;
  --coffee-soft: #3A312A;
  --cream-bg: #F4EDE1;
  --cream-soft: #EEE2D2;
  --cream-text: #FFF7E8;
  --text-dark: #21140F;
  --text-brown: #6F6256;
  --text-muted: #9A8B7A;
  --gold: #D8B16A;
  --gold-light: #F1D49A;
  --gold-dark: #A87432;
  --glass-dark: rgba(30, 25, 21, 0.58);
  --glass-light: rgba(255, 247, 232, 0.16);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-gold-border: rgba(216, 177, 106, 0.35);
  --black: var(--coffee-black);
  --espresso: var(--coffee-dark);
  --coffee: var(--coffee-card);
  --caramel: var(--gold);
  --caramel-soft: var(--gold-light);
  --cream: var(--cream-bg);
  --paper: var(--cream-text);
  --smoke: #E6D3B3;
  --muted: #C7AA83;
  --line: rgba(216, 177, 106, 0.24);
  --line-dark: rgba(216, 177, 106, 0.35);
}

body {
  background:
    linear-gradient(90deg, rgba(216, 177, 106, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(216, 177, 106, 0.035) 1px, transparent 1px),
    var(--coffee-black);
  background-size: 72px 72px;
}

.glass-navbar,
.site-header,
.pf-nav {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(30, 25, 21, 0.62) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 0 0 28px rgba(216, 177, 106, 0.1) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.25) !important;
  backdrop-filter: blur(24px) saturate(1.25) !important;
}

.nav-links a,
.mobile-menu a {
  border: 1px solid transparent;
  color: rgba(255, 247, 232, 0.82) !important;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="page"] {
  border-color: rgba(216, 177, 106, 0.3);
  background: rgba(255, 247, 232, 0.12) !important;
  color: var(--cream-text) !important;
}

.visit-pill,
.button.primary,
.menu-filters button[aria-pressed="true"],
.menu-category-action {
  border-color: rgba(216, 177, 106, 0.5) !important;
  background: var(--gold) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 18px 44px rgba(216, 177, 106, 0.24) !important;
}

.visit-pill:hover,
.visit-pill:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.menu-category-action:hover,
.menu-category-action:focus-visible {
  background: var(--gold-light) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 22px 58px rgba(216, 177, 106, 0.34), 0 0 28px rgba(216, 177, 106, 0.22) !important;
  transform: translateY(-2px);
}

.glass-card,
.hero-stats article,
.about-cards article,
.menu-card,
.signature-grid article,
.experience-grid article,
.info-list article,
.contact-form,
.menu-toolbar,
.menu-category-card,
.empty-menu-state,
.gallery-grid figure,
.home-review-grid article,
.pf-form,
.pf-panel,
.pf-time-grid span,
.reviews-page article,
.reviews-page form {
  border: 1px solid rgba(216, 177, 106, 0.28) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.14), rgba(255, 247, 232, 0.06)),
    rgba(30, 25, 21, 0.58) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3), 0 0 28px rgba(216, 177, 106, 0.08) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.22) !important;
  backdrop-filter: blur(20px) saturate(1.22) !important;
}

.glass-card:hover,
.hero-stats article:hover,
.about-cards article:hover,
.menu-card:hover,
.signature-grid article:hover,
.experience-grid article:hover,
.info-list article:hover,
.contact-form:hover,
.menu-category-card:hover,
.gallery-grid figure:hover,
.home-review-grid article:hover,
.pf-panel:hover,
.reviews-page article:hover,
.reviews-page form:hover {
  border-color: rgba(216, 177, 106, 0.5) !important;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42), 0 0 28px rgba(216, 177, 106, 0.16) !important;
  transform: translateY(-5px);
}

.hero-card {
  right: max(28px, calc((100vw - 1180px) / 2));
  top: 154px;
  display: flex;
  min-height: 398px;
  width: min(420px, calc(100% - 56px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(216, 177, 106, 0.3) !important;
  border-radius: 30px !important;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 177, 106, 0.18), transparent 46%),
    rgba(35, 24, 18, 0.62) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 46px rgba(216, 177, 106, 0.16) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.22) !important;
  backdrop-filter: blur(22px) saturate(1.22) !important;
  text-align: center;
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-card:hover {
  border-color: rgba(216, 177, 106, 0.52) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 100px rgba(0, 0, 0, 0.54),
    0 0 56px rgba(216, 177, 106, 0.24) !important;
  transform: translateY(-6px);
}

.hero-card-logo {
  display: grid;
  width: clamp(170px, 15vw, 190px);
  min-height: 134px;
  place-items: center;
  border: 1px solid rgba(216, 177, 106, 0.26);
  border-radius: 22px;
  background: rgba(11, 7, 5, 0.66);
  box-shadow: inset 0 1px 18px rgba(255, 247, 232, 0.06), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-card-logo img,
.hero-card img {
  width: 168px;
  margin: 0;
  background: transparent;
  object-fit: contain;
}

.hero-card span {
  color: var(--gold) !important;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  max-width: 290px;
  color: var(--cream-text) !important;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.34;
}

.hero-map-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(216, 177, 106, 0.58);
  border-radius: 999px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--text-dark) !important;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(216, 177, 106, 0.24);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.hero-map-button:hover,
.hero-map-button:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 18px 50px rgba(216, 177, 106, 0.36), 0 0 28px rgba(216, 177, 106, 0.22);
  transform: translateY(-2px);
}

@keyframes heroCardFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.home-page .about {
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 177, 106, 0.2), transparent 30%),
    linear-gradient(180deg, var(--cream-bg), var(--cream-soft)) !important;
  color: var(--text-dark) !important;
}

.home-page .about h2,
.home-page .about h3 {
  color: var(--text-dark) !important;
}

.home-page .about .eyebrow,
.home-page .about-cards span {
  color: var(--gold-dark) !important;
}

.home-page .about-copy > p,
.home-page .about-cards p {
  color: var(--text-brown) !important;
}

.home-page .about-cards article {
  border-color: rgba(168, 116, 50, 0.22) !important;
  background: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 22px 60px rgba(104, 68, 32, 0.16) !important;
}

.menu-page-hero,
.menu-catalog,
.reviews-page,
.pf-page {
  background: var(--coffee-black) !important;
  color: var(--cream-text) !important;
}

.menu-page-hero h1,
.menu-catalog h1,
.menu-catalog h2,
.menu-catalog h3,
.menu-category-card h2,
.menu-item-list strong,
.reviews-page h1,
.reviews-page h2,
.reviews-page h3,
.pf-page h1,
.pf-page h2 {
  color: var(--cream-text) !important;
}

.menu-page-hero p,
.menu-toolbar p,
.menu-catalog-meta p,
.menu-category-card p,
.menu-category-card .menu-category-subtitle,
.menu-item-list p,
.reviews-page p,
.pf-page p {
  color: #E6D3B3 !important;
}

.menu-toolbar span,
.menu-category-count,
.menu-page-hero .eyebrow,
.pf-page .eyebrow,
.pf-address span {
  color: var(--gold) !important;
}

.menu-search input,
.home-page input,
.home-page textarea,
.reviews-page input,
.reviews-page textarea,
.pf-form input {
  border: 1px solid rgba(216, 177, 106, 0.34) !important;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.15), rgba(255, 247, 232, 0.08)),
    rgba(30, 25, 21, 0.58) !important;
  color: var(--cream-text) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 34px rgba(0, 0, 0, 0.22) !important;
}

.menu-search input::placeholder,
.home-page input::placeholder,
.home-page textarea::placeholder,
.reviews-page input::placeholder,
.reviews-page textarea::placeholder,
.pf-form input::placeholder {
  color: rgba(255, 247, 232, 0.72) !important;
  opacity: 1 !important;
}

.location .info-list article {
  border-color: rgba(216, 177, 106, 0.45) !important;
  background: rgba(27, 18, 12, 0.95) !important;
}

.location h2,
.location .info-list strong {
  color: var(--cream-text) !important;
}

.location p {
  color: #E6D3B3 !important;
}

.location .eyebrow,
.location .info-list span {
  color: var(--gold) !important;
}

.footer a[href*="maps.app"] {
  color: inherit;
  text-decoration-color: rgba(216, 177, 106, 0.45);
  text-decoration-line: underline;
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer a[href*="maps.app"]:hover,
.footer a[href*="maps.app"]:focus-visible {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

@media (max-width: 1040px) {
  .hero-card {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    width: min(100%, 360px);
    min-height: 0;
    margin: 30px auto 0;
    padding: 26px;
  }

  .hero-card-logo {
    width: 170px;
    min-height: 122px;
  }
}

@media (max-width: 620px) {
  .hero-card {
    width: min(100%, 340px);
    padding: 22px;
    border-radius: 24px !important;
  }

  .hero-card-logo {
    width: 156px;
    min-height: 112px;
  }

  .hero-card-logo img,
  .hero-card img {
    width: 150px;
  }
}

/* Signature showcase upgrade */
.home-page .signature {
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 18%, rgba(216, 177, 106, 0.12), transparent 29%),
    radial-gradient(circle at 88% 68%, rgba(92, 56, 31, 0.2), transparent 34%),
    linear-gradient(180deg, #120C08, #0B0705) !important;
}

.home-page .signature .section-shell {
  width: min(1280px, 100%);
}

.home-page .signature .split-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.home-page .signature .split-heading .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--gold) !important;
}

.home-page .signature .split-heading .eyebrow::before {
  width: 34px;
  height: 1px;
  background: rgba(216, 177, 106, 0.62);
  content: "";
}

.home-page .signature .split-heading h2 {
  max-width: 610px;
  color: var(--cream-text) !important;
  font-size: clamp(4.2rem, 9vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.home-page .signature .split-heading h2 span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-page .signature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 4vw, 42px);
}

.home-page .signature-grid article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr);
  min-height: clamp(430px, 45vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(216, 177, 106, 0.42) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.035)),
    rgba(35, 24, 18, 0.74) !important;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.48),
    0 0 44px rgba(216, 177, 106, 0.13) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.18) !important;
  backdrop-filter: blur(24px) saturate(1.18) !important;
  transform: translateZ(0);
}

.home-page .signature-grid article:nth-child(even) {
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
}

.home-page .signature-grid article:nth-child(even) img {
  order: 2;
}

.home-page .signature-grid article:nth-child(even) div {
  order: 1;
}

.home-page .signature-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 25% 24%, rgba(216, 177, 106, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(11, 7, 5, 0), rgba(11, 7, 5, 0.16));
  content: "";
  pointer-events: none;
}

.home-page .signature-grid article::after {
  position: absolute;
  top: -18%;
  left: 12%;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(216, 177, 106, 0.12);
  content: "";
  filter: blur(6px);
  opacity: 0.8;
  transform: scale(1);
  transition: transform 520ms ease, opacity 520ms ease;
}

.home-page .signature-grid article:hover {
  border-color: rgba(241, 212, 154, 0.62) !important;
  box-shadow:
    0 42px 126px rgba(0, 0, 0, 0.56),
    0 0 62px rgba(216, 177, 106, 0.2) !important;
  transform: translateY(-8px);
}

.home-page .signature-grid article:hover::after {
  opacity: 1;
  transform: scale(1.12);
}

.home-page .signature-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  padding: clamp(22px, 3vw, 42px);
  background:
    radial-gradient(circle at 55% 34%, rgba(216, 177, 106, 0.24), transparent 38%),
    radial-gradient(circle at 20% 92%, rgba(168, 116, 50, 0.24), transparent 34%),
    #050100;
  filter: saturate(1.02) contrast(1.1) brightness(0.92);
  transition: transform 560ms ease, filter 560ms ease;
}

.home-page .signature-grid article:hover img {
  filter: saturate(1.08) contrast(1.12) brightness(0.98);
  transform: scale(1.045);
}

.home-page .signature-grid div {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(32px, 5vw, 62px);
  border-left: 1px solid rgba(216, 177, 106, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.035)),
    rgba(42, 33, 27, 0.78);
}

.home-page .signature-grid article:nth-child(even) div {
  border-right: 1px solid rgba(216, 177, 106, 0.2);
  border-left: 0;
}

.home-page .signature-grid span {
  color: var(--gold) !important;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-page .signature-grid h3 {
  max-width: 420px;
  color: var(--cream-text) !important;
  font-size: clamp(2.3rem, 4.2vw, 4.35rem);
  line-height: 0.92;
}

.home-page .signature-grid p {
  max-width: 500px;
  color: #D8C3A5 !important;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .home-page .signature-grid article,
  .home-page .signature-grid article:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-page .signature-grid article:nth-child(even) img,
  .home-page .signature-grid article:nth-child(even) div {
    order: initial;
  }

  .home-page .signature-grid img {
    min-height: 330px;
  }

  .home-page .signature-grid div,
  .home-page .signature-grid article:nth-child(even) div {
    border-top: 1px solid rgba(216, 177, 106, 0.2);
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .home-page .signature .split-heading h2 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .home-page .signature-grid article {
    border-radius: 22px !important;
  }

  .home-page .signature-grid img {
    min-height: 280px;
    padding: 20px;
  }

  .home-page .signature-grid div {
    padding: 28px 22px 32px;
  }
}

/* Scroll-animated Signature section */
.home-page .signature-section {
  --sig-bg: #0d0805;
  --sig-card: #17100c;
  --sig-card-2: #221812;
  --sig-cream: #fff3e6;
  --sig-muted: #c8b6a3;
  --sig-gold: #c69b62;
  --sig-border: rgba(198, 155, 98, 0.28);
  overflow: clip;
  padding: clamp(88px, 9vw, 140px) 22px;
  background:
    radial-gradient(circle at 12% 16%, rgba(198, 155, 98, 0.12), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(105, 68, 37, 0.22), transparent 34%),
    linear-gradient(180deg, #120c08, var(--sig-bg) 42%, #080503) !important;
  color: var(--sig-cream);
  isolation: isolate;
}

.signature-shell {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.signature-heading {
  position: relative;
  z-index: 2;
  max-width: 810px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.signature-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 6px;
  color: var(--sig-muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signature-kicker span {
  width: 34px;
  height: 1px;
  background: rgba(198, 155, 98, 0.68);
}

.signature-subtitle {
  margin: 0 0 12px;
  color: var(--sig-gold) !important;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.signature-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--sig-cream) !important;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.4vw, 7.4rem);
  line-height: 0.9;
}

.signature-pin {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(720px, calc(100svh - 96px));
  align-items: center;
}

.signature-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(360px, 0.96fr);
  overflow: hidden;
  min-height: clamp(500px, 48vw, 650px);
  border: 1px solid var(--sig-border) !important;
  border-radius: clamp(26px, 3vw, 38px) !important;
  background:
    linear-gradient(135deg, rgba(255, 243, 230, 0.105), rgba(255, 243, 230, 0.035)),
    linear-gradient(120deg, rgba(23, 16, 12, 0.96), rgba(34, 24, 18, 0.9)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 230, 0.1),
    0 42px 120px rgba(0, 0, 0, 0.54),
    0 0 60px rgba(198, 155, 98, 0.12) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.14) !important;
  backdrop-filter: blur(24px) saturate(1.14) !important;
}

.signature-visual {
  position: relative;
  display: grid;
  min-height: inherit;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 36%, rgba(198, 155, 98, 0.24), transparent 33%),
    radial-gradient(circle at 20% 92%, rgba(97, 58, 31, 0.32), transparent 34%),
    #050201;
}

.signature-visual::before,
.signature-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.signature-visual::before {
  width: clamp(260px, 36vw, 510px);
  height: clamp(260px, 36vw, 510px);
  background: rgba(198, 155, 98, 0.12);
  transform: translate(14%, -12%);
}

.signature-visual::after {
  bottom: -18%;
  left: -7%;
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  background: rgba(112, 73, 39, 0.24);
}

.signature-glow {
  position: absolute;
  width: min(58%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 155, 98, 0.28), rgba(198, 155, 98, 0));
  filter: blur(8px);
}

.signature-visual img {
  position: relative;
  z-index: 2;
  width: min(72%, 520px);
  max-height: 82%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.46));
  will-change: transform, opacity;
}

.signature-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(34px, 5vw, 72px);
  border-left: 1px solid rgba(198, 155, 98, 0.2);
  background:
    radial-gradient(circle at 100% 18%, rgba(198, 155, 98, 0.1), transparent 34%),
    rgba(34, 24, 18, 0.74);
}

.signature-badge {
  width: max-content;
  border: 1px solid rgba(198, 155, 98, 0.34);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(198, 155, 98, 0.12);
  color: var(--sig-gold) !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signature-item-eyebrow {
  margin: 0;
  color: var(--sig-gold) !important;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.signature-copy h3 {
  max-width: 480px;
  margin: 0;
  color: var(--sig-cream) !important;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  line-height: 0.92;
}

.signature-copy p[data-signature-description] {
  max-width: 530px;
  margin: 0;
  color: var(--sig-muted) !important;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 700;
  line-height: 1.75;
}

.signature-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(260px, 100%);
  margin-top: clamp(24px, 4vw, 48px);
}

.signature-progress strong,
.signature-progress em {
  color: var(--sig-cream);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-style: normal;
  line-height: 1;
}

.signature-progress em {
  color: rgba(255, 243, 230, 0.62);
}

.signature-progress span {
  height: 1px;
  background: linear-gradient(90deg, var(--sig-gold), rgba(198, 155, 98, 0.12));
}

.signature-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.signature-orb-one {
  top: 8%;
  right: -8%;
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 1;
  background: rgba(198, 155, 98, 0.1);
  filter: blur(3px);
}

.signature-orb-two {
  bottom: -12%;
  left: -12%;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  background: rgba(95, 58, 32, 0.2);
  filter: blur(8px);
}

.signature-steps {
  height: 220svh;
}

.signature-steps span {
  display: block;
  height: calc(220svh / 3);
}

.signature-mobile-list {
  display: none;
}

.signature-section.is-static .signature-pin,
.signature-section.is-static .signature-steps {
  display: none;
}

.signature-section.is-static .signature-mobile-list {
  display: grid;
  gap: 20px;
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .home-page .signature-section {
    padding: 82px 16px;
  }

  .signature-pin,
  .signature-steps {
    display: none;
  }

  .signature-mobile-list {
    display: grid;
    gap: 20px;
  }

  .signature-mobile-list article {
    overflow: hidden;
    border: 1px solid var(--sig-border);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 243, 230, 0.105), rgba(255, 243, 230, 0.035)),
      rgba(23, 16, 12, 0.88);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  }

  .signature-mobile-list img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    padding: 28px;
    background:
      radial-gradient(circle at 54% 36%, rgba(198, 155, 98, 0.22), transparent 36%),
      #050201;
  }

  .signature-mobile-list div {
    padding: 26px 24px 30px;
  }

  .signature-mobile-list span {
    color: var(--sig-gold) !important;
    font-weight: 900;
    letter-spacing: 0.03em;
  }

  .signature-mobile-list h3 {
    margin: 8px 0;
    color: var(--sig-cream) !important;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .signature-mobile-list p {
    margin: 0;
    color: var(--sig-muted) !important;
    font-weight: 700;
  }
}

@media (max-width: 620px) {
  .signature-heading h2 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }
}
