:root {
  --ink: #211d1a;
  --warm: #a56e2e;
  --cream: #f4f0e9;
  --line: rgba(33, 29, 26, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 40px, 1180px);
  min-height: 84px;
  margin: 0 auto;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
}

.brand {
  display: block;
  width: 130px;
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.drawer {
  position: fixed;
  z-index: 31;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  width: min(88vw, 360px);
  padding: 34px;
  background: #fff;
  box-shadow: 20px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(-105%);
  transition: transform .25s ease;
}

.drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
}

.drawer-brand {
  margin: 36px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.drawer a {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: #625b55;
  font-weight: 700;
  text-decoration: none;
}

.drawer a:last-child { border-bottom: 1px solid var(--line); }
.drawer a.active, .drawer a:hover { color: var(--warm); }

.drawer-overlay {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  border: 0;
  background: rgba(0, 0, 0, .52);
}

.drawer-overlay.open { display: block; }

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100vh - 84px);
  min-height: calc(100dvh - 84px);
  place-items: center;
  padding: 80px 24px;
  overflow: hidden;
  color: #fff;
  background: #171311;
  --hero-x: 0%;
  --hero-y: 0%;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: -5%;
  background: url("/assets/entree.jpeg") center center / cover no-repeat;
  content: "";
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.06);
  animation: hero-breathe 16s ease-in-out infinite alternate;
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .32) 48%, rgba(0, 0, 0, .65) 100%),
    linear-gradient(120deg, rgba(10, 8, 7, .3), rgba(10, 8, 7, .52));
  content: "";
}

.hero-content {
  max-width: 860px;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal .8s cubic-bezier(.2, .8, .2, 1) forwards;
}

.hero-content > :nth-child(1) { animation-delay: .12s; }
.hero-content > :nth-child(2) { animation-delay: .24s; }
.hero-content > :nth-child(3) { animation-delay: .4s; }
.hero-content > :nth-child(4) { animation-delay: .55s; }
.hero-content > :nth-child(5) { animation-delay: .68s; }

.eyebrow {
  margin: 0 0 16px;
  color: #d4a25f;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .85;
  text-transform: uppercase;
}

.hero-lead {
  margin: 30px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.55;
}

.hero-button {
  position: relative;
  display: inline-block;
  padding: 15px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 3px;
  background: rgba(255, 255, 255, .1);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.hero-button::after {
  position: absolute;
  top: -70%;
  left: -35%;
  width: 24%;
  height: 240%;
  background: rgba(255, 255, 255, .4);
  content: "";
  filter: blur(5px);
  transform: rotate(24deg);
  animation: button-shine 5s ease-in-out 2s infinite;
}

.hero-button:hover {
  color: var(--ink);
  background: #fff;
}

.service-note {
  margin: 28px 0 0;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 99px;
  place-items: start center;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 4px;
  margin-top: 10px;
  border-radius: 50%;
  background: #fff;
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes hero-breathe {
  from { transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.06); }
  to { transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.12); }
}

@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes button-shine {
  0%, 72% { left: -35%; opacity: 0; }
  78% { opacity: .7; }
  100% { left: 125%; opacity: 0; }
}

@keyframes scroll-drop {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translateY(23px); }
}

.food-showcase {
  position: relative;
  padding: clamp(75px, 10vw, 130px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(165, 110, 46, .1), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7f3ed 100%);
}

.food-showcase::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(165, 110, 46, .07);
  content: "";
  filter: blur(2px);
  pointer-events: none;
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto 38px;
}

.showcase-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.carousel-track {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  width: 100%;
  margin: 0 auto;
  padding: 30px max(7vw, calc((100vw - 1080px) / 2)) 54px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: max(7vw, calc((100vw - 1080px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.carousel-track.dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}

.carousel-track::-webkit-scrollbar { display: none; }

.food-slide {
  position: relative;
  z-index: 1;
  flex: 0 0 min(58vw, 660px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: clamp(20px, 2.5vw, 34px);
  background: var(--cream);
  box-shadow: 0 18px 55px rgba(50, 37, 27, .12);
  cursor: zoom-in;
  opacity: .58;
  scroll-snap-align: center;
  transform: scale(.91);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .2, 1), box-shadow .55s ease;
}

.carousel-track.dragging .food-slide { cursor: grabbing; }

.food-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
}

.food-slide.active {
  z-index: 2;
  opacity: 1;
  box-shadow: 0 35px 90px rgba(50, 37, 27, .24);
  transform: scale(1);
}

.food-slide.active img { transform: scale(1.015); }
.food-slide:hover {
  z-index: 3;
  opacity: 1;
  box-shadow: 0 30px 80px rgba(50, 37, 27, .2);
  transform: scale(.97);
}
.food-slide:hover img { transform: scale(1.045); }

.photo-viewer {
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(14, 12, 11, .97);
}

.photo-viewer::backdrop { background: rgba(14, 12, 11, .82); }

.photo-viewer-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 99px;
  color: #fff;
  background: rgba(35, 31, 28, .72);
  font-weight: 700;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.photo-viewer-stage {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 28px;
  overflow: auto;
  place-items: center;
}

.photo-viewer-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 10vw, 140px);
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) 0;
}

.about h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.about-copy {
  align-self: center;
  color: #665e57;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-copy a {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 520px;
  background: var(--cream);
}

.location-map {
  min-height: 520px;
  background: #ddd6cd;
}

.location-map iframe {
  display: block;
  border: 0;
}

.location-content {
  align-self: center;
  padding: clamp(50px, 8vw, 100px);
}

.location-content h2 {
  max-width: 430px;
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.location-content address {
  color: #625b55;
  font-style: normal;
  line-height: 1.8;
}

.directions-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

footer {
  color: #e9e3dc;
  background: var(--ink);
}

.copyright {
  padding: 20px;
  color: #8e857e;
  font-size: .72rem;
  text-align: center;
}

@media (max-width: 700px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 72px;
  }

  .brand { width: 105px; }
  .brand img { height: 52px; }

  .hero {
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    background-position: center center;
  }

  .hero h1 { font-size: clamp(3.4rem, 18vw, 5.8rem); }
  .food-slide {
    flex-basis: 86vw;
    border-radius: 22px;
  }
  .food-slide img { aspect-ratio: 4 / 5; }
  .carousel-track {
    gap: 16px;
    padding-inline: 7vw;
    scroll-padding-inline: 7vw;
  }
  .photo-viewer-stage { padding: 12px; }
  .photo-viewer-close { top: 12px; right: 12px; }
  .showcase-heading { align-items: center; }
  .about { grid-template-columns: 1fr; gap: 35px; }
  .location { grid-template-columns: 1fr; }
  .location-map { min-height: 360px; }
  .location-content { padding: 60px 24px; }

}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .hero::before, .hero-content > *, .hero-button::after, .scroll-cue span {
    animation: none !important;
  }
  .hero-content > * { opacity: 1; transform: none; }
}
