@font-face {
  font-family: "Smile Delight";
  src:
    url("fonts/Smile%20Delight.otf") format("opentype"),
    url("fonts/SmileDelight.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f1e7;
  --cream-2: #efe1cf;
  --cream-3: #fffaf2;
  --ink: #1d1b16;
  --muted: rgba(29, 27, 22, 0.68);
  --muted-soft: rgba(29, 27, 22, 0.52);

  --espresso: #080604;
  --espresso-2: #120d0a;
  --espresso-3: #1a120d;
  --brown: #2b1810;

  --copper: #c77c3f;
  --copper-2: #a85f2b;
  --caramel: #d4a66a;
  --gold: #f0c58a;
  --latte: #eed9bb;

  --green: #143f30;
  --green-2: #216044;

  --panel: rgba(255, 252, 248, 0.86);
  --border: rgba(29, 27, 22, 0.10);
  --border-strong: rgba(168, 95, 43, 0.38);

  --shadow: 0 22px 60px rgba(29, 27, 22, 0.12);
  --shadow-soft: 0 12px 34px rgba(29, 27, 22, 0.08);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --max: 1140px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(199, 124, 63, 0.12), transparent 60%),
    radial-gradient(900px 500px at 92% 8%, rgba(212, 166, 106, 0.16), transparent 55%),
    linear-gradient(180deg, #fbfaf7 0%, var(--cream) 42%, #fbfaf7 100%);
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--cream-3);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(199, 124, 63, 0.32);
  outline-offset: 3px;
  border-radius: 12px;
}

.scrollbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 999;
  background: transparent;
}

.scrollbar__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--copper-2), var(--caramel));
  box-shadow: 0 0 16px rgba(168, 95, 43, 0.28);
}

