:root {
  --cream: #fff7e8;
  --butter: #ffd96a;
  --mint: #cdeccf;
  --coral: #ff725e;
  --peach: #ffb38a;
  --forest: #123c2e;
  --forest-soft: #1c513f;
  --ink: #151713;
  --white: #ffffff;
  --muted: #62655e;
  --error: #9d271b;
  --display: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --header-height: 76px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --shadow-sm: 0 12px 32px rgba(18, 60, 46, 0.1);
  --shadow-lg: 0 30px 80px rgba(18, 60, 46, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fast: 180ms;
  --medium: 500ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 217, 106, 0.22), transparent 24rem),
    var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  color: var(--forest);
  background: var(--butter);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 12px;
  transform: translateY(-150%);
  transition: transform var(--fast) ease;
}

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

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 136px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(2.35rem, 5.5vw, 5.3rem);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--fast) var(--ease),
    box-shadow var(--fast) ease,
    background-color var(--fast) ease;
  cursor: pointer;
}

.button:hover,
.contact-action:hover {
  transform: translateY(-3px);
}

.button:active,
.contact-action:active,
.gallery-card:active {
  transform: translateY(1px) scale(0.985);
}

.button-coral {
  color: var(--forest);
  background: var(--coral);
  box-shadow: 0 10px 0 rgba(18, 60, 46, 0.14);
}

.button-coral:hover {
  box-shadow: 0 14px 24px rgba(255, 114, 94, 0.25);
}

.button-yellow {
  color: var(--forest);
  background: var(--butter);
  box-shadow: 0 10px 0 rgba(18, 60, 46, 0.22);
}

.button-outline {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(18, 60, 46, 0.3);
}

.button-outline:hover {
  background: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.69rem;
}

.button-full {
  width: 100%;
}

.ripple-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 600ms ease-out forwards;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--fast) ease,
    border-color var(--fast) ease,
    box-shadow var(--fast) ease;
}

.site-header.is-scrolled {
  background: rgba(255, 247, 232, 0.92);
  border-color: rgba(18, 60, 46, 0.1);
  box-shadow: 0 8px 30px rgba(18, 60, 46, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 36px), 1260px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(0.98rem, 2.1vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--coral);
  border: 2px solid var(--forest);
  border-radius: 50% 50% 42% 58%;
  transform: rotate(-10deg);
}

.logo-mark span {
  width: 10px;
  height: 16px;
  border: 2px solid var(--forest);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px;
  transform: rotate(18deg);
}

.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--forest);
  background: var(--butter);
  border-radius: 50%;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition:
    transform var(--fast) ease,
    opacity var(--fast) ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  top: calc(var(--header-height) - 1px);
  right: 0;
  left: 0;
  padding: 24px 18px 30px;
  background: var(--cream);
  border-bottom: 1px solid rgba(18, 60, 46, 0.14);
  box-shadow: 0 24px 50px rgba(18, 60, 46, 0.13);
}

.nav-panel ul {
  display: grid;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.nav-panel li + li {
  border-top: 1px solid rgba(18, 60, 46, 0.12);
}

.nav-panel li a {
  display: flex;
  min-height: 51px;
  align-items: center;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-panel > .button {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 66px) 0 102px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.38), transparent 45%),
    radial-gradient(circle at 86% 33%, rgba(205, 236, 207, 0.9), transparent 36%);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow span {
  width: 26px;
  height: 8px;
  background: var(--coral);
  border: 2px solid var(--forest);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(3.5rem, 11vw, 8.2rem);
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 em {
  display: inline-block;
  padding-left: 0.08em;
  font-size: 0.78em;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 28px;
  color: #343a34;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.72;
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-notes span {
  display: grid;
}

.hero-notes strong {
  color: var(--forest);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.hero-media {
  position: relative;
  width: min(90vw, 620px);
  margin-inline: auto;
}

.hero-image-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(10px, 2vw, 18px);
  background: var(--coral);
  border: 3px solid var(--forest);
  border-radius: 47% 53% 42% 58% / 51% 42% 58% 49%;
  box-shadow: var(--shadow-lg);
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 360ms var(--ease);
}

.hero-image-shell::after {
  position: absolute;
  inset: -70% -120%;
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(255, 255, 255, 0.12) 44%,
    rgba(255, 255, 255, 0.64) 50%,
    rgba(255, 255, 255, 0.12) 56%,
    transparent 64%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-32%) rotate(8deg);
}

.hero-image-shell img {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--forest);
  border-radius: inherit;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: -26px;
  display: grid;
  width: 122px;
  height: 122px;
  align-content: center;
  padding: 14px;
  color: var(--forest);
  background: var(--butter);
  border: 3px solid var(--forest);
  border-radius: 50%;
  box-shadow: 8px 9px 0 var(--forest);
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
}

