/* ============================================================
   SEOUL DAK — SHARED PAGE CHROME (header + mobile drawer + footer)
   Extracted from css/home.css so inner pages can carry the exact
   homepage chrome WITHOUT loading home.css (whose body.sd-home
   global rules would fight their own stylesheets).
   AUTO-EXTRACTED — when homepage chrome changes in home.css,
   re-run the extraction or mirror the change here.
   Requires fonts: Oswald + Caveat + Inter (same link as index.html).
   ============================================================ */

/* Homepage tokens, scoped to the chrome roots only (NOT :root —
   page-level tokens from main.css must keep their own values). */
.sd-home-header, .sd-home-mobile-nav, .sd-foot {
  --container-max: 1560px;
  --container-wide: 1720px;
  --container-ultra: 1860px;
  --sd-cream: #f3dfe1;
  --sd-cream-soft: #f3dfe1;
  --sd-cream-deep: #e6c8cc;
  --sd-cream-warm: #efd5d9;
  --sd-white: #ffffff;
  --sd-red: #D62929;
  --sd-red-dark: #b81f1f;
  --sd-red-soft: #fdf0f1;
  --sd-burgundy: #2a0a0a;
  --sd-text: #2a1818;
  --sd-text-mute: #6e5959;
  --sd-line: rgba(214,41,41,0.18);
  --sd-line-soft: rgba(74,14,14,0.10);
  --f-disp: "Oswald", "Bebas Neue", "Inter", sans-serif;
  --f-script: "Caveat", "Brush Script MT", cursive;
  --f-body: "Inter", system-ui, sans-serif;
  --r-pill: 999px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* the homepage's global img normalizer, scoped to chrome only */
.sd-home-header img, .sd-home-mobile-nav img, .sd-foot img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Pages whose old header was sticky (in flow) opt into this class so
   their content clears the new FIXED pill header. */
body.sd-chrome-pad { padding-top: 96px; }
@media (max-width: 900px) {
  body.sd-chrome-pad { padding-top: 84px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.sd-home-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: var(--container-max);
  padding: 0;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 999px;
  border: 1px solid rgba(74,14,14,0.06);
  box-shadow: 0 14px 40px -18px rgba(74,14,14,0.20), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: top 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.sd-home-header.is-scrolled {
  top: 8px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 50px -20px rgba(74,14,14,0.30), inset 0 1px 0 rgba(255,255,255,0.7);
  border-color: rgba(74,14,14,0.10);
}

.sd-home-header__inner {
  padding: 10px 14px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sd-home-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--sd-red);
  transition: transform 0.3s var(--ease);
}

.sd-home-header__brand:hover { transform: scale(1.04); }

.sd-home-header__brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(214,41,41,0.20));
}

.sd-home-header__brand span {
  font-family: var(--f-disp);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sd-home-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sd-home-header__nav a {
  position: relative;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sd-text);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.25s var(--ease);
}

.sd-home-header__nav a span { position: relative; z-index: 2; }

.sd-home-header__nav a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--sd-red);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}

.sd-home-header__nav a:hover {
  color: var(--sd-red);
  background: rgba(214,41,41,0.07);
}

.sd-home-header__nav a:hover::before { width: 14px; }

/* Right cluster: live pill + CTA + hamburger */
.sd-home-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sd-home-header__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sd-text);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(44,138,74,0.10);
  border: 1px solid rgba(44,138,74,0.18);
}

.sd-home-header__live-dot {
  width: 7px; height: 7px;
  background: #2c8a4a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(44,138,74,0.20);
  animation: sd-hdr-pulse 1.6s ease-in-out infinite;
}

@keyframes sd-hdr-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(44,138,74,0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(44,138,74,0.06); }
}

.sd-home-header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: linear-gradient(135deg, #e21b22 0%, #b8141a 100%);
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 8px 22px -8px rgba(214,41,41,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  overflow: hidden;
  isolation: isolate;
}

.sd-home-header__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(.2,.9,.25,1.1);
  z-index: 1;
}

