/* ==========================================================================
   NTK — Healthy Food & Upscale Catering · Glendale, NY
   Design language: "The Menu Board"
   Editorial menu typography · menu-stock cream · deep forest · honey accent
   Signature: arched hero photograph + ticker of real NTK dishes
   Type: Bricolage Grotesque (display) · Fraunces italic (accent) · Figtree (body)
   ========================================================================== */

/* ----- Fonts (self-hosted woff2; run download-fonts.sh to fetch files) ---- */
@font-face {
  font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../assets/fonts/bricolage-grotesque-500.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("../assets/fonts/bricolage-grotesque-700.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 800;
  font-display: swap; src: url("../assets/fonts/bricolage-grotesque-800.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../assets/fonts/figtree-400.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../assets/fonts/figtree-500.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../assets/fonts/figtree-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces"; font-style: italic; font-weight: 600;
  font-display: swap; src: url("../assets/fonts/fraunces-600-italic.woff2") format("woff2");
}

/* ----- Tokens -------------------------------------------------------------- */
:root {
  /* palette — menu stock + forest + honey */
  --cream:       #f6f2e7;   /* warm menu-paper base */
  --cream-2:     #efe9d9;   /* deeper band */
  --white:       #fffdf7;
  --forest:      #17301f;   /* deep forest — primary ink on cream */
  --forest-2:    #0f2115;   /* footer / deepest */
  --leaf:        #4a7247;
  --leaf-soft:   #e2ead9;
  --honey:       #c9973b;   /* single warm accent, used sparingly */
  --ink:         #1c2620;
  --ink-soft:    #55604f;
  --line:        rgba(23, 48, 31, .16);   /* forest-tinted hairlines */
  --line-strong: rgba(23, 48, 31, .34);

  /* on-forest (inverted) */
  --on-forest:      #f2eddd;
  --on-forest-soft: #b9c4ae;
  --on-forest-line: rgba(242, 237, 221, .16);

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-sm: 8px;
  --arch: 999px 999px var(--radius) var(--radius);

  /* type */
  --ff-display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --ff-accent: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Figtree", system-ui, -apple-system, sans-serif;

  /* motion */
  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --dur: .6s;

  --shadow: 0 24px 60px -34px rgba(15, 33, 21, .5);
}

/* ----- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--ff-display); margin: 0; font-weight: 800;
  line-height: 1.02; letter-spacing: -0.025em; color: var(--forest);
}
p { margin: 0 0 1rem; }
em, .accent {
  font-family: var(--ff-accent); font-style: italic; font-weight: 600;
  letter-spacing: 0; color: var(--honey);
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.center { text-align: center; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--forest); color: var(--on-forest); padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top .2s ease; text-decoration: none;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; border-radius: 3px; }

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

/* ----- Buttons — editorial, squared, arrow slides in ----------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem; font-family: var(--ff-body); font-weight: 600;
  font-size: .98rem; letter-spacing: .01em; text-decoration: none; cursor: pointer;
  padding: .95rem 1.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--forest); position: relative; overflow: hidden;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .18s ease;
}
.btn::after {
  content: "→"; display: inline-block; font-family: var(--ff-body);
  transform: translateX(-6px); opacity: 0;
  transition: transform .28s var(--ease-out), opacity .2s ease;
}
.btn:hover::after { transform: translateX(0); opacity: 1; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-2); border-color: var(--forest-2); }
.btn-ghost { background: transparent; color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-block { width: 100%; }

/* ----- Header / Nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 231, .88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(246, 242, 231, .96);
  box-shadow: 0 12px 34px -26px rgba(15, 33, 21, .6);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand img { display: block; }

.nav-menu { list-style: none; display: flex; align-items: center; gap: clamp(.7rem, 1.7vw, 1.8rem); margin: 0; padding: 0; }
.nav-menu a {
  text-decoration: none; font-weight: 500; color: var(--ink-soft);
  font-size: .95rem; letter-spacing: .01em; transition: color .2s ease;
}
.nav-menu a:hover { color: var(--forest); }
.nav-menu a:not(.nav-cta) { position: relative; }
.nav-menu a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%;
  background: var(--honey);
  transform: scaleX(0); transform-origin: right; transition: transform .32s var(--ease-out);
}
.nav-menu a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-menu a[aria-current="page"] { color: var(--forest); font-weight: 600; }
.nav-menu a:not(.nav-cta)[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  background: var(--forest); color: var(--cream) !important; padding: .6rem 1.15rem;
  border-radius: var(--radius-sm); font-weight: 600; transition: background .25s ease;
}
.nav-cta:hover { background: var(--forest-2); }
.nav-cta[aria-current="page"] { background: var(--forest-2); }
.nav-toggle { display: none; }

/* ----- Hero — stacked editorial: statement type over an arched photograph --- */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: block; }
.hero-copy { max-width: 60rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf); margin: 0 0 1.4rem;
}
.eyebrow::after {
  content: ""; width: 44px; height: 1px; background: var(--line-strong);
}
.sprig {
  width: 16px; height: 16px; flex: none; background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 6 7 11 9 16c-1-3-3-4-6-4 3 1 4 4 4 7 1-2 3-3 5-3 2 0 4 1 5 3 0-3 1-6 4-7-3 0-5 1-6 4 2-5 1-10-3-14z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 6 7 11 9 16c-1-3-3-4-6-4 3 1 4 4 4 7 1-2 3-3 5-3 2 0 4 1 5 3 0-3 1-6 4-7-3 0-5 1-6 4 2-5 1-10-3-14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero h1 {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  max-width: 16ch;
}
.hero h1 em { font-size: .96em; }

/* word-mask spans injected by JS for the load animation
   (padding/margin pair gives descenders room inside the overflow mask) */
.wm { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .14em; margin-bottom: -.14em; }
.wm .w { display: inline-block; transform: translateY(0); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft);
  max-width: 46ch; margin-top: 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  margin: 2.2rem 0 0; padding: 1.1rem 0 0; font-size: .9rem; color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.hero-trust li { position: relative; padding-left: 1.1rem; }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--honey);
}

