:root {
  --forest: #405139;
  --forest-deep: #2d3b2a;
  --forest-soft: #5a6b50;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --paper-warm: #fbf7f1;
  --ink: #211f1c;
  --muted: #6c6b63;
  --line: #e7dfd5;
  --copper: #b77b55;
  --copper-dark: #95603f;
  --gold: #d7ad70;
  --turquoise: #269daf;
  --mint: #e8f4ef;
  --mint-line: #b7ddd3;
  --success: #2e6a48;
  --danger: #9b3b35;
  --shadow-sm: 0 8px 24px rgba(42, 50, 38, 0.08);
  --shadow-md: 0 20px 50px rgba(42, 50, 38, 0.12);
  --shadow-lg: 0 34px 90px rgba(42, 50, 38, 0.17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.92), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(185, 226, 216, 0.5), transparent 32rem),
    var(--mint);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

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

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin-top: 0;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 20px;
  top: 18px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--forest-deep);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.page-backdrop {
  position: relative;
  width: min(1420px, calc(100% - 42px));
  margin: 44px auto;
  padding: 22px;
  border: 2px solid rgba(120, 196, 179, 0.34);
  border-radius: 38px;
}

.page-backdrop::before,
.page-backdrop::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.page-backdrop::before {
  width: 220px;
  height: 220px;
  top: -70px;
  left: -80px;
  background: rgba(255, 255, 255, 0.42);
}

.page-backdrop::after {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: -100px;
  background: rgba(177, 221, 211, 0.36);
}

.site-shell {
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

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

.section {
  padding: clamp(72px, 9vw, 122px) 0;
}

.section-soft {
  background: var(--paper-warm);
}

.centered {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 7px 0 14px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.centered {
  margin-inline: auto;
}

.section-heading.centered p {
  margin-inline: auto;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

.heading-row > div {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--copper-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.eyebrow-light {
  color: #e6c38e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-weight: 800;
  line-height: 1.3;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-copper {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 9px 20px rgba(139, 85, 52, 0.22);
}

.button-copper:hover,
.button-copper:focus-visible {
  background: var(--copper-dark);
}

.button-forest {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 9px 20px rgba(45, 59, 42, 0.18);
}

.button-forest:hover,
.button-forest:focus-visible {
  background: var(--forest-deep);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: #fff;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.button-outline-dark {
  border-color: rgba(64, 81, 57, 0.35);
  background: transparent;
  color: var(--forest);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: var(--forest);
  background: rgba(64, 81, 57, 0.06);
}

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 0.78rem;
}

.button-full {
  width: 100%;
}

.centered-action {
  margin-top: 42px;
  text-align: center;
}

/* Header */
.announcement-bar {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
  letter-spacing: 0.025em;
}

.announcement-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement-inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.announcement-inner strong,
.announcement-inner a {
  color: #fff;
}

.announcement-note {
  opacity: 0.82;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--forest);
  color: #fff;
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.7vw, 26px);
  font-size: 0.75rem;
  font-weight: 700;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible,
.primary-nav > a:not(.button).is-active {
  color: #fff;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after,
.primary-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
}

.nav-order.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Alerts */
.flash-stack {
  position: relative;
  z-index: 80;
  margin-top: 20px;
}

.flash {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  padding: 15px 18px;
  border: 1px solid;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.flash p,
.flash strong {
  margin: 0;
}

.flash button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 1.25rem;
  cursor: pointer;
}

.flash-success {
  border-color: rgba(46, 106, 72, 0.3);
  color: var(--success);
}

.flash-error {
  border-color: rgba(155, 59, 53, 0.3);
  color: var(--danger);
}

.flash-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

/* Home hero */
.home-hero {
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.hero-grid {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(46px, 8vw, 100px);
  padding-top: 42px;
  padding-bottom: 70px;
}

.hero-copy {
  padding-left: clamp(0px, 4vw, 56px);
}

.hero-copy h1 {
  max-width: 690px;
  margin: 18px 0 22px;
  font-size: clamp(3.55rem, 6.8vw, 6rem);
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

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

.hero-mini-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.75rem;
}

.hero-mini-details span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-mini-details b {
  color: var(--gold);
  font-size: 1rem;
}

.hero-media {
  position: relative;
  width: min(100%, 465px);
  justify-self: end;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 515px;
}

.hero-media img {
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(17, 23, 15, 0.3);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 76%;
  height: 72%;
  border: 1px solid rgba(222, 190, 141, 0.45);
  border-radius: 18px;
}

.hero-badge {
  position: absolute;
  left: -44px;
  bottom: 26px;
  display: grid;
  min-width: 195px;
  gap: 2px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: rgba(34, 47, 31, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.feature-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  min-height: 148px;
  align-items: flex-start;
  gap: 14px;
  padding: 35px 24px;
  border-right: 1px solid var(--line);
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #f3e4db;
  color: var(--copper-dark);
  font-size: 1rem;
}

.feature-item:nth-child(2) .feature-icon {
  background: #edf0df;
  color: var(--forest);
}

.feature-item:nth-child(3) .feature-icon {
  background: #e6f2ee;
  color: var(--turquoise);
}

.feature-item:nth-child(4) .feature-icon {
  background: #e7edf4;
  color: #49708e;
}

.feature-item h2 {
  margin: 0 0 7px;
  font-size: 1.16rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

/* Homepage content */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.highlight-card {
  position: relative;
  isolation: isolate;
  min-height: 365px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--forest-deep) var(--card-image) center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover,
.highlight-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.highlight-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--card-image) center / cover no-repeat;
  transition: transform 0.5s ease;
}

.highlight-card:hover::before,
.highlight-card:focus-visible::before {
  transform: scale(1.04);
}

.highlight-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 26, 18, 0.92), rgba(20, 26, 18, 0.03) 64%);
}

.highlight-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 5px;
  padding: 28px;
}

