/* ============================================================
   K-Cream Korner — Lorain, Ohio
   Brand system drawn from the shop's own identity:
   - Logo orange (#EE5A24) with white cone, slashes & pennant
   - Storefront sign: rust western/circus slab lettering on white
   - Building: cream walls, red door & wainscot, light-blue shutters
   Fonts: Rye (sign lettering) · Cherry Cream Soda (logo wordmark)
   ============================================================ */

/* Self-hosted fonts (Fontsource, OFL-licensed) */
@font-face {
  font-family: "Rye";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/rye-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cherry Cream Soda";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/cherry-cream-soda-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/nunito-latin-800-normal.woff2") format("woff2");
}

:root {
  --orange: #EE5A24;
  --orange-deep: #D14A17;
  --rust: #B34A2E;
  --red: #D93A2B;
  --cream: #FFF4E8;
  --paper: #FFFBF4;
  --ink: #46220F;
  --shutter: #BDE3F0;
  --peach: #FDE3D3;
  --radius-lg: 28px;
  --radius-md: 18px;
  --border: 3px solid var(--ink);
  --shadow: 0 6px 0 rgba(70, 34, 15, .18);
  --font-sign: "Rye", "Georgia", serif;            /* storefront sign */
  --font-brand: "Cherry Cream Soda", "Cooper Black", serif; /* logo wordmark */
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

h1, h2 {
  font-family: var(--font-sign);
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--rust);
}
h3 { font-family: var(--font-brand); font-weight: 400; }

a { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: var(--border);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--dark  { background: var(--rust); color: #fff; border-color: var(--rust); }
.btn--light { background: #fff; color: var(--rust); border-color: var(--rust); }
.btn--outline { background: transparent; color: var(--ink); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--rust);
  color: var(--cream);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin: 0 .75rem;
}
.announce__inner {
  width: min(1160px, 100%);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .55rem 1.25rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.announce__main { text-align: center; }
@media (max-width: 720px) {
  .announce__side { display: none; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid rgba(70, 34, 15, .08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo__mark { width: 50px; height: 50px; flex: none; border-radius: 12px; }
.logo__nav { height: 74px; width: auto; flex: none; }
.logo__k { font-family: var(--font-brand); }
.logo__text {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  line-height: .9;
  color: var(--orange);
  display: flex;
  flex-direction: column;
}
.logo__text em {
  font-style: italic;
  transform: skewX(-6deg);
  display: block;
}
.logo__text em + em { padding-left: .55em; }

.nav { display: flex; gap: 1.6rem; }
.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: .3rem 0;
  border-bottom: 3px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }

.header__actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: var(--border);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .9rem 1.5rem; border-bottom: 1px solid rgba(70,34,15,.08); }
  .nav-toggle { display: flex; }
  .btn--dark { display: none; }
}

/* ---------- Hero (logo motif: orange field, white slashes & pennant) ---------- */
.hero { padding: 1.25rem 0 3rem; }
.hero__panel {
  position: relative;
  background: var(--orange);
  border-radius: var(--radius-lg);
  border: 3px solid var(--orange-deep);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 460px;
}
.hero__stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__stripes span {
  position: absolute;
  width: 46%;
  height: 10px;
  background: #fff;
  opacity: .9;
  transform: rotate(-24deg);
}
.hero__stripes span:nth-child(1) { top: 14%; left: -6%; }
.hero__stripes span:nth-child(2) { top: 26%; left: -12%; height: 7px; }
.hero__stripes span:nth-child(3) { bottom: 12%; left: -8%; height: 8px; }
.hero__pennant {
  position: absolute;
  top: 8%;
  right: -4%;
  width: 46%;
  height: 46%;
  clip-path: polygon(0 22%, 100% 0, 88% 100%);
  background: rgba(255, 255, 255, .16);
  border: 3px solid rgba(255, 255, 255, .8);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}
/* white sign board with rust letters — like the real fascia */
.hero__sign {
  background: #fff;
  border-radius: 14px;
  border: 4px solid var(--rust);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.6rem;
  transform: rotate(-1.2deg);
  width: fit-content;
}
.hero__sign h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  color: var(--rust);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero__cta p {
  max-width: 300px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
  color: #fff;
  background: rgba(122, 44, 10, .55);
  padding: .75rem 1rem;
  border-radius: 12px;
}

.hero__art {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}
.hero__logo {
  width: min(340px, 82%);
  height: auto;
  filter: drop-shadow(0 10px 0 rgba(70, 34, 15, .2));
  animation: bob 5s ease-in-out infinite;
  margin-bottom: 2rem;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.sticker {
  position: absolute;
  font-family: var(--font-brand);
  font-size: .78rem;
  text-align: center;
  line-height: 1.15;
  padding: .6rem .9rem;
  border: 3px solid var(--rust);
  border-radius: 999px;
  background: #fff;
  color: var(--rust);
  transform: rotate(-8deg);
}
.sticker--since { bottom: 2rem; left: 0; max-width: 160px; }
.sticker--fave {
  top: 2.5rem; right: 1.5rem;
  background: var(--red);
  color: #fff;
  border-color: #fff;
  transform: rotate(8deg);
  border-radius: 50%;
  padding: 1.1rem .8rem;
}

@media (max-width: 860px) {
  .hero__panel { grid-template-columns: 1fr; }
  .hero__art { padding-top: 0; }
  .sticker--since { left: .75rem; bottom: .75rem; }
}

/* ---------- Section head ---------- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.section-head h2 { font-size: clamp(1.4rem, 3.2vw, 2.1rem); }

/* ---------- Treats ---------- */
.treats { padding: 3rem 0 3.5rem; }
.treats__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: .75rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.treat-card {
  scroll-snap-align: start;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem 1.4rem;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.treat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.treat-card__photo {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 1;
  border: 2px solid rgba(70, 34, 15, .15);
  background: var(--cream);
}
.treat-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transition: transform .25s ease;
}
.treat-card:hover .treat-card__photo img { transform: scale(1.06); }
.treat-card h3 { font-size: .95rem; margin-bottom: .35rem; color: var(--rust); }
.treat-card p { font-size: .8rem; font-weight: 600; opacity: .75; }
.treats__note {
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 700;
  opacity: .6;
  text-align: center;
}
.treats__note a { color: var(--orange); }

/* ---------- Trust strip ---------- */
.strip { padding: 1rem 0 3rem; }
.strip__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  border-block: var(--border);
}
.strip__cell {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.strip__cell + .strip__cell { border-left: var(--border); }
.strip__cell--label h3 { font-size: 1.1rem; color: var(--rust); }
.strip__berry { font-size: 1.6rem; transform: rotate(-12deg); }
.strip__cell p {
  font-weight: 700;
  font-size: .92rem;
  max-width: 46ch;
  margin-inline: auto;
  text-align: center;
}
.avatars { display: flex; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: var(--border);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: var(--peach);
}
.avatar--b { background: var(--shutter); margin-left: -12px; }
.avatar--c { background: var(--cream); margin-left: -12px; }
.strip__count { display: flex; align-items: center; gap: .5rem; }
.strip__count strong {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--orange);
  border: 3px solid var(--orange);
  border-radius: 999px;
  padding: .2rem .8rem;
  background: #fff;
}
.strip__count span {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}
@media (max-width: 860px) {
  .strip__inner { grid-template-columns: 1fr; }
  .strip__cell + .strip__cell { border-left: none; border-top: var(--border); }
  .strip__cell { justify-content: center; text-align: center; }
}

/* ---------- Spotlight ---------- */
.spotlight { padding: 3.5rem 0; text-align: center; }
.spotlight__title {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  margin-bottom: 2.5rem;
}
.spotlight__title em {
  font-style: normal;
  font-family: var(--font-brand);
  color: var(--orange);
  font-size: 1.05em;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 880px;
  margin-inline: auto;
}
.spotlight__thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: var(--border);
  display: grid;
  place-items: center;
  font-size: 3rem;
}
.spotlight__thumb--left  { background: linear-gradient(160deg, var(--orange), var(--red)); transform: rotate(-3deg); }
.spotlight__thumb--right { background: var(--shutter); transform: rotate(3deg); }
.spotlight__photo {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spotlight__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 72%;
  display: block;
}
.spotlight__caption {
  margin-top: 1.75rem;
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--rust);
}
@media (max-width: 720px) {
  .spotlight__grid { grid-template-columns: 1fr; }
  .spotlight__thumb { display: none; }
}

/* ---------- Menu ---------- */
.menu { padding: 3rem 0 3.5rem; }
.menu__arrows { display: flex; gap: .5rem; }
.arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: var(--border);
  background: #fff;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.arrow:hover { background: var(--rust); color: #fff; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
}
.menu-col {
  scroll-snap-align: start;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
}
.menu-col--accent { background: var(--cream); }
.menu-col h3 {
  font-size: 1.05rem;
  color: var(--rust);
  margin-bottom: 1.1rem;
  padding-bottom: .75rem;
  border-bottom: 2px dashed var(--rust);
}
.menu-col ul { list-style: none; }
.menu-col li {
  display: flex;
  flex-direction: column;
  padding: .55rem 0;
}
.menu-col li + li { border-top: 1px solid rgba(70,34,15,.1); }
.menu-col li span { font-weight: 800; font-size: .95rem; }
.menu-col li em { font-size: .78rem; opacity: .7; }
.menu__note {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  opacity: .85;
}
.menu__note a { color: var(--orange); font-weight: 800; }
@media (max-width: 860px) {
  .menu__grid { grid-template-columns: repeat(3, 82%); }
}