/* =========================
   Header / Nav
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background:
    radial-gradient(800px 160px at 18% 0%, rgba(168, 95, 43, 0.30), transparent 64%),
    radial-gradient(800px 160px at 82% 0%, rgba(212, 166, 106, 0.34), transparent 58%),
    linear-gradient(180deg, rgba(241, 226, 209, 0.98), rgba(224, 205, 184, 0.96));
  border-bottom: 1px solid rgba(42, 24, 16, 0.12);
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 300px;
}

.brand__mark {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 22px;
  background:
    radial-gradient(120px 120px at 30% 20%, rgba(199, 164, 113, 0.55), transparent 60%),
    linear-gradient(135deg, rgba(199, 164, 113, 0.34), rgba(168, 95, 43, 0.22));
  border: 1px solid rgba(29, 27, 22, 0.14);
  box-shadow: 0 16px 36px rgba(29, 27, 22, 0.11);
}

.brand__logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.brand:hover .brand__logo {
  transform: scale(1.04);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(22px, 2.3vw, 29px);
  letter-spacing: 0.2px;
  color: var(--ink);
}

.brand__text span {
  margin-top: 4px;
  margin-left: 22px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(29, 27, 22, 0.06);
}

.nav__toggleLines,
.nav__toggleLines::before,
.nav__toggleLines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav__toggleLines {
  position: relative;
  margin: 0 auto;
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggleLines::before {
  top: -6px;
}

.nav__toggleLines::after {
  top: 6px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 13px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: rgba(29, 27, 22, 0.045);
  border-color: rgba(29, 27, 22, 0.08);
  transform: translateY(-1px);
}

.nav__link--cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--caramel), #efd8b4);
  border: 1px solid rgba(29, 27, 22, 0.10);
  box-shadow: 0 10px 22px rgba(29, 27, 22, 0.10);
}

.nav__link--order {
  color: #fffaf2 !important;
  background: linear-gradient(135deg, var(--green), var(--green-2)) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: 0 12px 26px rgba(20, 63, 48, 0.22) !important;
  font-weight: 800;
}

.nav__link--order:hover {
  color: #fffaf2 !important;
  background: linear-gradient(135deg, var(--green-2), var(--green)) !important;
  transform: translateY(-2px);
}

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(29, 27, 22, 0.08);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(29, 27, 22, 0.10);
  border-color: rgba(29, 27, 22, 0.14);
}

.btn--primary {
  background: linear-gradient(135deg, var(--caramel), #efd8b4);
  border-color: rgba(29, 27, 22, 0.10);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #efd8b4, var(--caramel));
}

.btn--ghost {
  background: rgba(255, 252, 248, 0.68);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 252, 248, 0.92);
  box-shadow: none;
}

.btn--order {
  color: #fffaf2;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background:
    radial-gradient(160px 70px at 20% 0%, rgba(255, 255, 255, 0.24), transparent 60%),
    linear-gradient(135deg, var(--green) 0%, var(--green-2) 58%, #b8925b 100%);
  box-shadow:
    0 18px 38px rgba(20, 63, 48, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--order:hover {
  color: #fffaf2;
  background:
    radial-gradient(160px 70px at 20% 0%, rgba(255, 255, 255, 0.30), transparent 60%),
    linear-gradient(135deg, var(--green-2) 0%, var(--green) 62%, var(--caramel) 100%);
}

.btn--facebook {
  color: var(--ink);
  background: linear-gradient(135deg, #d4b07c, #bf8750);
  border: 0;
  box-shadow: 0 10px 24px rgba(29, 27, 22, 0.10);
}

.btn--full {
  width: 100%;
}

.btn--heroOrder {
  padding: 15px 22px;
  border-radius: 18px;
  font-size: 17px;
  min-width: 205px;
  text-transform: uppercase;
}

.btn__emoji,
.floatingOrder__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  padding: 76px 0 44px;
  overflow: hidden;
}

.hero--mountains {
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96), rgba(247, 241, 231, 0.75)),
    url("images/mountain-mud-wide-banner.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background: url("images/logo-mountain-mud.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 42px;
}

.hero__seal {
  margin: 0 0 12px;
}

.hero__sealImg {
  width: min(720px, 100%);
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-2), var(--caramel));
}

.hero__title {
  margin: 18px 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0.2px;
}

.accent {
  color: #b9773e;
  text-shadow: 0 8px 22px rgba(185, 119, 62, 0.14);
}

.hero__sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.stat {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.stat__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
}

.stat__label {
  color: var(--muted-soft);
  font-size: 13px;
}

.hero__media {
  position: relative;
  min-height: 430px;
}

.mediaCard {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--cream-3);
  box-shadow: var(--shadow);
}

.mediaCard--main {
  height: 430px;
}

.mediaCard--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(247, 241, 231, 0.95));
}

/* =========================
   Order Ribbon
========================= */

.orderRibbon {
  position: relative;
  z-index: 3;
  margin-top: -18px;
  padding: 0 0 30px;
}

.orderRibbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    radial-gradient(460px 120px at 10% 0%, rgba(199, 164, 113, 0.24), transparent 65%),
    linear-gradient(135deg, #fffaf2, #efe3d0);
  border: 1px solid rgba(168, 95, 43, 0.18);
  box-shadow: 0 18px 46px rgba(29, 27, 22, 0.10);
}

.orderRibbon__copy {
  display: grid;
  gap: 2px;
}

.orderRibbon__copy strong {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1;
  color: var(--green);
}

.orderRibbon__copy span {
  color: var(--muted);
  font-weight: 600;
}

.orderRibbon__btn {
  flex-shrink: 0;
  padding-inline: 22px;
}

/* =========================
   Sections / Cards
========================= */

.section {
  padding: 64px 0;
}

.section--alt {
  background: rgba(255, 252, 248, 0.58);
  border-top: 1px solid rgba(29, 27, 22, 0.07);
  border-bottom: 1px solid rgba(29, 27, 22, 0.07);
}

.section__head {
  margin-bottom: 22px;
}