.sd-home-header__cta:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -8px rgba(214,41,41,0.65); }

.sd-home-header__cta:hover::before { transform: translateX(110%); }

.sd-home-header__cta-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  z-index: 2;
}

.sd-home-header__cta-icon svg { width: 14px; height: 14px; }

.sd-home-header__cta > span { z-index: 2; }

.sd-home-header__cta-arr {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.25s var(--ease);
}

.sd-home-header__cta-arr svg { width: 13px; height: 13px; }

.sd-home-header__cta:hover .sd-home-header__cta-arr { transform: translateX(4px); }

.sd-home-header__hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--sd-text);
}

.sd-home-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Mobile nav drawer — must sit above page sticky bars (menu pills 900),
   the FAB/back-to-top (999) and page headers (1000) */
.sd-home-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--sd-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
}

.sd-home-mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.sd-home-mobile-nav__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--sd-text);
  cursor: pointer;
}

.sd-home-mobile-nav ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.sd-home-mobile-nav ul a {
  font-family: var(--f-disp);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sd-text);
  text-decoration: none;
}

.sd-home-mobile-nav__cta {
  margin-top: 24px;
  padding: 16px 36px;
  background: var(--sd-red);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--r-pill);
  text-decoration: none;
}

/* ============================================================
   SECTION 6 — FOOTER (cream pre-footer + red action bar + light footer)
   Local palette layered on top of the home tokens.
   ============================================================ */
.sd-foot {
  --sd-ft-bg:        #f3dfe1;
  --sd-ft-dark:      #241c1c;
  --sd-ft-muted:     #4b3b38;
  --sd-ft-soft:      #5d4b47;
  --sd-ft-red:       #d71920;
  --sd-ft-border:    rgba(120,70,40,0.12);

  position: relative;
  background: linear-gradient(180deg, #f9edee 0%, var(--sd-ft-bg) 60%);
  border-top: 1px solid rgba(120,70,40,0.10);
  color: var(--sd-ft-dark);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.sd-foot__watermark {
  position: absolute;
  right: -60px;
  top: 20px;
  width: 220px;
  height: 220px;
  color: var(--sd-ft-red);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.sd-foot__watermark svg { width: 100%; height: 100%; }

/* ─── Pre-footer hero ─ compact, 2-line headline ─ */
.sd-foot__hero {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 22px 72px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 38%);
  align-items: center;
  max-width: var(--container-ultra);
  margin: 0 auto;
  gap: 32px;
  overflow: hidden;
}

.sd-foot__hero-text { padding-top: 0; position: relative; z-index: 2; }

.sd-foot__eyebrow {
  font-family: var(--f-body);
  color: var(--sd-ft-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.sd-foot__eyebrow-line {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--sd-ft-red);
  border-radius: 999px;
  margin: 0 0 12px;
}

.sd-foot__title {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.sd-foot__title .red,
.sd-foot__title .dark { display: inline-block; }

.sd-foot__title .red  { color: var(--sd-ft-red); }

.sd-foot__title .dark { color: var(--sd-ft-dark); }

.sd-foot__hero-desc {
  max-width: 560px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sd-ft-muted);
  margin: 0;
}

/* Right-side food collage — compact horizontal row */
.sd-foot__hero-food {
  position: relative;
  height: 180px;
  z-index: 2;
}

.sd-foot__food {
  position: absolute;
  filter: drop-shadow(0 14px 22px rgba(74,14,14,0.22));
  transition: transform 0.5s cubic-bezier(.2,.9,.25,1.1);
}

.sd-foot__food--bowl    { width: 38%; height: auto; top:  10%; left: 24%;  z-index: 3; }

.sd-foot__food--bao     { width: 42%; height: auto; top:  -4%; right: 8%;  z-index: 4; transform: rotate(2deg); }

.sd-foot__food--noodles { width: 36%; height: auto; bottom: -10%; right: 0%; z-index: 2; }

.sd-foot__hero-food:hover .sd-foot__food--bowl    { transform: translateY(-6px) scale(1.04); }

.sd-foot__hero-food:hover .sd-foot__food--bao     { transform: translateY(-4px) rotate(6deg) scale(1.04); }

.sd-foot__hero-food:hover .sd-foot__food--noodles { transform: translateY(-5px) scale(1.04); }

/* ─── Red action bar ─────────────────────── */
.sd-foot__action-bar {
  position: relative;
  z-index: 5;
  max-width: var(--container-wide);
  margin: 4px 72px 28px;
  background: linear-gradient(135deg, #e21b22 0%, #b8141a 100%);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(215,25,32,0.40), 0 4px 12px -4px rgba(0,0,0,0.12);
}

.sd-foot__action-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 82% 50%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}

.sd-foot__action {
  position: relative;
  min-height: 86px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.16);
  transition: background 0.25s ease;
  overflow: hidden;
}

.sd-foot__action::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(.2,.9,.25,1.1);
  pointer-events: none;
}

.sd-foot__action:last-child { border-right: 0; }

.sd-foot__action:hover { background: rgba(0,0,0,0.12); }

.sd-foot__action:hover::after { transform: translateX(100%); }

.sd-foot__action-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(.2,.9,.25,1.1), background 0.25s ease, border-color 0.25s ease;
}

