:root {
  --bg: #f6f1e8;
  --surface: #fdf8f0;
  --surface-strong: #fffdf9;
  --ink: #1d2218;
  --muted: #5d6653;
  --green: #4d6848;
  --green-deep: #2f412c;
  --gold: #dcc37b;
  --gold-soft: rgba(220, 195, 123, 0.18);
  --border: rgba(47, 65, 44, 0.12);
  --shadow: 0 24px 70px rgba(41, 49, 33, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Square Sans Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(220, 195, 123, 0.2), transparent 34%),
    linear-gradient(180deg, #f4efe5 0%, #f7f3eb 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(103, 128, 98, 0.18);
  border-radius: 34px;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(247, 244, 235, 0.92), rgba(234, 239, 228, 0.88) 48%, rgba(229, 236, 223, 0.9) 100%);
  box-shadow:
    0 12px 28px rgba(37, 56, 41, 0.12),
    inset 0 1px 0 rgba(255, 250, 242, 0.62);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  background: transparent;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: #294133;
}

.brand__text span {
  font-size: 0.82rem;
  color: #5c6c55;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.tab-link,
.hero-action,
.whatsapp-pill,
.submit-button,
.nav-toggle {
  border: 0;
  border-radius: 18px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-link,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  color: #2f4637;
  background: rgba(255, 250, 242, 0.2);
  font-weight: 600;
  text-decoration: none;
}

.tab-link:link,
.tab-link:visited,
.tab-link:hover,
.tab-link:active {
  text-decoration: none;
}

.tab-link:hover,
.tab-link:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(78, 112, 85, 0.1);
  outline: none;
}

.tab-link.is-active,
.tab-link--accent {
  background: var(--green);
  color: #fff;
}

.tab-link--accent {
  box-shadow: 0 14px 24px rgba(60, 95, 71, 0.22);
}

.nav-toggle {
  display: none;
}

.page {
  padding-top: 1.4rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  max-height: 980px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.35s ease,
    margin-bottom 0.35s ease;
}

.hero-panel.is-hidden {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-14px);
  margin-bottom: 0;
  pointer-events: none;
  box-shadow: none;
}

.hero-panel__backdrop,
.hero-panel__overlay {
  position: absolute;
  inset: 0;
}

.hero-panel__backdrop {
  background-position: center;
  background-size: cover;
  opacity: 0.96;
  transform: scale(1.02);
}

.hero-panel__overlay {
  background:
    linear-gradient(90deg, rgba(21, 40, 31, 0.84) 0%, rgba(28, 63, 45, 0.66) 31%, rgba(54, 102, 73, 0.28) 58%, rgba(28, 40, 27, 0.06) 100%),
    linear-gradient(180deg, rgba(116, 154, 123, 0.18), rgba(179, 192, 135, 0.12) 46%, rgba(255, 255, 255, 0.02));
}

.hero-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: end;
  min-height: 430px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  max-width: 680px;
  color: #fff;
}

.hero-panel__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(150px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 340px;
  align-self: stretch;
}

.hero-panel__visual::before {
  content: "";
  position: absolute;
  inset: -0.8rem -0.7rem -1rem -0.4rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at 34% 54%, rgba(53, 108, 74, 0.58), rgba(53, 108, 74, 0.28) 34%, rgba(53, 108, 74, 0.08) 56%, rgba(53, 108, 74, 0) 72%),
    radial-gradient(circle at 74% 22%, rgba(88, 147, 109, 0.42), rgba(88, 147, 109, 0.16) 30%, rgba(88, 147, 109, 0) 66%),
    radial-gradient(circle at 78% 82%, rgba(40, 90, 57, 0.34), rgba(40, 90, 57, 0.12) 34%, rgba(40, 90, 57, 0) 68%);
  filter: blur(16px);
  opacity: 1;
  pointer-events: none;
}

.hero-dish {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(252, 246, 235, 0.38);
  box-shadow:
    0 24px 44px rgba(65, 52, 29, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.hero-dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(22, 24, 19, 0.08)),
    radial-gradient(circle at 18% 22%, rgba(84, 129, 98, 0.22), rgba(84, 129, 98, 0.04) 34%, rgba(84, 129, 98, 0) 52%);
  pointer-events: none;
}

