:root {
  --brand-red: #E02A29;
  --brand-red-dark: #B61F20;
  --brand-red-soft: #FFE8E5;
  --brand-teal: #3FC6B8;
  --brand-teal-dark: #26A89C;
  --brand-teal-soft: #E7FBF8;
  --ink-900: #121A22;
  --ink-800: #20303C;
  --ink-700: #435564;
  --ink-500: #6D7A86;
  --surface: #F6F9FB;
  --surface-strong: #EEF4F6;
  --white: #FFFFFF;
  --border: rgba(18, 26, 34, 0.08);
  --shadow-sm: 0 10px 30px rgba(11, 23, 36, 0.05);
  --shadow-md: 0 18px 50px rgba(11, 23, 36, 0.10);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink-900);
  background: var(--surface);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.86); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(18, 26, 34, 0.05);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-image { width: 196px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(18, 26, 34, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.93rem;
  font-weight: 600;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--brand-red);
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-900);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero-banner {
  position: relative;
  min-height: 82vh;
  background: var(--ink-900);
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.banner-slide.active { opacity: 1; z-index: 1; }
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
}
.hero-copy {
  color: var(--white);
  max-width: 760px;
}
.hero-copy .eyebrow { color: rgba(255,255,255,0.82); }
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.hero-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-panel {
  display: grid;
  gap: 16px;
}
.hero-panel-card,
.hero-panel-metrics {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  color: var(--white);
  border-radius: 24px;
  padding: 22px;
}
.hero-panel-card strong,
.hero-panel-metrics strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.hero-panel-card p { color: rgba(255,255,255,0.82); }
.hero-panel-metrics { display: grid; gap: 14px; }
.hero-panel-metrics span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.66);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.banner-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.banner-dot {
  width: 42px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  cursor: pointer;
}
.banner-dot.active { background: var(--white); }

.section {
  padding: 96px 0;
}
.section-band {
  padding-top: 20px;
  padding-bottom: 20px;
}
.section-intro {
  padding-top: 72px;
  padding-bottom: 40px;
}
.intro-grid,
.quick-grid,
.franchise-layout,
.contact-grid,
.page-banner-grid .page-banner-inner {
  display: grid;
  gap: 28px;
}
.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: end;
}
.split-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.14;
  max-width: 680px;
}
.intro-copy {
  color: var(--ink-700);
  font-size: 1rem;
}
.text-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-red);
  font-weight: 700;
}