.sd-foot__action:hover .sd-foot__action-icon {
  background: #fff;
  color: var(--sd-ft-red);
  border-color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.sd-foot__action-icon svg { width: 24px; height: 24px; transition: stroke 0.2s ease; }

.sd-foot__action:hover .sd-foot__action-icon svg { stroke: var(--sd-ft-red); }

.sd-foot__action-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.sd-foot__action-body strong {
  font-family: var(--f-body);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sd-foot__action-body em {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sd-foot__action-arr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(.2,.9,.25,1.1), background 0.25s ease;
}

.sd-foot__action-arr svg { width: 15px; height: 15px; }

.sd-foot__action:hover .sd-foot__action-arr {
  background: #fff;
  color: var(--sd-ft-red);
  transform: translateX(6px) scale(1.08);
}

@media (max-width: 900px) {
  .sd-foot__hero-stats { flex-wrap: wrap; }
  .sd-foot__hero-stamp { width: 80px; height: 80px; }
}

/* ─── 5-column main footer ───────────────── */
.sd-foot__main {
  position: relative;
  z-index: 4;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 48px 72px 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.6fr;
  gap: 28px;
}

.sd-foot__col {
  border-left: 1px solid var(--sd-ft-border);
  padding-left: 28px;
}

.sd-foot__brand {
  border-left: 0;
  padding-left: 0;
}

/* Brand block */
.sd-foot__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.sd-foot__logo img { height: 42px; width: auto; }

.sd-foot__brand-tag {
  color: var(--sd-ft-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.sd-foot__brand-text {
  max-width: 320px;
  color: var(--sd-ft-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

.sd-foot__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.sd-foot__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(35,24,20,0.06);
  color: var(--sd-ft-dark);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.sd-foot__social svg { width: 16px; height: 16px; }

.sd-foot__social:hover { background: var(--sd-ft-red); color: #fff; }

/* Heading + links */
.sd-foot__heading {
  color: var(--sd-ft-red);
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.sd-foot__heading::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--sd-ft-red);
  opacity: 0.45;
}

.sd-foot__link {
  display: block;
  width: fit-content;
  color: var(--sd-ft-muted);
  font-size: 0.84rem;
  margin-bottom: 9px;
  text-decoration: none;
  transition: color 0.2s var(--ease), transform 0.25s var(--ease);
}

.sd-foot__link:hover {
  color: var(--sd-ft-red);
  transform: translateX(4px);
}

/* Locations 3-col compact card grid */
.sd-foot__loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

/* Balanced cards: uniform height, text gets the full width (the arrow
   is pinned to the bottom-right corner so nothing wraps around it). */
.sd-foot__loc-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.56) 100%);
  border: 1px solid rgba(74,14,14,0.10);
  border-radius: 13px;
  padding: 12px 40px 12px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
  min-height: 96px;
  overflow: hidden;
  box-shadow: 0 6px 16px -12px rgba(74,14,14,0.30);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.sd-foot__loc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--sd-ft-red), #ff5a3c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.sd-foot__loc-card:hover {
  background: #fff;
  border-color: rgba(215,25,32,0.32);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -16px rgba(74,14,14,0.42);
}

.sd-foot__loc-card:hover::before { transform: scaleY(1); }

.sd-foot__loc-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sd-ft-muted);
}