/* the arch — signature image treatment */
.hero-media { margin: clamp(2.2rem, 5vw, 3.6rem) 0 0; position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 21 / 10; object-fit: cover;
  border-radius: var(--arch);
  box-shadow: var(--shadow);
}
@supports not (aspect-ratio: 21 / 10) {
  .hero-media img { height: clamp(280px, 44vw, 520px); }
}
/* Soft base vignette: grounds any photo in the arch so it feels intentional */
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: var(--arch);
  background: linear-gradient(to top, rgba(15, 33, 21, .32), rgba(15, 33, 21, 0) 42%);
}

/* ----- Ticker — NTK's real menu, scrolling like a deli board ---------------- */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line);
  padding-block: .95rem; margin-top: clamp(2.2rem, 5vw, 3.6rem);
  background: var(--white);
}
.ticker-track {
  display: flex; align-items: center; gap: 2.4rem; width: max-content;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .04em; text-transform: lowercase; color: var(--forest);
  animation: ntk-ticker 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { white-space: nowrap; }
.tick-dot { color: var(--honey); }
@keyframes ntk-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----- Section scaffolding — menu-category headers -------------------------- */
.section { padding-block: clamp(3.8rem, 9vw, 7rem); }
.kicker {
  display: flex; align-items: center; gap: .8rem;
  font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf); margin: 0 0 1rem;
}
.kicker::after { content: ""; flex: 1; max-width: 72px; height: 1px; background: var(--line-strong); }
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head h2, .about-copy h2, .contact-info h2, .cta-band h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}

/* ----- Cards — quiet plates: photo, hairline, title, arrow ------------------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.8rem); position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
a.card { text-decoration: none; color: inherit; display: block; }

.card-img {
  display: block; overflow: hidden; border-radius: var(--radius-sm);
  margin: 0 0 1.15rem;
}
.card-img img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block;
  transition: transform .7s var(--ease-out);
}
.card-photo:hover .card-img img { transform: scale(1.045); }

.card h3 {
  font-size: 1.35rem; margin-bottom: .55rem; padding-bottom: .65rem;
  border-bottom: 1px solid var(--line); letter-spacing: -.015em;
}
.card p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .4rem; }

.card-go, .card-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .55rem;
  font-weight: 600; font-size: .95rem; color: var(--forest); text-decoration: none;
}
.card-go::after, .card-link::after {
  content: "→"; transition: transform .3s var(--ease-out); color: var(--honey);
}
a.card:hover .card-go::after, .card-link:hover::after { transform: translateX(5px); }

/* legacy leaf mark (kept for compatibility if reused) */
.card-mark { display: none; }