.section-head {
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.08;
}
.section-head p {
  max-width: 460px;
  color: var(--ink-700);
}
.section-head-tight {
  margin-bottom: 22px;
}
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.section-actions-left { justify-content: flex-start; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.dish-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.dish-card-img {
  aspect-ratio: 1.15 / 1;
  background: var(--brand-red-soft);
  overflow: hidden;
}
.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand-red);
  font-weight: 800;
  font-size: 1.25rem;
}
.dish-card-body { padding: 20px; }
.dish-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 10px;
}
.dish-card-top h3 { font-size: 1.08rem; line-height: 1.3; }
.dish-desc { color: var(--ink-700); font-size: 0.92rem; }
.dish-price {
  color: var(--brand-red);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.quick-card {
  background: rgba(224, 42, 41, 0.05);
  border: 1px solid rgba(224, 42, 41, 0.12);
  border-radius: 28px;
  padding: 30px;
  min-height: 220px;
}
.quick-card span {
  display: inline-block;
  color: var(--brand-teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quick-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.quick-card p { color: var(--ink-700); }
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.news-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.news-card h3 {
  font-size: 1.18rem;
  line-height: 1.36;
  margin-bottom: 10px;
}
.news-card p {
  color: var(--ink-700);
  flex: 1;
}
.news-date {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-list-card {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 218px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.news-list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.news-list-card--lead {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  min-height: 300px;
}

.news-list-card--text {
  display: block;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(224, 42, 41, 0.04), transparent 38%),
    var(--white);
}

.news-list-image {
  height: 100%;
  min-height: 218px;
  background: var(--surface-strong);
}

.news-list-card--lead .news-list-image {
  min-height: 300px;
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px 32px;
}

.news-list-card--text .news-list-body {
  padding: 28px 32px 30px;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brand-teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-list-meta em {
  padding: 3px 9px;
  color: var(--brand-red-dark);
  background: var(--brand-red-soft);
  border-radius: 999px;
  font-style: normal;
  letter-spacing: 0;
}

.news-list-body h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.18;
}

.news-list-card:not(.news-list-card--lead) .news-list-body h2 {
  font-size: clamp(1.2rem, 1.55vw, 1.6rem);
}

.news-list-body p {
  max-width: 760px;
  color: var(--ink-700);
}

.news-list-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 20px;
  color: var(--brand-red);
  font-weight: 800;
}

.news-list-more::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition);
}

.news-list-card:hover .news-list-more::after {
  transform: translateX(5px);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.store-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.store-card p {
  color: var(--ink-700);
}
.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.store-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.84rem;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
  color: var(--white);
  background: linear-gradient(135deg, #A61B1C 0%, var(--brand-red) 52%, #F05E49 100%);
}
.page-banner-inner {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 14px;
}
.page-banner p {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
}
.page-banner-grid .page-banner-inner {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
}
.page-banner-side {
  display: grid;
  gap: 14px;
}
.mini-stat {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px 20px;
}
.mini-stat strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.mini-stat span { color: rgba(255,255,255,0.8); }

.content-section { padding: 70px 0 96px; }
.content-block,
.about-block,
.news-detail,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.content-block,
.about-block,
.news-detail { padding: 30px; }
.content-block h2,
.about-block h2 {
  font-size: 1.55rem;
  margin-bottom: 16px;
}
.rich-text,
.about-content,
.news-body {
  color: var(--ink-700);
}
.rich-text p,
.rich-text li,
.about-content p,
.news-body p { margin-bottom: 12px; }
.rich-text ul,
.rich-text ol,
.about-content ul,
.about-content ol,
.news-body ul,
.news-body ol { padding-left: 20px; }

.about-sections {
  display: grid;
  gap: 22px;
}
.about-block-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.about-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
}
.about-hero-image,
.about-hero-shade {
  position: absolute;
  inset: 0;
}
.about-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 26, 34, 0.86) 0%, rgba(18, 26, 34, 0.58) 45%, rgba(18, 26, 34, 0.20) 100%),
    linear-gradient(0deg, rgba(18, 26, 34, 0.78), rgba(18, 26, 34, 0.10));
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 78px;
}
.about-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1;
  margin-bottom: 18px;
}
.about-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  margin-top: 34px;
}
.about-hero-stats div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.about-hero-stats strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 10px;
}
.about-hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}
.about-anchor-band {
  position: sticky;
  top: 84px;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 26, 34, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}
.about-anchor-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
}
.about-anchor-list a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 700;
}
.about-anchor-list a:hover {
  background: var(--brand-red);
  color: var(--white);
}
.about-split,
.about-culture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}
.about-copy h2,
.about-culture h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.about-copy p {
  color: var(--ink-700);
  font-size: 1rem;
  margin-bottom: 14px;
}
.about-photo-stack {
  position: relative;
  min-height: 520px;
}
.about-photo-stack img,
.about-culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.about-photo-stack img {
  position: absolute;
  inset: 0;
}
.about-note-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}
.about-note-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-red);
  font-size: 1.08rem;
}
.about-note-card span {
  color: var(--ink-700);
}