.hero-sticker span {
  margin-bottom: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-sticker strong {
  font-family: var(--display);
  font-size: 1.12rem;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  inset: -26px;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  display: inline-block;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: 999px;
  box-shadow: 5px 6px 0 rgba(18, 60, 46, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-orbit span:first-child {
  top: 18%;
  left: -4%;
  transform: rotate(-9deg);
}

.hero-orbit span:last-child {
  top: 2%;
  right: 8%;
  background: var(--mint);
  transform: rotate(8deg);
}

.hero-shape,
.hero-doodle {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-shape-one {
  top: 12%;
  right: -130px;
  width: 370px;
  height: 370px;
  background: var(--mint);
  border-radius: 60% 40% 50% 50%;
  transform: rotate(-18deg);
}

.hero-shape-two {
  bottom: -100px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: var(--peach);
  border-radius: 50%;
  filter: blur(0.3px);
}

.hero-doodle {
  color: var(--coral);
  font-family: var(--display);
  font-weight: 900;
}

.hero-doodle-one {
  top: 20%;
  left: 3%;
  font-size: 2.4rem;
}

.hero-doodle-two {
  right: 4%;
  bottom: 20%;
  color: var(--forest);
  font-size: 4.6rem;
  transform: rotate(-24deg);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--butter);
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.about {
  padding-top: 52px;
}

.about-card {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 8vw, 94px);
  background: var(--mint);
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: 14px 14px 0 var(--forest);
  isolation: isolate;
}

.about-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.about-copy h2 {
  margin-bottom: 28px;
}

.about-copy > p:not(.eyebrow):not(.about-signoff) {
  max-width: 560px;
  color: #29473b;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.about-signoff {
  margin: 34px 0 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
}

.about-signoff em {
  color: var(--coral);
  font-weight: 400;
}

.about-detail {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 90px);
  bottom: 34px;
  width: clamp(140px, 21vw, 236px);
  transform: rotate(5deg);
}

.about-detail img {
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid var(--forest);
  border-radius: 50%;
  box-shadow: 9px 10px 0 rgba(18, 60, 46, 0.24);
  object-fit: cover;
}

.about-detail span {
  position: absolute;
  top: -27px;
  left: -48px;
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 11px 18px;
  color: var(--forest);
  background: var(--butter);
  border: 2px solid var(--forest);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-10deg);
}

.about-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.about-sun {
  position: absolute;
  top: -90px;
  right: 10%;
  width: 220px;
  height: 220px;
  background: var(--butter);
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.about-leaf {
  position: absolute;
  width: 80px;
  height: 38px;
  background: var(--coral);
  border: 2px solid var(--forest);
  border-radius: 100% 0 100% 0;
}

.about-leaf-one {
  top: 14%;
  left: -18px;
  transform: rotate(36deg);
}

.about-leaf-two {
  right: 18%;
  bottom: 16%;
  transform: rotate(-40deg);
}

.about-squiggle {
  position: absolute;
  right: 5%;
  bottom: 6%;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 6rem;
  transform: rotate(-20deg);
}

.about-bowl {
  position: absolute;
  top: 46%;
  right: -74px;
  width: 190px;
  height: 96px;
  background: var(--peach);
  border: 3px solid var(--forest);
  border-radius: 0 0 100px 100px;
  transform: rotate(-8deg);
}

.about-bowl span {
  position: absolute;
  top: -10px;
  left: -2px;
  width: 190px;
  height: 20px;
  background: var(--coral);
  border: 3px solid var(--forest);
  border-radius: 50%;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.section-heading > p {
  max-width: 450px;
  margin-bottom: 4px;
  color: var(--muted);
}

.gallery {
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 179, 138, 0.32), transparent 20rem),
    var(--cream);
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.menu-preview-cta {
  display: grid;
  align-items: center;
  gap: 26px;
  margin-top: clamp(32px, 6vw, 64px);
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 14%, rgba(255, 217, 106, 0.2), transparent 13rem),
    var(--forest);
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: 10px 11px 0 var(--coral);
}

.menu-preview-cta .eyebrow {
  color: var(--butter);
}

.menu-preview-cta h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.menu-preview-cta p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.menu-preview-cta .button {
  width: 100%;
}

.gallery-card {
  position: relative;
  display: block;
  min-height: 290px;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--forest);
  background: var(--forest);
  border-radius: var(--radius-md);
  box-shadow: 7px 8px 0 rgba(18, 60, 46, 0.16);
  text-align: left;
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms ease;
  cursor: zoom-in;
}

