/* B's Bagels — bespoke stylesheet. Anti-AI doctrine compliant.
   Paper cream, warm ink, one aggressive red accent + sparse rainbow pops.
   Fonts: Fraunces (display), Hanken Grotesk (body), Permanent Marker (street accent). */

:root{
  --paper:#F6EEDD;         /* warm cream, never #fff */
  --paper-2:#EFE4CE;       /* deeper cream */
  --ink:#181109;           /* warm near-black, never #000 */
  --ink-soft:#443422;
  --red:#CE2032;           /* dominant accent */
  --red-deep:#A5101F;
  --mustard:#E7A417;       /* pop */
  --teal:#12938C;          /* pop */
  --berry:#7A3E9D;         /* pop */
  --cream-line:rgba(24,17,9,0.14);
  --shadow-hard:4px 4px 0 var(--ink);
  --shadow-hard-red:5px 5px 0 var(--red);
  --ease-reveal:cubic-bezier(0.22,1,0.36,1);
  --ease-hero:cubic-bezier(0.65,0,0.35,1);
  --ease-snap:cubic-bezier(0.34,1.56,0.64,1);
  --maxw:1200px;
  --display:"Fraunces",Georgia,serif;
  --body:"Hanken Grotesk","Helvetica Neue",Arial,sans-serif;
  --street:"Permanent Marker",var(--display);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--body);font-size:18px;line-height:1.62;font-weight:400;
  overflow-x:hidden;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--display);font-weight:600;line-height:1.02;letter-spacing:-0.015em;margin:0}
p{margin:0 0 1.1em}
::selection{background:var(--red);color:var(--paper)}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 26px}
.eyebrow{font-family:var(--body);font-weight:800;font-size:12.5px;letter-spacing:0.22em;text-transform:uppercase;
  display:inline-flex;align-items:center;gap:10px;color:var(--red);margin:0 0 18px}
.eyebrow::before{content:attr(data-num);font-variant-numeric:tabular-nums;color:var(--ink-soft);
  font-weight:800;letter-spacing:0.05em}
.eyebrow.on-dark{color:var(--mustard)}
.eyebrow.on-dark::before{color:rgba(246,238,221,0.6)}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:10px;font-family:var(--body);font-weight:800;
  font-size:15px;letter-spacing:0.02em;padding:15px 26px;border:2.5px solid var(--ink);
  background:var(--red);color:var(--paper);cursor:pointer;border-radius:2px;
  box-shadow:var(--shadow-hard);transition:transform .18s var(--ease-snap),box-shadow .18s var(--ease-snap),background .2s var(--ease-reveal);
  text-transform:uppercase}
.btn:hover{transform:translate(-2px,-2px);box-shadow:6px 6px 0 var(--ink)}
.btn:active{transform:translate(2px,2px);box-shadow:1px 1px 0 var(--ink)}
.btn.ghost{background:var(--paper);color:var(--ink)}
.btn.ghost:hover{background:var(--mustard)}
.btn.on-dark{border-color:var(--paper)}
.btn.sm{padding:11px 18px;font-size:13px;box-shadow:3px 3px 0 var(--ink)}
.btn .arw{font-size:17px;transition:transform .2s var(--ease-snap)}
.btn:hover .arw{transform:translateX(4px)}

/* ---------- header / nav ---------- */
.site-head{position:sticky;top:0;z-index:60;background:var(--paper);
  border-bottom:2.5px solid var(--ink)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;height:74px}
.brand{display:flex;align-items:center;gap:12px;font-family:var(--display);font-weight:700;font-size:22px;letter-spacing:-0.02em}
.brand img{width:46px;height:46px;border-radius:50%}
.brand .bmark{display:none}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}
.nav-links > li{position:relative}
.nav-links > li > a,.nav-links > li > button{font-family:var(--body);font-weight:700;font-size:15px;color:var(--ink);
  background:none;border:0;cursor:pointer;padding:10px 14px;display:inline-flex;align-items:center;gap:6px;letter-spacing:0.01em}
.nav-links > li > a::after{content:"";position:absolute;left:14px;right:14px;bottom:6px;height:2px;background:var(--red);
  transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease-reveal)}
.nav-links > li > a:hover::after{transform:scaleX(1)}
.caret{width:8px;height:8px;border-right:2px solid var(--ink);border-bottom:2px solid var(--ink);
  transform:rotate(45deg) translateY(-2px);transition:transform .2s var(--ease-reveal)}
.dd{position:absolute;top:calc(100% + 8px);left:0;min-width:246px;background:var(--paper);
  border:2.5px solid var(--ink);box-shadow:var(--shadow-hard);padding:8px;
  opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s var(--ease-reveal);z-index:70}