.section__title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: 0.2px;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.card {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 27, 22, 0.16);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(168, 95, 43, 0.12), rgba(199, 164, 113, 0.18));
  border: 1px solid rgba(29, 27, 22, 0.10);
  margin-bottom: 12px;
}

.card__title {
  margin: 0 0 6px;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper-2);
  font-weight: 800;
}

.miniActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* =========================
   Premium Menu Showcase
========================= */

.menuShowcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(199, 124, 63, 0.16), transparent 34%),
    linear-gradient(180deg, #f8f1e6 0%, #efe2d0 100%);
  border-top: 1px solid rgba(42, 24, 16, 0.08);
  border-bottom: 1px solid rgba(42, 24, 16, 0.08);
}

.menuShowcase::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 118px;
  background: url("images/coffee-beans-side.png") left center / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.menuShowcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 230, 190, 0.20), transparent 28%),
    linear-gradient(180deg, rgba(247, 241, 231, 0.14), rgba(247, 241, 231, 0.76));
  pointer-events: none;
}

.menuShowcase .container {
  position: relative;
  z-index: 2;
}

.menuShowcase__header {
  position: relative;
  text-align: center;
  max-width: 980px;
  margin: 0 auto 32px;
  padding: 34px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(199, 164, 113, 0.20), transparent 42%),
    linear-gradient(180deg, #15100d, #090706);
  border: 2px solid rgba(191, 117, 55, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 213, 159, 0.12),
    inset 0 0 70px rgba(199, 124, 63, 0.08),
    0 24px 70px rgba(29, 27, 22, 0.22);
  overflow: hidden;
}

.menuShowcase__header::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199, 124, 63, 0.36);
  border-radius: 22px;
  pointer-events: none;
}

.menuShowcase__logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 14px;
  border: 2px solid rgba(199, 164, 113, 0.65);
  box-shadow: 0 0 35px rgba(199, 164, 113, 0.20);
}

.menuShowcase__eyebrow {
  margin: 0;
  color: #d9b27c;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 800;
}

.menuShowcase__title {
  margin: 8px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--copper);
  text-shadow:
    0 2px 0 #3b2114,
    0 0 28px rgba(199, 124, 63, 0.28);
}

.menuShowcase__sub {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(241, 219, 190, 0.86);
  font-size: 15px;
}

.menuShowcase__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.menuShowcase__sizes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.menuShowcase__sizes span {
  color: rgba(255, 244, 225, 0.76);
  font-weight: 800;
}

.menuShowcase__sizes strong {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #e8c795;
  border: 1px solid rgba(228, 181, 120, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menuShowcase__pdf {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menuShowcase__pdf .btn--primary {
  background: linear-gradient(135deg, var(--copper-2), var(--caramel));
  color: #fff8ec;
  border: 0;
}

.menuShowcase__pdf .btn--ghost {
  background: rgba(255, 252, 248, 0.08);
  color: #f2dfc3;
  border-color: rgba(199, 164, 113, 0.24);
}

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

.mudMenuCard {
  position: relative;
  overflow: hidden;
  padding: 20px 22px 24px;
  border-radius: 24px;
  color: #f5dfbf;
  background:
    radial-gradient(circle at 50% 6%, rgba(199, 124, 63, 0.22), transparent 26%),
    radial-gradient(circle at top center, rgba(168, 95, 43, 0.14), transparent 35%),
    linear-gradient(180deg, #15100d 0%, #080706 100%);
  border: 2px solid rgba(168, 95, 43, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 219, 173, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.22);
}

.mudMenuCard::before {
  content: none !important;
  display: none !important;
}

.mudMenuCard::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 124, 63, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.mudMenuCard--wide {
  grid-column: span 3;
}

.mudMenuCard__accent {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: 78px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mudMenuCard__accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.88;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 10px rgba(199, 124, 63, 0.18));
}

.mudMenuCard h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #d28a49;
  text-shadow: 0 2px 0 #2b180f;
}

.mudMenuCard__meta {
  position: relative;
  z-index: 2;
  margin: 10px 0 18px;
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.mudMenuList,
.mudMiniList,
.sfMudList,
.mudFoodGrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mudMenuList {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.mudMenuList li {
  position: relative;
  padding: 0 0 10px 20px;
  border-bottom: 1px solid rgba(199, 124, 63, 0.24);
}

.mudMenuList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-2), var(--caramel));
  box-shadow: 0 0 10px rgba(199, 124, 63, 0.32);
}

.mudMenuList strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.mudMenuList span {
  display: block;
  color: rgba(255, 231, 199, 0.86);
  font-size: 13.7px;
  line-height: 1.36;
  margin-top: 2px;
}

.mudSubSection {
  position: relative;
  z-index: 2;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(199, 124, 63, 0.28);
}

.mudSubSection:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.mudSubSection h4,
.mudFoodGrid h4 {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 22px;
}

.mudSubSection p {
  margin: 0 0 10px;
  color: rgba(255, 231, 199, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.mudMiniList {
  display: grid;
  gap: 8px;
}

.mudMiniList li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 231, 199, 0.90);
  font-weight: 650;
}

.mudMiniList li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--copper);
}