/* Brand intro — centered prose band (distinct from about-split brand story) */
.about-intro {
  padding: 0;
  background: transparent;
}
.about-intro-band {
  padding: 88px 0;
  background:
    linear-gradient(180deg, var(--surface-strong) 0%, var(--white) 42%, var(--white) 100%);
  border-block: 1px solid var(--border);
}
.about-intro-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.about-intro-head {
  width: 100%;
  max-width: 720px;
  text-align: center;
}
.about-intro-head .eyebrow {
  justify-content: center;
}
.about-intro-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
}
.about-intro-prose {
  width: 100%;
  max-width: 720px;
  padding: 32px 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.about-intro-prose p {
  color: var(--ink-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-intro-prose p:last-child {
  margin-bottom: 0;
}
.about-intro-identity {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(224, 42, 41, 0.14);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.about-intro-identity__mark {
  flex: 0 0 6px;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-red-dark));
}
.about-intro-identity__body {
  flex: 1;
  padding: 28px 32px;
}
.about-intro-identity__body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 1.12rem;
}
.about-intro-identity__body p {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-timeline-section {
  background: var(--white);
}
.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-timeline article {
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(224, 42, 41, 0.12);
  background: linear-gradient(180deg, rgba(224, 42, 41, 0.07), rgba(246, 249, 251, 0.90));
}
.about-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 38px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
}
.about-timeline h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}
.about-timeline p {
  color: var(--ink-700);
  font-size: 0.94rem;
}
.about-culture-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}
.about-culture-image {
  height: 620px;
}
.culture-lead {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 52ch;
}
.culture-card-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.culture-keywords {
  margin-bottom: 6px;
  color: var(--brand-red);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.culture-card-list article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.culture-card-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 1.08rem;
}
.culture-card-list article > p:last-child {
  color: var(--ink-700);
}
.about-team {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.team-abstract {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #f6efe8 0%, #e8ddd2 48%, #d9cec3 100%);
}
.team-abstract::before,
.team-abstract::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.72;
}
.team-abstract::before {
  width: 58%;
  height: 58%;
  top: 12%;
  left: 8%;
}
.team-abstract::after {
  width: 48%;
  height: 48%;
  right: 6%;
  bottom: 10%;
}
.team-abstract--kitchen {
  background: linear-gradient(155deg, #fff5ee 0%, #f0ddd0 55%, #e5cfc0 100%);
}
.team-abstract--kitchen::before {
  background: radial-gradient(circle, rgba(196, 74, 58, 0.35) 0%, transparent 70%);
}
.team-abstract--kitchen::after {
  background: radial-gradient(circle, rgba(139, 90, 60, 0.28) 0%, transparent 72%);
}
.team-abstract--service {
  background: linear-gradient(160deg, #faf6f1 0%, #efe4d8 50%, #e2d5c8 100%);
}
.team-abstract--service::before {
  background: radial-gradient(circle, rgba(180, 120, 80, 0.32) 0%, transparent 68%);
  left: 22%;
}
.team-abstract--service::after {
  background: radial-gradient(circle, rgba(196, 74, 58, 0.22) 0%, transparent 70%);
  right: 14%;
}
.team-abstract--quality {
  background: linear-gradient(150deg, #f4f0eb 0%, #e6ddd4 52%, #d8cec4 100%);
}
.team-abstract--quality::before {
  background: radial-gradient(circle, rgba(100, 110, 95, 0.26) 0%, transparent 70%);
}
.team-abstract--quality::after {
  background: radial-gradient(circle, rgba(196, 74, 58, 0.2) 0%, transparent 72%);
}
.team-abstract--standards {
  background: linear-gradient(165deg, #f8f3ed 0%, #ebe0d4 48%, #dfd2c6 100%);
}
.team-abstract--standards::before {
  background: radial-gradient(circle, rgba(196, 74, 58, 0.26) 0%, transparent 68%);
  top: 18%;
  left: 18%;
}
.team-abstract--standards::after {
  background: radial-gradient(circle, rgba(160, 130, 100, 0.3) 0%, transparent 70%);
}
.team-card div {
  padding: 24px;
}
.team-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 800;
}
.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.team-card p {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.menu-categories a {
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-700);
  font-weight: 600;
}
.menu-categories a:hover,
.menu-categories a.active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
}
.menu-category-block { margin-bottom: 40px; }

.news-detail {
  max-width: 860px;
  margin: 0 auto;
}
.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.news-detail-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  margin-bottom: 24px;
}

.store-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.store-directory-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(18, 26, 34, 0.10);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.store-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 42, 41, 0.24);
  box-shadow: var(--shadow-md);
}
.store-photo {
  position: relative;
  display: block;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #F9D4C9 0%, #FFF4DF 46%, #D9F4EF 100%);
}
.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}
.store-directory-card:hover .store-photo img { transform: scale(1.045); }
.store-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(18, 26, 34, 0), rgba(18, 26, 34, 0.50));
  pointer-events: none;
}
.store-map-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(11, 23, 36, 0.16);
}
.store-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.store-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.store-card-head h3 {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.28;
}
.store-region {
  display: inline-flex;
  color: var(--brand-teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.store-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
}
.store-address {
  min-height: 3.3em;
  color: var(--ink-700);
}
.store-detail-list {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: var(--ink-500);
  font-size: 0.9rem;
}
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}
.store-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-800);
  font-size: 0.9rem;
  font-weight: 800;
}
.store-actions a:last-child {
  background: var(--brand-red);
  color: var(--white);
}
.store-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(11, 23, 36, 0.10);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  align-items: start;
}
.contact-form {
  padding: 30px;
}
.contact-info-card {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(145deg, #8F1A1B, var(--brand-red));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.info-item + .info-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.info-label {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 4px;
}
.info-value { font-size: 1rem; }

.contact-hero-static {
  padding: 118px 0 78px;
  background:
    linear-gradient(135deg, rgba(224, 42, 41, 0.10), rgba(63, 198, 184, 0.14)),
    var(--surface);
}
.contact-hero-inner h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 18px;
}
.contact-hero-inner p {
  max-width: 720px;
  color: var(--ink-700);
  font-size: 1.08rem;
}
.contact-channel-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
  gap: 20px;
}
.contact-channel-card {
  min-height: 310px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-channel-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-channel-card h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}