.nav-links > li:hover .dd,.nav-links > li:focus-within .dd{opacity:1;visibility:visible;transform:translateY(0)}
.nav-links > li:hover .caret{transform:rotate(-135deg) translateY(-2px)}
.dd a{display:block;padding:10px 13px;font-weight:600;font-size:14.5px;border-radius:2px;line-height:1.3}
.dd a small{display:block;font-weight:500;font-size:12px;color:var(--ink-soft)}
.dd a:hover{background:var(--ink);color:var(--paper)}
.dd a:hover small{color:rgba(246,238,221,0.7)}
.nav-cta{display:flex;align-items:center;gap:12px}
.nav-phone{font-weight:800;font-size:15px;white-space:nowrap;display:inline-flex;align-items:center;gap:7px}
.nav-phone .dot{width:8px;height:8px;background:var(--teal);border-radius:50%;box-shadow:0 0 0 3px rgba(18,147,140,0.25)}
.burger{display:none;background:none;border:2.5px solid var(--ink);border-radius:2px;width:46px;height:42px;cursor:pointer;padding:0;align-items:center;justify-content:center;flex-direction:column;gap:4px}
.burger span{width:22px;height:2.5px;background:var(--ink);display:block;transition:.2s var(--ease-reveal)}
.burger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ---------- marquee ---------- */
.marquee{background:var(--ink);color:var(--paper);overflow:hidden;border-bottom:2.5px solid var(--ink)}
.marquee.red{background:var(--red)}
.marquee-track{display:inline-flex;white-space:nowrap;gap:0;animation:scrollx 34s linear infinite;padding:11px 0}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee-track span{font-family:var(--street);font-size:16px;letter-spacing:0.04em;padding:0 26px;display:inline-flex;align-items:center;gap:26px}
.marquee-track span::after{content:"✦";color:var(--mustard);font-family:var(--body)}
@keyframes scrollx{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---------- hero ---------- */
.hero{position:relative;padding:64px 0 40px}
.hero-grid{display:grid;grid-template-columns:1.05fr 0.95fr;gap:48px;align-items:center}
.hero h1{font-size:clamp(56px,8.6vw,116px);font-weight:600;letter-spacing:-0.03em}
.hero h1 .scriptword{font-family:var(--street);color:var(--red);font-weight:400;display:inline-block;transform:rotate(-3deg);letter-spacing:0}
.hero .lede{font-size:20px;max-width:46ch;color:var(--ink-soft);margin-top:8px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.hero-media{position:relative}
.hero-media .ph{border:3px solid var(--ink);border-radius:3px;box-shadow:8px 8px 0 var(--ink);width:100%;aspect-ratio:4/3.4;object-fit:cover}
.hero-note{position:absolute;bottom:-22px;left:-22px;background:var(--mustard);border:2.5px solid var(--ink);
  padding:9px 15px;font-family:var(--street);font-size:15px;transform:rotate(-4deg);box-shadow:var(--shadow-hard)}
.stamp{position:absolute;z-index:3;display:grid;place-items:center;width:118px;height:118px;border-radius:50%;
  background:var(--red);color:var(--paper);border:2.5px solid var(--ink);text-align:center;
  font-family:var(--street);font-size:14px;line-height:1.06;padding:10px;transform:rotate(11deg);box-shadow:var(--shadow-hard)}
.stamp.top-right{top:-26px;right:-20px}

/* ---------- generic sections ---------- */
.section{padding:84px 0;position:relative}
.section.tight{padding:60px 0}
.section.ink{background:var(--ink);color:var(--paper)}
.section.red{background:var(--red);color:var(--paper)}
.section.cream2{background:var(--paper-2)}
.section-head{max-width:760px;margin-bottom:44px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-head h2{font-size:clamp(34px,5vw,60px)}
.section-head p{font-size:19px;color:var(--ink-soft);margin-top:16px}
.section.ink .section-head p,.section.red .section-head p{color:rgba(246,238,221,0.82)}
.rule{height:2.5px;background:var(--ink);border:0;margin:0}
.kicker-lg{font-family:var(--street);color:var(--red);font-size:22px;transform:rotate(-2deg);display:inline-block;margin-bottom:8px}

/* full-bleed break */
.bleed{width:100vw;margin-left:calc(50% - 50vw)}
.bleed img{width:100%;height:clamp(280px,42vw,520px);object-fit:cover;border-top:3px solid var(--ink);border-bottom:3px solid var(--ink)}

/* ---------- feature / value cards ---------- */
.grid{display:grid;gap:22px}
.g2{grid-template-columns:repeat(2,1fr)}
.g3{grid-template-columns:repeat(3,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
.card{background:var(--paper);border:2.5px solid var(--ink);border-radius:3px;padding:26px}
.section.ink .card{background:#221812;border-color:var(--paper)}
.card .num{font-family:var(--street);color:var(--red);font-size:26px}
.card h3{font-size:24px;margin:10px 0 8px}
.card p{font-size:16px;color:var(--ink-soft);margin:0}
.section.ink .card p{color:rgba(246,238,221,0.75)}
.value{padding:24px 4px;border-top:2.5px solid var(--ink)}
.value h3{font-size:22px;margin-bottom:8px;display:flex;align-items:baseline;gap:12px}
.value h3 .v-num{font-family:var(--body);font-size:13px;font-weight:800;color:var(--red);letter-spacing:0.1em}
.value p{font-size:16px;color:var(--ink-soft);margin:0}

/* ---------- menu items ---------- */
.menu-cat{margin-bottom:20px}
.menu-cat h3{font-size:30px;display:flex;align-items:center;gap:14px;margin-bottom:6px}
.menu-cat h3 .tag{font-family:var(--body);font-size:12px;font-weight:800;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--paper);background:var(--red);padding:4px 10px;border-radius:2px;border:2px solid var(--ink)}
.mitem{display:flex;gap:16px;align-items:baseline;padding:15px 0;border-bottom:1.5px dotted var(--cream-line)}
.mitem .mname{font-family:var(--display);font-weight:600;font-size:20px;white-space:nowrap}
.mitem .mdesc{font-size:15px;color:var(--ink-soft);flex:1}
.mitem .mprice{font-family:var(--body);font-weight:800;font-size:16px;margin-left:auto;white-space:nowrap}
.mitem .badge{font-size:10.5px;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;border:1.5px solid var(--ink);border-radius:2px;padding:2px 6px}
.badge.veg{background:var(--teal);color:var(--paper)}
.badge.fan{background:var(--mustard)}
.badge.ny{background:var(--berry);color:var(--paper)}

/* ---------- split feature ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.split.rev .split-media{order:2}
.split-media img{border:3px solid var(--ink);border-radius:3px;box-shadow:var(--shadow-hard);width:100%;aspect-ratio:4/3.2;object-fit:cover}
.split-body h2{font-size:clamp(30px,4vw,48px);margin-bottom:16px}
.checklist{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:11px}
.checklist li{display:flex;gap:12px;align-items:flex-start;font-size:16.5px}
.checklist li::before{content:"";width:20px;height:20px;flex:0 0 20px;margin-top:3px;background:var(--red);
  border:2px solid var(--ink);border-radius:2px;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat}

/* ---------- steps ---------- */
.steps{counter-reset:s;display:grid;gap:2px;border:2.5px solid var(--ink);border-radius:3px;overflow:hidden}
.step{counter-increment:s;display:grid;grid-template-columns:70px 1fr;gap:18px;padding:22px 24px;background:var(--paper);align-items:baseline}
.step + .step{border-top:2.5px solid var(--ink)}
.step::before{content:counter(s,decimal-leading-zero);font-family:var(--street);color:var(--red);font-size:28px}
.step h3,.step .step-t{font-family:var(--display);font-size:21px;margin-bottom:5px;font-weight:700}
.step p{font-size:15.5px;color:var(--ink-soft);margin:0}

/* ---------- stats / badge row ---------- */
.badgerow{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}
.pill{border:2.5px solid var(--ink);background:var(--paper);border-radius:100px;padding:9px 18px;font-weight:800;font-size:14px;display:inline-flex;gap:9px;align-items:center}
.pill .ic{width:9px;height:9px;border-radius:50%}

/* ---------- forms ---------- */
.formcard{background:var(--paper);border:3px solid var(--ink);border-radius:4px;box-shadow:var(--shadow-hard);padding:34px}
.section.ink .formcard{background:#221812;border-color:var(--paper)}
.field{margin-bottom:18px}
.field.row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
label{display:block;font-weight:800;font-size:13.5px;letter-spacing:0.04em;text-transform:uppercase;margin-bottom:7px}
.req{color:var(--red)}
input,textarea,select{width:100%;font-family:var(--body);font-size:16px;color:var(--ink);background:var(--paper-2);
  border:2.5px solid var(--ink);border-radius:2px;padding:13px 14px}
.section.ink input,.section.ink textarea,.section.ink select{background:#2c211a;color:var(--paper)}
input:focus,textarea:focus,select:focus{outline:none;box-shadow:var(--shadow-hard-red)}
textarea{min-height:120px;resize:vertical}
input[type=file]{padding:10px;background:var(--paper);cursor:pointer}
.filehint{font-size:12.5px;color:var(--ink-soft);margin-top:5px}
.form-note{font-size:13px;color:var(--ink-soft);margin-top:6px}
.form-status{display:none;margin-top:16px;padding:14px 16px;border:2.5px solid var(--ink);border-radius:2px;font-weight:700;font-size:15px}
.form-status.ok{display:block;background:var(--teal);color:var(--paper)}
.form-status.err{display:block;background:var(--mustard)}

/* ---------- CTA band ---------- */
.ctaband{background:var(--red);color:var(--paper);border-top:3px solid var(--ink);border-bottom:3px solid var(--ink);
  padding:64px 0;text-align:center;position:relative;overflow:hidden}
.ctaband h2{font-size:clamp(34px,5.5vw,64px);margin-bottom:16px}
.ctaband p{font-size:19px;max-width:52ch;margin:0 auto 26px;color:rgba(246,238,221,0.9)}
.ctaband .btn{background:var(--paper);color:var(--ink);border-color:var(--ink)}
.ctaband .btn.ghost{background:transparent;color:var(--paper);border-color:var(--paper)}

/* ---------- location / map ---------- */
.locwrap{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:stretch}
.loc-info{display:flex;flex-direction:column;gap:16px}
.loc-line{display:flex;gap:13px;align-items:flex-start;font-size:16.5px}
.loc-line .lb{font-weight:800;min-width:74px;text-transform:uppercase;font-size:12.5px;letter-spacing:0.08em;padding-top:3px}
.hours-tbl{width:100%;border-collapse:collapse;font-size:15.5px}
.hours-tbl td{padding:7px 0;border-bottom:1.5px dotted var(--cream-line)}
.hours-tbl td:last-child{text-align:right;font-weight:700}
.mapbox{border:3px solid var(--ink);border-radius:3px;overflow:hidden;box-shadow:var(--shadow-hard);min-height:340px}
.mapbox iframe{width:100%;height:100%;min-height:340px;border:0;display:block;filter:grayscale(0.2) contrast(1.05)}

/* ---------- footer ---------- */
.site-foot{background:var(--ink);color:var(--paper);padding:64px 0 30px;border-top:3px solid var(--ink)}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.1fr;gap:34px}
.foot-brand img{width:74px;border-radius:50%;background:var(--paper);padding:4px;margin-bottom:14px}
.foot-brand p{color:rgba(246,238,221,0.7);font-size:15px}
.foot-col h2,.foot-col h4{font-family:var(--body);font-size:12.5px;letter-spacing:0.16em;text-transform:uppercase;color:var(--mustard);margin-bottom:14px}
.foot-col a{display:block;color:rgba(246,238,221,0.82);padding:5px 0;font-size:15px}
.foot-col a:hover{color:var(--paper)}
.foot-social{display:flex;gap:12px;margin-top:14px}
.foot-social a{width:40px;height:40px;border:2px solid rgba(246,238,221,0.4);border-radius:50%;display:grid;place-items:center;font-weight:800}
.foot-social a:hover{background:var(--red);border-color:var(--red)}
.foot-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;margin-top:44px;padding-top:22px;
  border-top:1.5px solid rgba(246,238,221,0.18);font-size:13px;color:rgba(246,238,221,0.55)}

/* ---------- reveal ---------- */
.reveal{transition:transform .7s var(--ease-reveal)}
.js .reveal:not(.in){opacity:0;transform:translateY(24px)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal,.js .reveal:not(.in){opacity:1!important;transform:none!important;transition:none}}

/* ---------- responsive ---------- */
@media(max-width:960px){
  .hero-grid,.split,.locwrap,.foot-grid{grid-template-columns:1fr}
  .split.rev .split-media{order:0}
  .g4{grid-template-columns:repeat(2,1fr)}
  .g3{grid-template-columns:1fr}
  .foot-grid{gap:26px}
  .hero-media{margin-top:20px}
}
@media(max-width:760px){
  body{font-size:17px}
  .nav-links,.nav-phone{display:none}
  .burger{display:flex}
  .site-head.menu-open .nav-links{display:flex;position:absolute;top:74px;left:0;right:0;flex-direction:column;
    background:var(--paper);border-bottom:2.5px solid var(--ink);padding:12px;gap:2px;align-items:stretch;max-height:80vh;overflow:auto}
  .site-head.menu-open .nav-links > li > a,.site-head.menu-open .nav-links > li > button{padding:14px;width:100%;justify-content:space-between;border-bottom:1.5px dotted var(--cream-line)}
  .site-head.menu-open .dd{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;border-left:3px solid var(--red);margin:2px 0 6px 10px;padding:2px 0 2px 6px}
  .g2,.g4,.field.row{grid-template-columns:1fr}
  .mitem{flex-wrap:wrap}.mitem .mname{white-space:normal}
  .stamp{width:92px;height:92px;font-size:12px}
  .hero h1{font-size:clamp(46px,13vw,72px)}
}

/* ===== reference-aligned revision: Gott's / ClusterTruck / Shindig / Lettuce ===== */
:root{--display:"Anton",Impact,Haettenschweiler,sans-serif;--serif:"Fraunces",Georgia,serif}
h1,h2{font-family:var(--display);font-weight:400;text-transform:uppercase;letter-spacing:0.012em;line-height:0.92}
h3,h4{font-family:var(--serif);text-transform:none}
.hero h1{font-size:clamp(52px,8.6vw,122px);letter-spacing:0.015em}
.section-head h2{font-size:clamp(40px,6vw,76px)}
.ctaband h2{font-size:clamp(40px,6.5vw,82px)}
.mitem .mname{font-family:var(--serif);text-transform:none}
.scriptword{text-transform:none!important;font-family:var(--street)!important}
.kicker-lg{text-transform:none}
/* highlight box (ClusterTruck / Gott's knockout) */
.hl{display:inline-block;background:var(--red);color:var(--paper);padding:0.02em 0.3em 0.12em;
   transform:rotate(-1.6deg);box-shadow:5px 5px 0 var(--ink);text-transform:uppercase}
/* full-bleed hero */
.herofull{position:relative;width:100vw;left:50%;transform:translateX(-50%);min-height:86vh;
  display:flex;align-items:flex-end;color:var(--paper);border-bottom:3px solid var(--ink);overflow:hidden}
.herofull.short{min-height:68vh}
.herofull .bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0;transform:scale(1.03)}
.herofull .scrim{position:absolute;inset:0;z-index:1;
  background:linear-gradient(96deg,rgba(18,12,7,0.9) 0%,rgba(18,12,7,0.64) 38%,rgba(18,12,7,0.16) 74%,rgba(18,12,7,0.02) 100%)}
.herofull .inner{position:relative;z-index:3;max-width:var(--maxw);margin:0 auto;width:100%;padding:132px 26px 70px}
.herofull h1{color:var(--paper)}
.herofull .lede.light{color:rgba(246,238,221,0.92);max-width:44ch;font-size:20px}
.ghostword{position:absolute;z-index:2;right:1%;bottom:-6%;font-family:var(--display);text-transform:uppercase;
  font-size:25vw;line-height:0.8;color:transparent;-webkit-text-stroke:2px rgba(246,238,221,0.13);pointer-events:none;white-space:nowrap}
.hero-stamp{position:absolute;z-index:4;top:122px;right:6%;background:var(--red);color:var(--paper);
  border:2.5px solid var(--paper);border-radius:50%;width:128px;height:128px;display:grid;place-items:center;text-align:center;
  font-family:var(--street);font-size:15px;line-height:1.05;transform:rotate(11deg);box-shadow:5px 5px 0 rgba(0,0,0,0.32)}
.pill.dark{background:rgba(20,14,8,0.42);color:var(--paper);border-color:rgba(246,238,221,0.7)}
/* ghost word band divider (Gott's) */
.ghostband{overflow:hidden;background:var(--ink);border-top:3px solid var(--ink);border-bottom:3px solid var(--ink);padding:8px 0}
.ghostband .t{display:inline-block;white-space:nowrap;font-family:var(--display);text-transform:uppercase;
  font-size:clamp(44px,8vw,104px);line-height:1.12;color:transparent;-webkit-text-stroke:1.5px rgba(246,238,221,0.4);
  animation:scrollx 32s linear infinite}
.ghostband .t span{padding:0 30px}
@media(max-width:760px){
  .herofull{min-height:76vh}.herofull .inner{padding:104px 22px 48px}
  .hero-stamp{width:88px;height:88px;font-size:11.5px;top:90px;right:5%}
  .ghostword{font-size:36vw;bottom:-2%}
}

/* ===== mobile polish pass ===== */
.brand{white-space:nowrap}
.nav-order .t-mini{display:none}
@media(max-width:760px){
  .nav{height:64px;gap:10px}
  .brand{font-size:18px;gap:9px}
  .brand img{width:38px;height:38px}
  .nav-cta{gap:8px}
  .nav-order{padding:10px 14px;font-size:12.5px;letter-spacing:0.02em;box-shadow:2px 2px 0 var(--ink)}
  .nav-order .t-full{display:none}
  .nav-order .t-mini{display:inline}
  .burger{width:42px;height:38px}
  .site-head.menu-open .nav-links{top:64px}
  .hero-stamp{display:none}
  .section{padding:54px 0}
  .section.tight{padding:38px 0}
  .section-head{margin-bottom:26px}
  .section-head p{font-size:17px}
  .herofull{min-height:80vh}
  .herofull .inner{padding:92px 20px 40px}
  .herofull .lede.light{font-size:16.5px}
  .ghostword{font-size:40vw;bottom:-1%}
  .ctaband{padding:50px 0}
  .steps .step{grid-template-columns:50px 1fr;padding:18px 16px;gap:12px}
  .formcard{padding:22px}
  .bleed img{height:clamp(240px,60vw,360px)}
  .foot-social{margin-bottom:6px}
}
@media(max-width:400px){
  .brand{font-size:16.5px}
  .nav-order{padding:9px 12px;font-size:12px}
  .hero h1{font-size:clamp(40px,12.5vw,60px)}
}

/* sticky-header offset for in-page anchors */
[id]{scroll-margin-top:82px}
@media(max-width:760px){[id]{scroll-margin-top:70px}}

/* ===== v3 elevation: tablet nav, sticky order bar, motion, graffiti ===== */

/* --- tablet/mobile nav collapse to <=940 with accordion dropdowns --- */
@media(max-width:940px){
  .nav{height:64px;gap:10px}
  .brand{white-space:nowrap;font-size:19px;gap:10px}
  .brand img{width:39px;height:39px}
  .nav-links,.nav-phone{display:none}
  .nav-cta{gap:8px}
  .nav-order{padding:10px 15px;font-size:12.5px;letter-spacing:.02em;box-shadow:2px 2px 0 var(--ink)}
  .nav-order .t-full{display:none}
  .nav-order .t-mini{display:inline}
  .burger{display:flex}
  .site-head.menu-open .nav-links{display:flex;position:absolute;top:64px;left:0;right:0;flex-direction:column;
    background:var(--paper);border-bottom:2.5px solid var(--ink);padding:8px 12px 12px;gap:0;align-items:stretch;
    max-height:82vh;overflow:auto;z-index:80;box-shadow:0 18px 34px rgba(24,17,9,.16)}
  .site-head.menu-open .nav-links>li{position:static;border-bottom:1.5px dotted var(--cream-line)}
  .site-head.menu-open .nav-links>li>a,.site-head.menu-open .nav-links>li>button{padding:15px 6px;width:100%;
    justify-content:space-between;font-size:16px;font-family:var(--body);font-weight:700}
  .site-head.menu-open .nav-links>li>a::after{display:none}
  .site-head.menu-open .dd{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;
    border-left:3px solid var(--red);margin:0 0 8px 12px;padding:0 0 0 10px;min-width:0;background:transparent;
    max-height:0;overflow:hidden;transition:max-height .32s var(--ease-reveal)}
  .site-head.menu-open .nav-links>li.open-dd>.dd{max-height:640px}
  .site-head.menu-open .nav-links>li.open-dd>button .caret{transform:rotate(-135deg) translateY(-2px)}
  .site-head.menu-open .dd a{padding:11px 6px}
}

/* --- sticky mobile/tablet order+call bar --- */
.mobile-actionbar{display:none}
@media(max-width:940px){
  .mobile-actionbar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:75;border-top:2.5px solid var(--ink)}
  .mab-btn{flex:1;display:flex;align-items:center;justify-content:center;gap:9px;padding:15px 8px;
    font-family:var(--body);font-weight:800;font-size:15px;text-transform:uppercase;letter-spacing:.03em}
  .mab-btn.call{flex:0 0 36%;background:var(--paper);color:var(--ink);border-right:2.5px solid var(--ink)}
  .mab-btn.call svg{color:var(--red)}
  .mab-btn.order{background:var(--red);color:var(--paper)}
  .mab-btn:active{filter:brightness(.94)}
  body{padding-bottom:57px}
}

/* --- hero Ken Burns (subtle life), respects reduced-motion --- */
@media(prefers-reduced-motion:no-preference){
  .herofull .bg{animation:kenburns 26s ease-in-out infinite alternate}
}
@keyframes kenburns{from{transform:scale(1.05)}to{transform:scale(1.15) translate(-1.5%,-2%)}}

/* --- staggered reveals inside grids --- */
.grid .reveal{transition-duration:.55s}
.grid .reveal:nth-child(2){transition-delay:.08s}
.grid .reveal:nth-child(3){transition-delay:.16s}
.grid .reveal:nth-child(4){transition-delay:.24s}
.grid .reveal:nth-child(5){transition-delay:.32s}
.grid .reveal:nth-child(6){transition-delay:.4s}

/* --- card + menu hover micro-interactions --- */
.card{transition:transform .25s var(--ease-snap),box-shadow .25s var(--ease-snap)}
.card:hover{transform:translateY(-5px);box-shadow:7px 9px 0 var(--ink)}
.section.ink .card:hover{box-shadow:7px 9px 0 var(--red)}
.mitem{transition:background-color .2s var(--ease-reveal),padding-left .2s var(--ease-reveal)}
.mitem:hover{background:rgba(206,32,50,.055);padding-left:8px}
.mitem:hover .mname{color:var(--red)}
.pill{transition:transform .2s var(--ease-snap)}
.pill:hover{transform:translateY(-2px)}

/* --- hand-drawn marker underline under section headings (street-art) --- */
.section-head h2{position:relative;display:inline-block}
.section-head h2::after{content:"";display:block;height:13px;margin-top:8px;width:min(150px,60%);
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='16'%3E%3Cpath d='M3 11 C40 3 70 3 90 8 C110 12 130 6 147 5' stroke='%23CE2032' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center;background-size:contain}
.section.ink .section-head h2::after,.section.red .section-head h2::after{filter:none}
.section-head.center h2::after{margin-left:auto;margin-right:auto}

/* --- graffiti sticker on the rainbow bleed --- */
.bleed{position:relative}
.bleed-sticker{position:absolute;z-index:3;left:5%;top:20px;background:var(--mustard);color:var(--ink);
  border:2.5px solid var(--ink);font-family:var(--street);font-size:clamp(15px,2.2vw,24px);
  padding:8px 16px;transform:rotate(-4deg);box-shadow:var(--shadow-hard);line-height:1}
@media(max-width:600px){.bleed-sticker{font-size:15px;left:14px;top:12px;padding:6px 12px}}

/* --- button shine on hover (subtle) --- */
.btn{position:relative;overflow:hidden}
.btn::after{content:"";position:absolute;top:0;left:-120%;width:60%;height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.35),transparent);transform:skewX(-18deg);transition:none}
.btn:hover::after{left:130%;transition:left .6s var(--ease-hero)}

/* ===== blog / article ===== */
.article-head{padding:70px 0 26px}
.article-head .eyebrow{margin-bottom:14px}
.article-head h1{font-family:var(--display);text-transform:uppercase;font-size:clamp(34px,5.4vw,62px);line-height:1.0;max-width:16ch}
.article-meta{margin-top:16px;color:var(--ink-soft);font-weight:700;font-size:14px;letter-spacing:.02em;text-transform:uppercase}
.article-hero{width:100%;height:clamp(220px,38vw,440px);object-fit:cover;border-top:3px solid var(--ink);border-bottom:3px solid var(--ink)}
.prose{max-width:720px;margin:0 auto;padding:44px 26px 10px;font-size:18.5px;line-height:1.72}
.prose .lead{font-size:22px;line-height:1.55;color:var(--ink);font-family:var(--body);font-weight:500;
  border-left:4px solid var(--red);padding-left:18px;margin-bottom:30px}
.prose h2{font-family:var(--serif);text-transform:none;font-size:clamp(24px,3.4vw,32px);line-height:1.15;margin:36px 0 12px}
.prose h3{font-family:var(--serif);font-size:21px;margin:24px 0 8px}
.prose p{margin:0 0 1.15em}
.prose ul,.prose ol{margin:0 0 1.2em;padding-left:22px}
.prose li{margin:6px 0}
.prose a{color:var(--red-deep);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:2px;font-weight:600}
.prose a:hover{background:var(--mustard);color:var(--ink);text-decoration:none}
.prose blockquote{margin:24px 0;padding:16px 20px;background:var(--paper-2);border:2.5px solid var(--ink);border-radius:3px;font-family:var(--serif);font-size:20px}
.prose .tip{background:var(--paper-2);border:2.5px solid var(--ink);border-left:6px solid var(--red);border-radius:3px;padding:16px 20px;margin:22px 0}
.prose .tip strong{font-family:var(--body);text-transform:uppercase;letter-spacing:.04em;font-size:13px;color:var(--red)}
.faqblock{max-width:720px;margin:8px auto 0;padding:0 26px}
.faqblock .value h3{font-family:var(--serif)}
.related{max-width:720px;margin:34px auto 0;padding:24px 26px;border-top:2.5px solid var(--ink)}
.related h4{font-family:var(--body);font-size:12.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--red);margin-bottom:12px}
.related a{display:inline-flex;align-items:center;gap:8px;font-weight:700;border:2px solid var(--ink);border-radius:100px;padding:8px 16px;margin:0 8px 8px 0;font-size:14px}
.related a:hover{background:var(--ink);color:var(--paper)}
/* blog index cards */
.postcard{display:grid;grid-template-columns:200px 1fr;gap:22px;align-items:center;background:var(--paper);border:2.5px solid var(--ink);border-radius:4px;overflow:hidden;box-shadow:var(--shadow-hard);transition:transform .22s var(--ease-snap),box-shadow .22s var(--ease-snap)}
.postcard:hover{transform:translate(-2px,-3px);box-shadow:7px 9px 0 var(--ink)}
.postcard img{width:100%;height:100%;min-height:150px;object-fit:cover;border-right:2.5px solid var(--ink)}
.postcard .pc-body{padding:20px 22px 20px 0}
.postcard h3{font-family:var(--serif);font-size:24px;margin:0 0 8px}
.postcard p{font-size:15.5px;color:var(--ink-soft);margin:0 0 10px}
.postcard .pc-meta{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--red)}
@media(max-width:640px){.postcard{grid-template-columns:1fr}.postcard img{min-height:180px;border-right:0;border-bottom:2.5px solid var(--ink)}.postcard .pc-body{padding:0 20px 20px}}