.sd-foot__loc-status {
  position: relative;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2c8a4a;
  flex-shrink: 0;
}

.sd-foot__loc-status::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(44,138,74,0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .sd-foot__loc-status::after { animation: sd-ft-ping 2.4s ease-out infinite; }
}

@keyframes sd-ft-ping {
  0%   { box-shadow: 0 0 0 0 rgba(44,138,74,0.45); }
  70%, 100% { box-shadow: 0 0 0 6px rgba(44,138,74,0); }
}

.sd-foot__loc-city {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--sd-ft-muted);
  text-transform: uppercase;
}

.sd-foot__loc-branch {
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--sd-ft-dark);
  line-height: 1.15;
  white-space: normal;
  transition: color 0.2s ease;
}

.sd-foot__loc-card:hover .sd-foot__loc-branch { color: var(--sd-ft-red); }

/* Street line — now shown for richer info */
.sd-foot__loc-addr {
  display: block;
  font-size: 0.66rem;
  color: var(--sd-ft-muted);
  line-height: 1.35;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sd-foot__loc-arr {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(215,25,32,0.09);
  color: var(--sd-ft-red);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sd-foot__loc-arr svg { width: 13px; height: 13px; }

.sd-foot__loc-card:hover .sd-foot__loc-arr {
  background: var(--sd-ft-red);
  color: #fff;
  transform: translateX(3px) scale(1.05);
}

.sd-foot__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--sd-ft-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sd-ft-red);
  padding-bottom: 3px;
  transition: gap 0.25s ease;
}

.sd-foot__view-all:hover { gap: 14px; }

/* Contact block nested inside About column */
.sd-foot__contact-block {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(74,14,14,0.10);
}

.sd-foot__contact-block { margin-top: 18px; }

.sd-foot__contact-block .sd-foot__heading { margin-bottom: 10px; }

/* Contact items */
.sd-foot__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sd-ft-dark);
  font-size: 0.78rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.sd-foot__contact svg { width: 16px; height: 16px; color: var(--sd-ft-red); flex-shrink: 0; }

.sd-foot__contact:hover { color: var(--sd-ft-red); }

/* Newsletter */
.sd-foot__newsletter {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--sd-ft-border);
}

.sd-foot__newsletter .sd-foot__heading { margin-bottom: 6px; }

.sd-foot__newsletter-desc {
  font-size: 0.78rem;
  color: var(--sd-ft-muted);
  margin: 0 0 14px;
  line-height: 1.4;
}

.sd-foot__newsletter-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  height: 44px;
}

.sd-foot__newsletter-form input {
  border: 1px solid var(--sd-ft-border);
  border-right: 0;
  background: rgba(255,255,255,0.55);
  border-radius: 10px 0 0 10px;
  padding: 0 14px;
  color: var(--sd-ft-dark);
  font-family: inherit;
  font-size: 0.84rem;
}

.sd-foot__newsletter-form input::placeholder { color: var(--sd-ft-soft); }

.sd-foot__newsletter-form input:focus { outline: 0; border-color: var(--sd-ft-red); }