.contact-channel-card p {
  min-height: 72px;
  color: var(--ink-700);
}
.contact-channel-card strong,
.contact-channel-card a {
  display: block;
  margin-top: 12px;
  font-weight: 800;
}
.contact-channel-card a {
  color: var(--brand-teal-dark);
}
.contact-channel-primary {
  background: linear-gradient(135deg, var(--brand-red), #F05E49);
  color: var(--white);
  border-color: transparent;
}
.contact-channel-primary span,
.contact-channel-primary p,
.contact-channel-primary a {
  color: rgba(255, 255, 255, 0.86);
}
.contact-office-section {
  background: var(--white);
}
.contact-office-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}
.contact-office-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.contact-office-grid p {
  color: var(--ink-700);
}
.contact-office-panel {
  display: grid;
  gap: 14px;
}
.contact-office-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-office-panel span {
  color: var(--ink-600);
}
.contact-office-panel strong {
  color: var(--ink-900);
}
.contact-career-link {
  padding-top: 0;
}
.contact-career-card {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: #171C22;
  color: rgba(255, 255, 255, 0.78);
}
.contact-career-card h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.contact-career-card p {
  max-width: 720px;
}

.franchise-layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  align-items: start;
}
.franchise-main {
  display: grid;
  gap: 24px;
}
.franchise-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 18px;
}
.franchise-highlight-card {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(224, 42, 41, 0.12);
}
.franchise-highlight-primary {
  background: linear-gradient(180deg, rgba(224, 42, 41, 0.08), rgba(224, 42, 41, 0.03));
}
.franchise-highlight-card h2 {
  font-size: 1.85rem;
  line-height: 1.15;
  margin-bottom: 14px;
}
.franchise-highlight-card p {
  color: var(--ink-700);
}
.franchise-section-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.franchise-section-card::before {
  content: "";
  display: block;
  height: 5px;
  background: var(--brand-red);
}
.franchise-section-head {
  padding: 28px 30px 22px;
  background: linear-gradient(180deg, rgba(224, 42, 41, 0.06), rgba(224, 42, 41, 0.01));
  border-bottom: 1px solid rgba(224, 42, 41, 0.08);
}
.franchise-section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(224, 42, 41, 0.10);
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.franchise-section-card h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
  line-height: 1.14;
}
.franchise-rich-text {
  padding: 28px 30px 32px;
}
.franchise-rich-text > *:last-child {
  margin-bottom: 0;
}
.franchise-rich-text p {
  font-size: 0.98rem;
  line-height: 1.8;
}
.franchise-rich-text strong {
  color: var(--ink-900);
}
.franchise-rich-text ul,
.franchise-rich-text ol {
  display: grid;
  gap: 12px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.franchise-rich-text li {
  position: relative;
  margin-bottom: 0;
  padding: 16px 18px 16px 50px;
  border: 1px solid rgba(18, 26, 34, 0.07);
  border-radius: 18px;
  background: var(--surface);
}
.franchise-rich-text ul li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(224, 42, 41, 0.14);
  box-shadow: inset 0 0 0 4px var(--brand-red);
}
.franchise-rich-text ol {
  counter-reset: franchise-step;
}
.franchise-rich-text ol li::before {
  counter-increment: franchise-step;
  content: counter(franchise-step);
  position: absolute;
  left: 16px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}