/* a11y skip link + focus visibility */
.skip{position:absolute;left:-999px;top:0;z-index:200;background:var(--ink);color:var(--paper);padding:10px 16px;font-weight:800;border-radius:0 0 4px 0}
.skip:focus{left:0}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:3px solid var(--teal);outline-offset:2px}

/* ===== hero background video (home) ===== */
.bg-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.herofull .bg-fallback{z-index:0}
@media(max-width:600px){.bg-video{display:none}}
@media(prefers-reduced-motion:reduce){.bg-video{display:none}}

/* ===== interior photo hero (home) ===== */
.bg-hero-interior{background-position:62% center}
.scrim-strong{background:
  linear-gradient(93deg, rgba(15,10,6,0.95) 0%, rgba(15,10,6,0.82) 30%, rgba(15,10,6,0.5) 60%, rgba(15,10,6,0.2) 100%),
  linear-gradient(to top, rgba(15,10,6,0.6) 0%, rgba(15,10,6,0) 46%)}
@media(max-width:760px){
  .bg-hero-interior{background-position:60% center}
  .scrim-strong{background:linear-gradient(to top, rgba(15,10,6,0.96) 0%, rgba(15,10,6,0.62) 52%, rgba(15,10,6,0.4) 100%)}
}

/* ===== photo gallery (real shop photos) ===== */
.photo-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:190px;gap:14px;grid-auto-flow:dense}
.photo-grid img{width:100%;height:100%;object-fit:cover;border:2.5px solid var(--ink);border-radius:3px;display:block;
  transition:transform .3s var(--ease-snap),filter .3s var(--ease-reveal)}