/* ----- About ----------------------------------------------------------------- */
.about { background: var(--white); border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
.about-media { margin: 0; }
.about-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--arch);
}
.about-copy .lede { margin-top: 0; }

.stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3rem); margin: 2.2rem 0 0; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.stats div { min-width: 90px; }
.stats dt {
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--forest); line-height: 1; letter-spacing: -.02em;
}
.stats dd { margin: .4rem 0 0; font-size: .85rem; color: var(--ink-soft); max-width: 16ch; }

/* ----- Gallery — tight photo wall --------------------------------------------- */
.gallery { background: var(--white); border-block: 1px solid var(--line); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.5rem, 1.2vw, .9rem); }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.gallery-grid img {
  aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
  transition: transform .8s var(--ease-out);
}
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 2px solid var(--honey); border-radius: var(--radius-sm);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure:hover::after { opacity: 1; }

/* ----- Reviews — chalkboard testimonials --------------------------------------- */
.reviews { background: var(--forest); color: var(--on-forest); }
.reviews .kicker { color: var(--honey); }
.reviews .kicker::after { background: var(--on-forest-line); }
.reviews h2 { color: var(--on-forest); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review {
  background: rgba(255,255,255,.045); border: 1px solid var(--on-forest-line);
  border-radius: var(--radius); padding: 1.7rem; margin: 0;
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease;
}
.review:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); border-color: rgba(242,237,221,.3); }
.review p { color: var(--on-forest); font-size: .98rem; }
.review cite { font-style: normal; font-weight: 600; color: var(--on-forest-soft); font-size: .88rem; }
.stars { color: var(--honey); letter-spacing: 3px; margin-bottom: .8rem; font-size: 1rem; }
.reviews-cta { margin-top: 2.2rem; }
.reviews .btn-ghost { color: var(--on-forest); border-color: rgba(242,237,221,.45); }
.reviews .btn-ghost:hover { background: var(--on-forest); color: var(--forest); border-color: var(--on-forest); }

/* ----- Contact ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: start; }
.contact-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; }
.contact-list li {
  display: grid; gap: .2rem; padding-block: .95rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child { border-top: 1px solid var(--line); }
.ci-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--leaf); font-weight: 600; }
.contact-list a { text-decoration: none; font-weight: 500; transition: color .2s ease; }
.contact-list a:hover { color: var(--honey); }

.quote-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.field { display: grid; gap: .35rem; margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  font-weight: 600; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea {
  font-family: var(--ff-body); font-size: 1.02rem; color: var(--ink);
  padding: .65rem 2px; border: 0; border-bottom: 1.5px solid var(--line-strong);
  border-radius: 0; background: transparent; width: 100%;
  transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--honey); outline: none; }
.field textarea { resize: vertical; }
.quote-form .btn { margin-top: .4rem; }
.form-fineprint { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: 1rem 0 0; }
.hp { position: absolute; left: -9999px; }

/* ----- Footer ---------------------------------------------------------------------- */
.site-footer { background: var(--forest-2); color: var(--on-forest-soft); padding-top: clamp(3.2rem, 6vw, 5rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.8rem; }
.footer-brand img { filter: brightness(0) invert(.94) sepia(.08); margin-bottom: 1.1rem; }
.footer-brand p { max-width: 30ch; }
.footer-col h4 {
  font-family: var(--ff-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--honey); margin-bottom: 1rem;
}
.footer-col p { margin: 0 0 .55rem; font-size: .95rem; }
.footer-col a { text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--on-forest); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--on-forest-line); padding-block: 1.5rem;
  font-size: .84rem; color: #7e8f78;
}
.harv { display: inline-flex; opacity: .6; transition: opacity .25s ease, transform .25s ease; }
.harv:hover { opacity: 1; transform: rotate(-5deg); }

/* ----- Subpage banner — food photo under a forest tint ------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--forest); color: var(--on-forest);
  /* forest tint: darker on the left (behind the copy), lighter on the right so
     the food photo shows through — a slight green cast overall */
  background-image:
    linear-gradient(90deg, rgba(13, 30, 19, .88) 0%, rgba(14, 31, 20, .60) 45%, rgba(20, 42, 27, .40) 100%),
    var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: clamp(3rem, 6.5vw, 5.2rem);
  border-bottom: 4px solid var(--honey);
}
/* keep the copy crisp over the photo */
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1, .page-hero .lede { text-shadow: 0 1px 20px rgba(10, 22, 14, .35); }
.page-hero h1 {
  color: var(--on-forest); font-size: clamp(2.4rem, 5.4vw, 4rem); max-width: 18ch;
}
.page-hero .kicker { color: var(--honey); }
.page-hero .kicker::after { background: var(--on-forest-line); }
.page-hero .lede { margin-top: 1.1rem; max-width: 52ch; color: var(--on-forest-soft); }