.highlight-content small {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-content strong {
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 500;
}

.highlight-content > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.favorite-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 3px 0 rgba(64, 81, 57, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.favorite-card:hover {
  border-color: rgba(183, 123, 85, 0.48);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.favorite-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
}

.favorite-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.favorite-price {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: #edf0e7;
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 9vw, 110px);
}

.story-media {
  position: relative;
  max-width: 470px;
}

.story-media picture,
.story-media img {
  width: 100%;
}

.story-media img {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.story-note {
  position: absolute;
  right: -38px;
  bottom: 28px;
  display: grid;
  min-width: 160px;
  padding: 16px 19px;
  border-radius: 12px;
  background: var(--copper);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.story-note span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-note strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.story-copy h2 {
  margin: 12px 0 24px;
}

.story-copy p {
  color: var(--muted);
}

.story-copy .text-link {
  margin-top: 10px;
}

.flavor-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.flavor-section::before {
  content: "";
  position: absolute;
  top: -190px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.02);
}

.flavor-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 10vw, 120px);
}

.flavor-grid h2 {
  margin: 12px 0 18px;
}

.flavor-grid p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.ingredient-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.ingredient-cloud span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 10px 21px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.055);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.ingredient-cloud span:nth-child(2n) {
  transform: translateY(8px);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.community-grid article {
  padding: 32px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.community-grid article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.community-grid h3 {
  margin: 24px 0 12px;
}

.community-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.visit-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 24px;
  background: var(--forest);
  color: #fff;
}

.visit-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025), 0 0 0 80px rgba(255, 255, 255, 0.02);
}

.visit-cta > * {
  position: relative;
  z-index: 1;
}

.visit-cta h2 {
  max-width: 710px;
  margin: 12px 0 14px;
}

.visit-cta p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.visit-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 12px;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 138px) 0;
  background: var(--forest);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.025), 0 0 0 130px rgba(255, 255, 255, 0.018);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.page-hero h1 {
  max-width: 820px;
  margin: 15px 0 22px;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
}

