:root {
  --red: #c62828;
  --red-deep: #8f1d1d;
  --green: #0c7a43;
  --green-deep: #07532e;
  --sand: #e7d0ab;
  --gold: #d2a857;
  --tan: #d9bc86;
  --cream: #fbf6ef;
  --cream-deep: #f2e4cf;
  --ink: #1d140f;
  --brown: #5f4332;
  --white: #ffffff;
  --muted: #6d5a4d;
  --shadow: 0 20px 60px rgba(29, 20, 15, .14);
  --radius: 24px;
  --container: 1480px;
  --space: clamp(4rem, 8vw, 7rem);
  --heading: 'Elms Sans', sans-serif;;
  --body: 'Inter', 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip;}
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--creaam); line-height: 1.65; overflow-x: clip;}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
iframe { border: 0; }
.sr-only { position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden; clip-path: inset(50%); }
.skip-link { position:absolute; left:1rem; top:-4rem; z-index:1000; background:var(--ink); color:var(--white); padding:.9rem 1rem;}
.skip-link:focus { top:1rem; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(0deg, rgba(29,20,15,0), rgba(29,20,15,.6) 38%, rgba(29,20,15,.9)); backdrop-filter: none; border-bottom-color: transparent; border-bottom:none;}
body.scrolled .site-header { background: rgba(251,246,239,.92); backdrop-filter: blur(12px); border-bottom:solid; border-bottom-color: rgba(0,0,0,.08); box-shadow: 0 16px 40px rgba(29,20,15,.12); }
.top-strip { background: var(--green); color: #fff; font-size: .7rem; max-height: 48px; transition: max-height .28s ease, opacity .28s ease, transform .28s ease; }
.home-page.scrolled .top-strip { max-height: 0; opacity: 0; transform: translateY(-100%); }
.top-strip .container { display:flex; justify-content:space-between; gap:1rem; padding:.5rem 0; flex-wrap:wrap; }
.header-main { display:flex; justify-content:space-between; align-items:center; gap:1.25rem; padding:.9rem 0; transition: padding .28s ease; }
.home-page:not(.scrolled) .header-main { padding: 1.15rem 0; }
.home-page.scrolled .header-main { padding: .75rem 0; }
.brand { display:flex; align-items:center; gap:.85rem; min-width:0; }
.brand img { width: 74px; height: 74px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(0,0,0,.12)); }
.brand-copy strong, .footer-brand strong { display:block; font-family:var(--heading); font-size:1.7rem; letter-spacing:.03em; line-height:.9; text-transform:uppercase; }
.brand-copy span, .footer-brand span { color: var(--muted); font-size: .95rem; }
.brand-logo-wrap {
  position: relative;
  display: block;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
  transition: opacity .25s ease;
}

.brand-logo-light {
  opacity: 0;
}

.brand-logo-dark {
  opacity: 1;
}

/* Homepage before scroll: show white logo */
.home-page:not(.scrolled) .brand-logo-light {
  opacity: 1;
}

.home-page:not(.scrolled) .brand-logo-dark {
  opacity: 0;
}

/* Scrolled state or inner pages: show normal logo */
.home-page.scrolled .brand-logo-light,
body:not(.home-page) .brand-logo-light {
  opacity: 0;
}

.home-page.scrolled .brand-logo-dark,
body:not(.home-page) .brand-logo-dark {
  opacity: 1;
}
.home-page:not(.scrolled) .brand-copy strong,
.home-page:not(.scrolled) .nav-links a,
.home-page:not(.scrolled) .lang-switch { color: #fff; }
.home-page:not(.scrolled) .brand-copy span { color: rgba(255,255,255,.78); }
.nav-links { display:flex; align-items:center; gap:.4rem; }
.nav-links a { position: relative; padding:.75rem .95rem; font-weight:700; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: .45rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--green);
  font-weight: 800;
}