.photo-grid img:hover{transform:scale(1.015);filter:saturate(1.08)}
.photo-grid .tall{grid-row:span 2}
.photo-grid .wide{grid-column:span 2}
.photo-grid .big{grid-column:span 2;grid-row:span 2}
@media(max-width:760px){
  .photo-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:140px;gap:10px}
  .photo-grid .big{grid-column:span 2;grid-row:span 2}
  .photo-grid .wide{grid-column:span 2}
  .photo-grid .tall{grid-row:span 1}
}

/* hero: keep the lede clear of the rotated highlight box + its shadow on mobile */
@media(max-width:760px){
  .herofull h1{margin-bottom:12px}
  .herofull .lede.light{margin-top:16px}
}
@media(max-width:400px){
  .herofull .lede.light{margin-top:18px}
}

/* ============================================================
   v4 — BRAND RETHEME (client direction, Brandon 2026-07-21)
   Palette: black / white / gray / gold. No rainbow pops.
   Type: Yellowtail (brush script, stands in for B Beshary until
   the licensed file lands) + Archivo display + Hanken body.
   TO SWAP IN REAL BESHARY: drop the .woff2 in assets/fonts/,
   uncomment @font-face below, change --street to "Beshary".
   ============================================================ */

/*
@font-face{font-family:"Beshary";src:url("assets/fonts/beshary.woff2") format("woff2");
  font-weight:400;font-display:swap}
*/