.franchise-section-hero .franchise-section-head {
  background: linear-gradient(180deg, rgba(224, 42, 41, 0.08), rgba(224, 42, 41, 0.02));
}
.franchise-section-advantages .franchise-section-kicker,
.franchise-section-support .franchise-section-kicker,
.franchise-section-process .franchise-section-kicker {
  background: rgba(224, 42, 41, 0.08);
}
.franchise-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.franchise-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.franchise-stat-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.franchise-stat-card strong {
  display: block;
  color: var(--brand-red);
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.franchise-stat-card p {
  color: var(--ink-700);
  font-size: 0.92rem;
}
.franchise-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.franchise-scene-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: var(--surface);
}
.franchise-scene-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.franchise-scene-card p {
  color: var(--ink-700);
  font-size: 0.92rem;
}
.franchise-faq-list {
  display: grid;
  gap: 14px;
}
.franchise-faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 0 18px;
}
.franchise-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
}
.franchise-faq-item summary::-webkit-details-marker {
  display: none;
}
.franchise-faq-item p {
  color: var(--ink-700);
  padding-bottom: 18px;
}
.franchise-form-card {
  position: sticky;
  top: 110px;
}
.franchise-side-note {
  margin-top: 20px;
  padding: 18px 18px 0;
  border-top: 1px solid var(--border);
}
.franchise-side-note strong {
  display: block;
  margin-bottom: 8px;
}
.franchise-side-note p {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.franchise-hero-static {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
}
.franchise-hero-image,
.franchise-hero-overlay {
  position: absolute;
  inset: 0;
}
.franchise-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.franchise-hero-overlay {
  background:
    linear-gradient(90deg, rgba(143, 26, 27, 0.88), rgba(18, 26, 34, 0.62) 52%, rgba(18, 26, 34, 0.16)),
    linear-gradient(0deg, rgba(18, 26, 34, 0.76), rgba(18, 26, 34, 0.04));
}
.franchise-hero-inner {
  position: relative;
  z-index: 1;
  padding: 116px 0 76px;
}
.franchise-hero-inner h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.98;
  margin-bottom: 20px;
}
.franchise-hero-inner p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}
.franchise-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 14px;
  margin-top: 34px;
}
.franchise-hero-points div {
  padding: 18px;
  min-height: 104px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.franchise-hero-points strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.franchise-hero-points span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}
