
/* =========================================================
   AMI STORES — "Fuel & Fresh" recipe
   Design OS v1.1.0 · custom hybrid
   Composition: editorial-flow + bento hierarchy
   Surface: soft-elevated w/ hard-edge accent moments
   Theme: light w/ high-contrast dark bands
   Accent budget: orange = action/priority ONLY.
                  green = fresh/food decorative secondary.
   ========================================================= */

:root {
  /* --- reference palette --- */
  --ref-orange: #EA580C;      /* brand / action */
  --ref-orange-deep: #9A3412; /* readable orange-tone text @ AA */
  --ref-orange-tint: #FFF3EC;
  --ref-ink: #16130F;         /* near-black warm */
  --ref-ink-2: #1E1B16;
  --ref-charcoal: #26221C;
  --ref-slate: #5A544B;       /* muted body */
  --ref-line: #E9E3DB;
  --ref-canvas: #FBF8F4;      /* warm off-white */
  --ref-surface: #FFFFFF;
  --ref-surface-recessed: #F5F1EA;
  --ref-green: #16794C;       /* fresh accent */
  --ref-green-tint: #EAF6EF;
  --ref-gold: #F4B740;        /* highlight / stars */
  --ref-focus: #1D4ED8;
  --ref-white: #FFFFFF;

  /* --- semantic: surfaces --- */
  --bg-canvas: var(--ref-canvas);
  --bg-surface: var(--ref-surface);
  --bg-surface-recessed: var(--ref-surface-recessed);
  --bg-dark: var(--ref-ink);
  --bg-overlay: rgb(22 19 15 / 0.55);

  /* --- semantic: text --- */
  --text-primary: var(--ref-ink);
  --text-secondary: var(--ref-slate);
  --text-muted: #857D72;
  --text-inverse: #FDFBF8;
  --text-brand: var(--ref-orange-deep);
  --text-link: var(--ref-orange-deep);

  /* --- semantic: borders --- */
  --border-subtle: var(--ref-line);
  --border-default: #DAD2C7;
  --border-strong: var(--ref-ink);
  --border-focus: var(--ref-focus);

  /* --- semantic: actions --- */
  --action-primary: var(--ref-orange);
  --action-primary-hover: #D24E08;
  --action-primary-active: #B94406;
  --action-on-primary: #FFFFFF;

  /* --- type --- */
  --font-display: "Baloo 2", "Fredoka", system-ui, sans-serif;
  --font-head: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* --- spacing scale --- */
  --space-inline-control: 0.75rem;
  --space-stack-tight: 0.5rem;
  --space-stack-content: 1rem;
  --space-cluster: 1.5rem;
  --space-region: clamp(2.5rem, 6vw, 5rem);
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --space-page-gutter: clamp(1.1rem, 4vw, 3rem);
  --measure-reading: 60ch;

  /* --- shape --- */
  --radius-control: 0.7rem;
  --radius-card: 1.25rem;
  --radius-pill: 999px;
  --max-width: 1200px;

  /* --- elevation --- */
  --shadow-card: 0 1px 2px rgb(22 19 15 / 0.05), 0 10px 30px -12px rgb(22 19 15 / 0.14);
  --shadow-card-hover: 0 2px 6px rgb(22 19 15 / 0.08), 0 22px 46px -16px rgb(22 19 15 / 0.22);
  --shadow-header: 0 1px 0 var(--border-subtle), 0 10px 30px -20px rgb(22 19 15 / 0.4);

  /* --- motion --- */
  --motion-fast: 150ms;
  --motion-medium: 300ms;
  --ease-enter: cubic-bezier(0.2, 0, 0, 1);
  --ease-settle: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 68px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--text-link); }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--font-head); font-weight: 700; }