:root{
  --paper:#FCFCFA;            /* white */
  --paper-2:#F1F1EE;          /* light gray surface */
  --gray:#6E6E6B;             /* mid gray */
  --gray-line:#D9D9D4;
  --ink:#131313;              /* black */
  --ink-soft:#4E4E4B;         /* gray body text */

  --gold:#B8912F;             /* accent: borders, fills, rules */
  --gold-text:#7C6117;        /* AA-safe gold for text on white */
  --gold-on-dark:#DCB755;     /* gold for text on black */
  --gold-deep:#8E6E1D;

  /* legacy tokens remapped so every existing rule re-skins */
  --red:var(--gold);
  --red-deep:var(--gold-text);
  --mustard:var(--gold);
  --teal:var(--gray);
  --berry:var(--ink-soft);
  --cream-line:rgba(19,19,19,0.13);

  --shadow-hard:4px 4px 0 var(--ink);
  --shadow-hard-red:5px 5px 0 var(--gold);

  --display:"Archivo","Helvetica Neue",Arial,sans-serif;
  --serif:"Archivo","Helvetica Neue",Arial,sans-serif;
  --body:"Hanken Grotesk","Helvetica Neue",Arial,sans-serif;
  --street:"Yellowtail",cursive;
}

/* ---- typography reset for the new display face ---- */
h1,h2{font-family:var(--display);font-weight:800;text-transform:uppercase;
  letter-spacing:-0.018em;line-height:0.95}
h3,h4{font-family:var(--display);font-weight:700;text-transform:none;letter-spacing:-0.012em}
.mitem .mname{font-family:var(--display);font-weight:700;text-transform:none}
.prose h2,.prose h3{font-family:var(--display);font-weight:700}
.postcard h3,.faqblock .value h3{font-family:var(--display);font-weight:700}
.prose blockquote{font-family:var(--display);font-weight:500}
.brand{font-family:var(--street);font-weight:400;font-size:26px;letter-spacing:0}
.scriptword{font-family:var(--street)!important;letter-spacing:0;transform:none!important}
.kicker-lg,.hero-note,.bleed-sticker,.stamp,.hero-stamp,.marquee-track span{
  font-family:var(--street);letter-spacing:0}
.step::before{font-family:var(--display);font-weight:800}

/* ---- BRANDON #5: kill the decorative dots / numerals ---- */
.card .num{display:none}
.eyebrow::before{content:none}
.value h3 .v-num{display:none}
.marquee-track span::after{content:none}

/* ---- accent recolor where gold-as-text needs the darker tone ---- */
.eyebrow{color:var(--gold-text)}
.eyebrow.on-dark{color:var(--gold-on-dark)}
.eyebrow.on-dark::before{content:none}
.kicker-lg{color:var(--gold-text)}
.step::before{color:var(--gold-text)}
.mitem:hover .mname{color:var(--gold-text)}
.prose .tip strong{color:var(--gold-text)}
.related h4{color:var(--gold-text)}
.postcard .pc-meta{color:var(--gold-text)}
.foot-col h2,.foot-col h4{color:var(--gold-on-dark)}
.prose a{color:var(--gold-text)}
.prose a:hover{background:var(--gold);color:var(--ink)}
.req{color:var(--gold-text)}
.hero h1 .scriptword{color:var(--gold-on-dark)}
.mab-btn.call svg{color:var(--gold-text)}
.section.ink .card:hover{box-shadow:7px 9px 0 var(--gold)}
.mitem:hover{background:rgba(184,145,47,.09)}
::selection{background:var(--gold);color:var(--ink)}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:3px solid var(--gold-text);outline-offset:2px}

/* buttons: gold fill reads best with ink text */
.btn{background:var(--gold);color:var(--ink)}
.btn.ghost{background:var(--paper);color:var(--ink)}
.btn.ghost:hover{background:var(--gold)}
.ctaband .btn{background:var(--paper);color:var(--ink);border-color:var(--ink)}
.mab-btn.order{background:var(--gold);color:var(--ink)}