.gallery-card:hover {
  z-index: 2;
  box-shadow: 11px 15px 0 rgba(18, 60, 46, 0.18);
  transform: translateY(-7px) rotate(-0.4deg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

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

.gallery-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  padding: 14px 16px;
  color: var(--forest);
  background: rgba(255, 247, 232, 0.93);
  border: 1px solid rgba(18, 60, 46, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(18, 60, 46, 0.12);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  backdrop-filter: blur(9px);
}

.gallery-label small {
  margin-bottom: 3px;
  color: #4a6459;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 12%, rgba(205, 236, 207, 0.1), transparent 28rem),
    var(--forest);
  isolation: isolate;
}

.section-heading-light .eyebrow,
.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light h2 em {
  color: var(--butter);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.72);
}

.visit-grid {
  display: grid;
  gap: 28px;
}

.visit-info {
  display: grid;
  align-content: start;
  gap: 22px;
}

.location-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 50px);
  color: var(--forest);
  background:
    radial-gradient(circle at 95% 0, rgba(255, 114, 94, 0.5), transparent 12rem),
    var(--mint);
  border: 2px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 11px 12px 0 rgba(255, 255, 255, 0.14);
}

.location-card .eyebrow {
  position: relative;
  z-index: 1;
}

.location-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
}

.location-card > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.location-pin {
  position: absolute;
  top: -52px;
  right: -34px;
  display: grid;
  width: 180px;
  height: 210px;
  place-items: center;
  background: var(--coral);
  border: 3px solid var(--forest);
  border-radius: 50% 50% 50% 8%;
  opacity: 0.9;
  transform: rotate(-26deg);
}

.location-pin span {
  width: 50px;
  height: 50px;
  background: var(--butter);
  border: 3px solid var(--forest);
  border-radius: 50%;
}

.contact-list {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.contact-list a {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  text-decoration: none;
  transition:
    background-color var(--fast) ease,
    transform var(--fast) var(--ease);
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.contact-list a > span:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest);
  background: var(--butter);
  border-radius: 50%;
}

.contact-list a > span:last-child {
  display: grid;
  font-weight: 800;
}

.contact-list small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.contact-action {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform var(--fast) var(--ease),
    background-color var(--fast) ease;
}

.contact-action:hover {
  color: var(--forest);
  background: var(--butter);
}

.reservation-card {
  align-self: start;
  padding: clamp(26px, 5vw, 48px);
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 14px 15px 0 rgba(255, 217, 106, 0.15);
}

.reservation-heading {
  margin-bottom: 28px;
}

.reservation-heading h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3rem);
}

.reservation-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.field {
  display: grid;
  align-content: start;
}