.home-page:not(.scrolled) .nav-links a.is-active,
.home-page:not(.scrolled) .nav-links a[aria-current="page"] {
  color: #fff;
}
.header-actions { display:flex; align-items:center; gap:.75rem; }
.button, .button-outline, .button-ghost { display:inline-flex; align-items:center; justify-content:center; gap:.55rem; padding: 1rem 1.3rem; font-weight:800; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button { background: linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; box-shadow: var(--shadow); }
.button:hover, .button-outline:hover { transform: translateY(-2px); }
.button-outline { background: transparent; color: var(--ink); border: 1.5px solid rgba(29,20,15,.18); }
.home-page:not(.scrolled) .button-outline { color:#fff; border-color: rgba(255,255,255,.46); }
.button-ghost { background: rgba(255,255,255,.14); color:#fff; border: 1px solid rgba(255,255,255,.35); }
.order-button { background: linear-gradient(135deg, var(--green), var(--green-deep)); color:#fff; height:59px;}
.red-button { background: linear-gradient(135deg, var(--red), var(--red-deep)); color:#fff; height:59px;}
.menu-toggle {
  display: none;
  position: relative;
  z-index: 350;
  width: 58px;
  height: 58px;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  align-items: center;
  justify-content: center;
  transition:1s;
  -webkit-transition: 1s;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--white);
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.menu-open .menu-toggle {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
.home-page:not(.scrolled) .menu-toggle span { background:#fff; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:linear-gradient(180deg, rgba(251,246,239,0.45), rgba(242,228,207,0.35)),    url('/assets/img/grain.png') center center/cover no-repeat,linear-gradient(180deg, var(--tan), var(--cream));
  color: var(--ink);
  padding: 6.5rem 1.2rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform .38s cubic-bezier(.22,1,.36,1),
    opacity .25s ease,
    visibility .25s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-content {max-width:750px;width:100%;margin:auto;}
.mobile-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}
.mobile-close:hover {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
}
body.menu-open .site-header {
  z-index: 400;
  background: none !important;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.menu-open .site-header .top-strip,
body.menu-open .site-header .brand,
body.menu-open .site-header .nav-links,
body.menu-open .site-header .lang-switch,
body.menu-open .site-header .order-button {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .site-header .header-main {
  justify-content: flex-end;
}

body.menu-open .site-header .menu-toggle {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .site-header .brand,
body.menu-open .site-header .nav-links,
body.menu-open .site-header .header-actions > a {
  visibility: hidden;
}

.mobile-menu nav { display:grid; gap:.25rem; padding-top:2rem; }

.mobile-menu nav a {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  letter-spacing: .03em;
  padding: .3rem 0 .5rem;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.mobile-menu nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .1rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a:active {
  color: var(--green);
  transform: translateX(6px);
}

.mobile-menu nav a:hover::after,
.mobile-menu nav a:focus-visible::after,
.mobile-menu nav a:active::after,
.mobile-menu nav a.is-active::after,
.mobile-menu nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-menu nav a.is-active,
.mobile-menu nav a[aria-current="page"] {
  color: var(--green);
}
  
.mobile-menu .mobile-cta { margin-top:2rem; display:flex; flex-wrap:wrap; gap:1rem; }
.mobile-menu nav a,
.mobile-menu .mobile-cta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .28s ease, transform .28s ease;
}
.mobile-menu.is-open nav a,
.mobile-menu.is-open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--green);
  font-weight: 800;
  position: relative;
}

.home-page:not(.scrolled) .nav-links a.is-active,
.home-page:not(.scrolled) .nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: .45rem;
  height: 2px;
  background: currentColor;
}

.mobile-menu nav a.is-active,
.mobile-menu nav a[aria-current="page"] {
  color: var(--green);
}

.mobile-language-switch {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.mobile-language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  border: 1.5px solid rgba(29,20,15,.14);
  background: rgba(255,255,255,.72);
  color: var(--green);
  font-weight: 900;
  padding: .75rem 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}

.mobile-language-switch a:hover,
.mobile-language-switch a:focus-visible {
  background: #fff;
  color: var(--red);
  transform: translateY(-1px);
}

.mobile-menu.is-open .mobile-language-switch {
  opacity: 1;
  transform: translateY(0);
}

.mobile-language-switch {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .28s ease, transform .28s ease;
}

.hero {  height: 100svh; min-height: 100svh; position:relative; display:grid; align-items:end; overflow:hidden; color:#fff; background: #2f2219; }
.hero::before { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(29,20,15,.72), rgba(29,20,15,0.23) 48%, rgba(29,20,15,0)); z-index:1; }
.hero::after { content:''; position:absolute; inset:auto 0 0 0; height:180px; background: linear-gradient(0deg, rgba(29,20,15,.58), rgba(29,20,15,0)); z-index:1; }
.hero video {position: absolute; inset: 0;  width: 100%;  height: 100%;  object-fit: cover;}
.hero-content {position: relative; z-index: 2;  width: min(calc(100% - 2rem), var(--container));margin: 0 auto;  padding: 0 0 3.5rem; align-self: end;}
.kicker { display:inline-block; text-transform:uppercase; letter-spacing:.23em; font-weight:900; font-size:.82rem; color: var(--sand); margin-bottom:1rem; }
.hero h1, .page-hero h1, h2.section-title, h2.section-title-full, h3.display, .big-number { font-family: var(--heading); text-transform: uppercase; letter-spacing:.03em; line-height:.93; margin:0 0 1rem; }
.hero h1 { font-size: clamp(2.3rem, 4.5vw, 4.5rem); margin-bottom: .75rem;}
.hero-break {  display: inline;}
.hero p { font-size: clamp(.98rem, 1.2vw, 1.08rem);color: rgba(255,255,255,.92); }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.6rem; }
.hero-panels { display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; margin-top:2rem; max-width: 920px; }
.hero-minimal .hero-actions { margin-top: 1.2rem; }
.hero-panel { background: rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.2); border-radius: 22px; padding:1rem 1.1rem; backdrop-filter: blur(12px); }
.hero-panel strong { display:block; font-size:1.1rem; }
.section { position:relative; padding: var(--space) 0 130px; background: var(--cream); }
.section.light { background: var(--cream); }
.section.white { background: #fff; }
.section.soft { background: var(--cream-deep); }
.section.dark { background: linear-gradient(180deg, #3d2a1f, #231813); color:#fff; z-index:9; }
.section.olive { background: linear-gradient(180deg, var(--green), var(--green-deep)); color:#fff; }
.section.red { background: linear-gradient(180deg, var(--red), var(--red-deep)); color:#fff;}
.section.divider::after { content:''; position:absolute; left:0; right:0; bottom:-2px; height:80px; z-index:5; }
.section.divider-right::after {
  clip-path: polygon(91% 8%, 100% 18%, 100% 100%, 0 99%);
}
.section.divider-left::after {
  clip-path: polygon(9% 8%, 0% 18%, 0% 100%, 100% 99%);
}
.section.divider-light::after {background:var(--cream);}
.section.divider-white::after {background: #fff;}
.section.divider-soft::after {background: var(--cream-deep);}
.section.divider-dark::after {background:#3d2a1f;}
.section.divider-olive::after {background: var(--green);}
.section.divider-red::after {background: var(--red);}
.section-top { display:flex; align-items:end; justify-content:space-between; gap:1.5rem; margin-bottom:2rem; }
.intro-copy { max-width: 70ch; font-size: 1.08rem; color: var(--muted); }
.keyword-copy { display:grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; align-items:start; }
.keyword-copy p { margin: 0; }
.eyebrow { text-transform:uppercase; letter-spacing:.22em; font-weight:900; font-size:.8rem; color: var(--red); }
.dark .eyebrow, .olive .eyebrow, .red .eyebrow { color: var(--sand); }
.section-title { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 12ch; }
.section-title-full { font-size: clamp(2.2rem, 5vw, 4rem);}
.section-intro { max-width: 60ch; color: var(--muted); }
.dark .section-intro, .olive .section-intro, .red .section-intro { color: rgba(255,255,255,.82); }
.grid-3, .grid-4, .grid-2 { display:grid; gap:1.4rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background:#fff; border-radius: var(--radius); box-shadow: var(--shadow); padding:1.45rem; position:relative; overflow:hidden; }
.card::before { content:''; position:absolute; inset:0 auto auto 0; width:100%; height:4px; background: linear-gradient(90deg, var(--green), var(--gold), var(--red)); }
.card h3 { margin-top:.4rem; font-family:var(--heading); font-size:1.45rem; text-transform:uppercase; letter-spacing:.03em; }
.card p { color: var(--muted); }
.stat-card { background: rgba(255,255,255,.1); color:#fff; border-radius: 22px; padding:1.3rem; border:1px solid rgba(255,255,255,.18); }
.big-number { font-size: clamp(2.7rem, 6vw, 4.2rem); }
.story-layout { display:grid; grid-template-columns: 1.1fr .9fr; gap:2rem; align-items:center; }
.story-image-stack { display:grid; gap:1rem; }
.image-card, .photo-panel { border-radius: 28px; overflow:hidden; box-shadow: var(--shadow); }
.image-card img, .photo-panel img { width:100%; height:100%; object-fit:cover; }
.timeline { display:grid; gap:1rem; margin-top:1.5rem; justify-content:end; padding: 0 25px; }
.timeline-item { padding:1rem 1rem 1rem 1.2rem; border-left: 4px solid var(--gold); background: rgba(255,255,255,.08); border-radius: 0 18px 18px 0; }
.split-band { display:grid; grid-template-columns: 1fr 1fr; gap:2rem; align-items:stretch; }
.texture-box { background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border-radius: 30px; padding:2rem; border:1px solid rgba(255,255,255,.14); }
.feature-list { display:grid; gap:1rem; }
.feature-item { display:flex; gap:.9rem; align-items:flex-start; }
.feature-dot { width:14px; height:14px; margin-top:.45rem; border-radius:50%; background: linear-gradient(135deg, var(--gold), var(--red)); flex:0 0 auto; }
.menu-board { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:1.4rem; }
.menu-group { background:#fff; border-radius: 28px; box-shadow: var(--shadow); padding:1.5rem; }
.menu-group h3 { font-family:var(--heading); font-size:1.8rem; text-transform:uppercase; letter-spacing:.03em; margin:.2rem 0 1rem; }
.menu-item { display:flex; justify-content:space-between; gap:1rem; padding:.85rem 0; border-bottom:1px solid rgba(0,0,0,.08); }
.menu-item:last-child { border-bottom:0; }
.menu-item strong { display:block; }
.menu-item span { color: var(--muted); font-size:.95rem; }
.reviews { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1.4rem; }
.quote { background:#fff; border-radius:28px; box-shadow: var(--shadow); padding:1.7rem; }
.quote p { font-size:1.05rem; }
.quote-footer { margin-top:1rem; color:var(--muted); font-weight:700; }
.order-shell { background: linear-gradient(135deg, rgba(12,122,67,.12), rgba(198,40,40,.08)); border:1px solid rgba(29,20,15,.08); border-radius: 30px; padding: 1.5rem; }
.order-shell.is-disabled .ordering-state::before { content:'Online ordering is currently toggled off in config.js.'; display:block; font-weight:700; margin-bottom:.7rem; }
.order-frame { width:100%; min-height: 500px; border-radius: 20px; background:#fff; }
.media-promo { display:grid; grid-template-columns: 1fr 1fr; gap:2rem; align-items:center; }
.video-shell { position:relative; overflow:hidden; box-shadow: var(--shadow); background:#000; }
.video-shell video, .video-shell img { width:100%; display:block; aspect-ratio: 16/10; object-fit:cover; }
.video-badge { position:absolute; left:1rem; top:1rem; background: rgba(255,255,255,.9); color:var(--ink); border-radius:999px; padding:.55rem .9rem; font-size:.82rem; font-weight:800; }
.contact-card { background:#fff; border-radius: 28px; box-shadow: var(--shadow); padding:1.5rem; }
.contact-list { display:grid; gap:1rem; }
.hours-table { width:100%; border-collapse: collapse; }
.hours-table td { padding:.7rem 0; border-bottom:1px solid rgba(0,0,0,.08); }
.hours-table tr:last-child td { border-bottom:0; }
.map-shell { border-radius: 28px; overflow:hidden; box-shadow: var(--shadow); min-height: 420px; }
.map-shell iframe { width:100%; min-height:420px; }
.page-hero { position:relative; padding: 10rem 0 4rem; background: linear-gradient(180deg, rgba(61,42,31,.92), rgba(35,24,19,.82)), url('/assets/img/hometown-collage.jpg') center/cover no-repeat; color:#fff; overflow:hidden; }
.page-hero.alt { background: linear-gradient(180deg, rgba(12,122,67,.9), rgba(7,83,46,.88)), url('/assets/img/interior.png') center/cover no-repeat; }
.breadcrumbs { font-size:.92rem; opacity:.88; margin-bottom:1rem; display: flex; align-items: center; flex-wrap: wrap; gap: .4rem;}
.accordion { display:grid; gap:1rem; }
.accordion details { background:#fff; border-radius: 22px; padding:1.15rem 1.2rem; box-shadow: var(--shadow); }
.accordion summary { cursor:pointer; font-weight:800; list-style:none; }
.accordion summary::-webkit-details-marker { display:none; }
.columns { columns: 2 280px; gap: 2rem; }
.footer { background: #1f140f; color:#fff; padding: 4rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns: 1.1fr .9fr .9fr; gap:2rem; }
.footer a:hover { text-decoration: underline; }
.footer small { color: rgba(255,255,255,.7); }
.footer-card-note {
  color: rgba(255,255,255,.72);
  font-weight: 700;
  line-height: 1.55;
}

.footer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.footer-mini-feature {
  margin: 1.15rem auto;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}

.footer-mini-feature span {
  display: block;
  color: var(--sand);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.footer-mini-feature strong {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: .95rem;
  line-height: 1.45;
}
.lang-switch { font-size:.95rem; font-weight:700; color:var(--green); }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
}
@media (max-width: 1225px) {
    .nav-links,
    .header-actions .lang-switch {
      display: none;
    }

    .menu-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
}
@media (max-width: 980px) {
  .brand-logo-wrap {flex:0 0 55px;}
  .brand-copy strong {font-size: 1.7rem;}
  .keyword-copy { grid-template-columns: 1fr; }
  .hero-panels, .grid-3, .grid-4, .grid-2, .story-layout, .split-band, .media-promo, .reviews, .footer-grid, .menu-board { grid-template-columns: 1fr; }
  .section-top, .header-main { align-items:flex-start; }
  .home-page.scrolled .header-main {padding:.5rem 0;}
  .hero h1 {font-size: clamp(2rem, 4.5vw, 4.5rem)}
}
@media (max-width: 720px) {
  .home-page:not(.scrolled) .site-header { background: linear-gradient(180deg, rgba(29,20,15,.48), rgba(29,20,15,0)); }
  .hero {
    height: 100svh;
    min-height: 100svh;
    align-items: end;
  }
  .hero-content {
    padding: 0 0 2rem;
  }
  .hero-minimal {
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    margin-bottom: .55rem;
  }
  .hero p {
    font-size: .95rem;
    margin-bottom: 0;
  }
  .hero-actions {
    gap: .75rem;
    margin-top: 1rem;
  }
  .button,
  .button-ghost,
  .button-outline {
    padding: .9rem 1.05rem;
  }
  .home-page.scrolled .header-main {padding:.5rem 0 0;}
}
@media (max-width: 686px) {
  .brand-copy strong {font-size:1.2rem;}
  .hero h1 {font-size:clamp(1.2rem, 4vw, 4.5rem);}
}

@media (max-width: 609px) {
  .brand-copy strong {font-size:.7rem;}
  .brand-copy span {font-size:0.6rem;}
}

/* Video Cards */
.video-card {
  position: relative;
  overflow: hidden;
  z-index:99;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(29,20,15,.08), rgba(29,20,15,.18)),
    url('/assets/img/grain.png') center/cover repeat;
  opacity: .18;
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}


/* Homepage Story Layout */
.section-top-media {
  display: grid;
  grid-template-columns: .3fr .9fr;
  gap: 2rem;
  align-items: center;
}

.top-section-video-card { 
  margin:-208px -14vw 0 0;
}

.section-top-text {
  max-width: 620px;
}

.section-top-media-wrap {
  width: 100%;
}

.intro-feature-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.intro-feature-copy {
  display: grid;
  gap: 1rem;
}

.intro-feature-copy .intro-copy {
  margin: 0;
}

.intro-feature-cards {
  align-items: stretch;
}

.story-layout-media {
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 1.5rem;
}

.story-support {
  margin-top: .25rem;
}

.story-media-desktop,
.story-media-mobile {
  width: 100%;
}

.story-media-mobile {
  display: none;
}

@media (max-width: 980px) {
  .section-top-media {
    gap: 1.25rem;
    grid-template-columns:1fr;
  }

  .section-top-media-wrap {
    order: 1;
  }

  .section-top-text {
    order: 2;
  }

  .section-title {
    max-width: 100%;
  }
  .video-card::after {
    left:45px;
    right:0px;
  }
  .top-section-video-card {
    margin:-74px -200px 0 0;
    padding:0 0 0 45px;
    background:none;
  }
  .intro-feature-grid {
    display: block;
  }
  .intro-feature-copy {
    padding-bottom:20px;
  }
}

/* Heritage Home Page */

.heritage-video-section {
  position: relative;
  isolation: isolate;
}

.heritage-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('/assets/img/texturebg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .78;
}

.heritage-video-section > .container {
  position: relative;
  z-index: 2;
}

.heritage-video-section::after {
  z-index: 1;
}

.heritage-video-layout {
  display: grid;
  grid-template-columns: .9fr .3fr;
  gap: 3rem;
  align-items: center;
}

.heritage-video-wrap {
  width: 100%;
}

.heritage-video-card {
    margin:-208px 0 0 -208px;
    padding:0 0 0 45px;
    background:none;
}

.heritage-copy {
  position: relative;
  z-index: 2;
  text-align: right;
}

@media (max-width: 980px) {
  .heritage-video-layout {
    grid-template-columns: 1fr;
  }

  .heritage-video-wrap {
    order: 1;
  }

  .heritage-copy {
    order: 2;
  }

  .heritage-video-card {
    margin: -160px 0 0 -5rem;
    width: calc(100% + 2rem);
  }
}


/* Mid Sections Additions */

.mid-section-video-card { 
  margin:-272px -14vw 0 0
}

@media (max-width: 980px) {
  .mid-section-video-card {
    margin: -112px -200px 0 0;
    width: calc(100% + 2rem);
  }
}


/* Story Section */
.story-film-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  grid-template-areas:
    "heading video"
    "copy video";
  gap: 2rem 4rem;
  align-items: center;
}

.story-film-heading {
  grid-area: heading;
}

.story-film-copy {
  grid-area: copy;
}

.youtube-shell {
  grid-area: video;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.youtube-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .story-film-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "video"
      "copy";
    gap: 1.5rem;
  }
}



/* Menu & Online Ordering */
.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.5rem;
  align-items: start;
}

.menu-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.4rem;
}

.menu-tab {
  border: 1.5px solid rgba(29,20,15,.14);
  background: #fff;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
}

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

.menu-item-card,
.cart-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.menu-item-card {
  display: grid;
  gap: 1rem;
}

.menu-item-card h3,
.cart-panel h3 {
  font-family: var(--heading);
  text-transform: uppercase;
  margin: 0;
}

.menu-item-card p {
  color: var(--muted);
  margin: .4rem 0 0;
}

.menu-item-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cart-panel {
  position: sticky;
  top: 7rem;
}

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

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  border-bottom: 1px solid rgba(29,20,15,.1);
  padding-bottom: 1rem;
}

.cart-item span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cart-controls button,
.cart-remove {
  border: 0;
  background: var(--cream-deep);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.cart-controls button {
  width: 32px;
  height: 32px;
}

.cart-line-total {
  font-weight: 900;
}

.cart-remove {
  grid-column: 1 / -1;
  justify-self: start;
  padding: .45rem .75rem;
  color: var(--red);
}

.cart-summary {
  margin-top: 1rem;
  padding-top: 1rem;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-checkout {
  width: 100%;
}


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

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

  .cart-panel {
    position: static;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-form label {
  display: grid;
  gap: .4rem;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1.5px solid rgba(29,20,15,.18);
  border-radius: 14px;
  padding: .85rem 1rem;
  background: #fff;
} 

.clover-field {
  width: 100%;
  height: 54px;
  min-height: 0;
  border: 1.5px solid rgba(29,20,15,.18);
  border-radius: 14px;
  background: #fff;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clover-field iframe {
  height: 22px !important;
  width: 100% !important;
  display: block;
}

.clover-error {
  color: var(--red);
  font-weight: 800;
}


/* Reviews Showcase Refresh */
.reviews-showcase {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(215,188,134,.22), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(198,40,40,.08), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8f1e7 100%);
  overflow: hidden;
}

.reviews-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.55), transparent 42%),
    repeating-linear-gradient(135deg, rgba(95,67,50,.025) 0 2px, transparent 2px 18px);
  opacity: .7;
}

.reviews-showcase > .container {
  position: relative;
  z-index: 1;
}

.reviews-showcase-shell {
  display: grid;
  gap: 1.5rem;
}

.reviews-showcase-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 0;
}

.reviews-showcase-copy {
  max-width: 44rem;
}

.reviews-showcase .section-title {
  max-width: 9ch;
}

.reviews-showcase-lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.reviews-summary-card {
  align-self: end;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(29,20,15,.08);
  border-radius: 30px;
  padding: 1.4rem 1.4rem 1.25rem;
  box-shadow: 0 22px 60px rgba(29,20,15,.10);
  backdrop-filter: blur(8px);
  max-width: 28rem;
}

.reviews-summary-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: .85rem;
}

.reviews-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .7rem;
}

.reviews-summary-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 600;
}

.reviews-summary-list li::before {
  content: "";
  width: .7rem;
  height: .7rem;
  margin-top: .42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--red));
  flex: 0 0 .7rem;
  box-shadow: 0 0 0 5px rgba(12,122,67,.08);
}

.reviews-platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(29,20,15,.10);
  color: var(--brown);
  font-weight: 800;
  font-size: .9rem;
}

.reviews-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.reviews-trust-pill {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.94));
  border: 1px solid rgba(29,20,15,.08);
  border-radius: 22px;
  padding: 1rem 1.15rem;
  box-shadow: 0 14px 36px rgba(29,20,15,.08);
}

.reviews-trust-pill strong,
.reviews-trust-pill span {
  display: block;
}

.reviews-trust-pill strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.05;
  font-size: 1.08rem;
  margin-bottom: .3rem;
}

.reviews-trust-pill span {
  color: var(--muted);
  font-size: .96rem;
}

.reviews-showcase .reviews-carousel {
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(29,20,15,.06);
  border-radius: 36px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: 0 22px 60px rgba(29,20,15,.10);
  backdrop-filter: blur(6px);
}

.reviews-showcase .reviews-viewport {
  padding: .2rem .1rem 1.1rem;
}

.reviews-showcase .reviews-track {
  gap: 1.25rem;
}

.reviews-showcase .review-slide {
  min-height: 100%;
  border-radius: 28px;
  padding: 1.45rem 1.45rem 1.35rem;
  background: linear-gradient(180deg, #fff 0%, #fdf9f4 100%);
  border: 1px solid rgba(29,20,15,.06);
  border-top: 5px solid var(--sand);
  box-shadow: 0 20px 45px rgba(29,20,15,.08);
}

.reviews-showcase .review-slide::before {
  margin-bottom: .55rem;
}

.reviews-showcase .review-slide::after {
  right: 1rem;
  bottom: -.25rem;
  font-size: 6.5rem;
  color: rgba(231,208,171,.66);
}

.review-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .4rem;
}

.review-source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  border: 1px solid transparent;
}

.review-source.google {
  background: rgba(12,122,67,.08);
  color: var(--green);
  border-color: rgba(12,122,67,.14);
}

.review-source.yelp {
  background: rgba(198,40,40,.08);
  color: var(--red);
  border-color: rgba(198,40,40,.14);
}

.review-source.facebook {
  background: rgba(29,20,15,.06);
  color: var(--brown);
  border-color: rgba(29,20,15,.10);
}

.reviews-showcase .quote p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.reviews-showcase .quote-footer {
  margin-top: 1.25rem;
  display: grid;
  gap: .18rem;
}

.reviews-showcase .quote-footer strong {
  font-size: 1.05rem;
  color: var(--ink);
}

.reviews-showcase .quote-footer span {
  color: var(--muted);
  font-weight: 700;
}

.reviews-showcase .reviews-carousel-controls {
  padding-top: .1rem;
}

.reviews-showcase .carousel-arrow {
  width: 56px;
  height: 56px;
}

@media (max-width: 980px) {
  .reviews-showcase-top,
  .reviews-trust-row {
    grid-template-columns: 1fr;
  }

  .reviews-showcase .section-title {
    max-width: 12ch;
  }

  .reviews-summary-card {
    max-width: none;
  }

  .reviews-showcase .reviews-carousel {
    padding: 1rem .9rem .95rem;
  }
}

@media (max-width: 720px) {
  .reviews-showcase {
    background: linear-gradient(180deg, #fffdf9 0%, #f6ecde 100%);
  }

  .reviews-showcase .review-slide {
    padding: 1.2rem 1.15rem 1.15rem;
  }

  .reviews-trust-pill strong {
    font-size: 1rem;
  }
}

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

.reviews-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .35rem .1rem 1.2rem;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.8rem) / 3);
  gap: 1.4rem;
}

.review-slide {
  scroll-snap-align: start;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(29,20,15,.06);
}

.review-slide::before {
  content: "★★★★★";
  display: block;
  color: var(--gold);
  letter-spacing: .12em;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: .85rem;
}

.review-slide::after {
  content: "\201C";
  position: absolute;
  right: 1.2rem;
  bottom: -.55rem;
  z-index: -1;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(210,168,87,.16);
}

.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.reviews-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(29,20,15,.22);
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease, transform .2s ease;
}

