:root {
  --green: #183e32;
  --green-dark: #123127;
  --orange: #edbea3;
  --orange-hover: #f4cfb9;
  --ink: #183e32;
  --muted: #59645d;
  --white: #fff;
  --surface: #f4f5f2;
  --line: #d9e0d8;
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", sans-serif;
  --container: 1280px;
  --z-header: 20;
  --z-menu: 30;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h3 {
  line-height: 1.4;
}
p {
  text-wrap: pretty;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #cf6b2c;
  outline-offset: 5px;
}
::selection {
  color: var(--green);
  background: var(--orange);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 96px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: white;
  padding: 12px;
  z-index: 40;
}
.skip-link:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: var(--z-header);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.header.is-scrolled {
  border-color: transparent;
  box-shadow: 0 4px 8px #12312712;
}
.header-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: #12312770;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
}
@media (max-width: 900px) {
  .navigation-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: header-arrive 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wordmark .brand-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  background: var(--green);
  border-radius: 12px;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wordmark:hover .brand-icon {
  background: var(--green-dark);
  transform: rotate(-7deg);
}
.header.is-scrolled .wordmark {
  transform: scale(0.96);
  transform-origin: left center;
}
.wordmark svg {
  width: 34px;
  height: 38px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-steam {
  animation: steam-rise 3.2s ease-in-out infinite;
}
.brand-steam:nth-of-type(3) {
  animation-delay: -0.8s;
}
.brand-steam:nth-of-type(4) {
  animation-delay: -1.6s;
}
.wordmark > span {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.1px;
}
.wordmark small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.9px;
  font-weight: 700;
  margin-top: 5px;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
  background: var(--surface);
  border-radius: 50px;
  padding: 5px;
}
.nav-indicator {
  position: absolute;
  left: 0;
  top: 5px;
  height: calc(100% - 10px);
  width: var(--indicator-width, 0px);
  border-radius: 50px;
  background: #dfe8d9;
  opacity: 0;
  transform: translateX(var(--indicator-x, 0px));
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s;
  pointer-events: none;
}
.navigation.has-indicator .nav-indicator {
  opacity: 1;
}
.navigation a {
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
  animation: header-arrive 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.navigation a:nth-of-type(1) {
  animation-delay: 0.06s;
}
.navigation a:nth-of-type(2) {
  animation-delay: 0.12s;
}
.navigation a:nth-of-type(3) {
  animation-delay: 0.18s;
}
.navigation a:nth-of-type(4) {
  animation-delay: 0.24s;
}
.navigation a:after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: calc(50% - 8px);
  width: 16px;
  height: 2px;
  background: #bd5723;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.navigation a:hover:after {
  transform: scaleX(1);
}
.navigation a[aria-current="location"]:after {
  transform: scaleX(1);
}
.header .header-order {
  gap: 16px;
  border-radius: 50px;
  min-height: 48px;
  padding: 6px 7px 6px 20px;
  position: relative;
  overflow: hidden;
  animation: header-arrive 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.header .header-order-text {
  font-size: 12px;
  line-height: 1.4;
  position: relative;
}
.header .header-order-arrow {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: var(--orange);
  color: var(--green);
  border-radius: 50%;
  position: relative;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s;
}
.header-order:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    #ffffff20 50%,
    transparent 75%
  );
  transform: translateX(-140%);
  pointer-events: none;
}
.header-order:hover:after {
  animation: button-sheen 0.7s ease-out;
}
.header .header-order:hover .header-order-arrow {
  transform: rotate(45deg);
  background: var(--orange-hover);
}
@keyframes header-arrive {
  from {
    opacity: 0.4;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes steam-rise {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(1px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}
@keyframes button-sheen {
  to {
    transform: translateX(140%);
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  padding: 14px 24px;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.button > span {
  font-size: 22px;
  line-height: 1;
}
.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
  gap: 19px;
}
.button-orange {
  background: var(--orange);
  color: var(--green-dark);
}
.button-orange:hover {
  background: var(--orange-hover);
}
.button-outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
.button-outline:hover {
  color: white;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 610px;
  background: var(--green);
}
.hero-copy {
  padding: 70px 55px 30px max(56px, calc((100vw - var(--container)) / 2));
  color: white;
  display: flex;
  flex-direction: column;
}
.hero-location {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.hero-location > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
h1 {
  font-size: clamp(58px, 5.8vw, 88px);
  line-height: 1.04;
  font-weight: 600;
  max-width: 650px;
}
h1 span {
  color: var(--orange);
}
.hero-description {
  max-width: 400px;
  color: #dce6df;
  font-size: 14px;
  line-height: 1.9;
  margin: 26px 0 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-link {
  font-size: 12px;
  color: white;
  border-bottom: 1px solid #8ba397;
  padding-block: 6px;
}
.hero-link > span {
  margin-left: 10px;
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 50px;
  color: #d2ded5;
  font-size: 10px;
}
.hero-foot a {
  color: white;
}
.hero-foot a span {
  margin-left: 7px;
}
.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-position: 50% 50%;
  transition: transform 1s ease-out;
}
.hero-photo:hover > img {
  transform: scale(1.035);
}
.photo-stamp {
  position: absolute;
  top: 30px;
  right: 30px;
  text-align: center;
  line-height: 1.2;
  transform: rotate(9deg);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  background: var(--orange);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.photo-stamp strong {
  font-family: var(--heading);
  font-size: 24px;
}
.photo-stamp span {
  font-size: 9px;
  font-weight: 600;
  margin-top: 9px;
}
.hero-dish {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: white;
  border: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: left;
  border-radius: 6px;
}
.hero-dish small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-bottom: 5px;
}
.hero-dish strong {
  font-size: 16px;
  font-weight: 800;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
}
.flavour-strip {
  background: #e5eddf;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 17px 24px;
  font-size: 10px;
  letter-spacing: 1.6px;
  font-weight: 800;
}
.strip-flower {
  font-size: 24px;
  color: #557348;
  line-height: 1;
}
.section-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
h2 {
  font-size: clamp(42px, 4.2vw, 64px);
}
.about-copy {
  padding-top: 8px;
  max-width: 535px;
}
.about-copy p:first-child {
  font-size: 18px;
  line-height: 1.8;
  color: var(--green);
  margin-bottom: 20px;
}
.about-copy p + p {
  color: var(--muted);
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid var(--green);
  padding-bottom: 7px;
  margin-top: 24px;
}
.text-link > span {
  font-size: 20px;
}
.menu {
  background: var(--surface);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-end;
  margin-bottom: 36px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  padding-bottom: 6px;
}
.menu-toolbar {
  border-block: 1px solid var(--line);
  padding: 17px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.category-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter {
  border: 1px solid transparent;
  padding: 9px 14px;
  background: none;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 700;
  transition: background 0.2s;
}
.filter:hover {
  background: #e3e9de;
}
.filter.active {
  color: white;
  background: var(--green);
}
.menu-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}
.menu-search svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  flex-shrink: 0;
}
.menu-search input {
  border: 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  background: transparent;
  padding: 6px 2px;
  color: var(--green);
  border-radius: 0;
  font-size: 12px;
}
.menu-search input::placeholder {
  color: var(--muted);
}
.menu-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 11px;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
}
.dish-card {
  min-width: 0;
}
.dish-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #e7e6df;
  display: block;
}
.dish-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.dish-image:hover img {
  transform: scale(1.06);
}
.dish-image .round-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: white;
  color: var(--green);
  width: 32px;
  height: 32px;
  font-size: 20px;
}
.dish-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
}
.dish-content {
  padding: 16px 2px 0;
}
.dish-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.dish-top h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.25px;
}
.dish-name {
  border: 0;
  background: none;
  text-align: left;
  padding: 0;
  font: inherit;
}
.dish-name:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dish-price {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 800;
}
.dish-content p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 9px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-category {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.4px;
}
.menu-more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.menu-note {
  max-width: 760px;
  margin: 25px auto 0;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
}
.menu-note a {
  font-weight: 800;
  text-decoration: underline;
}
.menu-empty {
  text-align: center;
  padding: 50px 20px;
}
.menu-empty h3 {
  font-family: var(--heading);
  font-size: 36px;
}
.menu-empty p {
  margin: 12px 0 24px;
  color: var(--muted);
}
.order-section {
  padding: 62px 0;
  background: var(--green);
  color: white;
}
.order-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.order-inner .section-label {
  color: #c2d3c7;
}
.order-inner h2 {
  font-size: 52px;
}
.order-inner p {
  margin-top: 18px;
  color: #dce6df;
  font-size: 13px;
  max-width: 480px;
}
.order-inner .button {
  flex-shrink: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 20px;
}
.gallery-photo {
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  text-align: left;
}
.gallery-photo > img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-photo:hover > img {
  transform: scale(1.05);
}
.gallery-large {
  grid-row: span 2;
}
.gallery-photo > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: 4px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}
.gallery-photo > span > span {
  font-size: 20px;
}
.visit {
  background: var(--surface);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.visit-intro > p {
  color: var(--muted);
  margin: 24px 0 28px;
  max-width: 390px;
  font-size: 14px;
}
.visit-details {
  padding-top: 7px;
}
.visit-map {
  margin-top: 40px;
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 35vw, 380px);
  border: 0;
  border-radius: 8px;
  background: var(--line);
}
.detail-row {
  display: flex;
  gap: 22px;
  padding: 0 0 23px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.detail-icon {
  font-size: 28px;
  line-height: 1.2;
  width: 25px;
  text-align: center;
}
.detail-row h3 {
  font-size: 12px;
  margin-bottom: 9px;
  font-weight: 800;
}
.detail-row p,
.detail-row address {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}
.detail-row strong {
  margin-left: 24px;
  color: var(--green);
  white-space: nowrap;
}
.detail-row small {
  font-size: 10px;
  color: var(--muted);
}
.phone-link {
  font-size: 22px;
  font-weight: 700;
}
.phone-link:hover {
  text-decoration: underline;
}
.footer {
  background: var(--green-dark);
  color: white;
  padding-top: 46px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 38px;
}
.footer-brand {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.3;
}
.footer-brand span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #c2d3c7;
  margin-top: 8px;
  letter-spacing: 0;
}
.footer-links {
  display: flex;
  gap: 30px;
  font-size: 11px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.back-top {
  border: 1px solid #6a8878;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.footer-bottom {
  border-top: 1px solid #3b584c;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  font-size: 9px;
  color: #c2d3c7;
}
.dish-dialog {
  width: min(640px, calc(100% - 32px));
  border: 0;
  padding: 0;
  border-radius: 12px;
  color: var(--green);
  max-height: 90dvh;
  overflow: auto;
  overscroll-behavior: contain;
  background: white;
}
.dish-dialog::backdrop {
  background: rgba(13, 30, 23, 0.72);
}
.dish-dialog > img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: 0;
  background: white;
  color: var(--green);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 29px;
  line-height: 1;
  z-index: 1;
}
.dialog-content {
  padding: 28px 32px 32px;
}
.dialog-content .section-label {
  margin-bottom: 10px;
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.dialog-heading h2 {
  font-size: 34px;
}
.dialog-heading > strong {
  white-space: nowrap;
  font-size: 20px;
}
.dialog-content > p {
  font-size: 14px;
  margin-top: 18px;
  white-space: pre-line;
}
.dialog-content .dialog-note {
  font-size: 11px;
  color: var(--muted);
  margin: 22px 0;
}
.dialog-content .button {
  width: 100%;
}
@keyframes copy-enter {
  from {
    transform: translateY(14px);
  }
  to {
    transform: translateY(0);
  }
}
.hero-copy h1 {
  animation: copy-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1500px) {
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    padding-top: 90px;
    padding-right: 70px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 16px;
  }
  .navigation {
    gap: 0;
  }
  .navigation a {
    padding-inline: 13px;
    font-size: 12px;
  }
  .wordmark > span {
    font-size: 24px;
  }
  .wordmark small {
    font-size: 7px;
  }
  .hero-copy {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero {
    min-height: 570px;
  }
  h1 {
    font-size: 70px;
  }
  .hero-actions {
    gap: 18px;
  }
  .flavour-strip {
    gap: 26px;
    font-size: 9px;
    letter-spacing: 1px;
  }
  .visit-grid {
    gap: 60px;
  }
  .filter {
    padding-inline: 11px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 80px;
  }
  .header-order {
    margin-left: auto;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: var(--z-menu);
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition:
      background 0.25s,
      border-color 0.25s;
  }
  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    background: #e5eddf;
    border-color: #becbb9;
  }
  .nav-toggle span {
    height: 2px;
    width: 23px;
    background: var(--green);
    transition: transform 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .navigation {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--green);
    border-bottom: 1px solid var(--line);
    padding: 24px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: var(--z-menu);
    border-radius: 0 0 14px 14px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.25s,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.35s;
    pointer-events: none;
  }
  .nav-indicator {
    display: none;
  }
  .navigation.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navigation a {
    font-size: 17px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    color: white;
    animation: none;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      background 0.2s,
      opacity 0.25s,
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .navigation.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .navigation.open a:nth-of-type(1) {
    transition-delay: 0s, 0.06s, 0.06s;
  }
  .navigation.open a:nth-of-type(2) {
    transition-delay: 0s, 0.1s, 0.1s;
  }
  .navigation.open a:nth-of-type(3) {
    transition-delay: 0s, 0.14s, 0.14s;
  }
  .navigation.open a:nth-of-type(4) {
    transition-delay: 0s, 0.18s, 0.18s;
  }
  .navigation a:hover,
  .navigation a[aria-current="location"] {
    background: #2a5141;
  }
  .navigation a:after {
    left: auto;
    right: 16px;
    bottom: calc(50% - 1px);
    background: var(--orange);
  }
  .hero {
    min-height: 570px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    padding-top: 48px;
  }
  .hero-location {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 16px;
    padding-inline: 16px;
  }
  .hero-foot {
    flex-direction: column;
    gap: 6px;
    padding-top: 28px;
  }
  .hero-dish {
    padding: 16px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .hero-dish strong {
    font-size: 13px;
  }
  .hero-dish small {
    font-size: 7px;
    letter-spacing: 0.6px;
  }
  .photo-stamp {
    width: 90px;
    height: 90px;
    top: 20px;
    right: 20px;
    font-size: 9px;
  }
  .photo-stamp strong {
    font-size: 20px;
  }
  .photo-stamp span {
    font-size: 8px;
  }
  .flavour-strip {
    gap: 20px;
  }
  .flavour-strip > span:last-child,
  .flavour-strip > span:nth-last-child(2) {
    display: none;
  }
  .section {
    padding-block: 72px;
  }
  .about {
    gap: 50px;
  }
  .about-copy p:first-child {
    font-size: 16px;
  }
  .dish-grid {
    gap: 26px 18px;
  }
  .dish-top {
    flex-direction: column;
    gap: 3px;
  }
  .dish-top h3 {
    font-size: 14px;
  }
  .gallery-grid {
    grid-template-rows: 180px 180px;
  }
  .order-inner h2 {
    font-size: 46px;
  }
  .order-inner {
    gap: 25px;
  }
  .visit-grid {
    gap: 40px;
  }
  .detail-row strong {
    margin-left: 10px;
  }
  .footer-links {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 56px;
  }
  .header-inner {
    height: 74px;
    gap: 12px;
  }
  .wordmark svg {
    width: 27px;
    height: 31px;
  }
  .wordmark .brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .wordmark {
    gap: 8px;
  }
  .wordmark > span {
    font-size: 23px;
  }
  .wordmark small {
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .header .header-order {
    gap: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
  }
  .header .header-order-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .header .header-order-arrow {
    width: 40px;
    height: 40px;
  }
  .nav-toggle {
    padding: 8px;
  }
  .navigation {
    top: 74px;
    padding: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 40px 24px 27px;
    min-height: 440px;
  }
  .hero-location {
    font-size: 9px;
    margin-bottom: 24px;
  }
  h1 {
    font-size: clamp(55px, 12vw, 74px);
    max-width: 450px;
  }
  .hero-description {
    font-size: 13px;
    margin: 22px 0 24px;
    max-width: 380px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 14px 20px;
  }
  .hero-foot {
    flex-direction: row;
    font-size: 9px;
    padding-top: 30px;
  }
  .hero-photo {
    height: 370px;
  }
  .photo-stamp {
    right: 22px;
    top: 22px;
  }
  .hero-dish {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .hero-dish strong {
    font-size: 14px;
  }
  .hero-dish small {
    font-size: 7px;
  }
  .flavour-strip {
    padding: 15px 12px;
    gap: 14px;
    justify-content: space-evenly;
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .strip-flower {
    font-size: 20px;
  }
  .flavour-strip > span:nth-child(5),
  .flavour-strip > span:nth-child(4) {
    display: none;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  h2 {
    font-size: 48px;
  }
  .section-label {
    font-size: 11px;
    margin-bottom: 13px;
  }
  .about-copy {
    padding: 0;
  }
  .about-copy p:first-child {
    font-size: 16px;
  }
  .about-copy p + p {
    font-size: 13px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .section-heading > p br {
    display: none;
  }
  .menu-toolbar {
    margin-inline: -20px;
    padding-inline: 20px;
  }
  .category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 7px;
    margin-inline: -20px;
    padding-inline: 20px;
    scrollbar-width: thin;
  }
  .filter {
    font-size: 11px;
    padding: 8px 12px;
    flex-shrink: 0;
  }
  .menu-search {
    max-width: 100%;
    width: 100%;
  }
  .menu-summary {
    font-size: 10px;
    margin: 20px 0;
  }
  .menu-summary > span:last-child {
    max-width: 135px;
    text-align: right;
  }
  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }
  .dish-image {
    aspect-ratio: 1.15;
    border-radius: 6px;
  }
  .dish-image .round-arrow {
    width: 27px;
    height: 27px;
    right: 9px;
    bottom: 9px;
    font-size: 17px;
  }
  .dish-tag {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 3px 7px;
  }
  .dish-content {
    padding-top: 12px;
  }
  .dish-top h3 {
    font-size: 12px;
    letter-spacing: 0;
  }
  .dish-price {
    font-size: 12px;
    margin-top: 2px;
  }
  .dish-content p {
    font-size: 10px;
    line-height: 1.7;
  }
  .dish-category {
    font-size: 8px;
    margin-top: 8px;
  }
  .menu-more {
    margin-top: 30px;
  }
  .menu-note {
    font-size: 9px;
    margin-top: 22px;
    text-align: left;
  }
  .order-section {
    padding: 44px 0;
  }
  .order-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .order-inner h2 {
    font-size: 44px;
  }
  .order-inner p {
    font-size: 12px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 190px;
    gap: 12px;
  }
  .gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .gallery-photo > span {
    bottom: 9px;
    left: 9px;
    right: 9px;
    padding: 8px 10px;
    font-size: 9px;
    gap: 6px;
  }
  .gallery-photo > span > span {
    font-size: 17px;
  }
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .visit-intro > p {
    font-size: 13px;
    margin-top: 20px;
  }
  .detail-row {
    gap: 18px;
  }
  .detail-row strong {
    margin-left: 20px;
  }
  .footer {
    padding-top: 34px;
  }
  .footer-top {
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 28px;
  }
  .footer-brand {
    font-size: 28px;
  }
  .footer-links {
    order: 3;
    width: 100%;
    gap: 25px;
    font-size: 10px;
  }
  .back-top {
    margin-left: auto;
    width: 38px;
    height: 38px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
    padding-block: 18px;
  }
  .dialog-content {
    padding: 22px;
  }
  .dialog-heading {
    gap: 14px;
  }
  .dialog-heading h2 {
    font-size: 30px;
  }
  .dialog-heading > strong {
    font-size: 16px;
  }
  .dialog-content > p {
    font-size: 12px;
  }
  .dish-dialog > img {
    aspect-ratio: 1.4;
  }
}
@media (max-width: 360px) {
  .hero-copy {
    padding-inline: 20px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-link {
    font-size: 10px;
  }
  .wordmark > span {
    font-size: 20px;
  }
  .wordmark small {
    font-size: 5px;
  }
  .hero-foot {
    font-size: 8px;
  }
  .hero-dish strong {
    font-size: 12px;
  }
  .flavour-strip {
    font-size: 7px;
    gap: 12px;
  }
  .dish-grid {
    gap: 24px 12px;
  }
  .detail-row strong {
    margin-left: 8px;
  }
}
.cart-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 10px;
  background: var(--surface);
  border: 0;
  border-radius: 50%;
  transition:
    background 0.2s,
    transform 0.2s;
}
.cart-toggle:hover {
  background: #dfe8d9;
  transform: translateY(-2px);
}
.cart-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-badge {
  position: absolute;
  right: -3px;
  top: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 50px;
  padding-inline: 4px;
  font-size: 10px;
  line-height: 20px;
  background: var(--orange);
  color: var(--green);
  font-weight: 800;
}
.dish-cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.dish-add {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--green);
  background: transparent;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s;
}
.dish-add:hover {
  color: white;
  background: var(--green);
}
.dish-in-cart {
  font-size: 10px;
  font-weight: 700;
}
.order-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-shrink: 0;
}
.button-wolt {
  background: #d6f4fc;
  color: var(--green-dark);
}
.button-wolt:hover {
  background: #b7e9f7;
}
.visit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.reservation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reservation-copy > p {
  max-width: 410px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.reservation-copy > .form-note {
  font-size: 12px;
}
.request-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.request-form h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 3px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.request-form label,
.dish-wishes,
.dialog-cart-action label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  min-width: 0;
}
.request-form label > span,
.dish-wishes > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}
.request-form input,
.request-form textarea,
.request-form select,
.dish-wishes textarea,
.dialog-cart-action input {
  font: inherit;
  font-size: 14px;
  color: var(--green);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  min-height: 46px;
}
.request-form textarea,
.dish-wishes textarea {
  resize: vertical;
}
.request-form input::placeholder,
.request-form textarea::placeholder,
.dish-wishes textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.form-note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.request-form .button {
  width: 100%;
  gap: 12px;
}
.request-status {
  font-size: 12px;
  font-weight: 600;
}
.request-status:empty {
  display: none;
}
.whatsapp-retry {
  margin-top: 0;
  font-size: 11px;
  align-self: flex-start;
}
.dish-wishes {
  margin: 20px 0 18px;
}
.dialog-cart-action {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.dialog-cart-action label {
  width: 84px;
  flex-shrink: 0;
}
.dialog-cart-action .button {
  flex: 1;
}
.dialog-content .dialog-wolt-link {
  width: auto;
  margin-top: 18px;
  font-size: 11px;
}
.cart-dialog {
  position: fixed;
  inset: 12px 12px 12px auto;
  width: min(560px, calc(100% - 24px));
  max-width: none;
  max-height: calc(100dvh - 24px);
  height: calc(100dvh - 24px);
  margin: 0;
  border: 0;
  border-radius: 12px;
  padding: 0 28px 28px;
  color: var(--green);
  background: white;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.cart-dialog[open] {
  animation: cart-enter 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-dialog::backdrop {
  background: #12312799;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  padding: 24px 0 20px;
  background: white;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
.cart-header h2 {
  font-family: var(--body);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.cart-header .section-label {
  margin-bottom: 5px;
  font-size: 11px;
}
.cart-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  font-size: 28px;
  flex-shrink: 0;
}
.cart-close:hover {
  background: #dfe8d9;
}
.cart-empty {
  padding: 55px 0;
}
.cart-empty h3 {
  font-size: 19px;
}
.cart-empty p {
  margin: 18px 0 26px;
  font-size: 13px;
  color: var(--muted);
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-item > img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item-content {
  flex: 1;
  min-width: 0;
}
.cart-item h3 {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.cart-unit-price {
  font-size: 10px;
  color: var(--muted);
}
.cart-item-notes {
  font-size: 11px;
  margin-top: 5px;
  color: var(--muted);
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.cart-line-total {
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cart-item-bottom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.quantity-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--surface);
  font-size: 18px;
}
.quantity-control button:hover {
  background: #dfe8d9;
}
.quantity-control button:disabled {
  opacity: 0.45;
  cursor: default;
}
.quantity-control span {
  min-width: 30px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
.cart-remove,
.clear-cart {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 10px;
  padding: 6px 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 12px;
  font-size: 13px;
}
.cart-total strong {
  font-size: 20px;
  white-space: nowrap;
}
.cart-dialog .request-form {
  margin-top: 28px;
}
.cart-dialog .clear-cart {
  margin-top: 22px;
  font-size: 11px;
}
.floating-cart {
  position: fixed;
  bottom: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px 20px;
  min-height: 56px;
  max-width: calc(100% - 32px);
  background: var(--green);
  color: white;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  z-index: 16;
  box-shadow: 0 3px 8px #12312730;
}
.has-cart .footer {
  padding-bottom: 88px;
}
.floating-cart > span:last-child {
  font-size: 22px;
}
.cart-feedback {
  position: fixed;
  bottom: 90px;
  right: 24px;
  max-width: min(400px, calc(100% - 32px));
  padding: 12px 18px;
  background: var(--green);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  z-index: 17;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  pointer-events: none;
}
.cart-feedback.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@keyframes cart-enter {
  from {
    opacity: 0.6;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1150px) {
  .header-inner {
    gap: 16px;
  }
  .reservation {
    gap: 45px;
  }
}
@media (max-width: 900px) {
  .header .header-order {
    margin-left: 0;
  }
  .cart-toggle {
    margin-left: auto;
  }
  .reservation {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .header .header-order {
    display: none;
  }
  .cart-toggle {
    width: 40px;
    height: 40px;
  }
  .header-inner {
    gap: 10px;
  }
  .dish-add {
    font-size: 11px;
    padding: 8px 11px;
  }
  .dish-in-cart {
    font-size: 9px;
  }
  .order-actions {
    width: 100%;
  }
  .reservation {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .request-form input,
  .request-form textarea,
  .request-form select,
  .dish-wishes textarea,
  .dialog-cart-action input {
    font-size: 16px;
  }
  .form-grid {
    gap: 14px;
  }
  .request-form .button {
    font-size: 12px;
  }
  .cart-dialog {
    padding: 0 18px 24px;
  }
  .cart-dialog .form-grid {
    grid-template-columns: 1fr;
  }
  .cart-header h2 {
    font-size: 23px;
  }
  .cart-item {
    gap: 10px;
  }
  .cart-item > img {
    width: 54px;
    height: 54px;
  }
  .cart-line-total {
    font-size: 11px;
  }
  .cart-item h3 {
    font-size: 12px;
  }
  .cart-item-bottom {
    gap: 8px;
  }
  .quantity-control button {
    width: 32px;
    height: 34px;
  }
  .quantity-control span {
    min-width: 25px;
  }
  .floating-cart {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
  }
  .cart-feedback {
    left: 16px;
    right: 16px;
    bottom: 86px;
    max-width: none;
  }
  .dialog-cart-action {
    gap: 10px;
  }
  .dialog-cart-action .button {
    font-size: 12px;
    gap: 12px;
  }
}
@media (max-width: 360px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cart-item > img {
    display: none;
  }
  .header-inner {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-photo:hover > img,
  .dish-image:hover img,
  .gallery-photo:hover > img,
  .button:hover {
    transform: none;
  }
}
