/*
  TEMPLATE COLOR NOTE:
  You can change the color hex values below. CSS colors do not use quotation marks.
  For text, prices, hours, and images, edit script.js and keep the "" marks there.
*/

:root {
  --ink: #17211f;
  --paper: #f7f3ea;
  --paper-deep: #ebe3d4;
  --sage: #6d8b74;
  --spruce: #23473f;
  --brass: #bd9a57;
  --clay: #ae5b4f;
  --berry: #71384a;
  --white: #fffaf0;
  --shadow: 0 22px 70px rgba(20, 27, 26, 0.2);
  --radius: 8px;
  --max-width: 1160px;
  --page-pad: clamp(12px, 2vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: clamp(10px, 1.5vw, 18px) var(--page-pad);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.88);
  box-shadow: 0 14px 50px rgba(20, 27, 26, 0.12);
  backdrop-filter: blur(16px);
  padding-block: 12px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.nav-left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.dropdown-trigger,
.button,
.nav-cta {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(23, 33, 31, 0.76);
  box-shadow: 0 12px 36px rgba(20, 27, 26, 0.2);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .dropdown-trigger {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
}

.hamburger {
  display: grid;
  gap: 4px;
  width: 18px;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: left center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.dropdown-trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(-1px) rotate(38deg);
}

.dropdown-trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.dropdown-trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(1px) rotate(-38deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(240px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.dropdown-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 850;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: rgba(109, 139, 116, 0.18);
  outline: none;
}

.brand {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
  text-shadow: none;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--ink);
  background: var(--brass);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 86vh, 780px);
  padding: clamp(102px, 12vh, 140px) var(--page-pad) clamp(64px, 9vh, 92px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.76), rgba(10, 14, 13, 0.28) 62%, rgba(10, 14, 13, 0.48)),
    linear-gradient(0deg, rgba(23, 33, 31, 0.45), transparent 44%);
}

.hero-content {
  align-self: end;
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c16d;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.hero-copy {
  max-width: min(590px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.inline-button {
  justify-self: start;
  margin-top: 8px;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.dropdown-trigger:hover,
.dropdown-trigger:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  color: var(--ink);
  background: var(--brass);
  box-shadow: 0 16px 34px rgba(189, 154, 87, 0.34);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.4);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(10px);
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 66px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 999px;
}

.scroll-cue span {
  width: 5px;
  height: 13px;
  border-radius: 999px;
  background: var(--white);
  animation: cueDrop 1.45s ease-in-out infinite;
}

.season-strip {
  overflow: hidden;
  border-block: 1px solid rgba(23, 33, 31, 0.12);
  background: var(--spruce);
  color: var(--white);
}

.season-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 13px 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 32s linear 1.6s infinite;
}

.season-track span {
  position: relative;
  white-space: nowrap;
}

.season-track span + span {
  padding-left: 28px;
}

.season-track span + span::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: "/";
}

.section {
  padding: clamp(76px, 9vw, 120px) clamp(18px, 5vw, 60px);
}

.services-section {
  padding-top: clamp(46px, 6vw, 72px);
}

.section-heading,
.service-grid,
.menu-layout,
.about-section,
.visit-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.menu-copy p:not(.eyebrow),
.about-copy p:not(.eyebrow),
.visit-panel p {
  margin: 0;
  color: rgba(23, 33, 31, 0.72);
  font-size: 1.04rem;
}

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

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(20, 27, 26, 0.09);
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(20, 27, 26, 0.15);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.service-body h3,
.menu-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.service-body p,
.menu-item p {
  margin: 0;
  color: rgba(23, 33, 31, 0.7);
}