.reviews-dot:hover,
.reviews-dot:focus-visible {
  transform: translateY(-1px);
}

.reviews-dot.is-active {
  width: 30px;
  background: var(--red);
}

@media (max-width: 980px) {
  .reviews-track {
    grid-auto-columns: 100%;
  }

  .reviews-carousel-controls {
    justify-content: space-between;
  }

  .reviews-dots {
    flex: 1;
  }
}

/* Menu Category Navigation Refresh */
.order-shell.menu-app {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.order-shell.menu-app .menu-category-tabs {
  display: block;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  top: 7rem;
  z-index: 20;
}

.order-shell.menu-app {position: sticky;} .menu-category-tabs {position: static;}

.order-shell.menu-app .menu-layout {
  grid-column: 2;
  grid-row: 1;
}

.menu-category-nav {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(29,20,15,.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(29,20,15,.08);
  padding: 1rem;
}

.menu-category-header {
  display: grid;
  gap: .15rem;
  margin-bottom: .9rem;
}

.menu-category-header strong,
.menu-more-header strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  font-size: 1.35rem;
}

.menu-category-eyebrow,
.menu-category-label,
.menu-item-category,
.menu-results-heading span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
  color: var(--red);
}

.menu-search-label {
  display: block;
  margin-bottom: 1rem;
}

