/* ============ TOPBAR ============ */
.mcr-topbar { background: var(--deep); color: var(--on-deep); font-size: 12.5px; }
.mcr-topbar .mcr-wrap { display: flex; align-items: center; gap: 14px; min-height: 38px; flex-wrap: wrap; }
.mcr-topbar a { opacity: 0.82; }
.mcr-topbar a:hover { opacity: 1; }
.mcr-topbar__addr { display: none; }
@media (min-width: 620px) { .mcr-topbar__addr { display: inline; } }
.mcr-open-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; display: inline-block; margin-right: 6px; box-shadow: 0 0 0 3px rgba(74,222,128,.22); }
.mcr-topbar__spacer { flex: 1; }

/* ============ HEADER ============ */
.mcr-hdr { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.mcr-hdr .mcr-wrap { display: flex; align-items: center; gap: 14px; padding-block: 12px; }

.mcr-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mcr-brand__mark { width: 38px; height: 38px; border-radius: 11px; background: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.mcr-brand__mark svg { width: 23px; height: 23px; color: #fff; }
.mcr-brand__mark img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.mcr-brand__title { font-family: var(--disp); font-size: 17px; line-height: 0.95; letter-spacing: -0.03em; display: block; }
.mcr-brand__sub { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase; }
.mcr-brand__text { display: none; }
@media (min-width: 520px) { .mcr-brand__text { display: block; } }

.mcr-search { flex: 1; display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: 99px; padding: 7px 8px 7px 14px; min-width: 0; }
.mcr-search:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px var(--accent-soft); }
.mcr-search input { flex: 1; border: 0; background: none; font: inherit; font-size: 15px; color: var(--ink); min-width: 0; outline: none; }
.mcr-search input::placeholder { color: var(--ink-3); }
.mcr-search__go { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; flex-shrink: 0; }
.mcr-search__go svg { color: var(--paper); }

.mcr-hdr-acts { display: flex; align-items: center; gap: 4px; }
.mcr-iconbtn { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; position: relative; }
.mcr-iconbtn:hover { background: var(--paper-2); }
.mcr-badge { position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; line-height: 1; }
.mcr-badge[hidden] { display: none; }

/* ============ CATEGORY SWITCH ============ */
.mcr-switch { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 63px; z-index: 55; }
.mcr-switch .mcr-wrap { display: flex; gap: 6px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.mcr-switch .mcr-wrap::-webkit-scrollbar { display: none; }
.mcr-tab { position: relative; padding: 13px 2px; margin-right: 20px; font-weight: 700; font-size: 15px; color: var(--ink-3); white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.mcr-tab[aria-current="page"] { color: var(--ink); }
.mcr-tab[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--accent); border-radius: 3px 3px 0 0; }

/* ============ HERO ============ */
.mcr-hero { padding-block: clamp(26px, 5vw, 54px); }
.mcr-hero__box {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--deep); color: var(--on-deep);
  padding: clamp(28px, 6vw, 52px);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px;
}
.mcr-hero__motif { position: absolute; inset: 0; opacity: 0.3; }
.mcr-hero__glow { position: absolute; right: -14%; top: -30%; width: 62%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(232,163,23,.42), transparent 66%); }
.mcr-hero__glow--2 { position: absolute; left: -18%; bottom: -34%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(197,35,58,.5), transparent 66%); }
.mcr-hero__box > * { position: relative; }
.mcr-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--on-deep-line); border: 1px solid var(--on-deep-line); color: var(--on-deep); padding: 5px 12px; border-radius: 99px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.mcr-hero__box h1 { font-size: clamp(32px, 6vw, 56px); margin-top: 22px; color: var(--on-deep); }
.mcr-hero__box h1 em { font-style: normal; color: var(--gold); }
.mcr-hero__sub { margin-top: 14px; font-size: clamp(15px, 2vw, 17.5px); color: var(--on-deep-2); max-width: 46ch; }
.mcr-hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ============ TRUST STRIP ============ */
.mcr-trust { border-block: 1px solid var(--line); background: var(--surface-2); }
.mcr-trust .mcr-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 0; background: var(--line); }
@media (min-width: 820px) { .mcr-trust .mcr-wrap { grid-template-columns: repeat(4, 1fr); } }
.mcr-trust__item { background: var(--surface-2); padding: 18px var(--pad); display: flex; gap: 11px; align-items: flex-start; }
.mcr-trust__item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.mcr-trust__item b { display: block; font-size: 14px; font-weight: 700; line-height: 1.25; }
.mcr-trust__item span { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }

/* ============ SECTIONS ============ */
.mcr-band { padding-block: clamp(34px, 6vw, 64px); }
.mcr-sec-head { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.mcr-sec-head h2 { font-size: clamp(23px, 3.6vw, 34px); }
.mcr-sec-head p { font-size: 14.5px; color: var(--ink-2); margin-top: 5px; max-width: 52ch; }

/* ============ SERVICES ============ */
.mcr-services { display: grid; gap: 16px; }
@media (min-width: 700px) { .mcr-services { grid-template-columns: repeat(3, 1fr); } }
.mcr-svc { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.mcr-svc__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--accent-soft); color: var(--accent); }
.mcr-svc__ic svg { width: 21px; height: 21px; }
.mcr-svc b { font-size: 15.5px; display: block; }
.mcr-svc span { font-size: 13.5px; color: var(--ink-2); }

/* ============ STORE INFO ============ */
.mcr-store-grid { display: grid; gap: 16px; }
@media (min-width: 860px) { .mcr-store-grid { grid-template-columns: 1fr 1fr; } }
.mcr-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.mcr-panel h3 { font-size: 20px; margin-bottom: 12px; }
.mcr-hours { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.mcr-hours td { padding: 8px 0; border-bottom: 1px dashed var(--line); }
.mcr-hours tr:last-child td { border-bottom: 0; }
.mcr-hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.mcr-addr { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.mcr-addr b { color: var(--ink); }

/* ============ FOOTER ============ */
.mcr-foot { background: var(--deep); color: var(--on-deep-2); padding-block: 44px 30px; margin-top: 8px; }
.mcr-foot-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .mcr-foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.mcr-foot h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--on-deep-2); opacity: 0.8; margin-bottom: 12px; font-weight: 700; }
.mcr-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.mcr-foot a:hover { color: var(--on-deep); }
.mcr-foot__about { font-size: 14px; max-width: 34ch; }
.mcr-foot__about b { color: var(--on-deep); }
.mcr-foot a { color: var(--on-deep-2); }
.mcr-foot-bot { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--on-deep-line); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 12.5px; color: rgba(247,243,234,.5); }
.mcr-foot-bot__spacer { flex: 1; }

/* ============ MOBILE BOTTOM NAV ============ */
body { padding-bottom: 76px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }
.mcr-tabbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--surface); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); padding-bottom: env(safe-area-inset-bottom); }
@media (min-width: 900px) { .mcr-tabbar { display: none; } }
.mcr-tabbar a, .mcr-tabbar button { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 0 10px; font-size: 10.5px; font-weight: 600; color: var(--ink-2); position: relative; }
.mcr-tabbar a[aria-current="page"], .mcr-tabbar button[aria-expanded="true"] { color: var(--accent); }
.mcr-tabbar svg { width: 22px; height: 22px; }

/* Mobile category drawer (chrome only — content wired in Phase 2) */
.mcr-drawer-scrim { position: fixed; inset: 0; background: rgba(20,14,10,.5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.mcr-drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.mcr-drawer { position: fixed; z-index: 100; inset: auto 0 0 0; max-height: 80vh; background: var(--surface); border-radius: 20px 20px 0 0; transform: translateY(102%); transition: transform 0.26s cubic-bezier(.32,.72,0,1); padding: 20px var(--pad) calc(20px + env(safe-area-inset-bottom)); }
.mcr-drawer.is-open { transform: none; }
.mcr-drawer__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mcr-drawer__head h3 { flex: 1; font-size: 19px; }