/* knockout highlight + dark sections */
.hl{background:var(--gold);color:var(--ink);box-shadow:5px 5px 0 rgba(0,0,0,.45)}
.section.red,.ctaband,.marquee.red{background:var(--ink);color:var(--paper)}
.ctaband p{color:rgba(252,252,250,.86)}
.section.ink .card{background:#1E1E1E;border-color:rgba(252,252,250,.55)}
.section.ink .formcard{background:#1E1E1E;border-color:rgba(252,252,250,.55)}
.section.ink input,.section.ink textarea,.section.ink select{background:#262626;color:var(--paper)}
.section.ink .section-head p,.section.red .section-head p{color:rgba(252,252,250,.82)}
.section.ink .card p{color:rgba(252,252,250,.76)}
.dd a:hover small{color:rgba(252,252,250,.7)}
.foot-brand p{color:rgba(252,252,250,.7)}
.foot-col a{color:rgba(252,252,250,.82)}
.foot-social a{border-color:rgba(252,252,250,.4)}
.foot-social a:hover{background:var(--gold);border-color:var(--gold);color:var(--ink)}
.foot-bottom{border-top-color:rgba(252,252,250,.18);color:rgba(252,252,250,.55)}
.pill.dark{background:rgba(0,0,0,.42);border-color:rgba(252,252,250,.7)}
.form-status.ok{background:var(--ink);color:var(--paper)}
.form-status.err{background:var(--gold);color:var(--ink)}

/* menu badges → mono system */
.badge.veg{background:var(--paper-2);color:var(--ink)}
.badge.fan{background:var(--gold);color:var(--ink)}
.badge.ny{background:var(--ink);color:var(--paper)}
.menu-cat h3 .tag{background:var(--ink);color:var(--paper)}

/* gold marker underline under section headings */
.section-head h2::after{
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='16'%3E%3Cpath d='M3 11 C40 3 70 3 90 8 C110 12 130 6 147 5' stroke='%23B8912F' stroke-width='4.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center;
  background-size:contain}

/* neutral hero scrims (was warm brown) */
.herofull .scrim{background:linear-gradient(96deg,rgba(10,10,10,.90) 0%,rgba(10,10,10,.64) 38%,rgba(10,10,10,.16) 74%,rgba(10,10,10,.02) 100%)}
.scrim-strong{background:
  linear-gradient(93deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.80) 32%, rgba(8,8,8,0.46) 62%, rgba(8,8,8,0.18) 100%),
  linear-gradient(to top, rgba(8,8,8,0.58) 0%, rgba(8,8,8,0) 46%)}
.herofull .lede.light{color:rgba(252,252,250,.92)}
.ghostword{-webkit-text-stroke:2px rgba(252,252,250,.13)}
.ghostband .t{-webkit-text-stroke:1.5px rgba(252,252,250,.4)}
.hero-stamp{background:var(--gold);color:var(--ink);border-color:var(--paper)}
.stamp{background:var(--gold);color:var(--ink)}
.hero-note{background:var(--gold);color:var(--ink)}
.bleed-sticker{background:var(--gold);color:var(--ink)}
.nav-phone .dot{background:var(--gold);box-shadow:0 0 0 3px rgba(184,145,47,.28)}
.site-head.menu-open .dd{border-left-color:var(--gold)}
.prose .lead{border-left-color:var(--gold)}
.prose .tip{border-left-color:var(--gold)}
@media(max-width:760px){
  .scrim-strong{background:linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.62) 52%, rgba(8,8,8,0.38) 100%)}
}

/* hero: full bagel wall, framed so the racks read (Brandon #1) */
.bg-hero-interior{background-position:38% 62%}
@media(max-width:760px){.bg-hero-interior{background-position:34% 62%}}

/* ---- catering menu board (Brandon #8: our menu, styled like the store menu) ---- */
.cat-menu-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px 44px;align-items:start}
.cat-menu-grid > div{min-width:0}
.cat-menu-grid .menu-cat{margin-top:26px}
.cat-menu-grid > div > .menu-cat:first-child{margin-top:0}
.cat-menu-grid .menu-cat h3{font-size:23px;padding-bottom:8px;border-bottom:2.5px solid var(--ink);
  margin-bottom:2px;flex-wrap:wrap;gap:10px}
.cat-menu-grid .mitem{padding:11px 0;gap:10px}
.cat-menu-grid .mitem .mname{font-size:17px;white-space:normal}
.cat-menu-grid .mitem .mdesc{font-size:13.5px;flex:1 1 100%;order:3;margin-top:-3px}
.cat-menu-grid .mitem .mprice{font-size:15px}
.menu-foot{max-width:720px;margin:36px auto 0;text-align:center;font-size:15.5px;color:var(--ink-soft)}
@media(max-width:960px){.cat-menu-grid{grid-template-columns:repeat(2,1fr);gap:16px 34px}}
@media(max-width:640px){.cat-menu-grid{grid-template-columns:1fr;gap:0}}

/* ---- Spread the Love band (Brandon #10) ---- */
.stl{display:grid;grid-template-columns:0.85fr 1.15fr;gap:52px;align-items:center}
.stl-mark{display:grid;place-items:center;aspect-ratio:1/1;border-radius:50%;
  border:3px solid var(--gold);background:radial-gradient(circle at 32% 28%,#242424,#111 70%);
  box-shadow:0 0 0 10px rgba(184,145,47,.10);max-width:330px;width:100%;margin:0 auto}
.stl-script{font-family:var(--street);color:var(--gold-on-dark);font-size:clamp(34px,4.6vw,54px);
  line-height:1.02;text-align:center;padding:18px}
/* swap-in slot for the real logo file: .stl-mark img{width:78%;height:auto;border:0} */
.stl-body h2{font-size:clamp(34px,5vw,58px)}
.stl-body p{color:rgba(252,252,250,.82);font-size:18.5px;max-width:52ch}
@media(max-width:860px){.stl{grid-template-columns:1fr;gap:30px}.stl-mark{max-width:230px}}

/* ---- Join the team strip (Brandon #9) ---- */
.jt{display:grid;grid-template-columns:1fr auto;gap:30px;align-items:center;
  border:2.5px solid var(--ink);border-radius:4px;box-shadow:var(--shadow-hard);
  background:var(--paper-2);padding:34px 36px}
.jt-cta{white-space:nowrap}
@media(max-width:760px){.jt{grid-template-columns:1fr;padding:26px 22px;gap:20px}}

/* ---- no orphaned card on a trailing row (house rule) ---- */
.grid.g3{grid-template-columns:repeat(12,1fr)}
.grid.g3 > *{grid-column:span 4}
.grid.g3 > *:first-child:nth-last-child(1){grid-column:span 12}
.grid.g3 > *:first-child:nth-last-child(2),
.grid.g3 > *:first-child:nth-last-child(2) ~ *{grid-column:span 6}
.grid.g3 > *:first-child:nth-last-child(4),
.grid.g3 > *:first-child:nth-last-child(4) ~ *{grid-column:span 6}
.grid.g3 > *:first-child:nth-last-child(5) ~ *:nth-child(4),
.grid.g3 > *:first-child:nth-last-child(5) ~ *:nth-child(5){grid-column:span 6}
.grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(4),
.grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(5),
.grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(6),
.grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(7){grid-column:span 3}
@media(max-width:960px){
  .grid.g3 > *,
  .grid.g3 > *:first-child:nth-last-child(2),
  .grid.g3 > *:first-child:nth-last-child(2) ~ *,
  .grid.g3 > *:first-child:nth-last-child(4),
  .grid.g3 > *:first-child:nth-last-child(4) ~ *,
  .grid.g3 > *:first-child:nth-last-child(5) ~ *:nth-child(4),
  .grid.g3 > *:first-child:nth-last-child(5) ~ *:nth-child(5),
  .grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(4),
  .grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(5),
  .grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(6),
  .grid.g3 > *:first-child:nth-last-child(7) ~ *:nth-child(7){grid-column:span 12}
}

.foot-col h2.foot-h{font-family:var(--body);font-size:12.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-on-dark);margin-bottom:14px;font-weight:800;line-height:1.2}

/* ---- type scale correction: Archivo is far wider than the condensed face it
        replaced, so the inherited clamps ran oversized. Retuned. ---- */
.hero h1,.herofull h1{font-size:clamp(38px,5.2vw,72px);letter-spacing:-0.022em;line-height:0.98}
.section-head h2{font-size:clamp(29px,3.5vw,50px);line-height:1.0}
.ctaband h2{font-size:clamp(30px,4vw,54px)}
.stl-body h2{font-size:clamp(29px,3.4vw,46px)}
.split-body h2{font-size:clamp(27px,3.1vw,42px)}
.article-head h1{font-size:clamp(30px,3.8vw,52px);line-height:1.04;max-width:20ch}
.menu-cat h3{font-size:clamp(20px,2.2vw,26px)}
.card h3{font-size:21px;letter-spacing:-0.01em}
.value h3{font-size:20px}
@media(max-width:760px){
  .hero h1,.herofull h1{font-size:clamp(32px,8.4vw,44px)}
  .section-head h2{font-size:clamp(25px,6.4vw,34px)}
  .ctaband h2{font-size:clamp(26px,6.8vw,36px)}
}

