:root {
  --paper: #F3EBDD;
  --warm-white: #FFF9F0;
  --espresso: #25160F;
  --terracotta: #C55435;
  --oat: #D9C9B3;
  --sage: #72806A;
  --muted-brown: #77675C;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 6rem;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  min-height: 2.75rem;
  padding: .75rem 1rem;
  background: var(--espresso);
  color: var(--warm-white);
  font-size: .875rem;
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

[hidden] {
  display: none !important;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 70;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  opacity: .06;
  pointer-events: none;
}

.display-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.1rem, 10.2vw, 9.8rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .79;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .88;
}

.eyebrow {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.photo-treatment {
  filter: saturate(.72) contrast(1.03);
  transition: filter .6s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.photo-treatment:hover {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.menu-card {
  transition: color .35s cubic-bezier(.16, 1, .3, 1), transform .35s cubic-bezier(.16, 1, .3, 1);
}

.menu-card:hover {
  color: var(--muted-brown);
  transform: translateX(.35rem);
}

[data-filter] {
  transition: background-color .25s cubic-bezier(.16, 1, .3, 1), color .25s cubic-bezier(.16, 1, .3, 1), border-color .25s cubic-bezier(.16, 1, .3, 1);
}

[data-filter][aria-selected="true"] {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--warm-white);
}

.status-dot {
  background: var(--oat);
  box-shadow: 0 0 0 .35rem rgba(217, 201, 179, .18);
}

.status-dot[data-open="true"] {
  background: var(--sage);
  box-shadow: 0 0 0 .35rem rgba(114, 128, 106, .18);
}

.status-dot[data-open="false"] {
  background: var(--terracotta);
  box-shadow: 0 0 0 .35rem rgba(197, 84, 53, .16);
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