.hero-dish img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.hero-dish--main {
  grid-row: 1 / span 2;
  min-height: 340px;
  transform: translateY(0.45rem);
}

.hero-dish--main img {
  object-position: 52% 58%;
}

.hero-dish--top {
  transform: rotate(2deg) translateY(0.15rem);
}

.hero-dish--top img {
  object-position: 50% 48%;
}

.hero-dish--bottom {
  transform: rotate(-2deg);
}

.hero-dish--bottom img {
  object-position: 58% 54%;
}

.eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-panel h1,
.section-head h2,
.story-card h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-panel h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 10ch;
}

.hero-copy,
.section-copy,
.story-copy,
.order-panel__head p,
.order-footnote,
.notice-banner {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  max-width: 46ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.45rem;
}

.hero-action,
.whatsapp-pill,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
}

.hero-action,
.submit-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.hero-action:hover,
.submit-button:hover,
.whatsapp-pill:hover {
  transform: translateY(-1px);
}

.hero-action--secondary {
  background: rgba(220, 195, 123, 0.2);
}

.tab-panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  padding-top: 0;
  transition:
    max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease,
    transform 0.34s ease,
    padding-top 0.34s ease;
}

.tab-panel.is-active {
  max-height: 9000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding-top: 1.8rem;
}

.section-grid {
  display: grid;
  gap: 1.4rem;
}

.section-grid--home {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
}

.contact-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(103, 128, 98, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(246, 243, 235, 0.96));
  box-shadow: 0 18px 38px rgba(41, 49, 33, 0.08);
  color: inherit;
  text-decoration: none;
}

.contact-callout:hover,
.contact-callout:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(41, 49, 33, 0.1);
  outline: none;
}

.contact-callout__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(77, 104, 72, 0.12), rgba(220, 195, 123, 0.12));
  color: var(--green-deep);
}

.contact-callout__icon svg {
  width: 24px;
  height: 24px;
}

.contact-callout__copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.contact-callout__copy strong {
  color: var(--green-deep);
  font-size: 0.98rem;
}

.contact-callout__copy span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.contact-callout__number {
  white-space: nowrap;
  color: var(--green);
  font-weight: 700;
  font-size: 0.96rem;
}

.contact-callout--menu {
  margin-top: 1.1rem;
}

.story-card,
.highlights-card,
.order-panel,
.meta-card,
.menu-card,
.notice-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: var(--shadow);
}

.story-card,
.highlights-card,
.order-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.story-card h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  margin-top: 0.45rem;
  color: var(--green-deep);
}

.story-copy {
  margin-top: 1.2rem;
  color: var(--muted);
}

.story-copy p {
  margin: 0 0 1rem;
}

.highlights-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.highlight-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(220, 195, 123, 0.16), rgba(255, 255, 255, 0.75));
}

.highlight-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-deep);
}

.highlight-item p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.section-head--split {
  align-items: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  color: var(--green-deep);
}

.section-copy {
  margin: 0.75rem 0 0;
  max-width: 65ch;
  color: var(--muted);
}

.whatsapp-pill {
  background: var(--green);
  color: #fff;
  white-space: nowrap;
}

.notice-banner {
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  color: var(--green-deep);
  background: linear-gradient(180deg, var(--gold-soft), rgba(255, 255, 255, 0.95));
}

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

.menu-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem;
}

.menu-card__content {
  min-width: 0;
}

.menu-card__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.16;
  color: var(--green-deep);
}

.menu-card__description {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.menu-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(77, 104, 72, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.78rem;
}

.menu-card__order-link {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(77, 104, 72, 0.16);
  border-radius: 999px;
  background: rgba(77, 104, 72, 0.04);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-card__image {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  object-fit: cover;
  background: #e8dfcf;
}

.order-layout {
  display: block;
}

.order-panel__head {
  display: grid;
  gap: 0.4rem;
  padding: 0 0.25rem;
}

.order-panel__head h3 {
  margin: 0.15rem 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--green-deep);
}

.order-panel {
  max-width: 980px;
  margin: 0 auto;
}

.order-panel__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.order-step {
  display: grid;
  gap: 1.05rem;
  padding: 1.2rem 1.2rem 1.15rem;
  border: 1px solid rgba(47, 65, 44, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 237, 0.92));
  box-shadow: 0 18px 40px rgba(47, 65, 44, 0.06);
}