.page-hero p {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.page-hero-media {
  position: relative;
  width: min(100%, 440px);
  justify-self: end;
}

.page-hero-media picture,
.page-hero-media img {
  width: 100%;
}

.page-hero-media img {
  height: 455px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(20, 27, 17, 0.35);
}

.narrow-hero {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.narrow-hero .eyebrow {
  justify-content: center;
}

.narrow-hero h1,
.narrow-hero p {
  margin-right: auto;
  margin-left: auto;
}

.compact-hero {
  padding-top: 74px;
  padding-bottom: 78px;
}

/* Menu */
.menu-page {
  background: var(--paper);
}

.menu-toolbar {
  position: sticky;
  z-index: 30;
  top: 14px;
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 64px;
  padding: 20px;
  border: 1px solid rgba(231, 223, 213, 0.9);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.93);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.menu-search label {
  display: block;
  margin: 0 0 7px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-with-icon {
  position: relative;
}

.input-with-icon span {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--muted);
  transform: translateY(-50%);
}

.input-with-icon input {
  width: 100%;
  height: 46px;
  padding: 9px 14px 9px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  outline: 0;
  background: var(--paper-warm);
}

.input-with-icon input:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 4px rgba(64, 81, 57, 0.09);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 39px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.menu-category {
  padding: 58px 0 66px;
  border-top: 1px solid var(--line);
}

.menu-category:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-category[hidden],
.menu-item[hidden] {
  display: none !important;
}

.menu-category-heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  max-width: 750px;
  margin-bottom: 30px;
}

.menu-category-heading h2 {
  margin: 5px 0 10px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.menu-category-heading p {
  margin: 0;
  color: var(--muted);
}

.menu-category-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #f0e6dc;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
}

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

.menu-item {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 23px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  border-color: rgba(183, 123, 85, 0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.menu-item-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.menu-item-title-row strong {
  flex: 0 0 auto;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.menu-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  background: #eef1e8;
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-notice {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid #e4d5c5;
  border-radius: 16px;
  background: #faf1e7;
}

.menu-notice > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.menu-notice h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.menu-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.menu-empty {
  margin: 10px 0 50px;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.menu-empty h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.menu-empty p {
  margin: 0;
  color: var(--muted);
}

/* About */
.offset-media {
  transform: translateY(28px);
}

.floating-quote {
  position: absolute;
  right: -25px;
  bottom: 25px;
  max-width: 220px;
  padding: 17px 19px;
  border-radius: 14px;
  background: var(--copper);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
}

.prose-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 115px);
}

.prose-grid h2 {
  margin: 10px 0 0;
}

.prose-copy {
  max-width: 720px;
}

.prose-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.prose-copy p:first-child {
  color: var(--ink);
  font-size: 1.13rem;
}

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

.timeline-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.timeline-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.3rem;
}

.timeline-grid small {
  display: block;
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-grid h3 {
  margin: 9px 0 12px;
}

.timeline-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(52px, 9vw, 115px);
}

.values-image img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.values-copy h2 {
  margin: 10px 0 28px;
}

.value-list {
  display: grid;
  gap: 3px;
}

.value-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 17px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.value-list article > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: #f3e6da;
  color: var(--copper-dark);
}

.value-list h3 {
  margin: 0 0 7px;
  font-size: 1.18rem;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.dietary-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 42px 46px;
  border-radius: 20px;
  background: var(--forest-deep);
  color: #fff;
}

.dietary-card h2 {
  margin: 8px 0 0;
  font-size: 2.25rem;
}

.dietary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Reviews */
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expectation-grid article {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.expectation-icon {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.expectation-grid h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.expectation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.review-ready-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.review-ready-grid h2 {
  margin: 11px 0 20px;
}

.review-ready-grid > div:first-child > p {
  color: var(--muted);
}

.review-placeholder-stack {
  position: relative;
  min-height: 410px;
}

.review-placeholder-stack article {
  position: absolute;
  width: 88%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.review-placeholder-stack article:first-child {
  top: 10px;
  left: 0;
  transform: rotate(-3deg);
}

.review-placeholder-stack article:last-child {
  right: 0;
  bottom: 10px;
  transform: rotate(3deg);
}

.review-placeholder-stack p {
  margin: 15px 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
}

.review-placeholder-stack small {
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* Gallery */
.gallery-filters {
  justify-content: center;
  margin-bottom: 38px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 17px;
  background: var(--forest-deep);
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(7) {
  grid-column: span 5;
}

.gallery-card:nth-child(3),
.gallery-card:nth-child(4),
.gallery-card:nth-child(5),
.gallery-card:nth-child(8),
.gallery-card:nth-child(9) {
  grid-column: span 4;
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card picture,
.gallery-card img {
  width: 100%;
  height: 100%;
}

.gallery-card img {
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 16, 0.88), rgba(18, 24, 16, 0.04) 62%);
}

.gallery-card > span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 22px;
}

.gallery-card small {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 50px;
  background: rgba(20, 25, 18, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.map-card {
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #eee;
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
}

.visit-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper-warm);
}

.visit-panel h2 {
  margin: 12px 0 6px;
  font-size: 2.3rem;
}

.visit-panel > p {
  margin-bottom: 4px;
}

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

.visit-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 35px;
}

.hours-card {
  padding: 24px;
  border-radius: 15px;
  background: #fff;
}

.hours-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.hours-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.hours-card > div span {
  color: var(--muted);
}

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

.arrival-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.arrival-grid article > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  background: #e8efea;
  color: var(--forest);
  font-weight: 900;
}

.arrival-grid h2 {
  margin-bottom: 11px;
  font-size: 1.45rem;
}

.arrival-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

/* Contact and order forms */
.contact-grid,
.order-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.contact-sidebar,
.order-steps {
  position: sticky;
  top: 32px;
}

.contact-sidebar h2,
.order-steps h2 {
  margin: 11px 0 26px;
}

.contact-methods {
  display: grid;
  gap: 4px;
}

.contact-methods article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.contact-methods article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #edf0e7;
  color: var(--forest);
}

.contact-methods small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods a {
  color: var(--forest);
  font-weight: 800;
}

.contact-note {
  margin-top: 30px;
  padding: 23px;
  border-left: 3px solid var(--copper);
  border-radius: 0 13px 13px 0;
  background: #f8efe5;
}

.contact-note strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.contact-note p {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-card {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-warm);
  box-shadow: var(--shadow-sm);
}

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

.form-heading h2 {
  margin: 9px 0 8px;
  font-size: 2.25rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.form-grid.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.field label span {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ded5c9;
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 160px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 4px rgba(64, 81, 57, 0.09);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(155, 59, 53, 0.72);
}

.field-help,
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
}

.field-help {
  color: var(--muted);
}

.field-error {
  color: var(--danger);
  font-weight: 700;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.consent-row b {
  color: var(--danger);
}

.consent-error {
  margin-top: -15px;
  margin-bottom: 18px;
}

.order-steps ol {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.order-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.order-steps li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
}

.order-steps strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.order-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

/* Legal and error */
.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.error-page {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 80px 0;
  background: var(--paper-warm);
}

.error-card {
  max-width: 760px;
  text-align: center;
}

.error-card .eyebrow {
  justify-content: center;
}

.error-card h1 {
  margin: 16px 0 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.error-card p {
  color: var(--muted);
}

.error-card .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* Footer */
.site-footer {
  padding: 72px 0 24px;
  background: var(--forest-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr 0.95fr;
  gap: 50px;
  padding-bottom: 52px;
}

.brand-footer .brand-copy strong {
  font-size: 1.2rem;
}

.footer-brand-block > p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.8rem;
}

.site-footer h2 {
  margin: 7px 0 20px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.footer-links a,
.site-footer address,
.site-footer p,
.footer-hours {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-phone:hover,
.footer-phone:focus-visible {
  color: #fff;
}

.footer-phone {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-weight: 800;
}

.footer-hours {
  display: grid;
  gap: 10px;
}

.footer-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours dd {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.footer-bottom > div {
  display: flex;
  gap: 9px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(38, 157, 175, 0.5);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1120px) {
  .page-backdrop {
    width: min(100% - 24px, 1420px);
    margin: 18px auto;
    padding: 12px;
    border-radius: 30px;
  }

  .site-shell {
    border-radius: 23px;
  }

  .primary-nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .feature-item {
    padding: 30px 16px;
  }

  .feature-item:first-child {
    padding-left: 0;
  }

  .feature-item:last-child {
    padding-right: 0;
  }

  .dietary-card {
    grid-template-columns: 1fr 1.3fr;
  }

  .dietary-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .announcement-note {
    display: none !important;
  }

  .announcement-inner {
    justify-content: center;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88vw);
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 100px 28px 34px;
    background: var(--forest-deep);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.9rem;
  }

  .primary-nav .button {
    margin-top: 18px;
  }

  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    z-index: 350;
    top: 32px;
    right: 32px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .flavor-grid,
  .values-grid,
  .prose-grid,
  .review-ready-grid,
  .location-grid,
  .contact-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 55px;
    padding-top: 60px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media,
  .page-hero-media {
    width: min(100%, 650px);
    justify-self: start;
  }

  .hero-media picture,
  .hero-media img {
    height: 560px;
  }

  .page-hero-media img {
    height: 520px;
  }

  .hero-badge {
    left: 24px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    padding: 28px 22px;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .highlight-grid,
  .favorites-grid,
  .community-grid,
  .timeline-grid,
  .expectation-grid,
  .arrival-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-media {
    max-width: 650px;
  }

  .story-note {
    right: 24px;
  }

  .flavor-grid {
    gap: 56px;
  }

  .ingredient-cloud {
    justify-content: flex-start;
  }

  .visit-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-hero-split {
    padding-bottom: 90px;
  }

  .offset-media {
    transform: none;
  }

  .prose-grid {
    gap: 28px;
  }

  .values-grid {
    gap: 55px;
  }

  .dietary-card {
    grid-template-columns: 1fr;
  }

  .menu-toolbar {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .review-placeholder-stack {
    max-width: 640px;
  }

  .contact-sidebar,
  .order-steps {
    position: relative;
    top: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .page-backdrop {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .site-shell {
    border: 0;
    border-radius: 0;
  }

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

  .section {
    padding: 68px 0;
  }

  .announcement-inner {
    min-height: 32px;
  }

  .announcement-inner p {
    gap: 6px;
    font-size: 0.65rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .hero-grid {
    min-height: auto;
    gap: 44px;
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-copy > p {
    font-size: 0.94rem;
  }

  .hero-actions,
  .visit-button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .visit-button-row .button,
  .visit-cta-actions .button {
    width: 100%;
  }

  .hero-mini-details {
    display: grid;
  }

  .hero-media picture,
  .hero-media img,
  .page-hero-media img {
    height: 420px;
  }

  .hero-badge {
    right: 14px;
    bottom: 15px;
    left: 14px;
    min-width: 0;
  }

  .feature-grid,
  .highlight-grid,
  .favorites-grid,
  .community-grid,
  .timeline-grid,
  .expectation-grid,
  .arrival-grid,
  .menu-item-grid,
  .form-grid.two-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child,
  .feature-item:nth-child(2) {
    padding: 24px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .highlight-card {
    min-height: 390px;
  }

  .favorite-card {
    min-height: 205px;
  }

  .story-note {
    right: 12px;
    bottom: 12px;
  }

  .ingredient-cloud span:nth-child(2n) {
    transform: none;
  }

  .visit-cta {
    min-height: 0;
    padding: 36px 26px;
  }

  .visit-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .page-hero {
    padding: 70px 0;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .menu-toolbar {
    margin-bottom: 45px;
    padding: 16px;
  }

  .filter-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .menu-category {
    padding: 46px 0;
  }

  .menu-category-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .menu-category-icon {
    width: 46px;
    height: 46px;
  }

  .menu-item {
    min-height: 0;
  }

  .floating-quote {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }

  .timeline-number,
  .expectation-icon {
    margin-bottom: 30px;
  }

  .dietary-card {
    padding: 32px 26px;
  }

  .review-placeholder-stack {
    min-height: 500px;
  }

  .review-placeholder-stack article {
    width: 96%;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(2),
  .gallery-card:nth-child(3),
  .gallery-card:nth-child(4),
  .gallery-card:nth-child(5),
  .gallery-card:nth-child(6),
  .gallery-card:nth-child(7),
  .gallery-card:nth-child(8),
  .gallery-card:nth-child(9) {
    grid-column: 1;
    grid-row: auto;
  }

  .lightbox {
    padding: 18px;
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
  }

  .visit-panel,
  .form-card {
    padding: 27px 22px;
  }

  .hours-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Database-managed menu and gallery additions */
.menu-item-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 2px;
  border-radius: 10px;
  object-fit: cover;
}

.gallery-card > span em {
  display: block;
  max-width: 34ch;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-style: normal;
  line-height: 1.4;
}