.menu-search-input {
  width: 100%;
  border: 1.5px solid rgba(29,20,15,.14);
  border-radius: 999px;
  background: #fff;
  padding: .85rem 1rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.category-toggle-icon {
  width: .72rem;
  height: .72rem;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
  flex: 0 0 auto;
  margin-left: .25rem;
}

.menu-category-nav:not(.is-collapsed) .menu-mobile-category-toggle .category-toggle-icon {
  transform: rotate(-135deg);
}

.menu-more-toggle[aria-expanded="true"] .menu-more-toggle-icon {
  transform: rotate(-135deg);
}

.menu-search-input::placeholder {
  color: rgba(29,20,15,.45);
}

.menu-category-label {
  margin: .25rem 0 .65rem;
  color: var(--muted);
}

.menu-category-bar,
.menu-more-grid {
  display: grid;
  gap: .55rem;
}

.menu-category-tabs .menu-tab,
.menu-more-toggle {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  border: 1.5px solid rgba(29,20,15,.12);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  cursor: pointer;
  padding: .75rem .85rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.15;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.menu-category-tabs .menu-tab:hover,
.menu-category-tabs .menu-tab:focus-visible,
.menu-more-toggle:hover,
.menu-more-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(12,122,67,.35);
}

.menu-category-tabs .menu-tab.active,
.menu-more-toggle.active {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  border-color: transparent;
  color: #fff;
}

.menu-more-toggle {
  background: linear-gradient(135deg, rgba(12,122,67,.08), rgba(210,168,87,.16));
  border-style: dashed;
}

.menu-more-toggle span:last-child {
  font-size: .85rem;
  opacity: .75;
}

.menu-category-more[hidden] {
  display: none;
}

.menu-category-more {
  margin-top: .75rem;
}

.menu-more-panel {
  display: grid;
  gap: .8rem;
  border-radius: 20px;
  background: var(--cream);
  border: 1px solid rgba(29,20,15,.1);
  padding: .85rem;
}

.menu-more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-more-close {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: .6rem .85rem;
}

.menu-more-grid {
  max-height: min(45vh, 470px);
  overflow: auto;
  padding-right: .2rem;
}

.menu-results-heading,
.menu-empty {
  grid-column: 1 / -1;
}

.menu-results-heading {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(29,20,15,.07);
  border-radius: 22px;
  padding: 1rem 1.1rem;
}

.menu-results-heading h3 {
  margin: .25rem 0 0;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.menu-empty {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  padding: 1.15rem;
  color: var(--muted);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.menu-item-category {
  margin-bottom: .45rem;
  color: var(--green);
}

@media (max-width: 1180px) {
  .order-shell.menu-app {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  }

  .menu-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 980px) {
  .order-shell.menu-app {
    display: block;
    padding: 1rem;
  }

  .order-shell.menu-app .menu-category-tabs {
    position: sticky;
    top: 5.5rem;
    z-index: 80;
    margin: -.15rem 0 1rem;
  }

  .menu-category-nav {
    border-radius: 22px;
    padding: .8rem;
    box-shadow: 0 12px 30px rgba(29,20,15,.12);
  }

  .menu-category-header {
    display: none;
  }

  .menu-search-label {
    margin-bottom: .75rem;
  }

  .menu-search-input {
    min-height: 50px;
  }

  .menu-category-label {
    display: none;
  }

  .menu-category-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: .55rem;
    overflow-x: auto;
    padding: 0 0 .15rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-category-bar::-webkit-scrollbar {
    display: none;
  }

  .menu-category-tabs .menu-tab,
  .menu-more-toggle {
    flex: 0 0 auto;
    width: auto;
    min-height: 46px;
    border-radius: 999px;
    padding: .72rem .95rem;
    white-space: nowrap;
    scroll-snap-align: start;
    justify-content: center;
  }

  .menu-category-more {
    position: fixed;
    inset: 0;
    z-index: 700;
    display: grid;
    align-items: end;
    background: rgba(29,20,15,.48);
    margin: 0;
    padding: 1rem;
  }

  .menu-category-more[hidden] {
    display: none;
  }

  .menu-more-panel {
    max-height: min(78vh, 680px);
    overflow: auto;
    border-radius: 30px 30px 22px 22px;
    background: linear-gradient(180deg, var(--cream), var(--cream-deep));
    padding: 1rem;
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
  }

  .menu-more-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, var(--cream), rgba(251,246,239,.92));
    padding-bottom: .8rem;
  }

  .menu-more-close {
    display: inline-flex;
  }

  .menu-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .menu-more-grid .menu-tab {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    border-radius: 18px;
  }

  .menu-layout,
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .order-shell.menu-app {
    width: calc(100% + 1rem);
    margin-left: -.5rem;
    margin-right: -.5rem;
    padding: .75rem;
    border-radius: 24px;
  }

  .menu-category-tabs .menu-tab,
  .menu-more-toggle {
    font-size: .9rem;
    padding: .68rem .85rem;
  }

  .menu-more-grid {
    grid-template-columns: 1fr;
  }

  .menu-results-heading h3 {
    font-size: 1.35rem;
  }
}

/* Ordering availability + refined category controls */
.menu-ordering-status {
  display: grid;
  gap: .25rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(198,40,40,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198,40,40,.08), rgba(210,168,87,.12));
  padding: .85rem .95rem;
  color: var(--ink);
}