.franchise-model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}
.franchise-model-copy h2,
.franchise-process-wrap h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 22px;
}
.franchise-model-copy p,
.franchise-process-wrap p {
  color: var(--ink-700);
}
.franchise-model-cards {
  display: grid;
  gap: 16px;
}
.franchise-model-cards article {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(224, 42, 41, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.franchise-model-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 800;
}
.franchise-model-cards strong,
.scene-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.franchise-model-cards p,
.scene-list p {
  color: var(--ink-700);
}
.franchise-support-static,
.franchise-scenes-static {
  background: var(--white);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.support-grid article {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.support-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.support-grid div {
  padding: 24px;
}
.support-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.support-grid p {
  color: var(--ink-700);
  font-size: 0.94rem;
}
.franchise-process-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
  align-items: start;
}
.process-steps {
  display: grid;
  gap: 14px;
}
.process-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.process-steps span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 800;
}
.process-steps strong {
  font-size: 1.08rem;
}
.process-steps p {
  font-size: 0.94rem;
}
.scene-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.scene-list article {
  min-height: 210px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(224, 42, 41, 0.12);
  background: linear-gradient(180deg, rgba(224, 42, 41, 0.06), rgba(246, 249, 251, 0.92));
}

.job-list {
  display: grid;
  gap: 18px;
}
.job-card {
  border: 1px solid rgba(224, 42, 41, 0.12);
  border-radius: 22px;
  padding: 24px;
  background: rgba(224, 42, 41, 0.03);
}
.job-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 12px;
}
.job-card h3 { font-size: 1.2rem; }
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-700);
  font-size: 0.82rem;
}
.job-salary {
  color: var(--brand-red);
  font-weight: 800;
  white-space: nowrap;
}
.job-summary,
.job-detail p { color: var(--ink-700); }
.job-detail { margin-top: 12px; }
.job-detail strong {
  display: block;
  margin-bottom: 6px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ink-800);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 13px 15px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink-900);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(63, 198, 184, 0.55);
  box-shadow: 0 0 0 4px rgba(63, 198, 184, 0.12);
  background: var(--white);
}
.form-group textarea {
  min-height: 124px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-red), #F05E49);
  box-shadow: 0 14px 34px rgba(224, 42, 41, 0.22);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid rgba(18, 26, 34, 0.10);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: rgba(63, 198, 184, 0.34);
  color: var(--brand-teal-dark);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.pagination a,
.pagination span {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
}
.pagination .active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
}