p { margin: 0; }
ul { margin: 0; }
:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: var(--space-page-gutter); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before { content: ""; width: 1.75rem; height: 3px; background: var(--action-primary); border-radius: 2px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  letter-spacing: -0.015em;
  line-height: 1;
}
.lede { color: var(--text-secondary); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 54ch; }
.skip-link {
  position: absolute; left: 0.75rem; top: -3rem;
  background: var(--ref-ink); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0.5rem; z-index: 100; transition: top var(--motion-fast);
}
.skip-link:focus { top: 0.75rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.5rem; min-height: 48px;
  border-radius: var(--radius-control); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform var(--motion-fast) var(--ease-settle),
              box-shadow var(--motion-fast), background var(--motion-fast);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-primary { background: var(--action-primary); color: var(--action-on-primary); box-shadow: 0 8px 20px -8px rgb(234 88 12 / 0.6); }
.btn-primary:hover { background: var(--action-primary-hover); }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--ref-ink); color: #fff; }
.btn-onDark { background: #fff; color: var(--ref-ink); }
.btn-onDark:hover { background: var(--ref-orange-tint); }
.btn-ghost-onDark { background: transparent; color: #fff; border-color: rgb(255 255 255 / 0.5); }
.btn-ghost-onDark:hover { background: rgb(255 255 255 / 0.12); border-color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
}
.btn:active { transform: translateY(0); }

/* placeholder marker for unfilled real data */
.ph { border-bottom: 2px dotted var(--action-primary); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(251 248 244 / 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-header);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--bg-canvas); } }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-mark {
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  color: #fff; background: var(--action-primary);
  padding: 0.28em 0.4em 0.22em; border-radius: 0.55rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px -6px rgb(234 88 12 / 0.7);
}
.brand-word {
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.28em;
  font-size: 0.95rem; color: var(--text-primary);
}
.nav-desktop { display: none; gap: 0.35rem; }
.nav-desktop a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  color: var(--text-primary); text-decoration: none;
  padding: 0.55rem 0.9rem; border-radius: var(--radius-control);
  position: relative; transition: color var(--motion-fast), background var(--motion-fast);
}
.nav-desktop a:hover { background: var(--ref-orange-tint); color: var(--text-brand); }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-call { display: none; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 0 12px;
  background: var(--ref-ink); border: none; border-radius: var(--radius-control);
  cursor: pointer;
}
.burger span { display: block; height: 2.5px; width: 100%; background: #fff; border-radius: 2px; transition: transform var(--motion-medium) var(--ease-settle), opacity var(--motion-fast); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer — collapsible, animated. Closed by default. */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: 49;
  background: rgb(22 19 15 / 0.98);
  backdrop-filter: blur(8px);
  padding: clamp(1.25rem, 5vw, 2rem);
  display: flex; flex-direction: column; gap: 0.5rem;
  /* closed state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--motion-medium) var(--ease-enter),
              transform var(--motion-medium) var(--ease-settle),
              visibility 0s linear var(--motion-medium);
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--motion-medium) var(--ease-enter),
              transform var(--motion-medium) var(--ease-settle),
              visibility 0s;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.mobile-nav nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 1.35rem;
  color: #FDFBF8; text-decoration: none;
  padding: 1rem 0.75rem; border-radius: var(--radius-control);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--motion-fast), color var(--motion-fast), padding-left var(--motion-fast);
}
.mobile-nav nav a::after { content: "→"; opacity: 0; transform: translateX(-6px); transition: opacity var(--motion-fast), transform var(--motion-fast); color: var(--ref-orange); }
.mobile-nav nav a:hover, .mobile-nav nav a:focus-visible { background: rgb(234 88 12 / 0.15); color: #FFB27A; padding-left: 1.25rem; }
.mobile-nav nav a:hover::after, .mobile-nav nav a:focus-visible::after { opacity: 1; transform: translateX(0); }
.mobile-nav .btn { font-size: 1.15rem; padding-block: 1.05rem; }
body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-call { display: inline-flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--ref-ink); color: var(--text-inverse); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgb(22 19 15 / 0.92) 0%, rgb(22 19 15 / 0.78) 42%, rgb(22 19 15 / 0.35) 78%, rgb(22 19 15 / 0.15) 100%),
    linear-gradient(0deg, rgb(22 19 15 / 0.6), rgb(22 19 15 / 0) 55%);
}
/* fallback gradient if image fails */
.hero-media { background: linear-gradient(125deg, #26221C 0%, #3a3229 45%, var(--ref-orange-deep) 130%); }
.hero-inner {
  position: relative; z-index: 1;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  display: grid; gap: var(--space-cluster);
  max-width: 44rem;
}
.hero .eyebrow { color: #FFB27A; }
.hero .eyebrow::before { background: var(--ref-orange); }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.98; letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--ref-orange); }
.hero h1 .fresh { color: #6FE0A6; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #E8E1D8; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem;
  padding-top: 0.5rem; margin-top: 0.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
}
.hero-trust div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: #E8E1D8; font-weight: 500; }
.hero-trust svg { width: 1.2rem; height: 1.2rem; color: var(--ref-gold); flex: none; }

/* ===================== MARQUEE STRIP ===================== */
.strip {
  background: var(--ref-orange); color: #fff;
  border-block: 3px solid var(--ref-ink);
  overflow: hidden;
}
.strip-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  padding-block: 0.7rem;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.95rem;
  animation: marquee 26s linear infinite;
}
.strip-track span { display: inline-flex; align-items: center; gap: 0.7rem; }
.strip-track b::before { content: "★"; margin-right: 0.7rem; color: var(--ref-ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
}

/* ===================== SECTION SHELL ===================== */
.section { padding-block: var(--space-section); }
.section-head { display: grid; gap: 0.9rem; margin-bottom: var(--space-region); max-width: 40rem; }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head.center .lede { margin-inline: auto; }

/* ===================== FUEL (split) ===================== */
.fuel { background: var(--bg-surface); }
.fuel-grid { display: grid; gap: var(--space-region); align-items: center; }
.fuel-media { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--ref-charcoal), var(--ref-orange-deep)); }
.fuel-media img { width: 100%; height: 100%; object-fit: cover; }
.fuel-badge {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--ref-ink); color: #fff; border-radius: var(--radius-control);
  padding: 0.7rem 1rem; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.fuel-badge b { color: var(--ref-gold); }