/* buttons sitting on the banner photo need the inverted treatment */
.page-hero .btn-primary { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.page-hero .btn-primary:hover { background: var(--white); border-color: var(--white); }
.page-hero .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .6); }
.page-hero .btn-ghost:hover { background: var(--white); color: var(--forest); border-color: var(--white); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  margin: 0 0 1.6rem; color: var(--on-forest-soft);
}
.breadcrumb a { text-decoration: none; color: var(--on-forest); font-weight: 600; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--honey); }
.breadcrumb [aria-current] { color: var(--on-forest-soft); }
.breadcrumb .sep { opacity: .45; }

/* ----- CTA band ------------------------------------------------------------------------ */
.cta-band {
  background: var(--forest); color: var(--on-forest); text-align: center;
  border-top: 4px solid var(--honey);
}
.cta-band .kicker { justify-content: center; color: var(--honey); }
.cta-band .kicker::after { display: none; }
.cta-band h2 { color: var(--on-forest); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--on-forest-soft); max-width: 46ch; margin: 1.1rem auto 0; }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }
.cta-band .btn-primary { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.cta-band .btn-primary:hover { background: var(--white); border-color: var(--white); }
.cta-band .btn-ghost { color: var(--on-forest); border-color: rgba(242,237,221,.45); }
.cta-band .btn-ghost:hover { background: var(--on-forest); color: var(--forest); border-color: var(--on-forest); }

/* misc */
.media-note { font-size: .78rem; color: var(--ink-soft); opacity: .85; margin-top: .6rem; font-style: italic; }
.media-note.center { text-align: center; margin-top: 1.4rem; }

/* ==========================================================================
   Motion system — one vocabulary, transform/opacity only,
   gated by prefers-reduced-motion
   ========================================================================== */

/* Scroll reveal (JS assigns stagger delays via --d) */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Page-load choreography for the hero (motion-safe only) */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero .lede, .hero .hero-actions, .hero .hero-trust {
    opacity: 0; animation: ntk-rise .9s var(--ease-out) forwards;
  }
  .hero .eyebrow { animation-delay: .05s; }
  .hero .lede { animation-delay: .42s; }
  .hero .hero-actions { animation-delay: .52s; }
  .hero .hero-trust { animation-delay: .62s; }

  /* words injected by JS rise out of their masks */
  .wm .w { transform: translateY(112%); animation: ntk-word .85s var(--ease-out) forwards; }

  /* the arch unveils */
  .hero-media {
    opacity: 0; transform: translateY(18px);
    animation: ntk-rise .9s var(--ease-out) .3s forwards;
  }

  .sprig { transform-origin: bottom center; animation: ntk-sway 5s ease-in-out 1.4s infinite; }
}
@keyframes ntk-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes ntk-word { to { transform: translateY(0); } }
@keyframes ntk-sway { 0%,100% { transform: rotate(0); } 50% { transform: rotate(8deg); } }

/* ----- Responsive -------------------------------------------------------------- */
@media (max-width: 880px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; }
  .about-media img { aspect-ratio: 4 / 3; }
  .cards, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-media img { aspect-ratio: 4 / 3; }

  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center;
    width: 44px; height: 44px; background: transparent; border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm); cursor: pointer; gap: 5px; padding: 0 11px;
  }
  .nav-toggle-bar, .nav-toggle::before, .nav-toggle::after {
    content: ""; display: block; height: 2px; background: var(--forest); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar { opacity: 0; }

  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.2rem;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-menu.open { max-height: 500px; }
  .nav-menu li { border-top: 1px solid var(--line); }
  .nav-menu a { display: block; padding: .95rem .2rem; }
  .nav-menu a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: .8rem; }
  .nav-menu li:has(.nav-cta) { border-top: 0; }
}

@media (max-width: 560px) {
  .cards, .reviews-grid, .field-row, .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-media img { aspect-ratio: 1 / 1; border-radius: 260px 260px var(--radius) var(--radius); }
  .hero h1 { letter-spacing: -.02em; }
}