.flash-messages {
  width: min(var(--container), calc(100% - 32px));
  margin: 18px auto 0;
}
.flash-msg {
  padding: 14px 18px;
  border-radius: 18px;
  margin-bottom: 10px;
  font-size: 0.94rem;
}
.flash-msg.success { background: #E7FBF8; color: #146860; }
.flash-msg.error { background: #FFE8E5; color: #8F2525; }

.site-footer {
  margin-top: 20px;
  background: #171C22;
  color: rgba(255,255,255,0.74);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) repeat(3, minmax(140px, 1fr));
  gap: 30px;
  align-items: start;
  padding: 48px 0 30px;
}
.footer-logo {
  width: 210px;
  margin-bottom: 16px;
}
.footer-brand p {
  max-width: 320px;
  color: rgba(255,255,255,0.68);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  overflow-wrap: anywhere;
  line-height: 1.55;
}
.footer-col li + li { margin-top: 9px; }
.footer-col a:hover { color: var(--brand-teal); }
.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.88rem;
}
.footer-beian {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-beian a:hover {
  color: var(--brand-teal);
}

.empty-state,
.empty-inline {
  color: var(--ink-700);
}
.empty-state {
  text-align: center;
  padding: 56px 0;
}

@media (max-width: 1100px) {
  .dishes-grid,
  .stores-grid,
  .store-directory,
  .news-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .franchise-layout,
  .contact-grid,
  .contact-channel-grid,
  .contact-office-grid,
  .intro-grid,
  .about-split,
  .about-culture-grid,
  .franchise-model-grid,
  .franchise-process-wrap,
  .page-banner-grid .page-banner-inner,
  .footer-top { grid-template-columns: 1fr; }
  .hero-banner,
  .hero-grid { min-height: 680px; }
  .hero-grid { padding: 96px 0 92px; }
  .franchise-overview-grid,
  .franchise-scene-grid,
  .about-timeline,
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid,
  .scene-list { grid-template-columns: 1fr; }
  .franchise-form-card { position: static; }
  .about-photo-stack { min-height: 440px; }
  .about-culture-image { height: 440px; }
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 420px);
    gap: 22px;
    align-items: center;
  }
  .footer-logo {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .header-inner { min-height: 74px; }
  .site-logo-image { width: 160px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    border-radius: 24px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-banner,
  .hero-grid { min-height: 620px; }
  .hero-grid { padding: 80px 0 74px; }
  .section { padding: 72px 0; }
  .page-banner { padding: 76px 0 58px; }
  .about-hero { min-height: 68vh; }
  .franchise-hero-static { min-height: 68vh; }
  .contact-hero-static { padding: 94px 0 56px; }
  .about-hero-inner { padding: 86px 0 52px; }
  .franchise-hero-inner { padding: 86px 0 52px; }
  .about-hero-stats { grid-template-columns: 1fr; }
  .franchise-hero-points { grid-template-columns: 1fr; }
  .about-anchor-band { top: 74px; }
  .dishes-grid,
  .news-grid,
  .news-grid-wide,
  .stores-grid,
  .store-directory,
  .quick-grid { grid-template-columns: 1fr; }
  .news-list-card,
  .news-list-card--lead {
    display: block;
    min-height: 0;
  }
  .news-list-image,
  .news-list-card--lead .news-list-image {
    min-height: 0;
    height: 230px;
  }
  .news-list-body,
  .news-list-card--text .news-list-body {
    padding: 24px;
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 36px 0 24px;
  }
  .footer-brand {
    display: block;
  }
  .footer-logo {
    width: 170px;
    margin-bottom: 14px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-contact ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }
  .footer-contact li + li {
    margin-top: 0;
  }
  .hero-copy h1 { font-size: 2.6rem; }
  .hero-actions,
  .section-head,
  .job-card-head { flex-direction: column; align-items: flex-start; }
  .contact-career-card { flex-direction: column; align-items: flex-start; }
  .store-card-body { padding: 18px; }
  .store-card-head { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .site-logo-image { width: 142px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 32px;
  }
  .footer-col {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-contact ul {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    padding-bottom: 24px;
    text-align: left;
  }
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-banner,
  .hero-grid { min-height: 590px; }
  .hero-grid { padding: 66px 0 64px; }
  .about-hero h1 { font-size: 2.6rem; }
  .franchise-hero-inner h1 { font-size: 2.6rem; }
  .process-steps article { grid-template-columns: 1fr; }
  .contact-hero-inner h1 { font-size: 2.6rem; }
  .contact-office-panel div { align-items: flex-start; flex-direction: column; }
  .about-photo-stack,
  .about-culture-image { min-height: 0; height: 320px; }
  .about-intro-band { padding: 72px 0; }
  .about-intro-prose {
    padding: 26px 22px 28px;
  }
  .about-intro-identity__body {
    padding: 22px 20px;
  }
  .about-note-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
  .content-block,
  .about-block,
  .news-detail,
  .contact-form,
  .contact-info-card,
  .contact-channel-card,
  .contact-career-card { padding: 22px; }
  .franchise-section-head,
  .franchise-rich-text { padding-left: 22px; padding-right: 22px; }
  .franchise-rich-text li { padding-right: 14px; }
}