.fuel-features { display: grid; gap: 1rem; margin-top: 0.5rem; }
.fuel-feature { display: flex; gap: 0.85rem; align-items: flex-start; }
.fuel-feature .ic {
  flex: none; width: 2.6rem; height: 2.6rem; border-radius: 0.7rem;
  display: grid; place-items: center; background: var(--ref-orange-tint); color: var(--ref-orange-deep);
}
.fuel-feature .ic svg { width: 1.4rem; height: 1.4rem; }
.fuel-feature h3 { font-size: 1.1rem; font-family: var(--font-head); font-weight: 700; margin-bottom: 0.15rem; }
.fuel-feature p { color: var(--text-secondary); font-size: 0.97rem; }
@media (min-width: 860px) {
  .fuel-grid { grid-template-columns: 1.05fr 0.95fr; }
  .fuel-media { aspect-ratio: auto; height: 100%; min-height: 26rem; }
}

/* ===================== FOOD (bento) ===================== */
.food { background: var(--bg-canvas); position: relative; }
.food-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
.food-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 15rem; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  background: var(--ref-charcoal);
  box-shadow: var(--shadow-card);
  transition: transform var(--motion-medium) var(--ease-settle), box-shadow var(--motion-medium);
  isolation: isolate;
}
.food-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--motion-medium) var(--ease-settle);
}
.food-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgb(22 19 15 / 0.88) 0%, rgb(22 19 15 / 0.35) 55%, rgb(22 19 15 / 0.08) 100%);
}
.food-card .body { padding: 1.4rem; display: grid; gap: 0.3rem; width: 100%; }
.food-card .tag {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ref-gold);
}
.food-card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; letter-spacing: -0.01em; }
.food-card p { font-size: 0.92rem; color: #EAE3DA; }
.food-card .go {
  margin-top: 0.4rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: #fff;
}
.food-card .go svg { width: 1rem; height: 1rem; transition: transform var(--motion-fast); }
@media (hover: hover) and (pointer: fine) {
  .food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
  .food-card:hover img { transform: scale(1.06); }
  .food-card:hover .go svg { transform: translateX(4px); }
}
.food-card.is-feature { min-height: 20rem; }
@media (min-width: 720px) {
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .food-card.is-feature { grid-column: span 2; min-height: 24rem; }
}
@media (min-width: 1000px) {
  .food-grid { grid-template-columns: repeat(3, 1fr); }
  .food-card.is-feature { grid-column: span 2; grid-row: span 2; }
}
.food-note {
  margin-top: var(--space-region); text-align: center;
  color: var(--text-secondary); font-size: 0.95rem;
}

/* menu tabs */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 1.8rem;
}
.menu-tab {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 0.6rem 1.1rem; min-height: 44px; cursor: pointer;
  background: var(--bg-surface); color: var(--text-primary);
  border: 1.5px solid var(--border-default); border-radius: var(--radius-pill);
  transition: background var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast);
}
.menu-tab:hover { border-color: var(--action-primary); color: var(--text-brand); }
.menu-tab.is-active { background: var(--ref-ink); color: #fff; border-color: var(--ref-ink); }
.menu-panel {
  max-width: 62rem; margin-inline: auto;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.menu-sub {
  font-family: var(--font-head); font-weight: 600; font-style: italic;
  color: var(--text-brand); font-size: 1.05rem; margin-bottom: 1.2rem;
}
.menu-list { list-style: none; padding: 0; display: grid; gap: 0.2rem; }
.menu-list li {
  display: grid; gap: 0.15rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border-subtle);
}
.menu-list li:last-child { border-bottom: 0; }
.mi-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.mi-desc { color: var(--text-secondary); font-size: 0.95rem; }
@media (min-width: 640px) {
  .menu-list li { grid-template-columns: 15rem 1fr; gap: 1rem; align-items: baseline; }
}

/* ===================== EXPERIENCE (dark band) ===================== */
.experience { background: var(--ref-ink); color: var(--text-inverse); }
.experience .eyebrow { color: #FFB27A; }
.experience .section-title { color: #fff; }
.exp-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: var(--space-region); }
.exp-card {
  background: var(--ref-ink-2); border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius-card); padding: 1.6rem;
  display: grid; gap: 0.6rem;
}
.exp-card .ic {
  width: 3rem; height: 3rem; border-radius: 0.8rem; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ref-orange), var(--ref-orange-deep)); color: #fff; margin-bottom: 0.4rem;
}
.exp-card .ic svg { width: 1.5rem; height: 1.5rem; }
.exp-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff; }
.exp-card p { color: #C9C1B6; font-size: 0.96rem; }
.exp-card.fresh .ic { background: linear-gradient(135deg, #22A867, var(--ref-green)); }
@media (min-width: 680px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .exp-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===================== STATS ===================== */
.stats { background: var(--bg-surface); border-block: 1px solid var(--border-subtle); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--ref-orange); line-height: 1; letter-spacing: -0.01em; }
.stat .l { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===================== LOCATIONS ===================== */
.locations { background: var(--bg-canvas); }
.loc-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: var(--space-region); }
.loc-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 1.5rem;
  display: grid; gap: 0.7rem; box-shadow: var(--shadow-card);
  transition: transform var(--motion-fast) var(--ease-settle), box-shadow var(--motion-fast);
}
@media (hover: hover) and (pointer: fine) { .loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); } }
.loc-card .pin { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-brand); font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.loc-card .pin svg { width: 1.05rem; height: 1.05rem; }
.loc-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; }
.loc-card address { font-style: normal; color: var(--text-secondary); font-size: 0.96rem; line-height: 1.5; }
.loc-open { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: var(--ref-green); }
.loc-open .dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--ref-green); box-shadow: 0 0 0 3px var(--ref-green-tint); }
.loc-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.3rem; }
.loc-actions a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; text-decoration: none;
  padding: 0.55rem 0.9rem; min-height: 40px; border-radius: var(--radius-control);
}
.loc-actions .call { background: var(--ref-orange-tint); color: var(--text-brand); }
.loc-actions .call:hover { background: #FFE7D6; }
.loc-actions .dir { background: var(--ref-ink); color: #fff; }
.loc-actions .dir:hover { background: var(--ref-charcoal); }
.loc-actions svg { width: 1rem; height: 1rem; }
@media (min-width: 720px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
.loc-cta { margin-top: var(--space-region); text-align: center; display: grid; gap: 1rem; justify-items: center; }

/* Google-Maps-style store finder */
.storefinder {
  max-width: 44rem; margin-inline: auto;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
  overflow: hidden;
}
.sf-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface-recessed);
}
.sf-head-l { display: flex; align-items: center; gap: 0.55rem; font-size: 0.95rem; }
.sf-head-l svg { width: 1.15rem; height: 1.15rem; color: var(--action-primary); flex: none; }
.sf-head-l strong { font-family: var(--font-head); font-weight: 700; }
.sf-head-r { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--text-brand); text-decoration: none; white-space: nowrap; }
.sf-head-r:hover { text-decoration: underline; }
.sf-list { list-style: none; padding: 0; margin: 0; max-height: 34rem; overflow-y: auto; }
.sf-item {
  display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; align-items: center;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-subtle);
}
.sf-item:last-child { border-bottom: 0; }
.sf-item:hover { background: var(--ref-orange-tint); }
.sf-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.sf-addr { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.1rem; }
.sf-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 0.75rem; margin-top: 0.35rem; align-items: center; }
.sf-status { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 700; }
.sf-status .dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; flex: none; }
.sf-status.open { color: var(--ref-green); }
.sf-status.open .dot { background: var(--ref-green); }
.sf-status.soon { color: #B8860B; }
.sf-status.soon .dot { background: var(--ref-gold); }
.sf-status.closed { color: #9A3412; }
.sf-status.closed .dot { background: #9A3412; }
.sf-quote { color: var(--text-muted); font-size: 0.82rem; font-style: italic; }
.sf-actions { display: flex; gap: 0.5rem; }
.sf-actions a {
  display: inline-grid; place-items: center; gap: 0.15rem;
  width: 3.4rem; padding: 0.5rem 0; border-radius: var(--radius-control);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; text-decoration: none; text-align: center;
}
.sf-actions a svg { width: 1.15rem; height: 1.15rem; }
.sf-actions .sf-call { background: var(--ref-orange-tint); color: var(--text-brand); }
.sf-actions .sf-call:hover { background: #FFE7D6; }
.sf-actions .sf-dir { background: var(--ref-ink); color: #fff; }
.sf-actions .sf-dir:hover { background: var(--ref-charcoal); }
@media (max-width: 520px) {
  .sf-item { grid-template-columns: 1fr; }
  .sf-actions { justify-content: flex-start; }
}

/* ===================== CONTACT ===================== */
.contact { background: var(--ref-ink); color: var(--text-inverse); }
.contact .eyebrow { color: #FFB27A; }
.contact .section-title { color: #fff; }
.contact-grid { display: grid; gap: var(--space-region); margin-top: var(--space-region); }
.contact-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.c-card {
  background: var(--ref-ink-2); border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--radius-card); padding: 1.4rem;
  display: flex; gap: 1rem; align-items: center; text-decoration: none; color: #fff;
  transition: border-color var(--motion-fast), transform var(--motion-fast);
}
@media (hover: hover) and (pointer: fine) { .c-card:hover { border-color: var(--ref-orange); transform: translateY(-2px); } }
.c-card .ic { flex: none; width: 3rem; height: 3rem; border-radius: 0.8rem; display: grid; place-items: center; background: linear-gradient(135deg, var(--ref-orange), var(--ref-orange-deep)); color: #fff; }
.c-card .ic svg { width: 1.4rem; height: 1.4rem; }
.c-card .t { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.c-card .s { color: #C9C1B6; font-size: 0.9rem; }
@media (min-width: 560px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } .contact-cards { grid-template-columns: 1fr 1fr; } }

/* contact form */
.form-card { background: var(--ref-ink-2); border: 1px solid rgb(255 255 255 / 0.08); border-radius: var(--radius-card); padding: clamp(1.4rem, 3vw, 2rem); }
.form-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: #fff; margin-bottom: 0.3rem; }
.form-card p.sub { color: #C9C1B6; font-size: 0.95rem; margin-bottom: 1.2rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: #EAE3DA; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: #fff;
  background: rgb(255 255 255 / 0.05); border: 1.5px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-control); padding: 0.8rem 0.9rem; min-height: 48px; width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8A8378; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid #6FA0FF; outline-offset: 2px; border-color: transparent; }
.form-status { margin-top: 0.8rem; font-size: 0.95rem; font-weight: 600; }
.form-status.ok { color: #6FE0A6; }

/* ===================== FOOTER ===================== */
.site-footer { background: #0E0C0A; color: #C9C1B6; padding-block: var(--space-region) 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand .brand-mark { font-size: 1.4rem; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col a { display: block; color: #C9C1B6; text-decoration: none; padding: 0.3rem 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--ref-orange); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgb(255 255 255 / 0.1); display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-bottom .made { color: #8A8378; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

/* ===================== STICKY MOBILE BAR ===================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgb(22 19 15 / 0.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding: 0.6rem; gap: 0.6rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
}
.mobile-bar a {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem; min-height: 48px;
  border-radius: var(--radius-control); text-decoration: none;
}
.mobile-bar .call { background: var(--ref-orange); color: #fff; }
.mobile-bar .dir { background: #fff; color: var(--ref-ink); }
.mobile-bar svg { width: 1.15rem; height: 1.15rem; }
body { padding-bottom: 4.5rem; }
@media (min-width: 900px) { .mobile-bar { display: none; } body { padding-bottom: 0; } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease-enter), transform 0.6s var(--ease-enter); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===================== AI CHAT ASSISTANT ===================== */
.ami-chat { position: fixed; right: clamp(1rem, 3vw, 1.5rem); bottom: clamp(1rem, 3vw, 1.5rem); z-index: 60; }
@media (max-width: 899px) { .ami-chat { bottom: 5rem; } } /* clear sticky mobile bar */
.chat-launcher {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: #fff; background: linear-gradient(135deg, var(--ref-orange), var(--ref-orange-deep));
  padding: 0.85rem 1.25rem; border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px -8px rgb(234 88 12 / 0.6), 0 2px 8px rgb(0 0 0 / 0.2);
  transition: transform var(--motion-fast) var(--ease-settle), box-shadow var(--motion-fast);
}
.chat-launcher:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 40px -8px rgb(234 88 12 / 0.7); }
.chat-launcher svg { width: 1.35rem; height: 1.35rem; }
.chat-launcher .chat-label { }
@media (max-width: 420px) { .chat-launcher .chat-label { display: none; } .chat-launcher { padding: 1rem; } }
.chat-launcher .pulse { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #6FE0A6; box-shadow: 0 0 0 0 rgb(111 224 166 / 0.6); animation: chatPulse 2.4s infinite; }
@keyframes chatPulse { 0% { box-shadow: 0 0 0 0 rgb(111 224 166 / 0.55); } 70% { box-shadow: 0 0 0 8px rgb(111 224 166 / 0); } 100% { box-shadow: 0 0 0 0 rgb(111 224 166 / 0); } }
@media (prefers-reduced-motion: reduce) { .chat-launcher .pulse { animation: none; } }

.chat-panel {
  position: absolute; right: 0; bottom: calc(100% + 0.85rem);
  width: min(23rem, calc(100vw - 2rem)); height: min(32rem, calc(100vh - 7rem));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); box-shadow: 0 24px 60px -12px rgb(22 19 15 / 0.4);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.98); transform-origin: bottom right;
  transition: opacity var(--motion-medium) var(--ease-enter), transform var(--motion-medium) var(--ease-settle), visibility 0s linear var(--motion-medium);
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition: opacity var(--motion-medium) var(--ease-enter), transform var(--motion-medium) var(--ease-settle), visibility 0s; }
.chat-head { display: flex; align-items: center; gap: 0.7rem; padding: 1rem 1.1rem; background: var(--ref-ink); color: #fff; }
.chat-head .avatar { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: linear-gradient(135deg, var(--ref-orange), var(--ref-orange-deep)); display: grid; place-items: center; flex: none; font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; }
.chat-head .ct { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.chat-head .cs { font-size: 0.75rem; color: #6FE0A6; display: flex; align-items: center; gap: 0.3rem; }
.chat-head .cs::before { content: ""; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: #6FE0A6; }
.chat-close { margin-left: auto; background: rgb(255 255 255 / 0.1); border: none; color: #fff; width: 2rem; height: 2rem; border-radius: 0.5rem; cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; }
.chat-close:hover { background: rgb(255 255 255 / 0.2); }
.chat-log { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; background: var(--bg-surface-recessed); }
.chat-msg { max-width: 85%; padding: 0.65rem 0.9rem; border-radius: 1rem; font-size: 0.92rem; line-height: 1.45; }
.chat-msg.bot { background: #fff; border: 1px solid var(--border-subtle); border-bottom-left-radius: 0.3rem; align-self: flex-start; color: var(--text-primary); }
.chat-msg.bot a { color: var(--text-brand); font-weight: 700; }
.chat-msg.user { background: var(--ref-orange); color: #fff; border-bottom-right-radius: 0.3rem; align-self: flex-end; }
.chat-msg.typing { color: var(--text-muted); letter-spacing: 0.15em; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0.6rem 0.8rem 0; }
.chat-chips button { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; padding: 0.4rem 0.7rem; border-radius: var(--radius-pill); border: 1.5px solid var(--border-default); background: #fff; color: var(--text-primary); cursor: pointer; }
.chat-chips button:hover { border-color: var(--action-primary); color: var(--text-brand); }
.chat-form { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid var(--border-subtle); background: #fff; }
.chat-input { flex: 1; font: inherit; font-size: 0.95rem; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border-default); border-radius: var(--radius-pill); min-height: 44px; }
.chat-input:focus { outline: 3px solid var(--border-focus); outline-offset: 1px; border-color: transparent; }
.chat-send { flex: none; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--ref-orange); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-send:hover { background: var(--action-primary-hover); }
.chat-send svg { width: 1.2rem; height: 1.2rem; }

/* ===================== MOBILE POLISH ===================== */
@media (max-width: 640px) {
  .hero-inner { padding-block: clamp(3rem, 12vw, 4rem); gap: 1.1rem; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 0.7rem 1.2rem; }
  .section-head { margin-bottom: var(--space-cluster); }
  .food-card.is-feature { min-height: 17rem; }
  .btn { min-height: 50px; }
}
/* subpage hero (inner pages) */
.subhero { background: var(--ref-ink); color: var(--text-inverse); position: relative; overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, rgb(234 88 12 / 0.32), transparent 60%); }
.subhero .wrap { position: relative; padding-block: clamp(2.5rem, 8vw, 4.5rem); }
.subhero .eyebrow { color: #FFB27A; }
.subhero .eyebrow::before { background: var(--ref-orange); }
.subhero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 7vw, 4rem); line-height: 1; letter-spacing: -0.02em; }
.subhero h1 .accent { color: var(--ref-orange); }
.subhero p { color: #E8E1D8; font-size: clamp(1.05rem, 2vw, 1.2rem); max-width: 46ch; margin-top: 1rem; }
.subhero .crumbs { margin-bottom: 1rem; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: #C9C1B6; }
.subhero .crumbs a { color: #FFB27A; text-decoration: none; }
.subhero .crumbs a:hover { text-decoration: underline; }

/* menu-page product grid */
.prod-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
.prod-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--motion-medium) var(--ease-settle), box-shadow var(--motion-medium); }
@media (hover: hover) and (pointer: fine) { .prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); } }
.prod-media { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--ref-orange-tint), #fff); position: relative; overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-media::after { content: attr(data-emoji); position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.5rem; z-index: -1; }
.prod-body { padding: 1.2rem 1.3rem 1.4rem; }
.prod-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.3rem; }
.prod-body p { color: var(--text-secondary); font-size: 0.95rem; }
.prod-tag { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-brand); background: var(--ref-orange-tint); padding: 0.25rem 0.6rem; border-radius: var(--radius-pill); margin-bottom: 0.6rem; }

/* menu nav pills (cross-links between food pages) */
.menu-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: var(--space-region); }
.menu-nav a { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; text-decoration: none; padding: 0.6rem 1.1rem; min-height: 44px; display: inline-flex; align-items: center; border-radius: var(--radius-pill); border: 1.5px solid var(--border-default); color: var(--text-primary); transition: background var(--motion-fast), color var(--motion-fast), border-color var(--motion-fast); }
.menu-nav a:hover { border-color: var(--action-primary); color: var(--text-brand); background: var(--ref-orange-tint); }
.menu-nav a[aria-current="page"] { background: var(--ref-ink); color: #fff; border-color: var(--ref-ink); }

/* ===================== BRAND PARTNERS ===================== */
.brand-banner {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ref-ink), var(--ref-charcoal));
  color: #fff; border-radius: var(--radius-card); padding: 1.4rem 1.6rem;
  margin-bottom: var(--space-region); box-shadow: var(--shadow-card);
}
.bb-badge {
  flex: none; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  background: #fff; color: var(--ref-ink); padding: 0.75rem 1.1rem; border-radius: 0.7rem;
  letter-spacing: -0.01em; box-shadow: 0 6px 16px -8px rgb(0 0 0 / 0.5); text-align: center;
}
.bb-body { flex: 1; min-width: 0; }
.bb-tag { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: #FFB27A; display: block; margin-bottom: 0.3rem; }
.bb-body p { color: #E8E1D8; font-size: 0.98rem; }
.brand-strip { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .brand-strip { grid-template-columns: 1fr 1fr; } }
.brand-strip-card {
  display: flex; gap: 1rem; align-items: flex-start; text-decoration: none;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 1.4rem; box-shadow: var(--shadow-card);
  transition: transform var(--motion-medium) var(--ease-settle), box-shadow var(--motion-medium);
  flex-wrap: wrap;
}
.brand-strip-card > div { flex: 1; min-width: 0; }
.brand-strip-card p, .brand-banner .bb-body p { overflow-wrap: anywhere; }
@media (hover: hover) and (pointer: fine) { .brand-strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); } }
.brand-strip-card .bb-badge { background: var(--ref-ink); color: #fff; }
.brand-strip-card .bb-tag { color: var(--text-brand); }
.brand-strip-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 0.5rem; }
.brand-strip-card .go { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; }

/* prod-media emoji fallback when image fails/removed */
.prod-media[data-emoji]::after { content: attr(data-emoji); position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.5rem; }

/* ===================== STORES + MAP ===================== */
.stores-layout { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .stores-layout { grid-template-columns: 1.1fr 1fr; } }
.store-map { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border-subtle); background: var(--bg-surface-recessed); min-height: 22rem; }
.store-map iframe { width: 100%; height: 100%; min-height: 22rem; border: 0; display: block; }
@media (min-width: 900px) { .store-map, .store-map iframe { height: 100%; min-height: 34rem; } }
.map-open { position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.4rem; background: var(--ref-ink); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; padding: 0.55rem 0.9rem; border-radius: var(--radius-control); text-decoration: none; box-shadow: 0 6px 16px -6px rgb(0 0 0 / 0.5); }
.map-open svg { width: 1rem; height: 1rem; }
.map-open:hover { background: var(--ref-charcoal); }
.stores-layout .storefinder .sf-list { max-height: 34rem; }