/* Sugar Free fix: this is what fixes the black text in your screenshot */
.sfMudList {
  position: relative;
  z-index: 2;
  columns: 2;
  column-gap: 14px;
}

.sfMudList li {
  break-inside: avoid;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  color: rgba(255, 231, 199, 0.90);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(199, 164, 113, 0.12);
  font-weight: 700;
}

.sfMudList li.sf {
  color: var(--gold);
  background: rgba(199, 124, 63, 0.16);
  border-color: rgba(199, 124, 63, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sfMudList em {
  flex-shrink: 0;
  font-style: normal;
  padding: 2px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-2), var(--caramel));
  color: #fff8ec;
  font-size: 11px;
  font-weight: 900;
}

.mudFoodGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mudFoodGrid > div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(199, 164, 113, 0.16);
}

.mudFoodGrid ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.mudFoodGrid li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 231, 199, 0.92);
  font-weight: 650;
}

.mudFoodGrid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--copper);
}

/* =========================
   Gallery
========================= */

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

.gallery__item {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================
   Location / Contact
========================= */

.info {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.info__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.info__label {
  color: var(--muted-soft);
  font-size: 13px;
}

.info__value:hover {
  text-decoration: underline;
}

.mapCard {
  min-height: 420px;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(29, 27, 22, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mapCard iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.contact__left,
.contact__right {
  min-width: 0;
}

.contact__panel,
.sideCard {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(29, 27, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact__panel {
  margin-top: 18px;
}

.sideCard + .sideCard {
  margin-top: 16px;
}

.sideCard h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
}

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

.sideCard__links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.sideLink:hover {
  color: var(--copper-2);
}

.form {
  display: grid;
  gap: 14px;
}

.form__row {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 14px;
  color: var(--muted);
}

.input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(29, 27, 22, 0.10);
  background: var(--cream-3);
  color: var(--ink);
  padding: 14px 16px;
}

.input--area {
  resize: vertical;
  min-height: 140px;
}

.form__note {
  margin: 0;
  color: var(--muted);
}

/* =========================
   Footer / Floating button
========================= */

.footer {
  border-top: 1px solid rgba(29, 27, 22, 0.08);
  background:
    radial-gradient(700px 200px at 0% 0%, rgba(199, 124, 63, 0.10), transparent 60%),
    #fbfaf7;
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__brandLink {
  min-width: unset;
}

.footer__left {
  display: grid;
  gap: 12px;
}

.footer__small {
  margin: 0;
}

.footer__nav {
  margin-left: auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--ink);
}

.floatingOrder {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fffaf2;
  font-weight: 900;
  letter-spacing: 0.2px;
  background:
    radial-gradient(130px 60px at 20% 0%, rgba(255, 255, 255, 0.24), transparent 60%),
    linear-gradient(135deg, var(--green), var(--green-2) 58%, #b8925b);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 42px rgba(20, 63, 48, 0.32);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.floatingOrder:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(20, 63, 48, 0.36);
}

/* =========================
   Lightbox
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.lightbox[aria-hidden="false"] {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 12, 10, 0.72);
  cursor: pointer;
}

.lightbox__panel {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  margin: 40px auto;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.lightbox__img {
  width: 100%;
  max-height: calc(100vh - 90px);
  object-fit: contain;
  background: #111;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 20px;
}

/* =========================
   Reveal fallback
========================= */

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

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
  .hero__grid,
  .split,
  .split--reverse,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .menuBoard {
    grid-template-columns: 1fr;
  }

  .mudMenuCard,
  .mudMenuCard--wide {
    grid-column: auto;
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
  }

  .mudFoodGrid,
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header__inner {
    padding: 14px 0;
  }

  .brand {
    min-width: unset;
  }

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

  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: min(320px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 252, 248, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav__menu.is-open,
  .nav__menu[data-open="true"] {
    display: flex;
  }

  .nav__link {
    justify-content: flex-start;
  }

  .orderRibbon__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .orderRibbon__btn {
    width: 100%;
  }

  .sfMudList {
    columns: 1;
  }

  .mapCard,
  .mapCard iframe {
    min-height: 340px;
  }

  .footer__nav {
    margin-left: 0;
  }
}

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

  .hero {
    padding-top: 48px;
  }

  .hero__sealImg {
    height: 180px;
  }

  .hero::after {
    width: 260px;
    height: 260px;
    right: -40px;
    bottom: -60px;
  }

  .hero__stats,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .menuShowcase__actions,
  .menuShowcase__pdf {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--heroOrder,
  .menuShowcase__pdf .btn {
    width: 100%;
  }

  .menuShowcase::before {
    opacity: 0.14;
    width: 70px;
  }

  .menuShowcase__header {
    padding: 28px 16px;
  }

  .menuShowcase__sizes {
    gap: 7px;
  }

  .mudMenuCard {
    padding: 18px;
  }

  .mudMenuCard__accent {
    height: 62px;
  }

  .info__row {
    grid-template-columns: 1fr;
  }

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

  .floatingOrder {
    left: 18px;
    right: 18px;
    bottom: 16px;
    justify-content: center;
  }

  body {
    padding-bottom: 76px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* =========================================================
   FINAL MOUNTAIN MUD MENU POLISH
   Clear mountain accent + soft copper glow
   Paste kept at the bottom so it overrides older rules.
========================================================= */

/* Keep the dark card premium but not too heavy */
.mudMenuCard {
  position: relative;
  padding: 20px 22px 24px;
  border-radius: 24px;
  color: #f5dfbf;
  background:
    radial-gradient(circle at 50% 3%, rgba(212, 166, 106, 0.18), transparent 24%),
    radial-gradient(circle at top center, rgba(168, 95, 43, 0.12), transparent 34%),
    linear-gradient(180deg, #15100d 0%, #0b0806 100%) !important;
  border: 2px solid rgba(168, 95, 43, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 172, 0.08),
    0 18px 48px rgba(29, 27, 22, 0.18);
  overflow: hidden;
}

/* Kill the old X accent permanently */
.mudMenuCard::before {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

/* Keep the inner copper frame, subtle */
.mudMenuCard::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 124, 63, 0.18);
  border-radius: 18px;
  pointer-events: none;
}

/* This is the actual clear/glow mountain holder */
.mudMenuCard__accent {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 330px;
  min-height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  isolation: isolate;
}

/* Warm glow behind the mountains so it blends into the card */
.mudMenuCard__accent::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  height: 62%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(212, 166, 106, 0.30) 0%, rgba(168, 95, 43, 0.16) 44%, transparent 74%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

/* Use a TRUE transparent PNG here. No black box, just mountains. */
.mudMenuCard__accent img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  opacity: 0.98;
  mix-blend-mode: normal !important;
  filter:
    drop-shadow(0 0 10px rgba(212, 166, 106, 0.22))
    drop-shadow(0 0 22px rgba(168, 95, 43, 0.16))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.32));
}

/* Titles stay bright and readable */
.mudMenuCard h3,
.mudSubSection h4,
.mudFoodGrid h4 {
  color: #d28a49;
}

.mudMenuCard__meta,
.mudMenuList strong,
.mudSubSection h4,
.mudFoodGrid h4 {
  color: #f0c58a;
}

.mudMenuList span,
.mudMiniList li,
.mudSubSection p,
.mudFoodGrid li,
.sfMudList li {
  color: rgba(255, 231, 199, 0.90) !important;
}

/* Sugar Free list stays readable on the dark background */
.sfMudList li {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(199, 164, 113, 0.14);
}

.sfMudList li.sf {
  color: #f0c58a !important;
  background: rgba(199, 124, 63, 0.16);
  border-color: rgba(199, 124, 63, 0.34);
}

.sfMudList em {
  background: linear-gradient(135deg, #a85f2b, #d4a66a);
  color: #fff8ec;
}

@media (max-width: 720px) {
  .mudMenuCard__accent {
    max-width: 280px;
    min-height: 58px;
    margin-bottom: 14px;
  }

  .mudMenuCard__accent img {
    max-height: 58px;
  }
}
/* =========================================================
   FINAL MOUNTAIN ACCENT — blended into the menu card
   Uses the mountain art as a background, not an image box.
========================================================= */

.mudMenuCard__accent {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 350px !important;
  height: 82px !important;
  margin: 0 auto 18px !important;
  overflow: hidden !important;
  border: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(
      circle at center,
      rgba(212, 166, 106, 0.26) 0%,
      rgba(168, 95, 43, 0.13) 42%,
      transparent 72%
    ),
    url("images/mountain-top-accent2.png") center center / contain no-repeat !important;
  background-blend-mode: normal, screen !important;
  filter:
    drop-shadow(0 0 14px rgba(212, 166, 106, 0.16))
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

/* Hide the old image if any are still left in the HTML */
.mudMenuCard__accent img {
  display: none !important;
}

/* No X, no fake top box */
.mudMenuCard::before {
  content: none !important;
  display: none !important;
}

/* =========================================================
   TRUE TRANSPARENT SVG MOUNTAIN ACCENT
   No image file. No black background. Just mountains + glow.
========================================================= */

.mudMenuCard__accent {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 360px !important;
  height: 82px !important;
  margin: 0 auto 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  isolation: isolate !important;
}

/* soft glow behind mountains */
.mudMenuCard__accent::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 54% !important;
  width: 78% !important;
  height: 52% !important;
  transform: translate(-50%, -50%) !important;
  background: radial-gradient(
    circle,
    rgba(212, 166, 106, 0.34) 0%,
    rgba(168, 95, 43, 0.17) 42%,
    transparent 76%
  ) !important;
  filter: blur(22px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* hide old image if it is still in any card */
.mudMenuCard__accent img {
  display: none !important;
}

.mudMountainSvg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 82px;
  overflow: visible;
  background: transparent;
  filter:
    drop-shadow(0 0 9px rgba(212, 166, 106, 0.28))
    drop-shadow(0 5px 9px rgba(0, 0, 0, 0.34));
}

.mudMountainLine,
.mudMountainTree,
.mudMountainSide {
  fill: none;
  stroke: url("#mudMountainCopper");
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url("#mudGlow");
}

.mudMountainLine--soft {
  opacity: 0.58;
  stroke-width: 2;
}

.mudMountainTree {
  opacity: 0.82;
  stroke-width: 2.4;
}

.mudMountainSide {
  opacity: 0.42;
  stroke-width: 2;
}

/* remove old X or fake mountain pseudo elements */
.mudMenuCard::before {
  content: none !important;
  display: none !important;
}