/* ---------- Story ---------- */
.story { padding: 3rem 0 4rem; }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.story__photo {
  position: relative;
  border-radius: var(--radius-lg);
  border: var(--border);
  overflow: hidden;
}
.storefront { display: block; }
.storefront__sign {
  font-family: var(--font-sign);
  font-size: 21px;
  fill: var(--rust);
  letter-spacing: 1px;
}
.story__swap {
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(255, 255, 255, .9);
  border: 2px solid var(--rust);
  color: var(--rust);
  border-radius: 999px;
  padding: .25rem .6rem;
}
.story__copy h2 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); margin-bottom: 1.2rem; }
.story__copy p { font-weight: 700; font-size: .95rem; max-width: 48ch; }
.story__actions {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.story__find {
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
}
.story__find:hover { color: var(--orange); }
@media (max-width: 860px) {
  .story__inner { grid-template-columns: 1fr; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--orange);
  padding: 1rem 0;
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: #fff;
  padding-right: 1rem;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Visit ---------- */
.visit { padding: 4.5rem 0 4rem; }
.visit__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.visit__info h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); margin-bottom: 1.75rem; }
.visit__facts { list-style: none; }
.visit__facts li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 2px dashed rgba(70,34,15,.25);
  font-weight: 700;
  font-size: .92rem;
}
.visit__facts strong {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: .8rem;
  color: var(--orange);
  padding-top: .15rem;
}
.visit__facts a { color: var(--ink); text-decoration-color: var(--orange); }
.visit__facts a:hover { color: var(--orange); }
.visit__facts em { font-size: .78rem; opacity: .7; }
.visit__map {
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }
@media (max-width: 860px) {
  .visit__inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 3rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}
.logo--footer .logo__text { color: #fff; }
.footer__logo { width: min(240px, 100%); height: auto; }
.footer__brand p { margin-top: 1rem; font-size: .8rem; opacity: .85; }
.footer__col h4 {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: .95rem;
  color: #fff;
  margin-bottom: .9rem;
  border-bottom: 2px dashed rgba(255,255,255,.5);
  padding-bottom: .4rem;
  width: fit-content;
}
.footer__col a {
  display: block;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  opacity: .9;
  padding: .22rem 0;
}
.footer__col a:hover { opacity: 1; text-decoration: underline; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: .82rem;
  font-weight: 700;
}
.footer__social { display: flex; gap: .9rem; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  color: #fff;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.footer__social a:hover { background: #fff; color: var(--orange); }
.footer__find {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}
.footer__find:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Menu page ---------- */
.page-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
}
.page-hero__sign {
  display: inline-block;
  background: #fff;
  border: 4px solid var(--rust);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.1rem 2rem;
  transform: rotate(-1.2deg);
}
.page-hero__sign h1 { font-size: clamp(1.8rem, 4.6vw, 3rem); }
.page-hero__sub {
  margin: 1.4rem auto 0;
  max-width: 52ch;
  font-weight: 700;
  font-size: .95rem;
}
.menuboard { padding: 2.5rem 0 3rem; }
.menuboard__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.menu-col__photo {
  margin: 0 0 1rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid rgba(70, 34, 15, .15);
  background: var(--cream);
}
.menu-col__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.22);
}
/* pre-cropped portrait photo: show the top (the swirl), no zoom */
.ph--top img { object-position: center 18% !important; transform: none !important; }
.menu-col__blurb {
  font-size: .8rem;
  font-weight: 700;
  opacity: .75;
  margin: -0.5rem 0 .75rem;
}
.price {
  font-style: normal;
  font-family: var(--font-brand);
  font-size: .82rem;
  color: var(--orange);
  margin-left: .35rem;
}
.tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: .1rem .5rem;
  margin-left: .35rem;
  vertical-align: middle;
}
@media (max-width: 980px) {
  .menuboard__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .menuboard__grid { grid-template-columns: 1fr; }
}

/* ---------- Location cards ---------- */
.locations { padding: 1rem 0 4rem; }
.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.locations__grid--single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}
.loc-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.loc-card h3 { font-size: 1.3rem; color: var(--rust); }
.loc-card__tag {
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--orange);
  margin: .3rem 0 1rem;
}
.loc-card ul { list-style: none; }
.loc-card li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: .75rem;
  padding: .6rem 0;
  border-top: 2px dashed rgba(70,34,15,.2);
  font-weight: 700;
  font-size: .9rem;
}
.loc-card strong {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: .78rem;
  color: var(--orange);
}
.loc-card a { color: var(--ink); text-decoration-color: var(--orange); }
.loc-card a:hover { color: var(--orange); }
@media (max-width: 780px) {
  .locations__grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero__logo, .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