.menu-ordering-status strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
}

.menu-ordering-status span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-category-nav > .menu-more-toggle {
  margin-top: .7rem;
}

.menu-add-disabled,
.button[disabled],
button[disabled] {
  cursor: not-allowed;
  opacity: .62;
  transform: none !important;
}

.menu-add-disabled {
  background: linear-gradient(135deg, var(--brown), #3d2a1f);
}

.cart-empty-secondary {
  margin-top: -.35rem;
  font-size: .95rem;
}

.cart-empty-secondary a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .menu-category-nav > .menu-more-toggle {
    width: 100%;
    margin-top: .65rem;
    border-radius: 999px;
    justify-content: center;
  }

  .menu-ordering-status {
    margin-bottom: .75rem;
    border-radius: 18px;
    padding: .75rem .85rem;
  }
}

/* Sticky menu/cart refinements */
@media (min-width: 981px) {
  .cart-panel {
    position: sticky !important;
    top: 7.25rem;
    align-self: start;
    max-height: calc(100vh - 8.75rem);
    overflow: auto;
  }
}

.menu-mobile-category-toggle {
  display: none;
}

@media (max-width: 980px) {
  .order-shell.menu-app .menu-category-tabs {
    position: -webkit-sticky;
    position: sticky;
    top: calc(6.8rem + env(safe-area-inset-top));
    z-index: 180;
  }

  .menu-mobile-category-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    border: 1.5px solid rgba(29,20,15,.1);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,228,207,.78));
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(29,20,15,.08);
    cursor: pointer;
    padding: .75rem .9rem;
    margin-bottom: .75rem;
    text-align: left;
  }
}

@media (max-width: 709px) {
  .order-shell.menu-app .menu-category-tabs {
    top: calc(5.5rem + env(safe-area-inset-top))
  }

  .menu-mobile-category-toggle span,
  .menu-mobile-category-toggle em {
    color: var(--muted);
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-mobile-category-toggle strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--heading);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .menu-category-nav.is-collapsed .menu-search-label,
  .menu-category-nav.is-collapsed .menu-category-label,
  .menu-category-nav.is-collapsed .menu-category-bar,
  .menu-category-nav.is-collapsed > .menu-more-toggle,
  .menu-category-nav.is-collapsed > .menu-category-more {
    display: none;
  }
}

.mobile-cart-dock,
.cart-toast {
  display: none;
}

@media (max-width: 980px) {
  body.has-mobile-cart-dock {
    padding-bottom: 6.4rem;
  }

  .mobile-cart-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 650;
    display: block;
    padding: .75rem .9rem max(.75rem, env(safe-area-inset-bottom));
    pointer-events: none;
  }

  .mobile-cart-dock[hidden] {
    display: none;
  }

  .mobile-cart-bar,
  .mobile-cart-sheet {
    pointer-events: auto;
  }

  .mobile-cart-bar {
    width: min(100%, 720px);
    margin: 0 auto;
    min-height: 62px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: #fff;
    box-shadow: 0 18px 50px rgba(29,20,15,.28);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem .95rem .8rem 1.1rem;
    text-align: left;
  }

  .mobile-cart-bar span,
  .mobile-cart-bar em,
  .mobile-cart-bar strong,
  .mobile-cart-bar b {
    display: block;
  }

  .mobile-cart-bar strong {
    font-family: var(--heading);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1;
    font-size: 1rem;
  }

  .mobile-cart-bar em {
    margin-top: .2rem;
    font-style: normal;
    color: rgba(255,255,255,.84);
    font-size: .9rem;
    font-weight: 800;
  }

  .mobile-cart-bar b {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    padding: .65rem .9rem;
    font-weight: 900;
  }

  .mobile-cart-sheet {
    width: min(100%, 720px);
    max-height: min(65vh, 560px);
    overflow: auto;
    margin: 0 auto .65rem;
    border-radius: 26px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 22px 70px rgba(29,20,15,.32);
    padding: 1rem;
  }

  .mobile-cart-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(29,20,15,.1);
  }

  .mobile-cart-sheet-header span {
    display: block;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-cart-sheet-header strong {
    display: block;
    font-family: var(--heading);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1;
    margin-top: .2rem;
  }

  .mobile-cart-sheet-header button {
    border: 0;
    border-radius: 999px;
    background: var(--cream-deep);
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    padding: .6rem .85rem;
  }

  .mobile-cart-sheet-items {
    display: grid;
    gap: .55rem;
    padding: .85rem 0;
  }

  .mobile-cart-sheet-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .9rem;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-cart-sheet-item span {
    color: var(--ink);
  }

  .mobile-cart-sheet-item strong {
    white-space: nowrap;
  }

  .mobile-cart-sheet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    padding-top: .85rem;
    border-top: 2px solid rgba(29,20,15,.1);
  }

  .mobile-cart-sheet-actions .button,
  .mobile-cart-sheet-actions .button-outline {
    width: 100%;
    min-height: 52px;
    padding: .85rem .9rem;
  }

  .cart-toast {
    position: fixed;
    left: 50%;
    bottom: calc(5.4rem + env(safe-area-inset-bottom));
    z-index: 900;
    display: block;
    width: min(calc(100% - 2rem), 560px);
    border-radius: 999px;
    background: rgba(29,20,15,.94);
    color: #fff;
    box-shadow: 0 18px 50px rgba(29,20,15,.28);
    padding: .9rem 1.1rem;
    font-weight: 900;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .cart-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 540px) {
  .mobile-cart-sheet-actions {
    grid-template-columns: 1fr;
  }

  .mobile-cart-bar {
    border-radius: 22px;
  }
}

.cart-panel {
  scroll-margin-top: 8rem;
}

/* Clover item photos */
.menu-item-card.has-image {
  padding: 0;
  overflow: hidden;
  align-content: start;
}

.menu-item-card-body {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  min-height: 100%;
}

.menu-item-card-copy {
  min-width: 0;
}

.menu-item-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12,122,67,.08), rgba(210,168,87,.18)),
    var(--cream-deep);
}

.menu-item-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
}

.menu-item-card.has-image .menu-item-card-footer {
  margin-top: auto;
}

@media (min-width: 1181px) {
  .menu-item-card.has-image {
    grid-template-rows: auto 1fr;
  }
}

@media (max-width: 980px) {
  .menu-item-photo-wrap {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 540px) {
  .menu-item-card.has-image .menu-item-card-body {
    padding: 1rem;
  }

  .menu-item-photo-wrap {
    aspect-ratio: 4 / 3;
  }
}


/* Location Map Section */
.location-map-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(210,168,87,.22), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(198,40,40,.12), transparent 24%),
    linear-gradient(180deg, #3d2a1f 0%, #231813 100%);
  overflow: hidden;
}

.location-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.06), transparent 40%),
    repeating-linear-gradient(135deg, rgba(231,208,171,.035) 0 2px, transparent 2px 20px);
  opacity: .8;
}

.location-map-section > .container {
  position: relative;
  z-index: 1;
}

.location-map-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 1.2rem;
}

.location-copy .section-intro {
  margin: 0;
}

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

.location-info-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 1rem 1.1rem;
}

.location-info-card strong,
.location-info-card span {
  display: block;
}

.location-info-card strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: .45rem;
}

.location-info-card span {
  color: rgba(255,255,255,.84);
  font-weight: 700;
}

.location-info-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  margin-top: .25rem;
}

.location-directions-button {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}

.location-map-card {
  position: relative;
}

.location-map-card::before {
  content: "";
  position: absolute;
  inset: -1rem 1.2rem 1.2rem -1rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(12,122,67,.46), rgba(210,168,87,.26));
  transform: rotate(-2deg);
}

.responsive-map-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 11;
  border: 8px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.30);
}

.responsive-map-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* Footer Refresh */
.footer {
  position: relative;
  background:
    radial-gradient(circle at 16% 0%, rgba(12,122,67,.22), transparent 26%),
    radial-gradient(circle at 84% 4%, rgba(198,40,40,.16), transparent 25%),
    linear-gradient(180deg, #1f140f 0%, #120b08 100%);
  color: #fff;
  padding: 4.4rem 0 1.5rem;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, rgba(231,208,171,.035) 0 2px, transparent 2px 18px);
  opacity: .55;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(210px, .85fr) minmax(180px, .6fr) minmax(260px, .95fr);
  gap: 1.1rem;
  align-items: stretch;
}

.footer-about,
.footer-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.footer-about {
  padding: 1.45rem;
}