.field label {
  margin-bottom: 7px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.field label span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #a5b0aa;
  border-radius: 12px;
  transition:
    border-color var(--fast) ease,
    box-shadow var(--fast) ease;
}

.field textarea {
  min-height: 98px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(18, 60, 46, 0.12);
  outline: none;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(157, 39, 27, 0.12);
}

.field-hint {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
}

.field-error {
  min-height: 0;
  margin-top: 5px;
  color: var(--error);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error:not(:empty) {
  min-height: 1em;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  margin-top: 14px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.visit-decoration {
  position: absolute;
  z-index: -1;
  color: rgba(255, 217, 106, 0.14);
  font-family: var(--display);
  pointer-events: none;
}

.visit-decoration-one {
  top: 3%;
  right: 3%;
  font-size: 12rem;
  transform: rotate(16deg);
}

.visit-decoration-two {
  bottom: 3%;
  left: -4%;
  font-size: 18rem;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #0b291f;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.logo-light {
  color: var(--white);
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-contact,
.footer-socials {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-contact a,
.footer-socials a {
  width: fit-content;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.footer-socials {
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  column-gap: 18px;
}

.footer-socials p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
  text-underline-offset: 4px;
}

.lightbox {
  width: min(94vw, 980px);
  max-width: none;
  max-height: 94vh;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(5, 18, 13, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: relative;
  padding: 18px;
  background: var(--cream);
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
}

.lightbox figure {
  display: grid;
  margin: 0;
}

.lightbox img {
  width: min(78vh, 100%);
  max-height: 78vh;
  margin-inline: auto;
  border-radius: 17px;
  object-fit: contain;
}

.lightbox figcaption {
  padding: 14px 58px 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--forest);
  background: var(--butter);
  border: 2px solid var(--forest);
  border-radius: 50%;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--fast) var(--ease);
}

.lightbox-close:hover,
.lightbox-control:hover {
  transform: scale(1.08);
}

.lightbox-close {
  top: -18px;
  right: -12px;
}

.lightbox-previous,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-previous:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-previous {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 18px;
  bottom: 18px;
  width: min(calc(100% - 36px), 360px);
  padding: 14px 18px;
  color: var(--white);
  background: var(--forest);
  border: 2px solid var(--butter);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity var(--fast) ease,
    transform var(--fast) var(--ease);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (min-width: 620px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .direct-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .section-heading {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  }

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

  .gallery-card {
    grid-column: span 2;
  }

  .gallery-card-wide {
    grid-column: span 4;
  }

  .gallery-card-tall {
    grid-column: span 2;
  }

  .gallery-card-wide,
  .gallery-card-tall {
    min-height: 440px;
  }

  .gallery-card:not(.gallery-card-wide):not(.gallery-card-tall) {
    min-height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-panel ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
  }

  .nav-panel li + li {
    border: 0;
  }

  .nav-panel li a {
    position: relative;
    min-height: 44px;
    font-size: 0.78rem;
  }

  .nav-panel li a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 3px;
    background: var(--coral);
    border-radius: 3px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--fast) var(--ease);
  }

  .nav-panel li a:hover::after,
  .nav-panel li a[aria-current="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-panel > .button {
    width: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(44px, 6vw, 100px);
  }

  .hero h1 {
    font-size: clamp(5.3rem, 7.5vw, 8.2rem);
  }

  .hero-media {
    width: min(44vw, 620px);
  }

  .about-copy {
    padding-right: 230px;
  }

  .visit-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: clamp(40px, 7vw, 94px);
  }
}

@media (max-width: 979px) {
  .nav-panel[hidden] {
    display: none !important;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-notes {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
    --radius-lg: 30px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 52px) 0 92px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.3rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-notes {
    gap: 16px 28px;
  }

  .hero-media {
    width: min(84vw, 520px);
  }

  .hero-sticker {
    right: -8px;
    bottom: -28px;
    width: 100px;
    height: 100px;
    box-shadow: 6px 7px 0 var(--forest);
  }

  .hero-sticker strong {
    font-size: 0.92rem;
  }

  .hero-orbit {
    inset: -18px;
  }

  .hero-orbit span {
    font-size: 0.56rem;
  }

  .hero-orbit span:first-child {
    left: -1%;
  }

  .hero-shape-one {
    top: 44%;
    right: -180px;
  }

  .hero-doodle-one,
  .hero-doodle-two {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .about {
    padding-top: 38px;
  }

  .about-card {
    min-height: 650px;
    align-items: start;
    padding: 42px 28px;
    box-shadow: 8px 9px 0 var(--forest);
  }

  .about-copy {
    padding-bottom: 200px;
  }

  .about-detail {
    right: 32px;
    bottom: 38px;
    width: 158px;
  }

  .about-detail span {
    left: -66px;
  }

  .about-bowl {
    display: none;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p {
    margin-bottom: 0;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-card {
    min-height: 320px;
  }

  .gallery-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .location-card {
    box-shadow: 7px 8px 0 rgba(255, 255, 255, 0.14);
  }

  .reservation-card {
    box-shadow: 8px 9px 0 rgba(255, 217, 106, 0.15);
  }

  .lightbox {
    width: calc(100% - 24px);
  }

  .lightbox-panel {
    padding: 10px;
  }

  .lightbox-control {
    top: auto;
    bottom: 10px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .lightbox-control:hover {
    transform: scale(1.06);
  }

  .lightbox-previous {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox figcaption {
    min-height: 66px;
    padding: 14px 60px 0;
    font-size: 0.88rem;
  }
}

@media (max-width: 390px) {
  .hero-notes span {
    min-width: 130px;
  }

  .about-card {
    padding-inline: 22px;
  }

  .about-detail {
    right: 24px;
  }

  .location-card {
    padding-inline: 24px;
  }

  .location-pin {
    opacity: 0.45;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (hover: none), (pointer: coarse) {
  .gallery-card:hover,
  .button:hover,
  .contact-action:hover {
    transform: none;
  }

  .gallery-card:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    animation: hero-rise 760ms var(--ease) forwards;
  }

  .hero-copy > :nth-child(1) {
    animation-delay: 80ms;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 150ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 260ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 360ms;
  }

  .hero-copy > :nth-child(5) {
    animation-delay: 450ms;
  }

  .hero-media {
    opacity: 0;
    animation: hero-bounce 1000ms var(--ease) 260ms forwards;
  }

  .hero-image-shell::after {
    animation: shine 5.8s ease-in-out 1.2s infinite;
  }

  .hero-orbit span,
  .hero-sticker,
  .hero-doodle {
    animation: float 4.6s ease-in-out infinite alternate;
  }

  .hero-orbit span:last-child,
  .hero-doodle-two {
    animation-delay: -1.7s;
  }

  .scroll-cue span {
    animation: scroll-bob 1.8s ease-in-out infinite;
  }

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

  @keyframes hero-bounce {
    0% {
      opacity: 0;
      transform: translateY(44px) scale(0.93);
    }
    64% {
      opacity: 1;
      transform: translateY(-8px) scale(1.015);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes shine {
    0%,
    52% {
      transform: translateX(-45%) rotate(8deg);
    }
    72%,
    100% {
      transform: translateX(45%) rotate(8deg);
    }
  }

  @keyframes float {
    from {
      translate: 0 -4px;
    }
    to {
      translate: 0 5px;
    }
  }

  @keyframes scroll-bob {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(4px);
    }
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* Full menu page */

.full-menu-page {
  background:
    radial-gradient(circle at 8% 3%, rgba(255, 217, 106, 0.28), transparent 22rem),
    var(--cream);
}

.menu-hero {
  position: relative;
  display: grid;
  min-height: max(700px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 68px) 0 92px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 48%),
    radial-gradient(circle at 82% 36%, rgba(255, 179, 138, 0.54), transparent 30rem);
  isolation: isolate;
}

.menu-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(58px, 8vw, 110px);
}

.menu-hero-copy {
  position: relative;
  z-index: 3;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.menu-hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--forest);
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.menu-hero h1 em {
  display: inline-block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.menu-hero-copy > p:not(.eyebrow):not(.menu-price-note) {
  max-width: 640px;
  margin-bottom: 28px;
  color: #3d4c44;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.menu-price-note {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.menu-collage {
  position: relative;
  width: min(88vw, 590px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.menu-collage-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 3px solid var(--forest);
  box-shadow: 10px 12px 0 rgba(18, 60, 46, 0.18);
}

.menu-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-collage-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 12px;
  color: var(--forest);
  background: rgba(255, 247, 232, 0.92);
  border: 1px solid rgba(18, 60, 46, 0.2);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.menu-collage-main {
  z-index: 2;
  top: 4%;
  left: 11%;
  width: 66%;
  height: 66%;
  border-radius: 46% 54% 43% 57% / 52% 42% 58% 48%;
  transform: rotate(-4deg);
}

.menu-collage-secondary {
  z-index: 1;
  top: 6%;
  right: 1%;
  width: 42%;
  height: 42%;
  border-radius: 28px;
  transform: rotate(8deg);
}

.menu-collage-accent {
  z-index: 3;
  right: 7%;
  bottom: 4%;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  transform: rotate(5deg);
}

.menu-collage-sticker {
  position: absolute;
  z-index: 4;
  bottom: 12%;
  left: 0;
  display: grid;
  width: 108px;
  height: 108px;
  place-content: center;
  color: var(--forest);
  background: var(--butter);
  border: 3px solid var(--forest);
  border-radius: 50%;
  box-shadow: 7px 8px 0 var(--forest);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.menu-collage-sticker strong {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.menu-hero-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.menu-hero-shape-one {
  top: 9%;
  right: -120px;
  width: 360px;
  height: 360px;
  background: var(--mint);
  border-radius: 40% 60% 50% 50%;
  transform: rotate(18deg);
}

.menu-hero-shape-two {
  bottom: -90px;
  left: -70px;
  width: 230px;
  height: 230px;
  background: var(--butter);
  border-radius: 50%;
}

.full-menu-section {
  background:
    radial-gradient(circle at 92% 5%, rgba(205, 236, 207, 0.58), transparent 24rem),
    var(--cream);
}

.menu-filter-shell {
  position: sticky;
  z-index: 30;
  top: calc(var(--header-height) + 10px);
  margin-bottom: 18px;
  padding: 15px;
  background: rgba(255, 247, 232, 0.94);
  border: 1.5px solid rgba(18, 60, 46, 0.2);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(18, 60, 46, 0.1);
  backdrop-filter: blur(16px);
}

.menu-filter-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 0 3px 10px;
  color: var(--forest);
}

.menu-filter-label strong {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-filter-label span {
  color: var(--muted);
  font-size: 0.68rem;
}

.menu-filters {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 2px 2px 7px;
  scrollbar-color: var(--forest) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.menu-filter {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  color: var(--forest);
  background: var(--white);
  border: 1.5px solid rgba(18, 60, 46, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  scroll-snap-align: start;
  cursor: pointer;
  transition:
    color var(--fast) ease,
    background-color var(--fast) ease,
    transform var(--fast) var(--ease);
}

.menu-filter span {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  padding-inline: 6px;
  place-items: center;
  color: var(--forest);
  background: var(--butter);
  border-radius: 999px;
  font-size: 0.65rem;
}

.menu-filter:hover {
  transform: translateY(-2px);
}

.menu-filter.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.menu-results-count {
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

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

.full-menu-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--forest);
  background: var(--white);
  border: 1.5px solid rgba(18, 60, 46, 0.32);
  border-radius: 20px;
  box-shadow: 5px 6px 0 rgba(18, 60, 46, 0.13);
  text-align: left;
  cursor: zoom-in;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease;
}

.full-menu-card:hover {
  z-index: 2;
  box-shadow: 9px 12px 0 rgba(18, 60, 46, 0.16);
  transform: translateY(-6px);
}

.full-menu-card:active {
  transform: translateY(1px) scale(0.985);
}

.full-menu-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1.5px solid rgba(18, 60, 46, 0.22);
  transition: transform 620ms var(--ease);
}

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

.full-menu-card-copy {
  display: grid;
  min-height: 116px;
  align-content: start;
  padding: 13px;
}

.full-menu-card-copy small {
  overflow: hidden;
  margin-bottom: 6px;
  color: #607469;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.full-menu-card-copy strong {
  font-family: var(--display);
  font-size: clamp(0.9rem, 3.6vw, 1.12rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.menu-card-action {
  align-self: end;
  margin-top: 10px;
  color: var(--coral);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-ending {
  display: grid;
  align-items: end;
  gap: 32px;
  margin-top: clamp(70px, 10vw, 130px);
  padding: clamp(34px, 7vw, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 114, 94, 0.35), transparent 18rem),
    var(--forest);
  border: 2px solid var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: 11px 12px 0 var(--coral);
}

.menu-ending .eyebrow {
  color: var(--butter);
}

.menu-ending h2 {
  color: var(--white);
}

.menu-ending h2 em {
  color: var(--butter);
}

.menu-ending > div:last-child > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
}

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

.button-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.52);
}

.button-light:hover {
  color: var(--forest);
  background: var(--white);
}

@media (min-width: 700px) {
  .menu-preview-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-preview-cta .button {
    width: auto;
  }

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

  .full-menu-card-copy {
    min-height: 126px;
    padding: 17px;
  }

  .full-menu-card-copy strong {
    font-size: 1.12rem;
  }

  .menu-ending {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

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

@media (min-width: 980px) {
  .menu-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }

  .menu-hero h1 {
    font-size: clamp(5.2rem, 6.9vw, 7.4rem);
  }

  .menu-collage {
    width: min(43vw, 590px);
  }

  .full-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .menu-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 80px;
  }

  .menu-hero-copy {
    text-align: center;
  }

  .menu-hero h1 {
    font-size: clamp(3.15rem, 15vw, 5rem);
  }

  .menu-hero-copy > p {
    margin-inline: auto;
  }

  .menu-price-note {
    text-align: center;
  }

  .menu-collage {
    width: min(92vw, 520px);
  }

  .menu-collage-sticker {
    width: 88px;
    height: 88px;
  }

  .menu-filter-shell {
    margin-inline: -4px;
    padding: 12px 10px 8px;
    border-radius: 18px;
  }

  .menu-filter-label {
    padding-inline: 5px;
  }

  .menu-filter-label span {
    display: none;
  }

  .menu-filter {
    padding-inline: 12px;
  }

  .menu-results-count {
    margin: 18px 0;
  }

  .full-menu-card {
    border-radius: 16px;
    box-shadow: 3px 4px 0 rgba(18, 60, 46, 0.13);
  }

  .full-menu-card-copy {
    min-height: 120px;
  }

  .menu-ending {
    box-shadow: 7px 8px 0 var(--coral);
  }

  .menu-ending-actions .button {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .full-menu-grid {
    grid-template-columns: 1fr;
  }

  .full-menu-card-copy {
    min-height: 104px;
  }
}

@media (hover: none), (pointer: coarse) {
  .menu-filter:hover,
  .full-menu-card:hover {
    transform: none;
  }

  .full-menu-card:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .menu-collage-card {
    animation: menu-collage-in 900ms var(--ease) both;
  }

  .menu-collage-secondary {
    animation-delay: 140ms;
  }

  .menu-collage-accent {
    animation-delay: 250ms;
  }

  .menu-collage-sticker {
    animation: float 4.2s ease-in-out infinite alternate;
  }

  @keyframes menu-collage-in {
    from {
      opacity: 0;
      scale: 0.9;
      translate: 0 28px;
    }
    to {
      opacity: 1;
      scale: 1;
      translate: 0 0;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-collage-card,
  .menu-collage-sticker {
    animation: none;
  }
}
