:root {
  --bg: #1f2622;
  --bg-deep: #151a17;
  --surface: rgba(53, 63, 58, 0.55);
  --ink: #f0ebe3;
  --muted: #b7b0a4;
  --gold: #d6b664;
  --gold-soft: rgba(214, 182, 100, 0.18);
  --line: rgba(240, 235, 227, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, #3a463f 0%, transparent 55%),
    linear-gradient(180deg, #242c27 0%, var(--bg-deep) 45%, #101411 100%);
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.ambient__glow--a {
  width: 55vw;
  height: 55vw;
  top: -8%;
  right: -18%;
  background: radial-gradient(circle, rgba(214, 182, 100, 0.35), transparent 70%);
  animation: drift 14s ease-in-out infinite alternate;
}

.ambient__glow--b {
  width: 70vw;
  height: 70vw;
  bottom: 10%;
  left: -30%;
  background: radial-gradient(circle, rgba(70, 92, 78, 0.55), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 6%, 0) scale(1.08);
  }
}

.hero,
.sticky,
.menu,
.footer,
.search-panel,
.chef {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(2.5rem + var(--safe-t)) 1.5rem 4rem;
  text-align: center;
}

.hero__inner {
  max-width: 28rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 14vw, 5.6rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero__line {
  margin: 1.1rem 0 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(214, 182, 100, 0.55);
  background: linear-gradient(180deg, rgba(214, 182, 100, 0.16), rgba(214, 182, 100, 0.04));
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(214, 182, 100, 0.22);
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.7;
  animation: pulse 2.2s ease-in-out infinite;
}

.hero__scroll span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scaleY(0.85);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1);
  }
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transform: translateY(-110%);
  pointer-events: none;
  transition: transform 0.3s ease;
  background: rgba(18, 22, 20, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: var(--safe-t);
}

.sticky.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 1rem 0.55rem;
}

.search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(214, 182, 100, 0.28);
  background: linear-gradient(180deg, rgba(214, 182, 100, 0.08), rgba(255, 255, 255, 0.02));
}

.search__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.search__input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 400;
}

.search__input::placeholder {
  color: rgba(183, 176, 164, 0.75);
}

.search__input::-webkit-search-cancel-button {
  filter: invert(0.8);
}

.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.58rem 0.75rem;
  border: 1px solid rgba(214, 182, 100, 0.45);
  background: linear-gradient(180deg, rgba(214, 182, 100, 0.2), rgba(214, 182, 100, 0.06));
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.google-btn__icon {
  width: 0.95rem;
  height: 0.95rem;
}

.google-btn:hover,
.google-btn:focus-visible {
  border-color: var(--gold);
  background: rgba(214, 182, 100, 0.24);
  transform: translateY(-1px);
}

.cats {
  padding: 0.15rem 0 0.55rem;
}

