/* ============================================================
   Site layout & components (shared by both brands).
   Pairs with theme.css tokens.
   ============================================================ */

/* ---- route transition ---- */
.route-fade { animation: fadeUp .45s cubic-bezier(.2,.7,.3,1); }
@keyframes fadeUp { from { transform: translateY(9px); } to { transform: none; } }

/* ===================  NAV  ================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; background: none; border: none; cursor: pointer; padding: 0; color: var(--text); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 20px;
}
.brand-text { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 1px; line-height: 1.05; text-align: left; }
.brand-name { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; text-align: left; }
.brand-sub { font-size: 11.5px; font-weight: 600; letter-spacing: .01em; color: var(--muted); white-space: nowrap; text-align: left; }

/* live open/closed badge */
.open-status {
  display: inline-flex; align-items: center; gap: 7px;
  height: 30px; padding: 0 12px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.open-status .open-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--muted); flex: none; }
.open-status.is-open { color: #157a3e; border-color: color-mix(in oklch, #1aa34a 40%, var(--line)); background: color-mix(in oklch, #1aa34a 12%, var(--surface-2)); }
.open-status.is-open .open-dot { background: #1aa34a; box-shadow: 0 0 0 3px color-mix(in oklch, #1aa34a 28%, transparent); }
.open-status .open-detail { color: var(--muted); font-weight: 500; }

.nav-links { display: flex; gap: 4px; }
.nav-links button {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 15px; font-weight: 500; padding: 9px 15px; border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links button:hover { color: var(--text); }
.nav-links button.active { color: var(--text); background: var(--surface-2); }

.nav-right { display: flex; align-items: center; gap: 8px; }
.cart-pill {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px; cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text);
  transition: transform .15s, background .15s;
}
.cart-pill:hover { transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--accent); color: var(--accent-ink); border-radius: 999px;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
  border: 2px solid var(--bg);
}
.nav-burger { display: none; flex-direction: column; gap: 4px; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--surface-2); border-radius: 11px; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { width: 17px; height: 1.8px; background: var(--text); border-radius: 2px; }
.nav-drawer { display: none; }

/* ===================  HERO  =============================== */
.hero-title { font-size: clamp(46px, 8.5vw, 92px); }
.hero-line { display: block; }
.hero-sub { font-size: clamp(17px, 1.9vw, 20px); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* split */
.hero-split { padding-block: clamp(36px, 6vw, 80px) clamp(48px, 8vw, 104px); }
.hero-split-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(20px, 5vw, 72px); align-items: center; }
.hero-split-copy { display: flex; flex-direction: column; gap: 22px; }
/* let the split-hero sub fill its column instead of the 30ch default */
.hero-split-copy .hero-sub { max-width: none; }
.hero-split-img {
  width: 100%;
  justify-self: center;
  aspect-ratio: 5/6;
  border-radius: 26px;
  min-height: 360px;
  overflow: visible;
}
.hero-split-img.has-img {
  background-color: transparent;
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.hero-split-img .ph-art {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: var(--hero-img-size, 100%);
  height: var(--hero-img-size, 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(var(--hero-img-x, 0), calc(-50% + var(--hero-img-y, 0)));
  pointer-events: none;
}
.hero-rotate .hero-split-img .ph-art {
  animation: heroSlowRotate var(--hero-rotate-speed, 90s) linear infinite;
  transform-origin: var(--hero-rotate-origin-x, 50%) var(--hero-rotate-origin-y, 50%);
}
@keyframes heroSlowRotate {
  to { rotate: 360deg; }
}

/* centered */
.hero-centered { padding-top: clamp(40px, 7vw, 96px); text-align: center; }
.hero-c-copy { display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 880px; }
.hero-centered .eyebrow { justify-content: center; }
/* hero kicker stays on one line, even if it runs wide on mobile */
.hero-split-copy .eyebrow,
.hero-centered .eyebrow,
.hero-full-copy .eyebrow { white-space: nowrap; }
.hero-c-copy .hero-sub { max-width: 54ch; }
.hero-c-img { aspect-ratio: 16/8; border-radius: 26px; margin-top: clamp(36px, 6vw, 72px); min-height: 320px; }

/* full-bleed */
.hero-full { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; padding-block: clamp(48px, 8vw, 100px); overflow: hidden; }
.hero-full-img { position: absolute; inset: 0; border-radius: 0; }
.hero-full-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.25) 55%, rgba(0,0,0,.12)); }
.hero-full-copy { position: relative; color: #fff; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; max-width: 820px; }
.hero-full-copy .eyebrow { color: #fff; }
.hero-full-copy .eyebrow::before { background: #fff; }
.hero-full-copy .hero-sub { color: rgba(255,255,255,.88); max-width: 54ch; }
.hero-full .btn-ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.hero-full .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; }

/* ===================  SECTION HEADERS  ==================== */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 12px; }
.eyebrow.center { } /* handled inline */

/* ===================  FEATURED  =========================== */
.feat {
  position: relative;
  z-index: 2;
}
.feat .wrap {
  position: relative;
}
.feat .wrap::before {
  content: "";
  position: absolute;
  top: clamp(-20px, -2.5vw, -12px);
  bottom: clamp(-20px, -2.5vw, -12px);
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: color-mix(in oklch, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
}
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.feat-card { background: none; border: none; padding: 0; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 14px; }
.feat-img { aspect-ratio: 4/3; border-radius: 20px; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.feat-card:hover .feat-img { transform: translateY(-4px); }
.feat-meta { display: flex; justify-content: space-between; align-items: baseline; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 18px; padding-inline: 2px; }

/* ===================  ABOUT  ============================== */
.about { background: var(--surface-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about-img { aspect-ratio: 4/5; border-radius: 26px; min-height: 380px; }
.about-copy { display: flex; flex-direction: column; gap: 18px; }
.about-copy h2 { font-size: clamp(28px, 4vw, 46px); }
.lede { font-size: clamp(16px, 1.7vw, 18.5px); }
.stat-row { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 14px; padding-top: 26px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-n { font-size: clamp(30px, 4vw, 44px); color: var(--accent); }
.stat-l { font-size: 13.5px; }

/* ===================  REVIEWS  ============================ */
.reviews { text-align: center; }
.rev-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: clamp(32px, 5vw, 56px); }
.stars { display: inline-flex; gap: 4px; color: var(--accent); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); text-align: left; }
.rev-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.rev-card blockquote { margin: 0; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.35; letter-spacing: -0.01em; }
.rev-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.rev-a { font-weight: 600; }
.rev-card figcaption .muted { font-size: 13.5px; }

/* ===================  CTA  ================================ */
.cta { background: var(--accent-soft); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: clamp(44px, 6vw, 76px); flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(30px, 4.5vw, 52px); margin-top: 10px; }

/* ===================  PAGE HEAD  ========================== */
.page-head { padding-block: clamp(44px, 6vw, 84px) clamp(20px, 3vw, 36px); }
.page-head h1 { font-size: clamp(38px, 6vw, 68px); margin-top: 14px; }
.page-head-sub { font-size: clamp(16px, 1.8vw, 19px); margin-top: 14px; max-width: 46ch; }

/* ===================  MENU  =============================== */
.menu-main { padding-bottom: 120px; }
.filterbar { position: sticky; top: 76px; z-index: 50; background: color-mix(in oklch, var(--bg) 88%, transparent); backdrop-filter: blur(12px); border-block: 1px solid var(--line); }
.filterbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { white-space: nowrap; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted); padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s; }
.chip:hover { color: var(--text); }
.chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.filterbar-count { white-space: nowrap; }

.menu-section { padding-top: clamp(28px, 4vw, 48px); }

/* grids per card style */
.menu-grid.clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 26px); }
.menu-grid.editorial { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }
.menu-grid.list { display: flex; flex-direction: column; gap: 14px; }

/* ---- card: clean ---- */
.pc { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s; }
.pc:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.35); }
.pc.active { border-color: var(--accent); }
.pc-imgwrap { position: relative; }
.pc-img { aspect-ratio: 4/3; }
.pc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pc-head h3 { font-size: 20px; font-weight: 700; }
.pc-price { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.pc-desc { font-size: 14.5px; line-height: 1.5; }
.pc-foot { margin-top: auto; padding-top: 14px; }

/* ---- card: editorial ---- */
.pc-ed { display: flex; flex-direction: column; gap: 18px; }
.pc-ed-imgwrap { position: relative; }
.pc-ed-img { aspect-ratio: 16/11; border-radius: 22px; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.pc-ed:hover .pc-ed-img { transform: scale(1.012); }
.pc-ed-price { position: absolute; left: 16px; bottom: 16px; background: var(--surface); color: var(--text); font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 17px; padding: 7px 14px; border-radius: 999px; box-shadow: 0 4px 16px -6px rgba(0,0,0,.3); }
.pc-ed-foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-inline: 4px; }
.pc-ed-foot h3 { font-size: 23px; font-weight: 700; }
.pc-ed-foot .pc-desc { margin-top: 5px; max-width: 42ch; }

/* ---- card: list ---- */
.pc-list { display: flex; align-items: center; gap: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 14px 18px 14px 14px; transition: border-color .18s, box-shadow .18s; }
.pc-list:hover { box-shadow: 0 12px 30px -22px rgba(0,0,0,.4); }
.pc-list.active { border-color: var(--accent); }
.pc-list-img { width: 92px; height: 92px; border-radius: 14px; flex-shrink: 0; }
.pc-list-body { flex: 1; min-width: 0; }
.pc-list-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pc-list-head h3 { font-size: 19px; font-weight: 700; }
.pc-list .pc-desc { margin-top: 3px; }
.pc-list-action { flex-shrink: 0; }

/* tag pill */
.tag { display: inline-block; vertical-align: middle; margin-left: 8px; white-space: nowrap; background: var(--accent-soft); color: var(--accent-2); font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.pc-imgwrap .tag, .pc-ed-imgwrap .tag { position: absolute; top: 14px; left: 14px; margin: 0; background: var(--surface); color: var(--accent-2); box-shadow: 0 2px 10px -4px rgba(0,0,0,.3); }

/* ---- add button + stepper ---- */
.add-btn { display: inline-flex; align-items: center; gap: 7px; height: 44px; padding: 0 20px 0 16px; border-radius: 999px; border: 1.5px solid var(--text); background: transparent; color: var(--text); font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; transition: background .15s, color .15s, transform .15s; }
.add-btn:hover { background: var(--text); color: var(--bg); transform: translateY(-1px); }
.add-btn.sm { height: 40px; padding: 0 16px 0 13px; font-size: 14px; }
.stepper { display: inline-flex; align-items: center; gap: 4px; height: 44px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); padding: 4px; }
.stepper.sm { height: 40px; }
.stepper button { width: 36px; height: 36px; border-radius: 999px; border: none; background: color-mix(in oklch, var(--accent-ink) 16%, transparent); color: var(--accent-ink); display: grid; place-items: center; cursor: pointer; transition: background .15s; }
.stepper.sm button { width: 32px; height: 32px; }
.stepper button:hover { background: color-mix(in oklch, var(--accent-ink) 30%, transparent); }
.stepper span { min-width: 24px; text-align: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 16px; }

/* ---- sticky order bar (menu) ---- */
.orderbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: 14px 0 18px; background: linear-gradient(to top, var(--bg) 60%, transparent); pointer-events: none; }
.orderbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--text); color: var(--bg); border-radius: 16px; padding: 12px 14px 12px 24px; pointer-events: auto; box-shadow: 0 16px 40px -16px rgba(0,0,0,.5); animation: barUp .35s cubic-bezier(.2,.7,.3,1) both; }
@keyframes barUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.orderbar-info { font-size: 15.5px; }
.orderbar-info strong { font-family: 'Schibsted Grotesk', sans-serif; }
.orderbar-sep { margin-inline: 10px; opacity: .4; }