.sd-foot__newsletter-form button {
  border: 0;
  background: var(--sd-ft-red);
  color: #fff;
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.sd-foot__newsletter-form button:hover { background: #b81620; }

/* ─── Order CTA card under brand ────────── */
.sd-foot__order-card {
  display: grid;
  grid-template-columns: 38px 1fr 16px;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 9px 12px;
  background: linear-gradient(135deg, #ffffff 0%, #fde9eb 100%);
  border: 1px solid rgba(215,25,32,0.20);
  border-radius: 14px;
  text-decoration: none;
  color: var(--sd-ft-dark);
  box-shadow: 0 10px 22px -14px rgba(215,25,32,0.30);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}

.sd-foot__order-card:hover {
  transform: translateY(-2px);
  border-color: var(--sd-ft-red);
  box-shadow: 0 18px 32px -14px rgba(215,25,32,0.50);
}

.sd-foot__order-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--sd-ft-red);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}

.sd-foot__order-card:hover .sd-foot__order-icon { transform: rotate(-6deg) scale(1.05); }

.sd-foot__order-icon svg { width: 18px; height: 18px; }

.sd-foot__order-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.sd-foot__order-body strong {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--sd-ft-dark);
}

.sd-foot__order-body em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--sd-ft-muted);
}

.sd-foot__order-arr {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sd-ft-red);
  transition: transform 0.25s var(--ease);
}

.sd-foot__order-card:hover .sd-foot__order-arr { transform: translateX(4px); }

/* ─── Trust strip ────────────────────────── */
.sd-foot__trust {
  border-top: 1px solid var(--sd-ft-border);
  border-bottom: 1px solid var(--sd-ft-border);
  padding: 22px 72px;
  position: relative;
  z-index: 3;
}

.sd-foot__trust-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.sd-foot__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  position: relative;
  transition: transform 0.25s ease;
}

.sd-foot__trust-item + .sd-foot__trust-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: var(--sd-ft-border);
}

.sd-foot__trust-item:hover { transform: translateY(-2px); }

.sd-foot__trust-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(215,25,32,0.10);
  color: var(--sd-ft-red);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s var(--ease);
}

.sd-foot__trust-item:hover .sd-foot__trust-icon {
  background: var(--sd-ft-red);
  color: #fff;
  transform: rotate(-6deg);
}

.sd-foot__trust-icon svg { width: 18px; height: 18px; }

.sd-foot__trust-item > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.sd-foot__trust-item strong {
  font-family: var(--f-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--sd-ft-dark);
}

.sd-foot__trust-item em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--sd-ft-muted);
}

@media (max-width: 1024px) {
  .sd-foot__trust { padding: 22px 32px; }
  .sd-foot__trust-inner { grid-template-columns: 1fr 1fr; gap: 22px 28px; }
  .sd-foot__trust-item + .sd-foot__trust-item:nth-child(3)::before { display: none; }
}

@media (max-width: 640px) {
  .sd-foot__trust { padding: 18px 24px; }
  .sd-foot__trust-inner { grid-template-columns: 1fr; gap: 14px; }
  .sd-foot__trust-item + .sd-foot__trust-item::before { display: none; }
}

/* ─── Bottom bar ─────────────────────────── */
.sd-foot__bot {
  border-top: 1px solid var(--sd-ft-border);
  background: rgba(255,255,255,0.4);
  padding: 18px 72px;
}

.sd-foot__bot-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--sd-ft-soft);
  font-size: 0.78rem;
}

.sd-foot__bot-r { display: flex; gap: 24px; }