.footer-card {
  padding: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  width: 92px;
  margin-bottom: .95rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.25));
}

.footer-brand strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #fff;
}

.footer-brand span,
.footer p,
.footer small,
.footer-card td,
.footer-card a {
  color: rgba(255,255,255,.76);
}

.footer p {
  margin: .9rem 0 0;
}

.footer h3 {
  margin: 0 0 .9rem;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
}

.footer a {
  transition: color .2s ease, transform .2s ease, background .2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--sand);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}

.footer-socials a,
.footer-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-weight: 900;
  padding: .58rem .82rem;
}

.footer-socials a:hover,
.footer-link-button:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}

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

.footer-nav a {
  font-weight: 800;
}

.footer-visit-card p:first-of-type {
  margin-top: 0;
}

.footer-hours-table td {
  border-bottom-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}

.footer-hours-table td:last-child {
  text-align: right;
  font-weight: 900;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.11);
  margin-top: 1.25rem;
  padding-top: 1.15rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  font-size: .92rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .location-map-layout {
    grid-template-columns: 1fr;
  }

  .location-map-card::before {
    inset: -.6rem .8rem .8rem -.6rem;
  }

  .responsive-map-shell {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .location-info-grid,
  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding-top: 3.25rem;
  }
}


/* Inner Page Refresh */
body:not(.home-page) .top-strip {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

body:not(.home-page) .brand-copy strong,
body:not(.home-page) .nav-links a,
body:not(.home-page) .lang-switch {
  color: var(--ink);
}

body:not(.home-page) .brand-copy span {
  color: var(--muted);
}

.inner-page-hero {
  min-height: 54vh;
  display: grid;
  align-items: end;
  padding: 11rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(35,24,19,.70), rgba(35,24,19,.42) 45%, rgba(61,42,31,.88)),
    var(--page-hero-image, url('/assets/img/hometown-collage.jpg')) center/cover no-repeat;
}

.inner-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(0deg, rgba(29,20,15,.38), transparent);
  pointer-events: none;
}

.inner-page-hero .container {
  position: relative;
  z-index: 1;
}

.inner-page-hero p {
  max-width: 64ch;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: rgba(255,255,255,.88);
}

.about-page-hero {
  min-height: 72vh;
  padding-bottom: 6rem;
}

/* About page matching heritage feature cards */
.about-feature-band {
  align-items: stretch;
}

.about-feature-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 1.15rem;
  height: 100%;
  overflow: hidden;
}

.about-feature-card .eyebrow {
  margin-bottom: -.25rem;
}

.about-feature-card .section-title-full {
  font-size: clamp(2.45rem, 4.15vw, 5.05rem);
  line-height: .92;
  max-width: 12ch;
  min-height: 4.6em;
  margin: 0;
}

.about-feature-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
  background: #231813;
}

.about-feature-media video,
.about-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-feature-card p {
  align-self: end;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

@media (max-width: 1180px) {
  .about-feature-card .section-title-full {
    font-size: clamp(2.15rem, 4.6vw, 4rem);
    min-height: auto;
    max-width: 13ch;
  }
}

@media (max-width: 980px) {
  .about-feature-band {
    grid-template-columns: 1fr;
  }

  .about-feature-card {
    grid-template-rows: auto;
  }

  .about-feature-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .about-feature-card {
    padding: 1.25rem;
  }

  .about-feature-card .section-title-full {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .about-feature-media {
    aspect-ratio: 4 / 3;
  }
}


/* About community intro video  */
.about-community-intro-media {
  max-width: none;
  display: grid;
  grid-template-columns: .8fr .9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.about-community-intro-copy {
  max-width: 620px;
}

.about-community-intro-video-wrap {
  width: 100%;
  min-width: 0;
}

.about-community-intro-video {
  width: calc(100% + 14vw);
  margin: -200px -14vw 0 0;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.about-community-intro-video video {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

@media (max-width: 980px) {
  .about-community-intro-media {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-community-intro-video-wrap {
    order: 1;
  }

  .about-community-intro-copy {
    order: 2;
  }

  .about-community-intro-copy .section-title-full {
    max-width: 100%;
  }

  .about-community-intro-video {
    width: calc(100% + 200px);
    margin: -112px -200px 0 0;
    padding: 0 0 0 45px;
    background: none;
  }

  .about-community-intro-video video {
    aspect-ratio: 5 / 3;
  }
}

@media (max-width: 620px) {
  .about-community-intro-video {
    width: calc(100% + 160px);
    margin: -88px -160px 0 0;
    padding-left: 32px;
  }

  .about-community-intro-video video {
    aspect-ratio: 4 / 3;
  }
}

/* About page timeline section */
.about-timeline-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(210,168,87,.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(198,40,40,.12), transparent 24%),
    linear-gradient(180deg, #3d2a1f 0%, #231813 100%);
}

.about-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,.055), transparent 40%),
    repeating-linear-gradient(135deg, rgba(231,208,171,.035) 0 2px, transparent 2px 20px);
  opacity: .85;
}

.about-timeline-section > .container {
  position: relative;
  z-index: 1;
}

.about-timeline-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-timeline-intro {
  position: sticky;
  top: 7.5rem;
  display: grid;
  gap: 1rem;
}

.about-timeline-intro .section-title-full {
  max-width: 11ch;
}

.about-timeline-quote {
  margin-top: .75rem;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.about-timeline-quote strong,
.about-timeline-quote span {
  display: block;
}

.about-timeline-quote strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.about-timeline-quote span {
  margin-top: .35rem;
  color: rgba(255,255,255,.74);
  font-weight: 700;
}

.about-timeline-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.about-timeline-list::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 1.15rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(231,208,171,.12));
}

.about-timeline-item {
  position: relative;
  display: grid;
  gap: .45rem;
  margin-left: 2.7rem;
  padding: 1.25rem 1.3rem;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
  backdrop-filter: blur(6px);
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -2.05rem;
  top: 1.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow:
    0 0 0 7px rgba(210,168,87,.12),
    0 8px 22px rgba(0,0,0,.22);
}

.about-timeline-date {
  display: inline-flex;
  width: fit-content;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(210,168,87,.13);
  color: var(--sand);
  border: 1px solid rgba(231,208,171,.20);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-timeline-item h3 {
  margin: .15rem 0 0;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .035em;
  line-height: 1;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.about-timeline-item p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

@media (max-width: 980px) {
  .about-timeline-layout {
    grid-template-columns: 1fr;
  }

  .about-timeline-intro {
    position: relative;
    top: auto;
  }

  .about-timeline-intro .section-title-full {
    max-width: 13ch;
  }
}

@media (max-width: 640px) {
  .about-timeline-intro .section-title-full {
    max-width: none;
  }

  .about-timeline-list::before {
    left: .65rem;
  }

  .about-timeline-item {
    margin-left: 1.85rem;
    padding: 1.05rem;
    border-radius: 22px;
  }

  .about-timeline-item::before {
    left: -1.7rem;
  }
}

.page-hero-compact,
.page-hero-plain {
  min-height: auto;
  padding: 9rem 0 3.25rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(210,168,87,.18), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--cream-deep));
  color: var(--ink);
}

.page-hero-plain::after {
  display: none;
}

.page-hero-plain p,
.page-hero-plain .breadcrumbs {
  color: var(--muted);
  opacity: 1;
}

.page-hero-plain .eyebrow {
  color: var(--red);
}

.hero-image-placeholder {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(12,122,67,.14), rgba(198,40,40,.10)),
    var(--cream-deep);
}

.hero-image-placeholder img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-story-layout p:not(.section-intro) {
  color: var(--muted);
  max-width: 70ch;
}

.inner-heritage-section .texture-box {
  min-height: 100%;
}

.inner-story-video {
  align-items: center;
}

.menu-seo-highlights .card {
  min-height: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.faq-layout .accordion details p {
  color: var(--muted);
  margin-bottom: 0;
}

.reviews-directory-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(210,168,87,.22), transparent 24%),
    linear-gradient(180deg, #fff, #fbf6ef);
}

.reviews-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.reviews-page-stats div {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(29,20,15,.08);
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: 0 14px 36px rgba(29,20,15,.08);
}

.reviews-page-stats strong {
  display: block;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  font-size: 1.25rem;
}

.reviews-page-stats span {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
}

.reviews-directory-grid {
  columns: 3 300px;
  column-gap: 1.2rem;
}

.review-directory-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.2rem;
  break-inside: avoid;
  background: linear-gradient(180deg, #fff, #fdf9f4);
  border: 1px solid rgba(29,20,15,.07);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(29,20,15,.09);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.review-directory-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: .75rem;
}

.review-stars {
  color: var(--gold);
  letter-spacing: .08em;
  font-size: .86rem;
  font-weight: 900;
}

.review-directory-card p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}

.review-directory-card .quote-footer {
  display: grid;
  gap: .1rem;
}

.review-directory-card .quote-footer strong {
  color: var(--ink);
}