.menu-section {
  background: var(--paper-deep);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.menu-copy {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.menu-board {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.menu-item:hover {
  border-color: rgba(174, 91, 79, 0.5);
  background: var(--white);
  transform: translateX(6px);
}

.menu-item p {
  grid-column: 1 / -1;
}

.price {
  color: var(--berry);
  font-weight: 950;
}

.menu-hero {
  position: relative;
  display: grid;
  min-height: clamp(460px, 66vh, 660px);
  padding: clamp(118px, 15vh, 170px) var(--page-pad) clamp(62px, 9vh, 92px);
  overflow: hidden;
  isolation: isolate;
}

.menu-hero-media,
.menu-hero-shade {
  position: absolute;
  inset: 0;
}

.menu-hero-media {
  z-index: -3;
}

.menu-hero-media img {
  height: 100%;
  object-fit: cover;
}

.menu-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.82), rgba(10, 14, 13, 0.44), rgba(10, 14, 13, 0.24)),
    linear-gradient(0deg, rgba(23, 33, 31, 0.44), transparent 55%);
}

.menu-hero-content {
  align-self: end;
  width: min(860px, 100%);
  color: var(--white);
}

.menu-hero-content .eyebrow {
  color: #f2c16d;
}

.menu-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.full-menu-section {
  background:
    linear-gradient(180deg, rgba(235, 227, 212, 0.82), rgba(247, 243, 234, 0.98)),
    var(--paper);
}

.menu-filter-bar,
.full-menu-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-filter-bar {
  position: sticky;
  top: 78px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 56px rgba(20, 27, 26, 0.1);
  backdrop-filter: blur(16px);
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--white);
  background: var(--spruce);
  outline: none;
  transform: translateY(-1px);
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.full-menu-card {
  overflow: hidden;
  border: 1px solid rgba(23, 33, 31, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 58px rgba(20, 27, 26, 0.1);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.full-menu-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 76px rgba(20, 27, 26, 0.16);
}

.full-menu-card.is-filtered-out {
  display: none;
}

.full-menu-image {
  position: relative;
  overflow: hidden;
}

.full-menu-image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 420ms ease;
}

.full-menu-card:hover .full-menu-image img {
  transform: scale(1.055);
}

.full-menu-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(23, 33, 31, 0.74);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.full-menu-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.full-menu-body div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.full-menu-body h2 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.05;
}

.full-menu-body strong {
  color: var(--berry);
  font-weight: 950;
}

.full-menu-body p {
  margin: 0;
  color: rgba(23, 33, 31, 0.68);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.about-image,
.visit-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.about-stats div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
}

.about-stats strong {
  display: block;
  color: var(--spruce);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(23, 33, 31, 0.68);
  font-size: 0.87rem;
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: stretch;
  padding-top: 0;
}

.visit-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--spruce);
  color: var(--white);
}

.visit-panel p {
  color: rgba(255, 250, 240, 0.82);
}

.visit-panel .button {
  justify-self: start;
  margin-top: 10px;
}

.visit-image img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.site-footer {
  padding: 28px 18px 36px;
  color: rgba(23, 33, 31, 0.68);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--spruce);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@keyframes cueDrop {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(-10px);
  }

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08) translateX(-1.5%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: heroDrift 18s ease-in-out infinite alternate;
  }
}

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

@media (max-width: 860px) {
  .brand {
    max-width: 40vw;
  }

  .hero {
    min-height: 84vh;
  }

  .service-grid,
  .menu-layout,
  .about-section,
  .visit-section,
  .full-menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-copy {
    position: static;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 12px;
  }

  .nav-shell {
    gap: 8px;
  }

  .nav-left {
    gap: 10px;
  }

  .dropdown-trigger,
  .nav-cta {
    padding-inline: 12px;
  }

  .brand {
    max-width: 32vw;
    font-size: 0.98rem;
  }

  .hero {
    min-height: 82vh;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .scroll-cue {
    display: none;
  }

  .section {
    padding-inline: 16px;
  }

  .service-body,
  .menu-item,
  .full-menu-body {
    padding: 18px;
  }

  .menu-hero {
    min-height: 62vh;
    padding-top: 104px;
  }

  .menu-filter-bar {
    top: 68px;
  }

  .filter-button {
    flex: 1 1 calc(50% - 10px);
    padding-inline: 10px;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .full-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