/* ----- Reduced motion — everything settles instantly ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .eyebrow, .hero .lede, .hero .hero-actions, .hero .hero-trust,
  .hero-media { opacity: 1 !important; clip-path: none !important; }
  .wm .w { transform: none !important; }
  .ticker-track { animation: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   Booking page — interactive calendar + catering request builder
   Extends "The Menu Board" language: menu-paper cards, forest ink, honey accent
   ========================================================================== */

/* two-column layout: calendar rail + form */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr;
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

/* the calendar card (sticks while the form scrolls on desktop) */
.cal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  position: sticky;
  top: 94px;
}
@media (max-width: 980px) { .cal-card { position: static; } }

/* quick-pick chips */
.cal-quick { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.cal-chip {
  font-family: var(--ff-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .01em; color: var(--forest);
  background: var(--leaf-soft); border: 1px solid transparent;
  padding: .42rem .8rem; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.cal-chip:hover { background: #d6e2c9; border-color: var(--line-strong); }
.cal-chip:active { transform: translateY(1px); }

/* calendar header: month title + nav */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-title {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem;
  color: var(--forest); letter-spacing: -.02em; margin: 0;
}
.cal-nav { display: flex; gap: .4rem; }
.cal-navbtn {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  color: var(--forest); cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.cal-navbtn:hover:not(:disabled) { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.cal-navbtn:disabled { opacity: .32; cursor: not-allowed; }

/* weekday header */
.cal-dow {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 6px;
}
.cal-dow span {
  text-align: center; font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--leaf);
  padding: .3rem 0;
}

/* day grid */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-cell {
  position: relative; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: .98rem; font-weight: 500;
  color: var(--ink); background: transparent;
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; padding: 0;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.cal-cell--empty { cursor: default; }
.cal-cell.is-open:hover {
  background: var(--leaf-soft); border-color: var(--leaf);
}
.cal-cell.is-open:active { transform: scale(.94); }
.cal-cell .cal-num { pointer-events: none; }

/* today marker */
.cal-cell.is-today { font-weight: 700; }
.cal-today-dot {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--honey);
}

/* selected */
.cal-cell.is-selected {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
  font-weight: 700;
}
.cal-cell.is-selected .cal-today-dot { background: var(--cream); }
.cal-cell.is-selected:hover { background: var(--forest-2); }

/* disabled / booked */
.cal-cell.is-disabled {
  color: #b3b09f; cursor: not-allowed; background: transparent;
}
.cal-cell.is-disabled .cal-num { text-decoration: none; }
.cal-cell.is-booked {
  color: #b9857f; background: repeating-linear-gradient(
    135deg, rgba(201,151,59,.09) 0 6px, transparent 6px 12px);
}
.cal-cell.is-booked::after {
  content: ""; position: absolute; width: 62%; height: 1.5px;
  background: rgba(160,90,80,.5); transform: rotate(-16deg);
}

/* legend */
.cal-legend {
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem;
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--ink-soft);
}
.cal-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.lg-swatch { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.lg-swatch.sel { background: var(--forest); }
.lg-swatch.today { background: var(--white); border: 1.5px solid var(--line-strong); position: relative; }
.lg-swatch.today::after { content:""; position:absolute; left:50%; bottom:2px; transform:translateX(-50%); width:4px; height:4px; border-radius:50%; background:var(--honey); }
.lg-swatch.booked { background: repeating-linear-gradient(135deg, rgba(201,151,59,.18) 0 4px, #f0ece0 4px 8px); }

.cal-note { font-size: .78rem; color: var(--ink-soft); margin: .9rem 0 0; font-style: italic; }

/* the selected-date banner above the form */
.pick-banner {
  display: flex; align-items: center; gap: .75rem;
  background: var(--forest); color: var(--on-forest);
  border-radius: var(--radius-sm); padding: .85rem 1.1rem;
  margin-bottom: 1.5rem; font-size: .96rem;
}
.pick-banner .pb-ico {
  flex: none; width: 34px; height: 34px; border-radius: 8px;
  background: var(--honey); color: var(--forest-2);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}
.pick-banner strong { color: var(--cream); font-weight: 700; }
.pick-banner .pb-empty { color: var(--on-forest-soft); }
.booking:not(.has-selection) .pb-date { display: none; }
.booking.has-selection .pb-empty { display: none; }

/* fieldset grouping in the request builder */
.book-form .fs {
  border: 0; padding: 0; margin: 0 0 1.9rem;
}
.book-form .fs-legend {
  font-family: var(--ff-body); font-weight: 600; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--leaf);
  padding: 0; margin: 0 0 1.1rem; display: flex; align-items: center; gap: .7rem;
}
.book-form .fs-legend::before {
  content: attr(data-n); flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  font-size: .72rem; display: inline-flex; align-items: center; justify-content: center;
}
.book-form .fs-legend::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* selects styled like the site's underline inputs */
.field select {
  font-family: var(--ff-body); font-size: 1.02rem; color: var(--ink);
  padding: .65rem 1.6rem .65rem 2px; border: 0;
  border-bottom: 1.5px solid var(--line-strong); border-radius: 0;
  background: transparent; width: 100%; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317301f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center; background-size: 16px;
  transition: border-color .25s ease;
}
.field select:focus { border-bottom-color: var(--honey); outline: none; }

/* three-up field row */
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }

/* guest stepper */
.stepper { display: flex; align-items: stretch; gap: .5rem; }
.stepper input {
  text-align: center; -moz-appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.step-btn {
  flex: none; width: 42px; border: 1.5px solid var(--line-strong);
  background: var(--white); color: var(--forest); border-radius: var(--radius-sm);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.step-btn:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* live summary panel */
.book-summary {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  position: sticky; top: 94px;
}
.book-summary h3 {
  font-size: 1.15rem; margin: 0 0 1rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.sum-empty { color: var(--ink-soft); font-size: .92rem; margin: 0; }
.sum-row { display: grid; gap: .1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.sum-row:last-child { border-bottom: 0; }
.sum-row dt {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--leaf); font-weight: 600;
}
.sum-row dd { margin: 0; font-size: .98rem; color: var(--forest); font-weight: 500; }

/* error hint under the calendar */
.cal-error {
  margin: 1rem 0 0; font-size: .88rem; font-weight: 600; color: #a4443b;
  background: #f7e6df; border: 1px solid #e6c3b8; border-radius: var(--radius-sm);
  padding: .6rem .8rem;
}

/* right column stack */
.book-main { display: grid; gap: 1.6rem; }
.book-col-summary { display: block; }

/* responsive */
@media (max-width: 980px) {
  .booking-layout { grid-template-columns: 1fr; }
  .book-summary { position: static; }
}
@media (max-width: 560px) {
  .field-row-3 { grid-template-columns: 1fr; }
  .cal-card { padding: 1.1rem; }
  .cal-cell { font-size: .9rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cal-cell, .cal-chip, .step-btn, .cal-navbtn { transition: none; }
}

/* ==========================================================================
   Rewards — returning-customer loyalty (juice/coffee punch cards + tumbler)
   ========================================================================== */
.rewards { background: var(--white); border-block: 1px solid var(--line); }
.reward-cards { grid-template-columns: repeat(3, 1fr); }

.reward-card { display: flex; flex-direction: column; }
.reward-tag {
  align-self: flex-start;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf); background: var(--leaf-soft);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.reward-card h3 {
  font-size: 1.3rem; border-bottom: 0; padding-bottom: 0; margin-bottom: .9rem;
}
.reward-card p { color: var(--ink-soft); font-size: .96rem; }

/* punch-card dots: 9 stamps + a highlighted "free" tenth */
.punch { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 1.1rem; }
.punch i {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); display: inline-flex;
  align-items: center; justify-content: center; flex: none;
  font-size: .7rem; font-weight: 700; color: var(--leaf);
  background: var(--cream);
}
.punch i.stamped { background: var(--leaf-soft); border-color: var(--leaf); }
.punch i.free {
  background: var(--honey); border-color: var(--honey); color: var(--forest-2);
  font-family: var(--ff-body); letter-spacing: -.02em;
}

/* the featured tumbler card — forest fill to stand out */
.reward-card--feature {
  background: var(--forest); border-color: var(--forest);
}
.reward-card--feature h3 { color: var(--on-forest); }
.reward-card--feature p { color: var(--on-forest-soft); }
.reward-card--feature .reward-tag { color: var(--forest-2); background: var(--honey); }
.reward-price {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: -.02em;
  font-size: 1.5rem; color: var(--honey) !important; margin: .1rem 0 .8rem;
}
.reward-price .rp-amt { color: var(--cream) !important; }
.reward-fine { font-size: .82rem !important; color: var(--on-forest-soft) !important; opacity: .85; margin-top: auto; }

@media (max-width: 880px) { .reward-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reviews — Google/Yelp rating banner + "what people mention" highlights
   ========================================================================== */
.reviews-rating {
  text-align: center; max-width: 40rem; margin: 0 auto clamp(2rem,4vw,3rem);
}
.reviews-rating .stars { font-size: 1.6rem; justify-content: center; display: flex; }
.reviews-rating .rating-line {
  color: var(--on-forest); font-size: 1.15rem; margin: .6rem 0 0;
}
.reviews-rating .rating-line strong { color: var(--cream); }
.reviews-rating .rating-sub { color: var(--on-forest-soft); font-size: .92rem; margin-top: .3rem; }
.reviews-actions {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem;
}
.review .review-head {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: -.01em;
  color: var(--on-forest); font-size: 1.15rem; margin: .2rem 0 .5rem;
}
.reviews-note {
  text-align: center; color: var(--on-forest-soft); font-size: .9rem;
  margin: clamp(1.8rem,3vw,2.6rem) auto 0; max-width: 42rem;
}
.reviews-note a { color: var(--honey); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Homepage hero — full-bleed food photo under a forest tint (light copy)
   ========================================================================== */
.hero--bg {
  position: relative;
  background-color: var(--forest); color: var(--on-forest);
  background-image:
    linear-gradient(90deg, rgba(13, 30, 19, .86) 0%, rgba(14, 31, 20, .58) 48%, rgba(20, 42, 27, .40) 100%),
    var(--hero-bg, none);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  border-bottom: 4px solid var(--honey);
}
.hero--bg .hero-copy { position: relative; z-index: 1; }
.hero--bg h1 { color: var(--on-forest); text-shadow: 0 2px 24px rgba(10, 22, 14, .45); }
.hero--bg .lede { color: var(--on-forest-soft); text-shadow: 0 1px 16px rgba(10, 22, 14, .40); }
.hero--bg .eyebrow { color: var(--honey); }
.hero--bg .eyebrow::after { background: var(--on-forest-line); }
.hero--bg .sprig { background: var(--honey); }
.hero--bg .hero-trust { color: var(--on-forest-soft); border-top-color: var(--on-forest-line); }
.hero--bg .hero-trust li::before { background: var(--honey); }
/* buttons that read on the photo */
.hero--bg .btn-primary { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.hero--bg .btn-primary:hover { background: var(--white); border-color: var(--white); }
.hero--bg .btn-ghost { color: var(--on-forest); border-color: rgba(242, 237, 221, .5); }
.hero--bg .btn-ghost:hover { background: var(--on-forest); color: var(--forest); border-color: var(--on-forest); }
/* ticker now sits directly under the hero */
.hero--bg + .ticker { margin-top: 0; }

/* ==========================================================================
   Classes — Kids Cooking & Nutrition Program
   Credential cards (DYCD / DOE), lesson lists, and the venue icon grid
   ========================================================================== */

/* --- Credentials: the trust signal, given real weight ---------------------- */
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.cred {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.8vw, 2.1rem); position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .25s ease;
}
/* honey rule along the top edge — reads as an official seal */
.cred::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--honey);
}
.cred:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.cred-tag {
  display: inline-block; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--leaf); background: var(--leaf-soft);
  padding: .3rem .7rem; border-radius: 999px; margin: .35rem 0 .9rem;
}
.cred h3 { font-size: 1.5rem; margin-bottom: .6rem; letter-spacing: -.02em; }
.cred p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* --- Lesson lists: checked items, not bullets ------------------------------ */
.learn-list { list-style: none; margin: 1.4rem 0 1.6rem; padding: 0; display: grid; gap: .85rem; }
.learn-list li {
  position: relative; padding-left: 2rem; color: var(--ink-soft); font-size: .99rem; line-height: 1.6;
}
.learn-list li strong { color: var(--forest); font-weight: 600; }
.learn-list li::before {
  content: ""; position: absolute; left: 0; top: .3em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--leaf-soft);
}
.learn-list li::after {
  content: ""; position: absolute; left: 5px; top: calc(.3em + 5px);
  width: 10px; height: 10px; background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --- Venue grid: where the program travels -------------------------------- */
.venues { background: var(--white); border-block: 1px solid var(--line); }
.venue-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.8vw, 1.2rem);
}
.venue {
  display: flex; flex-direction: column; align-items: flex-start; gap: .9rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem;
  color: var(--forest); letter-spacing: -.01em; line-height: 1.2;
  transition: transform .3s var(--ease-out), border-color .25s ease, background .25s ease;
}
.venue:hover { transform: translateY(-4px); border-color: var(--honey); background: var(--white); }
.venue-mark {
  width: 30px; height: 30px; flex: none; background: var(--leaf);
  transition: background .25s ease, transform .3s var(--ease-out);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.venue:hover .venue-mark { background: var(--honey); transform: scale(1.08) rotate(-4deg); }

/* icon set — one mask per venue type */
.venue-mark[data-icon="afterschool"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="school"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 9L12 4 2 9l10 5 10-5z'/%3E%3Cpath d='M6 11.5V17c0 1 2.7 2.5 6 2.5s6-1.5 6-2.5v-5.5'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 9L12 4 2 9l10 5 10-5z'/%3E%3Cpath d='M6 11.5V17c0 1 2.7 2.5 6 2.5s6-1.5 6-2.5v-5.5'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="camp"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4L3 20h18L12 4z'/%3E%3Cpath d='M12 4v16'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4L3 20h18L12 4z'/%3E%3Cpath d='M12 4v16'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="community"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l6-4 6 4v12'/%3E%3Cpath d='M15 21V12l6 3v6'/%3E%3Cpath d='M8 21v-4h3v4'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21V9l6-4 6 4v12'/%3E%3Cpath d='M15 21V12l6 3v6'/%3E%3Cpath d='M8 21v-4h3v4'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="daycare"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 8.6a4.6 4.6 0 00-7.8-2.4L12 7.2l-1-1A4.6 4.6 0 003.2 8.6c0 3.9 4.6 7 8.8 10.6 4.2-3.6 8.8-6.7 8.8-10.6z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 8.6a4.6 4.6 0 00-7.8-2.4L12 7.2l-1-1A4.6 4.6 0 003.2 8.6c0 3.9 4.6 7 8.8 10.6 4.2-3.6 8.8-6.7 8.8-10.6z'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="library"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6.5C10.5 5 8.5 4.5 4 4.5v13c4.5 0 6.5.5 8 2 1.5-1.5 3.5-2 8-2v-13c-4.5 0-6.5.5-8 2z'/%3E%3Cpath d='M12 6.5v13'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6.5C10.5 5 8.5 4.5 4 4.5v13c4.5 0 6.5.5 8 2 1.5-1.5 3.5-2 8-2v-13c-4.5 0-6.5.5-8 2z'/%3E%3Cpath d='M12 6.5v13'/%3E%3C/svg%3E");
}
.venue-mark[data-icon="party"] {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l4.5-11L19 19.5 4 20z'/%3E%3Cpath d='M13 7.5a2 2 0 013-2'/%3E%3Cpath d='M17 3.5v.01'/%3E%3Cpath d='M20.5 7v.01'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20l4.5-11L19 19.5 4 20z'/%3E%3Cpath d='M13 7.5a2 2 0 013-2'/%3E%3Cpath d='M17 3.5v.01'/%3E%3Cpath d='M20.5 7v.01'/%3E%3C/svg%3E");
}

.venue-note {
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0; color: var(--ink-soft); font-size: .97rem;
}
.venue-note a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.venue-note a:hover { color: var(--honey); }

/* --- Feature card: full-width row inside a 2-up card grid ----------------- */
.card-feature { grid-column: 1 / -1; }
.card-feature .reward-tag { display: inline-block; margin-top: 0; }
.card-feature h3 { font-size: 1.55rem; }
@media (min-width: 760px) {
  .card-feature {
    display: grid; grid-template-columns: .82fr 1.18fr;
    gap: clamp(1.4rem, 3vw, 2.4rem); align-items: center;
  }
  .card-feature .card-img { margin: 0; height: 100%; }
  .card-feature .card-img img { height: 100%; min-height: 230px; aspect-ratio: auto; }
  .card-feature .card-feature-body { padding-block: .2rem; }
}

/* classes page: portrait images read better slightly taller */
.about-media img[src*="Acai"], .about-media img[src*="nutella"] { aspect-ratio: 4 / 5; }

@media (max-width: 980px) {
  .venue-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .cred-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .venue { font-size: .95rem; padding: 1.1rem 1rem; }
}