.review-directory-card .quote-footer span {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-page-grid .display {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-layout {
  max-width: 980px;
}

.legal-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-card h2 {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  margin-top: 2rem;
}

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

.not-found-section {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 10rem;
}

.not-found-card {
  text-align: center;
}

.not-found-card .section-intro {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .inner-page-hero {
    min-height: 46vh;
    padding: 9rem 0 4rem;
  }

  .about-page-hero {
    min-height: 62vh;
  }

  .faq-layout,
  .reviews-page-stats {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: grid;
  }
}

@media (max-width: 720px) {
  .inner-page-hero {
    min-height: 42vh;
    padding: 8.25rem 0 3.25rem;
  }

  .page-hero-compact,
  .page-hero-plain {
    padding: 7.5rem 0 2.5rem;
  }

  .reviews-directory-grid {
    columns: 1;
  }

  .legal-card {
    border-radius: 24px;
  }
}


/* Inner page video heroes */
.video-hero-page:not(.scrolled) .brand-logo-light {
  opacity: 1;
}

.video-hero-page:not(.scrolled) .brand-logo-dark {
  opacity: 0;
}

.video-hero-page:not(.scrolled) .brand-copy strong,
.video-hero-page:not(.scrolled) .nav-links a,
.video-hero-page:not(.scrolled) .lang-switch {
  color: #fff;
}

.video-hero-page:not(.scrolled) .brand-copy span {
  color: rgba(255,255,255,.78);
}

.video-hero-page.scrolled .top-strip {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
}

.video-page-hero {
  min-height: 78svh;
  padding: 11rem 0 clamp(4.75rem, 8vw, 7rem);
  display: grid;
  align-items: end;
  background: #2f2219;
  isolation: isolate;
}

.video-page-hero.about-page-hero {
  min-height: 88svh;
}

.video-page-hero.menu-page-hero,
.video-page-hero.reviews-page-hero {
  min-height: 78svh;
}

.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(29,20,15,.78), rgba(29,20,15,.44) 46%, rgba(29,20,15,.18)),
    linear-gradient(90deg, rgba(29,20,15,.62), rgba(29,20,15,.12) 56%, rgba(29,20,15,.34));
}

.video-page-hero::after {
  z-index: 2;
  height: 10rem;
  background: linear-gradient(0deg, rgba(29,20,15,.58), transparent);
}

.video-page-hero .inner-hero-content {
  position: relative;
  z-index: 3;
  max-width: 940px;
}

.video-page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

.video-page-hero.menu-page-hero h1,
.video-page-hero.reviews-page-hero h1 {
  max-width: 14ch;
}

.video-page-hero p {
  max-width: 66ch;
  color: rgba(255,255,255,.9);
}

@media (max-width: 980px) {
  .video-page-hero,
  .video-page-hero.menu-page-hero,
  .video-page-hero.reviews-page-hero {
    min-height: 70svh;
    padding: 9rem 0 4.25rem;
  }

  .video-page-hero.about-page-hero {
    min-height: 78svh;
  }

  .video-page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
}

@media (max-width: 720px) {
  .video-page-hero,
  .video-page-hero.menu-page-hero,
  .video-page-hero.reviews-page-hero {
    min-height: 66svh;
    padding: 8.5rem 0 3.5rem;
  }

  .video-page-hero.about-page-hero {
    min-height: 74svh;
  }

  .video-page-hero h1 {
    font-size: clamp(2.1rem, 12vw, 4rem);
  }
}


/* Solid header + shorter heroes for non-video inner pages */
body.faq-page .site-header,
body.contact-page .site-header,
body.visit-page .site-header,
body.legal-page .site-header,
body.not-found-page .site-header {
  background:
    linear-gradient(180deg, rgba(251,246,239,.98), rgba(242,228,207,.94));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29,20,15,.08);
  box-shadow: 0 14px 34px rgba(29,20,15,.10);
}

body.faq-page .brand-logo-light,
body.contact-page .brand-logo-light,
body.visit-page .beand-logo-light,
body.legal-page .brand-logo-light,
body.not-found-page .brand-logo-light {
  opacity: 0;
}

body.faq-page .brand-logo-dark,
body.contact-page .brand-logo-dark,
body.visit-page .brand-logo-dark,
body.legal-page .brand-logo-dark,
body.not-found-page .brand-logo-dark {
  opacity: 1;
}

body.faq-page .brand-copy strong,
body.faq-page .nav-links a,
body.faq-page .lang-switch,
body.contact-page .brand-copy strong,
body.contact-page .nav-links a,
body.contact-page .lang-switch,
body.visit-page .brand-copy strong,
body.visit-page .nav-links a,
body.visit-page .lang-switch,
body.legal-page .brand-copy strong,
body.legal-page .nav-links a,
body.legal-page .lang-switch,
body.not-found-page .brand-copy strong,
body.not-found-page .nav-links a,
body.not-found-page .lang-switch  {
  color: var(--ink);
}

body.faq-page .brand-copy span,
body.contact-page .brand-copy span,
body.visit-page .brand-copy span,
body.legal-page .brand-copy span
body.not-found-page .brand-copy span {
  color: var(--muted);
}

body.faq-page .inner-page-hero,
body.contact-page .inner-page-hero,
body.visit-page .inner-page-hero {
  min-height: 42vh;
  padding: 8.5rem 0 3.75rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(210,168,87,.22), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(198,40,40,.10), transparent 24%),
    linear-gradient(180deg, #3d2a1f 0%, #231813 100%);
}
body.not-found-page .page-hero-plain 
body.legal-page .page-hero-plain {
  padding: 7.8rem 0 2.75rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(210,168,87,.18), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, #f2e4cf 100%);
}

@media (max-width: 720px) {
  body.not-found-page .inner-page-hero,
  body.visit-page .inner-page-hero,
  body.faq-page .inner-page-hero,
  body.contact-page .inner-page-hero {
    min-height: 36vh;
    padding: 7.4rem 0 2.8rem;
  }

  body.not-found-page  .page-hero-plain, body.legal-page .page-hero-plain {
    padding: 7rem 0 2.35rem;
  }
}

/* About page community + White Doves section */

.about-community-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(210,168,87,.16), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(12,122,67,.10), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
}

.about-community-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.58), transparent 42%),
    repeating-linear-gradient(135deg, rgba(95,67,50,.024) 0 2px, transparent 2px 20px);
  opacity: .8;
}

.about-community-section > .container {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.about-community-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  border-radius: 34px;
  border: 1px solid rgba(29,20,15,.08);
  background: rgba(255,255,255,.58);
  box-shadow: 0 24px 70px rgba(29,20,15,.08);
  backdrop-filter: blur(6px);
}

.about-community-feature--reverse {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.08fr);
}

.about-community-feature--reverse .about-community-main {
  order: 2;
}

.about-community-feature--reverse .about-community-side {
  order: 1;
}

.about-community-main {
  display: grid;
  gap: 1rem;
}

.about-community-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: .98;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 12ch;
}

.about-community-main p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-community-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #231813;
  box-shadow: 0 24px 70px rgba(29,20,15,.16);
}

.about-community-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-community-side {
  display: grid;
  gap: 1rem;
  align-self: start;
  padding-top: 1.4rem;
}

.about-community-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(29,20,15,.08);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(29,20,15,.10);
  padding: 1.2rem 1.15rem;
}

.about-community-card strong,
.about-community-card span {
  display: block;
}

.about-community-card strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.02;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: .45rem;
}

.about-community-card span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.about-community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .15rem;
}

@media (max-width: 980px) {
  .about-community-feature,
  .about-community-feature--reverse {
    grid-template-columns: 1fr;
  }

  .about-community-feature--reverse .about-community-main,
  .about-community-feature--reverse .about-community-side {
    order: initial;
  }

  .about-community-side {
    padding-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-community-title,
  .about-community-intro .section-title-full {
    max-width: none;
  }

  .about-community-video {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .about-community-side {
    grid-template-columns: 1fr;
  }

  .about-community-actions .button,
  .about-community-actions .button-outline {
    width: 100%;
  }
}

.about-community-highlight-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: .55rem;
  padding: 1.25rem;
  border-radius: 26px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(35,24,19,.15), rgba(35,24,19,.78)),
    radial-gradient(circle at 18% 14%, rgba(210,168,87,.38), transparent 34%),
    linear-gradient(135deg, var(--green), var(--red));
  box-shadow: 0 18px 48px rgba(29,20,15,.14);
  overflow: hidden;
}

.about-community-highlight-card span {
  color: var(--sand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}

.about-community-highlight-card strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

/* About community section supporting content */
.about-community-copy-card span {
  font-size: 1rem;
  line-height: 1.65;
}

.about-community-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.about-community-mini-stats div {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: .35rem;
  padding: 1rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(210,168,87,.20), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,239,.96));
  border: 1px solid rgba(29,20,15,.08);
  box-shadow: 0 14px 34px rgba(29,20,15,.08);
}

.about-community-mini-stats strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  color: var(--green);
}

.about-community-mini-stats span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.about-community-quote-card {
  position: relative;
  padding: 1.35rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(61,42,31,.95), rgba(35,24,19,.96));
  color: #fff;
  box-shadow: 0 18px 48px rgba(29,20,15,.14);
  overflow: hidden;
}