.sd-foot__bot-r a {
  color: var(--sd-ft-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.sd-foot__bot-r a:hover { color: var(--sd-ft-red); }

@media (max-width: 1240px) {
  .sd-foot__hero  { padding: 48px 32px 16px; gap: 24px; }
  .sd-foot__main  { padding: 0 32px 32px; grid-template-columns: 1fr 1fr 1fr; }
  .sd-foot__brand { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .sd-foot__col--locs { grid-column: 1 / -1; }
  .sd-foot__bot   { padding: 22px 32px; }
}

@media (max-width: 1024px) {
  .sd-foot__hero { grid-template-columns: 1fr; padding: 40px 28px 16px; }
  .sd-foot__hero-food { min-height: 280px; max-width: 520px; margin: 0 auto; }
  .sd-foot__action-bar { grid-template-columns: 1fr; margin: 24px 28px; }
  .sd-foot__action { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .sd-foot__action:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .sd-foot__title { font-size: clamp(2rem, 9vw, 3rem); }
  .sd-foot__main { grid-template-columns: 1fr; padding: 0 24px 32px; gap: 32px; }
  .sd-foot__col { border-left: 0; padding-left: 0; }
  .sd-foot__loc-grid { grid-template-columns: 1fr; }
  .sd-foot__bot-inner { flex-direction: column; align-items: flex-start; }
  .sd-foot__bot { padding: 22px 24px; }
}

@media (max-width: 1080px) {
  .sd-menu, .sd-loc, .sd-about, .sd-social, .sd-foot { padding-left: 24px; padding-right: 24px; }
  .sd-foot__mid-inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .sd-foot__brand { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .sd-foot__locs { grid-column: 1 / -1; }
  .sd-foot__contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .sd-home-header__nav { display: none; }
  .sd-home-header__cta { display: none; }
  .sd-home-header__hamburger { display: flex; }
  .sd-foot__top { grid-template-columns: 1fr; gap: 32px; }
  .sd-foot__top-img { max-width: 360px; margin: 0 auto; }
  .sd-foot__cta-row { grid-template-columns: 1fr; }
  .sd-foot__mid-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sd-foot__brand { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
  .sd-foot__locs ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .sd-foot__mid-inner { grid-template-columns: 1fr; }
  .sd-foot__locs ul { grid-template-columns: 1fr; }
  .sd-foot__bot-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .sd-foot { padding-left: 16px; padding-right: 16px; }
  .sd-foot__mid, .sd-foot__bot { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  .sd-foot__cta { padding: 18px 20px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sd-story, .sd-h-hero__food, .sd-mcard, .sd-feature, .sd-foot__cta, .sd-h-btn { transition: none !important; }
}

@media (max-width: 640px) {
  .sd-foot__hero { display: none; }
  /* dead markup already removed; hide leftover CSS defensively */
  
    /* Action bar → slim 3-up icon tiles */
    .sd-foot__action-bar {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin: 18px 20px 24px;
      max-width: none;
    }
  .sd-foot__action {
      min-width: 0;          /* let the 1fr tracks shrink so 3 tiles fit */
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 7px;
      padding: 13px 6px;
      border-right: 0 !important;
      border-bottom: 0 !important;
      background: rgba(255,255,255,0.06);
      border-radius: 14px;
    }
  .sd-foot__action { overflow: hidden; }
  .sd-foot__action-icon { width: 36px; height: 36px; }
  .sd-foot__action-body { width: 100%; min-width: 0; align-items: center; }
  .sd-foot__action-body strong { font-size: 0.72rem; line-height: 1.18; white-space: normal; overflow-wrap: anywhere; }
  /* Guard against long unbreakable strings (email, etc.) widening the page */
    .sd-foot__contact, .sd-foot__link, .sd-foot__brand-text { overflow-wrap: anywhere; }
  .sd-foot__action-body em,
    .sd-foot__action-arr { display: none; }
  /* Main → brand on top, links in a tidy 2-col group, locations full-width */
    .sd-foot__main {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 26px 18px;
      padding: 0 20px 28px;
    }
  .sd-foot__col       { min-width: 0; }
  .sd-foot__brand     { grid-column: 1 / -1; }
  .sd-foot__col--locs { grid-column: 1 / -1; }
  .sd-foot__heading   { margin-bottom: 10px; }
  .sd-foot__link      { font-size: 0.86rem; }
  .sd-foot__contact   { min-width: 0; }
  /* let the email wrap instead of widening the page */
  
    /* Location chips → compact 2-col, drop the street line to stay short */
    .sd-foot__loc-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 8px; }
  .sd-foot__loc-card { min-width: 0; }
  .sd-foot__loc-card { padding: 10px 12px; border-radius: 12px; }
  .sd-foot__loc-addr { display: none; }
  .sd-foot__loc-branch { font-size: 0.84rem; }
  /* Bottom bar compact */
    .sd-foot__bot { padding: 20px; }
}

@media (max-width: 400px) {
  .sd-foot__action-bar { margin: 16px 16px 20px; gap: 6px; }
  .sd-foot__action { padding: 12px 6px; }
  .sd-foot__action-icon { width: 34px; height: 34px; }
  .sd-foot__action-body strong { font-size: 0.72rem; }
  .sd-foot__main { padding: 0 16px 24px; }
}

@media (max-width: 900px) {
  .sd-home-header__inner { padding: 8px 12px 8px 16px; gap: 10px; }
  .sd-home-header__brand img { height: 30px; }
  .sd-home-header__brand span { font-size: 1.15rem; }
  .sd-home-header__right { gap: 10px; }
  .sd-home-header__live { padding: 6px 10px; font-size: 0.62rem; }
  .sd-home-header__hamburger {
      width: 42px; height: 42px;
      background: var(--sd-red);
      border-radius: 50%;
      border: 0;
      box-shadow: 0 8px 18px -8px rgba(214,41,41,0.6);
    }
  .sd-home-header__hamburger span { background: #fff; }
}

@media (max-width: 380px) {
  .sd-home-header__live { display: none; }
}

/* ---------- Hamburger drawer — peach panel + dimmed backdrop ---------- */
.sd-home-mobile-nav {
  position: fixed; inset: 0; z-index: 1500;
  background: transparent; transform: none;
  visibility: hidden; pointer-events: none;
}

.sd-home-mobile-nav.is-open { visibility: visible; pointer-events: auto; }

.sd-home-mobile-nav__backdrop {
  position: absolute; inset: 0;
  background: rgba(25,12,12,0.45);
  opacity: 0; transition: opacity 0.35s var(--ease);
}

.sd-home-mobile-nav.is-open .sd-home-mobile-nav__backdrop { opacity: 1; }

.sd-home-mobile-nav__panel {
  position: absolute; top: 0; right: 0;
  width: min(85vw, 360px); height: 100%; height: 100dvh;
  background: #fbece9;
  padding: 26px 26px 34px;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px -18px rgba(35,24,20,0.4);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}

.sd-home-mobile-nav.is-open .sd-home-mobile-nav__panel { transform: translateX(0); }

.sd-home-mobile-nav__close {
  align-self: flex-end;
  width: 48px; height: 48px; border: 0; background: transparent;
  color: var(--sd-red); font-size: 2.5rem; line-height: 1; cursor: pointer;
}

.sd-home-mobile-nav__brand { display: flex; align-items: center; gap: 12px; margin: 2px 0 22px; }

.sd-home-mobile-nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: 0 0 auto;
}

.sd-home-mobile-nav__mark img { width: 100%; height: 100%; object-fit: contain; }

.sd-home-mobile-nav__brand-text {
  display: flex; flex-direction: column;
  font-family: var(--f-disp); font-size: 1.4rem; color: var(--sd-red);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1;
}

.sd-home-mobile-nav__brand-text small {
  font-family: var(--f-body); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; color: #8a6b66; margin-top: 7px; text-transform: uppercase;
}

.sd-home-mobile-nav__list { list-style: none; margin: 4px 0 0; padding: 0; }

.sd-home-mobile-nav__list li { border-top: 1px solid rgba(120,70,40,0.12); }

.sd-home-mobile-nav__list li:last-child { border-bottom: 1px solid rgba(120,70,40,0.12); }

.sd-home-mobile-nav__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 2px;
  font-family: var(--f-disp); font-size: 1.25rem; text-transform: uppercase;
  letter-spacing: 0.02em; color: #2a1414; text-decoration: none;
}

.sd-home-mobile-nav__chev { color: var(--sd-red); font-size: 1.5rem; line-height: 1; }

.sd-home-mobile-nav__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin: 24px 0 0; padding: 16px 22px;
  background: var(--sd-red); color: #fff; border-radius: 999px;
  font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.82rem;
  text-decoration: none;
}

.sd-home-mobile-nav__social { margin-top: 26px; }

.sd-home-mobile-nav__social-label {
  display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sd-red); margin-bottom: 12px;
}

.sd-home-mobile-nav__social-icons { display: flex; gap: 12px; }

.sd-home-mobile-nav__social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(214,41,41,0.08); color: var(--sd-red);
}

.sd-home-mobile-nav__social-icons svg { width: 18px; height: 18px; }

/* Desktop: the mobile-only footer must never render (mirrors home.css
   @media (min-width:901px) — its absence let the unconstrained mobile
   footer icons blow the footer up to ~16,000px tall on every page). */
@media (min-width: 901px) {
  .sd-foot__mobile { display: none; }
}

@media (max-width: 900px) {
  .sd-foot__action-bar, .sd-foot__main { display: none; }
  .sd-foot__mobile { display: block; padding: 40px 20px 12px; }
  .sd-foot__m-brand { display: flex; align-items: center; justify-content: center; gap: 10px; }
  .sd-foot__m-logo { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: 0 0 auto; }
  .sd-foot__m-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .sd-foot__m-name { font-family: var(--f-disp); font-size: 1.5rem; color: var(--sd-ft-red); text-transform: uppercase; letter-spacing: 0.04em; }
  .sd-foot__m-eyebrow { text-align: center; color: var(--sd-ft-red); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin: 16px 0 8px; }
  .sd-foot__m-body { text-align: center; color: var(--sd-ft-muted); font-size: 0.92rem; line-height: 1.55; margin: 0 auto 22px; max-width: 420px; }
  .sd-foot__m-actions { display: flex; flex-direction: column; gap: 12px; }
  .sd-foot__m-action {
      display: flex; align-items: center; gap: 14px; padding: 15px 16px;
      background: #fff; border: 1px solid var(--sd-ft-border); border-radius: 16px;
      box-shadow: 0 12px 26px -18px rgba(35,24,20,0.3); text-decoration: none;
    }
  .sd-foot__m-action-ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--sd-ft-red); color: #fff; }
  .sd-foot__m-action-ic svg { width: 20px; height: 20px; }
  .sd-foot__m-action-tx { display: flex; flex-direction: column; flex: 1; gap: 2px; }
  .sd-foot__m-action-tx strong { font-size: 0.98rem; color: var(--sd-ft-dark); }
  .sd-foot__m-action-tx em { font-style: normal; font-size: 0.78rem; color: var(--sd-ft-soft); }
  .sd-foot__m-action-arr { color: var(--sd-ft-red); font-size: 1.2rem; }
  .sd-foot__m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
  .sd-foot__m-tile {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      padding: 22px 12px; background: #fff; border: 1px solid var(--sd-ft-border);
      border-radius: 16px; color: var(--sd-ft-dark); text-decoration: none;
      font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    }
  .sd-foot__m-tile-ic { color: var(--sd-ft-red); }
  .sd-foot__m-tile-ic svg { width: 24px; height: 24px; }
  .sd-foot__m-social { display: flex; justify-content: center; gap: 14px; margin: 4px 0 18px; }
  .sd-foot__m-social a { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--sd-ft-border); color: var(--sd-ft-red); }
  .sd-foot__m-social svg { width: 18px; height: 18px; }
  .sd-foot__m-help {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding: 15px 16px; background: rgba(215,25,32,0.07);
      border: 1px solid rgba(215,25,32,0.2); border-radius: 16px;
      text-decoration: none; color: var(--sd-ft-dark);
    }
  .sd-foot__m-help-tx { display: flex; flex-direction: column; font-size: 0.9rem; }
  .sd-foot__m-help-tx small { color: var(--sd-ft-red); font-size: 0.82rem; margin-top: 2px; }
  .sd-foot__m-help-arr { color: var(--sd-ft-red); font-size: 1.2rem; }
  /* bottom bar: centered copyright + links */
    .sd-foot__bot-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .sd-foot__bot-r { justify-content: center; flex-wrap: wrap; gap: 8px 16px; }
}