.order-step__head {
  display: flex;
  align-items: start;
  gap: 0.85rem;
}

.order-step__head strong {
  display: block;
  color: var(--green-deep);
}

.order-step__head p {
  margin: 0.22rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-step__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(77, 104, 72, 0.1);
  color: var(--green-deep);
  font-weight: 800;
  flex-shrink: 0;
}

.order-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.order-form label,
.item-selector {
  display: grid;
  gap: 0.42rem;
}

.order-form span,
.item-selector legend {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(47, 65, 44, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(77, 104, 72, 0.15);
  border-color: rgba(77, 104, 72, 0.4);
}

.order-date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
}

.order-date-card {
  display: grid;
  gap: 0.26rem;
  padding: 1rem 0.95rem;
  border: 1px solid rgba(47, 65, 44, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  color: var(--green-deep);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.order-date-card:hover,
.order-date-card:focus-visible {
  border-color: rgba(77, 104, 72, 0.26);
  box-shadow: 0 14px 28px rgba(41, 49, 33, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.order-date-card.is-active {
  border-color: rgba(77, 104, 72, 0.34);
  background: linear-gradient(180deg, rgba(220, 195, 123, 0.2), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 32px rgba(124, 100, 41, 0.12);
}

.order-date-card__weekday,
.order-live-item__category,
.order-field-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-date-card__day {
  font-size: 2rem;
  line-height: 1;
}

.order-date-card__month,
.order-date-card__count,
.order-date-card__times {
  color: var(--muted);
}

.order-date-card__count {
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--green);
}

.order-date-card__times {
  line-height: 1.45;
}

.order-time-group {
  display: grid;
  gap: 0.7rem;
}

.order-time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.order-time-chip {
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(47, 65, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.order-time-chip:hover,
.order-time-chip:focus-visible {
  border-color: rgba(77, 104, 72, 0.26);
  transform: translateY(-1px);
  outline: none;
}

.order-time-chip.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.order-live-list,
.order-cart {
  display: grid;
  gap: 0.85rem;
}

.order-live-item,
.order-cart__item {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(47, 65, 44, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.order-live-item {
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
}

.order-live-item__image {
  width: 112px;
  height: 112px;
  border-radius: 18px;
  object-fit: cover;
  background: #e8dfcf;
}

.order-live-item__copy {
  display: grid;
  gap: 0.9rem;
}

.order-live-item__meta {
  min-width: 0;
}

.order-live-item__meta h3 {
  margin: 0.22rem 0 0;
  color: var(--green-deep);
  font-size: 1.08rem;
}

.order-live-item__meta p,
.order-live-item__meta small {
  display: block;
  margin: 0.3rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.order-live-item__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 0.8rem;
}

.order-live-item__field {
  display: grid;
  gap: 0.38rem;
}

.order-live-item__field span {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-live-item__field--qty input {
  text-align: center;
}

.order-live-item__action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.order-live-item__price-block {
  display: grid;
  gap: 0.15rem;
}

.order-live-item__price-block span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-live-item__price-block strong {
  color: var(--green-deep);
  font-size: 1.08rem;
}

.order-live-item__button {
  min-width: 170px;
  padding: 0.88rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.order-live-item__button:hover,
.order-live-item__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(47, 65, 44, 0.18);
  outline: none;
}

.order-live-item__button.is-added {
  background: rgba(77, 104, 72, 0.2);
  color: var(--green-deep);
}

.order-cart__top,
.order-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.order-cart__top strong {
  display: block;
  color: var(--green-deep);
}

.order-cart__top span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.order-cart__top button {
  border: 0;
  background: transparent;
  color: #9c2f2f;
  font-weight: 700;
  padding: 0;
}

.order-cart__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 0.7rem;
  align-items: center;
}

.order-cart__size-static {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 1rem;
  border: 1px solid rgba(47, 65, 44, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.order-cart__price {
  font-weight: 800;
  color: var(--green);
  font-size: 1.02rem;
}

.order-summary {
  display: grid;
  gap: 0.65rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(47, 65, 44, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(220, 195, 123, 0.12), rgba(255, 255, 255, 0.9));
}

.order-summary__line {
  color: var(--muted);
}

.order-summary__line strong {
  color: var(--green-deep);
}

.order-summary__line--total span,
.order-summary__line--total strong {
  color: var(--green-deep);
  font-size: 1.02rem;
}

.order-empty-state {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  line-height: 1.6;
}

.order-success-link {
  width: 100%;
}

.order-confirmation {
  display: grid;
  gap: 0.9rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(77, 104, 72, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(220, 195, 123, 0.16), rgba(255, 255, 255, 0.92));
}

.order-confirmation[hidden] {
  display: none;
}

.order-confirmation__head h3 {
  margin: 0.22rem 0 0;
  color: var(--green-deep);
}

.order-confirmation__head p:last-child {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-confirmation__id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.order-confirmation__items,
.order-confirmation__meta {
  display: grid;
  gap: 0.5rem;
}

.order-confirmation__row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.order-confirmation__row--total {
  border: 1px solid rgba(77, 104, 72, 0.14);
}

.order-confirmation__label {
  display: block;
  color: var(--green-deep);
  font-weight: 700;
}

.order-confirmation__label small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.order-confirmation__value {
  color: var(--green-deep);
  text-align: right;
  line-height: 1.5;
}

.item-selector {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.item-selector legend {
  padding: 0 0.3rem;
}

.order-item-option {
  display: grid;
  grid-template-columns: auto 76px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(47, 65, 44, 0.08);
}

.order-item-option:last-child {
  border-bottom: 0;
}

.order-item-option__thumb {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  object-fit: cover;
  background: #e8dfcf;
}

.order-item-option__copy {
  min-width: 0;
}

.order-item-option__copy strong {
  display: block;
  color: var(--green-deep);
}

.order-item-option__copy small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  line-height: 1.45;
}

.order-item-option input[type="number"] {
  min-width: 0;
  padding: 0.65rem 0.75rem;
}

.submit-button {
  width: 100%;
  background: var(--green);
  min-height: 56px;
  font-size: 1rem;
  font-weight: 800;
}

.order-footnote {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-status {
  min-height: 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
}

.form-status.is-error {
  color: #9c2f2f;
}

.noscript-note {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 1rem auto 2rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: #fff2f2;
  color: #7e2d2d;
}

@media (max-width: 960px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 26px;
    border: 1px solid rgba(103, 128, 98, 0.16);
    background:
      linear-gradient(180deg, rgba(247, 244, 235, 0.98), rgba(234, 239, 228, 0.96) 48%, rgba(229, 236, 223, 0.98) 100%);
    box-shadow: 0 18px 45px rgba(47, 65, 44, 0.14);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .section-grid--home,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .contact-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-callout__number {
    grid-column: 2;
  }

  .hero-panel__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-panel__content {
    max-width: 100%;
  }

  .hero-panel__visual {
    min-height: 300px;
  }

  .section-head,
  .section-head--split {
    align-items: start;
    flex-direction: column;
  }

  .whatsapp-pill {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--content-width));
    padding-top: 0.5rem;
  }

  .site-header {
    padding: 0.82rem 0.95rem;
    border-radius: 28px;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .brand__text strong {
    font-size: 0.99rem;
  }

  .nav-toggle {
    padding: 0.72rem 0.95rem;
  }

  .brand__text span {
    display: none;
  }

  .hero-panel,
  .hero-panel__inner {
    min-height: 0;
  }

  .hero-panel__inner {
    padding: 0.95rem;
    gap: 0.8rem;
  }

  .hero-panel__content {
    justify-content: end;
    gap: 0.8rem;
  }

  .hero-panel h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 10.8vw, 3.55rem);
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-panel__visual {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 228px;
    gap: 0.65rem;
  }

  .hero-panel__visual::before {
    inset: -0.55rem -0.45rem -0.7rem -0.2rem;
    border-radius: 28px;
    filter: blur(10px);
  }

  .hero-dish {
    border-radius: 20px;
  }

  .hero-dish--main {
    min-height: 228px;
    transform: none;
  }

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

  .hero-action {
    width: 100%;
  }

  .menu-card {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 0.65rem;
    padding: 0.8rem;
  }

  .contact-callout {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    gap: 0.85rem;
  }

  .contact-callout__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .contact-callout__copy strong {
    font-size: 0.95rem;
  }

  .contact-callout__copy span,
  .contact-callout__number {
    font-size: 0.9rem;
  }

  .menu-card__image {
    width: 82px;
    height: 82px;
  }

  .menu-card__title {
    font-size: 1rem;
  }

  .menu-card__description {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .order-item-option {
    grid-template-columns: auto 64px minmax(0, 1fr);
  }

  .order-item-option__thumb {
    width: 64px;
    height: 64px;
  }

  .order-item-option input[type="number"] {
    grid-column: 3;
  }

  .order-step {
    padding: 0.95rem;
  }

  .order-live-item {
    grid-template-columns: 1fr;
  }

  .order-live-item__image {
    width: 100%;
    height: 220px;
  }

  .order-live-item__controls {
    grid-template-columns: 1fr 96px;
  }

  .order-live-item__action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .order-live-item__button {
    width: 100%;
    min-width: 0;
  }

  .order-cart__controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-shell {
    width: min(calc(100% - 0.75rem), var(--content-width));
    padding-top: 0.35rem;
  }

  .site-header {
    gap: 0.75rem;
    padding: 0.68rem 0.76rem;
    border-radius: 22px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    gap: 0.58rem;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .brand__text strong {
    font-size: 0.89rem;
    line-height: 1.08;
  }

  .nav-toggle {
    flex-shrink: 0;
    padding: 0.64rem 0.76rem;
    font-size: 0.92rem;
  }

  .page {
    padding-top: 1rem;
  }

  .hero-panel {
    border-radius: 24px;
  }

  .hero-panel__overlay {
    background:
      linear-gradient(180deg, rgba(20, 41, 31, 0.8) 0%, rgba(34, 74, 53, 0.5) 40%, rgba(74, 126, 94, 0.22) 72%, rgba(28, 40, 27, 0.08) 100%),
      linear-gradient(180deg, rgba(118, 158, 125, 0.2), rgba(184, 196, 138, 0.1) 46%, rgba(255, 255, 255, 0.03));
  }

  .hero-panel__inner {
    padding: 0.82rem;
    gap: 0.72rem;
  }

  .contact-callout {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0.9rem 0.92rem;
    gap: 0.65rem;
  }

  .contact-callout__copy,
  .contact-callout__number {
    min-width: 0;
  }

  .contact-callout__number {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.84rem;
  }

  .hero-panel h1 {
    max-width: 9.5ch;
    font-size: clamp(2.05rem, 9.8vw, 2.85rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 30ch;
    font-size: 0.92rem;
  }

  .hero-panel__visual {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    min-height: 196px;
    gap: 0.58rem;
  }

  .hero-panel__visual::before {
    inset: -0.4rem -0.28rem -0.52rem -0.12rem;
    border-radius: 24px;
    filter: blur(8px);
    background:
      radial-gradient(circle at 34% 54%, rgba(53, 108, 74, 0.66), rgba(53, 108, 74, 0.32) 34%, rgba(53, 108, 74, 0.1) 56%, rgba(53, 108, 74, 0) 72%),
      radial-gradient(circle at 74% 22%, rgba(88, 147, 109, 0.46), rgba(88, 147, 109, 0.18) 30%, rgba(88, 147, 109, 0) 66%),
      radial-gradient(circle at 78% 82%, rgba(40, 90, 57, 0.38), rgba(40, 90, 57, 0.14) 34%, rgba(40, 90, 57, 0) 68%);
  }

  .hero-dish {
    border-radius: 18px;
  }

  .hero-dish--main {
    min-height: 196px;
  }
}