.about-community-quote-card::after {
  content: ' “ ';
  position: absolute;
  right: .8rem;
  bottom: -.55rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(231,208,171,.14);
}

.about-community-quote-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  line-height: 1.55;
}

@media (min-width: 981px) {
  .about-community-feature {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  }

  .about-community-feature--reverse {
    grid-template-columns: minmax(340px, .78fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .about-community-mini-stats {
    grid-template-columns: 1fr;
  }

  .about-community-mini-stats div {
    min-height: auto;
  }
}


/* Creative 404 page */
.notfound-page-hero {
  min-height: 78vh;
  padding: 11rem 0 6rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(198,40,40,.16), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(210,168,87,.18), transparent 28%),
    linear-gradient(180deg, rgba(35,24,19,.88), rgba(35,24,19,.60) 42%, rgba(61,42,31,.94));
}

.notfound-page-hero::after {
  background: linear-gradient(0deg, rgba(29,20,15,.48), transparent);
}

.notfound-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .88fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.notfound-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.65rem);
  max-width: 10ch;
  margin-bottom: 1rem;
}

.notfound-copy p {
  max-width: 62ch;
}

.notfound-tagline {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--sand) !important;
  margin-bottom: .7rem;
}

.notfound-outline {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.notfound-outline:hover {
  background: rgba(255,255,255,.12);
}

.notfound-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.55rem;
}

.notfound-popular span {
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}

.notfound-popular a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 800;
}

.notfound-popular a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
}

.notfound-visual-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(9, 5, 4, .28);
  backdrop-filter: blur(14px);
}

.notfound-visual-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-width: 3.15rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}

.notfound-visual-map {
  position: relative;
  min-height: 360px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(251,246,239,.98), rgba(242,228,207,.98)),
    url('/assets/img/grain.png') center/cover repeat;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(29,20,15,.08);
}

.notfound-visual-map::before,
.notfound-visual-map::after {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 22px;
  pointer-events: none;
}

.notfound-visual-map::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(95,67,50,.07) 12.3% 12.8%, transparent 13% 36%, rgba(95,67,50,.07) 36.3% 36.8%, transparent 37% 62%, rgba(95,67,50,.07) 62.3% 62.8%, transparent 63% 100%),
    linear-gradient(transparent 0 16%, rgba(95,67,50,.07) 16.3% 16.8%, transparent 17% 43%, rgba(95,67,50,.07) 43.3% 43.8%, transparent 44% 72%, rgba(95,67,50,.07) 72.3% 72.8%, transparent 73% 100%);
  opacity: .75;
}

.notfound-visual-map::after {
  inset: auto 1.3rem 1.3rem 1.3rem;
  height: 78px;
  background: linear-gradient(180deg, rgba(61,42,31,0), rgba(61,42,31,.08));
}

.map-line {
  position: absolute;
  border-radius: 999px;
  background: rgba(95,67,50,.16);
}

.map-line-one {
  width: 120%;
  height: 10px;
  top: 22%;
  left: -8%;
  transform: rotate(-14deg);
}

.map-line-two {
  width: 92%;
  height: 8px;
  top: 58%;
  left: 2%;
  transform: rotate(18deg);
}

.map-line-three {
  width: 66%;
  height: 8px;
  top: 42%;
  right: -2%;
  transform: rotate(-32deg);
}

.chip-trail {
  position: absolute;
  left: 18%;
  top: 18%;
  width: 56%;
  height: 44%;
  border: 4px dashed rgba(198,40,40,.62);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 40% 60% 54% 46% / 36% 44% 56% 64%;
  transform: rotate(12deg);
}

.chip {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f8e1b7, #d2a857 72%, #b98c35);
  box-shadow: 0 8px 18px rgba(29,20,15,.16);
}

.chip::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(143,29,29,.28);
}

.chip-one { top: 21%; left: 20%; }
.chip-two { top: 41%; left: 42%; }
.chip-three { top: 59%; left: 63%; }

.marker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-weight: 900;
  font-size: .84rem;
  box-shadow: 0 14px 28px rgba(29,20,15,.12);
}

.marker::before {
  content: "";
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 0 0 4px rgba(12,122,67,.12);
}

.marker-home { top: 12%; left: 54%; }
.marker-menu { top: 43%; left: 12%; }
.marker-visit { bottom: 12%; right: 12%; }

.notfound-visual-copy {
  margin-top: 1.4rem;
}

.notfound-visual-copy .eyebrow {
  color: var(--sand);
}

.notfound-visual-copy .display {
  color: #fff;
  max-width: 12ch;
}

.notfound-visual-copy p {
  color: rgba(255,255,255,.84);
  margin-bottom: 0;
}

.notfound-card-grid {
  gap: 1.35rem;
}

.notfound-card {
  display: flex;
  flex-direction: column;
}

.notfound-card p {
  flex: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 900;
  color: var(--green);
  margin-top: .4rem;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.notfound-support-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .9fr);
  gap: 1.5rem;
  align-items: start;
}

.notfound-support-card {
  height: 100%;
}

.notfound-mini-map {
  margin-top: 1rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.notfound-mini-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

@media (max-width: 1100px) {
  .notfound-hero-layout,
  .notfound-support-layout {
    grid-template-columns: 1fr;
  }

  .notfound-copy h1,
  .notfound-visual-copy .display {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .notfound-page-hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .notfound-visual-map {
    min-height: 280px;
  }

  .marker {
    font-size: .78rem;
    padding: .45rem .7rem;
  }

  .notfound-popular {
    gap: .55rem;
  }

  .notfound-popular a {
    min-height: 2.45rem;
    padding: .65rem .85rem;
    font-size: .92rem;
  }
}

/* Clover Modifier Dialog */
body.modifier-dialog-open {
  overflow: hidden;
}

.modifier-dialog {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(29, 20, 15, .58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.modifier-dialog[hidden] {
  display: none;
}

.modifier-dialog.is-open {
  opacity: 1;
  visibility: visible;
}

.modifier-dialog-card {
  width: min(100%, 680px);
  max-height: min(88svh, 760px);
  overflow: auto;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,246,239,.98)),
    var(--cream);
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
  border: 1px solid rgba(29,20,15,.1);
  transform: translateY(14px) scale(.98);
  transition: transform .22s ease;
}

.modifier-dialog.is-open .modifier-dialog-card {
  transform: translateY(0) scale(1);
}

.modifier-dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(29,20,15,.08);
}

.modifier-dialog-header h3 {
  margin: .25rem 0 .35rem;
  font-family: var(--heading);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.modifier-dialog-header p {
  margin: 0;
  color: var(--muted);
}

.modifier-dialog-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modifier-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.4rem 1.4rem;
}

.modifier-group {
  margin: 0;
  padding: 1rem;
  border: 1.5px solid rgba(29,20,15,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}

.modifier-group legend {
  display: grid;
  gap: .15rem;
  padding: 0 .35rem;
}

.modifier-group legend strong {
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  font-size: 1.2rem;
}

.modifier-group legend span,
.modifier-option em {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  font-style: normal;
}

.modifier-options {
  display: grid;
  gap: .6rem;
  margin-top: .85rem;
}

.modifier-option {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(29,20,15,.1);
  border-radius: 16px;
  background: #fff;
  padding: .75rem .85rem;
  cursor: pointer;
}

.modifier-option input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.modifier-option span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.modifier-note-label {
  display: grid;
  gap: .45rem;
  font-weight: 900;
}

.modifier-note-label textarea {
  width: 100%;
  border: 1.5px solid rgba(29,20,15,.14);
  border-radius: 16px;
  background: #fff;
  padding: .85rem 1rem;
}

.modifier-error {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.modifier-dialog-footer {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: .25rem;
}

.cart-modifiers {
  line-height: 1.35;
}

@media (max-width: 540px) {
  .modifier-dialog {
    align-items: end;
    padding: .75rem;
  }

  .modifier-dialog-card {
    width: 100%;
    max-height: 86svh;
    border-radius: 28px 28px 20px 20px;
  }

  .modifier-dialog-header,
  .modifier-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .modifier-option span {
    display: grid;
    gap: .15rem;
  }

  .modifier-dialog-footer .button,
  .modifier-dialog-footer .button-outline {
    width: 100%;
  }
}

/* Ordering button refinements */
.menu-item-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  flex-wrap: wrap;
}

.menu-item-card-actions .button,
.menu-item-card-actions .button-outline {
  min-height: 52px;
  height: auto;
  padding: .85rem 1rem;
}

.menu-options-button {
  background: rgba(255,255,255,.82);
  color: var(--green);
  border-color: rgba(12,122,67,.35);
  box-shadow: none;
}

.modifier-dialog-top-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .15rem;
}

.modifier-dialog-top-actions .button {
  min-height: 52px;
  height: auto;
}

@media (max-width: 540px) {
  .menu-item-card-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-item-card-actions .button,
  .menu-item-card-actions .button-outline,
  .modifier-dialog-top-actions .button {
    width: 100%;
  }

  .modifier-dialog-top-actions {
    justify-content: stretch;
  }
}