.cats__track {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  overflow-x: auto;
  padding: 0 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cats__track::-webkit-scrollbar {
  display: none;
}

.cats__group {
  flex: 0 0 auto;
  margin: 0 0.15rem 0 0.55rem;
  padding: 0.2rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.cats__group:first-child {
  margin-left: 0;
}

.cats__btn {
  flex: 0 0 auto;
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #d1d1d1;
  padding: 0.5rem 0.65rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cats__btn.is-active,
.cats__btn:hover,
.cats__btn:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.cats__btn.is-dimmed {
  opacity: 0.35;
}

.search-panel {
  width: min(42rem, 100%);
  margin: 1rem auto 0;
  padding: 0 1.15rem;
  position: relative;
  z-index: 1;
}

.search-panel[hidden] {
  display: none;
}

.search-panel__card {
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid rgba(214, 182, 100, 0.28);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(214, 182, 100, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(53, 63, 58, 0.72), rgba(21, 26, 23, 0.55));
  text-align: center;
}

.search-panel__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.search-panel__title {
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.search-panel__text {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
}

.search-panel__clear {
  appearance: none;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(214, 182, 100, 0.45);
  background: rgba(214, 182, 100, 0.12);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-panel__clear:hover,
.search-panel__clear:focus-visible {
  background: rgba(214, 182, 100, 0.22);
}

.search-panel.is-empty ~ .menu {
  display: none;
}

.chef {
  width: min(42rem, 100%);
  margin: 1.25rem auto 0;
  padding: 0 1.15rem;
  position: relative;
  z-index: 1;
}

.chef.is-hidden {
  display: none;
}

.chef__shell {
  display: grid;
  gap: 1.1rem;
  padding: 1.15rem;
  border: 1px solid rgba(214, 182, 100, 0.24);
  background:
    linear-gradient(135deg, rgba(214, 182, 100, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(40, 48, 43, 0.9), rgba(18, 22, 20, 0.72));
}

.chef__intro {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.95rem;
  align-items: center;
}

.chef__photo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border: 1px solid rgba(214, 182, 100, 0.4);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.chef__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.chef__title {
  margin: 0.3rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 6vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
}

.chef__quote {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
}

.chef__picks {
  display: grid;
  gap: 0.65rem;
}

.chef__pick {
  display: grid;
  grid-template-columns: 3.6rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.45rem;
  border: 1px solid rgba(240, 235, 227, 0.08);
  background: rgba(0, 0, 0, 0.16);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chef__pick:hover,
.chef__pick:focus-visible {
  border-color: rgba(214, 182, 100, 0.45);
  background: rgba(214, 182, 100, 0.08);
  transform: translateY(-1px);
}

.chef__pick-img {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: cover;
}

.chef__pick-note {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.chef__pick-name {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.chef__pick-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}

.section.is-hidden,
.group.is-hidden,
.item.is-hidden,
.cats__group.is-hidden {
  display: none;
}

.menu {
  width: min(42rem, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.15rem calc(3.5rem + var(--safe-b));
}

@media (min-width: 640px) {
  .chef__shell {
    padding: 1.35rem;
  }

  .chef__intro {
    grid-template-columns: 7rem 1fr;
  }

  .chef__photo {
    width: 7rem;
    height: 7rem;
  }

  .chef__picks {
    grid-template-columns: 1fr 1fr;
  }
}

.group {
  margin: 2.4rem 0 0.9rem;
}

.group:first-child {
  margin-top: 0.4rem;
}

.group__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  margin-top: 1.5rem;
  scroll-margin-top: 8rem;
  animation: fade-up 0.55s ease both;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.section__title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

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

.item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(240, 235, 227, 0.08);
}

body.no-photos .item {
  grid-template-columns: 1fr;
}

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

.item__media {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  background: rgba(214, 182, 100, 0.08);
  border: 1px solid rgba(214, 182, 100, 0.18);
}

.item__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.item:hover .item__img {
  transform: scale(1.06);
}

.item__body {
  min-width: 0;
}

.item__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.item__name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.item__desc {
  margin: 0.28rem 0 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}

.item__price {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  padding: 2.5rem 1.25rem calc(2.4rem + var(--safe-b));
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.footer__brand {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.footer__hours {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__domain {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.footer__domain a {
  color: var(--gold);
  border-bottom: 1px solid rgba(214, 182, 100, 0.35);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.4rem;
  margin-top: 1.15rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid rgba(214, 182, 100, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex-shrink: 0;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.seo {
  width: min(40rem, 100%);
  margin: 2.2rem auto 0;
  padding: 1.35rem 1.15rem 1.2rem;
  text-align: left;
  border: 1px solid rgba(214, 182, 100, 0.2);
  background:
    linear-gradient(180deg, rgba(214, 182, 100, 0.07), transparent 40%),
    rgba(12, 15, 13, 0.55);
}

.seo__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.seo__title {
  margin: 0.45rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
}

.seo__lead {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.seo__lead strong,
.seo__body strong {
  color: var(--ink);
  font-weight: 500;
}

.seo a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(214, 182, 100, 0.35);
  text-underline-offset: 0.15em;
}

.seo__details {
  margin-top: 0.95rem;
}

.seo__more {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  user-select: none;
}

.seo__more::-webkit-details-marker {
  display: none;
}

.seo__more::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.seo__details[open] .seo__more::after {
  transform: rotate(-135deg) translateY(-1px);
}

.seo__more-close {
  display: none;
}

.seo__details[open] .seo__more-open {
  display: none;
}

.seo__details[open] .seo__more-close {
  display: inline;
}

.seo__body {
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  animation: fade-up 0.35s ease both;
}

.seo__body h3 {
  margin: 1.15rem 0 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.seo__body h3:first-child {
  margin-top: 0;
}

.seo__body p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
}

.footer__top {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 768px) {
  .menu {
    padding-top: 1.75rem;
  }

  .item {
    grid-template-columns: 5.25rem 1fr;
    gap: 1rem;
    padding: 1rem 0.15rem;
  }

  .item__media {
    width: 5.25rem;
    height: 5.25rem;
  }
}

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

  .ambient__glow,
  .hero__inner,
  .hero__scroll,
  .section,
  .cats {
    animation: none !important;
    transition: none !important;
  }

  .sticky {
    transform: none;
    pointer-events: auto;
  }
}