/* ---- catering menu rows: name+price on line 1, description on line 2 ---- */
.cat-menu-grid .mitem{display:flex;flex-wrap:wrap;align-items:baseline;row-gap:2px;column-gap:12px}
.cat-menu-grid .mitem .mname{flex:1 1 auto;min-width:0;white-space:normal;font-size:17px;line-height:1.25}
.cat-menu-grid .mitem .badge{order:2;flex:0 0 auto}
.cat-menu-grid .mitem .mprice{order:2;margin-left:auto;flex:0 0 auto;font-size:15px;white-space:nowrap}
.cat-menu-grid .mitem .mdesc{order:3;flex:1 1 100%;margin:0;font-size:13.5px;line-height:1.45;color:var(--ink-soft)}

/* ---- hero: the rotated .hl knockout box overhangs its line box, so the lede
        needs clearance at EVERY width, not just mobile ---- */
.herofull h1,.hero h1{margin-bottom:22px}
.herofull .lede,.herofull .lede.light,.hero .lede{margin-top:0}
.hl{margin-bottom:.10em}
@media(max-width:760px){
  .herofull h1,.hero h1{margin-bottom:26px}
}

/* ============================================================
   v5 — OFFICIAL IDENTITY (AGENCY317 brand guide, via Brandon 2026-07-21)
   Colors : #141616 near-black, #DEE0E0 light gray. Gold accent retained
            per Brandon's email; it is NOT in the printed guide.
   Type   : Beshary (display) / Corinthia (script) / Acumin (body).
            Corinthia is the REAL face, free on Google Fonts.
            Acumin is Adobe-licensed -> Archivo stands in (same neo-grotesk class).
            Beshary is personal-use-only -> Lilita One stands in.
   TO SWAP IN REAL BESHARY: drop beshary.woff2 in assets/fonts/,
   uncomment the @font-face, and change --display to "Beshary".
   Same for Acumin -> --body.
   ============================================================ */

/*
@font-face{font-family:"Beshary";src:url("assets/fonts/beshary.woff2") format("woff2");
  font-weight:400;font-display:swap}
*/

:root{
  --ink:#141616;              /* brand guide */
  --ink-soft:#4A4D4D;
  --paper:#FBFBFB;            /* white */
  --paper-2:#DEE0E0;          /* brand guide light gray */
  --gray:#6C7070;
  --gray-line:#E7E9E9;
  --cream-line:rgba(20,22,22,0.14);

  --gold:#B8912F;
  --gold-text:#7C6117;
  --gold-on-dark:#DCB755;
  --gold-deep:#8E6E1D;

  --red:var(--gold);
  --red-deep:var(--gold-text);
  --mustard:var(--gold);
  --teal:var(--gray);
  --berry:var(--ink-soft);

  --display:"Lilita One","Archivo",Impact,sans-serif;   /* Beshary stand-in */
  --serif:"Archivo","Helvetica Neue",Arial,sans-serif;
  --body:"Archivo","Helvetica Neue",Arial,sans-serif;   /* Acumin stand-in */
  --street:"Corinthia",cursive;                          /* real brand script */
}

/* Lilita One ships a single weight; let the face carry the weight */
h1,h2{font-family:var(--display);font-weight:400;text-transform:uppercase;
  letter-spacing:0.004em;line-height:0.96}
h3,h4{font-family:var(--body);font-weight:700;text-transform:none;letter-spacing:-0.012em}
.mitem .mname,.prose h2,.prose h3,.postcard h3,.faqblock .value h3,
.step h3,.step .step-t,.card h3,.menu-cat h3{font-family:var(--body);font-weight:700;text-transform:none}
.prose blockquote{font-family:var(--body);font-weight:500}
.article-head h1{font-family:var(--display);font-weight:400}

/* condensed display face -> headlines can carry more size again */
.hero h1,.herofull h1{font-size:clamp(42px,6.4vw,88px);letter-spacing:0.004em;line-height:0.94}
.section-head h2{font-size:clamp(32px,4.4vw,62px);line-height:0.98}
.ctaband h2{font-size:clamp(34px,4.8vw,66px)}
.stl-body h2{font-size:clamp(32px,4.2vw,56px)}
.split-body h2{font-size:clamp(29px,3.6vw,48px)}
.article-head h1{font-size:clamp(34px,4.6vw,60px);line-height:1.0}
@media(max-width:760px){
  .hero h1,.herofull h1{font-size:clamp(34px,9.4vw,50px)}
  .section-head h2{font-size:clamp(28px,7.4vw,38px)}
  .ctaband h2{font-size:clamp(28px,7.4vw,40px)}
}

/* Corinthia is a fine, high-contrast formal script: it needs SIZE to read.
   Keep it for the large decorative moments only; small UI text goes to Archivo. */
.brand{font-family:var(--street);font-weight:700;font-size:38px;line-height:1;letter-spacing:0}
.scriptword{font-family:var(--street)!important;font-weight:700;letter-spacing:0}
.kicker-lg{font-family:var(--street);font-weight:700;font-size:34px}
.stl-script{font-family:var(--street);font-weight:700;font-size:clamp(46px,6vw,74px);line-height:.95}
.stamp,.hero-stamp{font-family:var(--street);font-weight:700;font-size:24px;line-height:1.0}
.hero-note,.bleed-sticker{font-family:var(--street);font-weight:700;font-size:26px;line-height:1}
/* too small for a hairline script -> body face */
.marquee-track span{font-family:var(--body);font-weight:600;font-size:14px;letter-spacing:.02em}
.step::before{font-family:var(--display);font-weight:400}