/* ===================  ORDER PAGE  ========================= */
.order-main { padding-bottom: 120px; }
.order-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: clamp(20px, 3vw, 36px); }
.order-items { display: flex; flex-direction: column; gap: 14px; }
.order-line { display: flex; gap: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.order-line-img { width: 104px; height: 104px; border-radius: 14px; flex-shrink: 0; }
.order-line-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.order-line-head { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.order-line-head h3 { font-size: 20px; font-weight: 700; }
.order-line-head span { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; }
.order-line-desc { font-size: 14px; margin-top: 4px; }
.order-line-foot { display: flex; align-items: center; gap: 18px; margin-top: auto; padding-top: 14px; }
.link-remove { background: none; border: none; color: var(--muted); font-size: 14px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.link-remove:hover { color: var(--accent); }

.order-side { position: sticky; top: 96px; }
.order-summary { padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.order-summary h3 { font-size: 21px; font-weight: 700; }
.sum-rows { display: flex; flex-direction: column; gap: 9px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14.5px; }
.sum-row span:first-child { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sum-row span:last-child { flex-shrink: 0; white-space: nowrap; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; border-top: 1px solid var(--line); font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 22px; }

/* forms */
.form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15.5px; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; outline: none; transition: border-color .15s, box-shadow .15s; width: 100%; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.order-place { width: 100%; margin-top: 4px; }
.order-disclaimer { text-align: center; }

/* empty state */
.empty { text-align: center; max-width: 460px; margin: 40px auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.empty-img { width: 160px; height: 160px; border-radius: 24px; }
.empty h2 { font-size: 28px; margin-top: 8px; }

/* confirmation */
.confirm { text-align: center; padding-block: clamp(48px, 8vw, 100px); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.confirm-badge { width: 64px; height: 64px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; animation: pop .4s cubic-bezier(.2,1.2,.4,1) both; }
.confirm-badge.sm { width: 48px; height: 48px; }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: none; opacity: 1; } }
.confirm h1 { font-size: clamp(30px, 5vw, 46px); }
.confirm .lede { max-width: 52ch; }
.confirm-card { width: 100%; max-width: 440px; padding: 24px; text-align: left; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.confirm-line { display: flex; justify-content: space-between; gap: 14px; }
.confirm-total { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 19px; }
.confirm-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ===================  CONTACT  ============================ */
.contact-main { padding-bottom: clamp(60px, 9vw, 120px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-top: clamp(20px, 3vw, 40px); }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.ci-block { display: flex; gap: 16px; }
.ci-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-2); display: grid; place-items: center; }
.ci-block h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.ci-block p { font-size: 15px; }
.ci-hours { display: grid; grid-template-columns: max-content 1fr; column-gap: 28px; max-width: 320px; }
.ci-hours span:first-child { white-space: nowrap; }
.ci-hours span:last-child { white-space: nowrap; text-align: right; }
.contact-right { display: flex; flex-direction: column; gap: 22px; }
.contact-map { aspect-ratio: 16/9; border-radius: 22px; min-height: 220px; }
.contact-form { padding: 28px; }
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.cf-sent { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 12px 0; }
.cf-sent h3 { margin-bottom: 0; }

/* ===================  FOOTER  ============================= */
.ft { background: var(--text); color: var(--bg); margin-top: auto; }
.ft-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(48px, 6vw, 80px) 40px; }
.ft .brand-name, .ft .brand { color: var(--bg); }
.ft-brand { display: flex; flex-direction: column; gap: 16px; max-width: 32ch; }
.ft-brand .muted { color: color-mix(in oklch, var(--bg) 62%, var(--text)); }
.ft-ig { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: color-mix(in oklch, var(--bg) 72%, var(--text)); transition: color .15s; }
.ft-ig:hover { color: var(--bg); }
.ft-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: color-mix(in oklch, var(--bg) 55%, var(--text)); margin-bottom: 16px; }
.ft-col p, .ft-link { font-size: 14.5px; color: color-mix(in oklch, var(--bg) 68%, var(--text)); margin-bottom: 7px; }
.ft-hours { display: flex; justify-content: space-between; gap: 16px; }
.ft-link { display: block; background: none; border: none; padding: 0; cursor: pointer; text-align: left; transition: color .15s; }
.ft-link:hover { color: var(--bg); }
.ft-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid color-mix(in oklch, var(--bg) 18%, var(--text)); }
.ft-base .muted { color: color-mix(in oklch, var(--bg) 48%, var(--text)); }

/* ===================  RESPONSIVE  ========================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-drawer { display: flex; flex-direction: column; padding: 8px 0 16px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .nav-drawer button { background: none; border: none; text-align: left; padding: 14px clamp(20px,5vw,56px); font-size: 17px; font-weight: 500; color: var(--muted); cursor: pointer; }
  .nav-drawer button.active { color: var(--text); }

  .hero-split-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .hero-split-img { min-height: 260px; }
  .hero-sub { max-width: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/10; min-height: 0; order: -1; }

  .feat-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }

  .order-grid { grid-template-columns: 1fr; }
  .order-side { position: static; }
  .menu-grid.editorial { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html, body { overflow-x: hidden; }
  body { font-size: 16px; }
  .nav-inner { gap: 14px; }
  .brand { min-width: 0; }
  .nav-right { flex-shrink: 0; gap: 6px; }
  /* keep the header uncluttered on phones */
  .brand-name { font-size: 19px; }
  .brand-sub { display: none; }
  .open-status .open-detail { display: none; }
  .open-status { padding: 0 10px; }
  .hero-split { padding-block: 36px 52px; }
  .hero-split-inner { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 12px; align-items: center; }
  .hero-split-copy, .hero-split-inner > *, .sec-head, .feat-card { min-width: 0; }
  .hero-split-copy { position: relative; z-index: 2; gap: 18px; padding-top: 16px; }
  .hero-title { font-size: clamp(40px, 13vw, 54px); }
  .hero-sub, .sec-head h2 { max-width: 100%; overflow-wrap: break-word; }
  .hero-split-img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 5/6;
    border-radius: 0;
    pointer-events: none;
  }
  .hero-split-img .ph-art {
    width: var(--hero-img-mobile-size, 100%);
    height: var(--hero-img-mobile-size, 100%);
    transform: translate(var(--hero-img-mobile-x, 0), calc(-50% + var(--hero-img-mobile-y, 0)));
  }
  .hero-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; min-width: 0; padding-inline: 16px; }
  .menu-grid.clean { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pc-body { padding: 14px 15px 16px; }
  .pc-head h3 { font-size: 17px; }
  .pc-price { font-size: 16px; }
  .pc-desc { font-size: 13px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sec-head .btn { display: none; }
  .pc-list { flex-wrap: wrap; }
  .pc-list-action { width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .stat-row { flex-wrap: wrap; gap: 20px 32px; }
  .order-line { flex-direction: column; }
  .order-line-img { width: 100%; height: 140px; }
  .ft-inner { grid-template-columns: 1fr; }
}

/* tighten the header on narrow phones so the brand + badge fit comfortably */
@media (max-width: 430px) {
  .brand-mark { width: 32px; height: 32px; border-radius: 9px; font-size: 17px; }
  .brand-name { font-size: 17px; }
  .open-status { height: 28px; font-size: 12px; }
  .open-status .open-dot { width: 7px; height: 7px; }
}

/* ===================  ENTRY / LANDING  ==================== */
.landing { min-height: 100vh; display: flex; flex-direction: column; }