/* neutral surfaces rebuilt on the guide's gray */
.section.cream2{background:var(--paper-2)}
.section.ink .card,.section.ink .formcard{background:#1F2121;border-color:rgba(251,251,251,.5)}
.section.ink input,.section.ink textarea,.section.ink select{background:#272A2A;color:var(--paper)}
.section.ink .section-head p,.section.red .section-head p{color:rgba(251,251,251,.82)}
.section.ink .card p{color:rgba(251,251,251,.76)}
.ctaband p{color:rgba(251,251,251,.86)}
.foot-brand p{color:rgba(251,251,251,.7)}
.foot-col a{color:rgba(251,251,251,.82)}
.foot-social a{border-color:rgba(251,251,251,.4)}
.foot-bottom{border-top-color:rgba(251,251,251,.18);color:rgba(251,251,251,.55)}
.herofull .lede.light{color:rgba(251,251,251,.92)}
.ghostword{-webkit-text-stroke:2px rgba(251,251,251,.13)}
.ghostband .t{-webkit-text-stroke:1.5px rgba(251,251,251,.4)}
.herofull .scrim{background:linear-gradient(96deg,rgba(20,22,22,.90) 0%,rgba(20,22,22,.64) 38%,rgba(20,22,22,.16) 74%,rgba(20,22,22,.02) 100%)}
.scrim-strong{background:
  linear-gradient(93deg,rgba(20,22,22,.94) 0%,rgba(20,22,22,.80) 32%,rgba(20,22,22,.46) 62%,rgba(20,22,22,.18) 100%),
  linear-gradient(to top,rgba(20,22,22,.58) 0%,rgba(20,22,22,0) 46%)}
@media(max-width:760px){
  .scrim-strong{background:linear-gradient(to top,rgba(20,22,22,.95) 0%,rgba(20,22,22,.62) 52%,rgba(20,22,22,.38) 100%)}
  .brand{font-size:30px}
}
.stl-mark{background:radial-gradient(circle at 32% 28%,#262929,#141616 70%)}

/* ---- hero polish: the bagel-wall photo is busy behind the headline, and the
        eyebrow crowds the display face on small screens ---- */
.herofull .eyebrow{margin-bottom:14px}
@media(max-width:760px){
  .herofull .eyebrow{margin-bottom:12px;font-size:11px;letter-spacing:.16em}
  .scrim-strong{background:
    linear-gradient(to top,rgba(20,22,22,.97) 0%,rgba(20,22,22,.86) 38%,rgba(20,22,22,.66) 66%,rgba(20,22,22,.5) 100%)}
}

/* ============================================================
   v6 — MOBILE QA PASS @390px
   Fixes: sub-44px tap targets (footer 34px, tel/mailto 17px,
   burger 38px), and belt-and-braces horizontal-overflow clip
   (100vw full-bleed + scrollbar reports 8px of phantom width).
   ============================================================ */
html{overflow-x:clip}

@media(max-width:940px){
  /* footer link column -> comfortable thumb targets */
  .foot-col a{padding:12px 0;min-height:44px;display:flex;align-items:center}
  .foot-brand p{margin-bottom:10px}
  .foot-social a{width:44px;height:44px}

  /* tel: / mailto: inside the location + contact blocks were 17px tall */
  .loc-line a{display:inline-flex;align-items:center;min-height:44px;padding:4px 0}
  .loc-info a{min-height:44px;display:inline-flex;align-items:center}

  /* inline "→" text links */
  a[href$="community.html"],
  .wrap p > a[style*="font-weight:800"]{display:inline-flex;align-items:center;min-height:44px}

  .burger{width:46px;height:44px}
  .brand{min-height:44px;display:flex;align-items:center}

  /* nav drawer rows */
  .site-head.menu-open .nav-links>li>a,
  .site-head.menu-open .nav-links>li>button{min-height:48px}
  .site-head.menu-open .dd a{min-height:44px;display:flex;align-items:center}
}

/* menu rows and FAQ toggles are tappable regions too */
@media(max-width:760px){
  .cat-menu-grid .mitem{padding:13px 0}
  .mobile-actionbar .mab-btn{min-height:52px}
}

/* stray tel:/mailto: links in body copy (catering + careers footnotes) were 14px tall.
   NOTE: do NOT use a bare a[href^="tel:"] here. That attribute selector outranks
   .nav-phone{display:none} and resurrects the desktop phone link on mobile, which
   then flex-squashes the burger. Scope it to the content areas only. */
@media(max-width:940px){
  .wrap p a[href^="tel:"], .wrap p a[href^="mailto:"],
  .prose a[href^="tel:"], .prose a[href^="mailto:"],
  .loc-info a[href^="tel:"], .loc-info a[href^="mailto:"],
  .formcard a[href^="tel:"], .formcard a[href^="mailto:"]{
    display:inline-flex;align-items:center;min-height:44px}
  .nav-phone{display:none}
  .burger{flex:0 0 auto}
}
@media(max-width:940px){
  .form-note a{display:inline-flex;align-items:center;min-height:44px}
}

/* ============================================================
   v7 — hero recrop (Brandon 2026-07-21: "the menu boards have been changed")
   The in-shop price boards are out of date, so the hero is now cropped to the
   bagel bins + chalk variety labels, which do not date. No board text in frame.
   Wide crop for desktop, near-square crop for phones.

   v10 — real photo, 2026-08-24. Brandon sent five in-shop shots and asked which
   could work as the hero. Both crops now come from his IMG_3538, so the AI
   basket fill from 2026-08-10 is gone from the site entirely (he flagged on
   2026-08-12 that parts of the old hero read as AI generated). Same framing rule
   as v7: bins and chalk labels only, no board text. Desktop runs RAINBOW through
   SESAME, phones sit on PLAIN through SESAME where the baskets are fullest.
   Filenames are content-hashed, so a later recrop cannot serve stale from cache.
   ============================================================ */
.bg-hero-interior{background-position:center 62%}
@media(max-width:760px){
  .bg-hero-interior{background-image:url('img/hero-bagel-wall-sm-571c4b92.webp')!important;
    background-position:center 58%}
}

/* ============================================================
   v8 — "Spread the Love!" real logo lockup
   Brandon sent the artwork 2026-07-21. It is a WIDE horizontal
   gold-on-black lockup with a bagel, not a round mark, so the
   circular medallion frame is dropped when the image is present.
   Drop the file at assets/img/spread-the-love.webp and the
   markup swaps automatically (build_pages.py checks for it).
   NOTE: the logo is gold + black, which confirms gold really is
   part of this brand even though the AGENCY317 sheet omits it.
   ============================================================ */
.stl-mark.has-logo{
  aspect-ratio:auto;border:0;background:none;box-shadow:none;
  max-width:520px;width:100%;padding:0;display:block}
.stl-mark.has-logo img{width:100%;height:auto;display:block}
@media(max-width:860px){.stl-mark.has-logo{max-width:340px;margin:0 auto}}

/* ============================================================
   v8 — hero "Spread the Love" mark (Jeff 2026-07-28)
   Replaces the gold circle stamp on the HOME hero with Brandon's
   real artwork, sitting under the headline and shifted right.
   ============================================================ */
.hero-mid .lede.light{margin-top:14px}
/* v10 (Brandon 2026-08-03): mark moved off the bagel bins. Anchored to the
   hero's bottom-right corner, over the counter and plant, never the bagels. */
.hero-stl{position:absolute;z-index:2;right:4%;bottom:30px;width:clamp(190px,21vw,300px);
  transform:rotate(-3deg);filter:drop-shadow(0 10px 24px rgba(0,0,0,.55))}
.hero-stl img{width:100%;height:auto;display:block}
/* tablets and phones: the hero stays clean. The mark gets its own full-size
   moment in the Spread the Love band further down the page. */
@media(max-width:900px){.hero-stl{display:none}}

/* ============================================================
   v9 — oversized brand mark in the header (Jeff 2026-07-28)
   His logo already reads "B's Bagels", so the wordmark comes out
   of the nav and the mark itself hangs down over the page.
   ============================================================ */
.brand{align-self:flex-start;position:relative;z-index:70;gap:0;font-size:0;line-height:0}
/* the mark keeps the 74px nav row's height, then hangs the rest of itself
   down over the marquee and the top of the page */
.brand img{width:152px;height:152px;margin-top:4px;margin-bottom:-82px;border-radius:50%;
  filter:drop-shadow(0 10px 20px rgba(20,22,22,.42))}
@media(max-width:1080px){
  .brand img{width:124px;height:124px;margin-top:4px;margin-bottom:-54px}
}
@media(max-width:760px){
  .brand img{width:96px;height:96px;margin-top:4px;margin-bottom:-36px}
}

/* ============================================================
   v10 — header scrolls with the page (Jeff 2026-07-28)
   position:relative, not static, so the mobile menu panel still
   has the header as its containing block.
   ============================================================ */
.site-head{position:relative;top:auto}
[id]{scroll-margin-top:18px}
@media(max-width:760px){
  [id]{scroll-margin-top:14px}
  /* the mark hangs 36px past the 64px bar, so the open menu panel
     starts below it and the mark draws on top of that clearance */
  .brand{z-index:90}
  .site-head.menu-open .nav-links{padding-top:46px}
}

/* ============================================================
   v11 — the menu travels with you (Jeff 2026-07-28)
   Sticky header again, but the oversized mark cannot hang over
   the page forever, so it tucks into the bar once you scroll.
   ============================================================ */
.site-head{position:sticky;top:0;z-index:60}
[id]{scroll-margin-top:88px}
.brand img{transition:width .22s var(--ease-snap),height .22s var(--ease-snap),margin .22s var(--ease-snap)}
.site-head.scrolled .brand img{width:62px;height:62px;margin-top:0;margin-bottom:0}
@media(max-width:1080px){.site-head.scrolled .brand img{width:60px;height:60px;margin-top:0;margin-bottom:0}}
@media(max-width:760px){
  [id]{scroll-margin-top:74px}
  .site-head.scrolled .brand img{width:50px;height:50px;margin-top:0;margin-bottom:0}
  /* clearance for the overhanging mark only while it is still overhanging */
  .site-head.menu-open .nav-links{padding-top:46px}
  .site-head.scrolled.menu-open .nav-links{padding-top:8px}
}
@media(prefers-reduced-motion:reduce){.brand img{transition:none}}

/* ---- why the sticky header never stuck ----
   body carried overflow-x:hidden, which makes body its OWN scroll
   container, and position:sticky resolves against the nearest scroll
   container. The header was sticking to a box that never scrolls, so it
   just rode the page off the top. clip does the same overflow job
   without creating a scroll container. html already carries clip. */
body{overflow-x:visible}

/* ============================================================
   v12 — script phrases hold together (Jeff 2026-07-28)
   The script half of a hero headline was wrapping mid-phrase
   ("...where breakfast / is joy"). Give it its own line so it
   always reads as one thought. No <br> in headings, house rule.
   ============================================================ */
h1 .scriptword{display:block;margin-top:.04em}
@media(max-width:760px){h1 .scriptword{margin-top:.02em}}

/* menu badges: gluten free / dairy free (Brandon 2026-07-28) */
.badge.gf,.badge.df{background:var(--paper-2);color:var(--ink)}
