:root {
  --ink: #102033;
  --muted: #5a6b7d;
  --soft: #f4f8fb;
  --paper: #ffffff;
  --line: #d7e3ec;
  --green: #116a8f;
  --green-dark: #0a3554;
  --gold: #e7a247;
  --rust: #bd4e3b;
  --shadow: 0 18px 50px rgba(13, 40, 65, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

.badadang-page [data-i18n],
.badadang-page [data-i18n] *,
.badadang-page [data-i18n-attr] {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
select,
input {
  font: inherit;
}

.site-header,
.store-header {
  width: min(100% - 40px, 1180px);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(17, 19, 15, 0.12);
  backdrop-filter: blur(16px);
}

.site-header.compact,
.store-header {
  position: sticky;
  top: 12px;
  transform: none;
  left: auto;
  margin: 12px auto 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brand-mark.logo-mark {
  overflow: hidden;
  padding: 0;
  background: #e8c7c3;
  box-shadow: 0 4px 12px rgba(16, 32, 51, 0.12);
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand strong {
  font-size: 18px;
  font-weight: 850;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links,
.store-nav,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.store-nav a,
.language-switcher button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-links a:hover,
.store-nav a:hover,
.language-switcher button.active {
  background: #e8f3f8;
  color: var(--green);
}

.home-hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  position: relative;
  padding: 150px 20px 42px;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.store-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(9, 31, 51, 0.74), rgba(9, 31, 51, 0.24)),
    url("/assets/clients/badadang-haeundae-cheongsapo/web/badadang-main.webp");
  background-position: center;
  background-size: cover;
}

.hero-bg::after,
.store-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-bottom: 136px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #161209;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button.dark {
  background: var(--green);
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  background: #fff;
  color: var(--green-dark);
}

.search-panel {
  width: min(100% - 40px, 1180px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 6px;
  color: var(--ink);
}

.search-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.section,
.plain-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section h2,
.plain-main h1,
.store-section h2,
.store-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
}

.section p,
.plain-main p,
.store-section p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 28px;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.restaurant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.restaurant-card a,
.restaurant-card > div {
  display: block;
  height: 100%;
}

.restaurant-card img {
  height: 238px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span,
.tag-row span {
  border-radius: 999px;
  background: #e8f3f8;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.restaurant-card h3 {
  margin: 16px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.restaurant-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.empty-state {
  margin: 20px 0 0;
  color: var(--muted);
}

.url-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.url-panel code {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  color: var(--green-dark);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.city-grid,
.owner-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.city-card,
.owner-list span {
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.city-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.city-card strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.35;
}

.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.owner-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-list span {
  min-height: 78px;
  display: flex;
  align-items: center;
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  width: min(100% - 40px, 1180px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.business-info {
  display: grid;
  gap: 6px;
}

.footer-primary {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
}

.footer-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.footer-copy strong,
.business-info strong {
  color: var(--ink);
}

.business-info {
  max-width: 520px;
  justify-items: end;
  text-align: right;
  font-size: 13px;
  line-height: 1.55;
}

.plain-main {
  padding: 96px 0;
}

.directory-hero {
  max-width: 780px;
  margin-bottom: 36px;
}

.directory-grid {
  max-width: 390px;
}

.store-page {
  background: #fbfdff;
}

.store-header {
  width: min(100% - 28px, 1220px);
  height: 72px;
}

.store-hero {
  min-height: 700px;
  display: grid;
  align-items: end;
  position: relative;
  margin-top: -84px;
  padding: 150px 20px 78px;
  overflow: hidden;
  color: #fff;
}

.store-hero-bg {
  background-image: linear-gradient(90deg, rgba(5, 25, 47, 0.82), rgba(5, 25, 47, 0.2)),
    url("/assets/clients/badadang-haeundae-cheongsapo/web/badadang-main.webp");
  background-position: center;
}

.badadang-page .brand-mark:not(.logo-mark) {
  background: linear-gradient(135deg, #0b5d84, #1697b7);
}

.badadang-page .button.primary {
  background: var(--rust);
  color: #fff;
}

.badadang-page .eyebrow {
  color: var(--rust);
}

.badadang-page .store-hero .eyebrow,
.badadang-page .store-cta .eyebrow {
  color: #ffc069;
}

.store-hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.store-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 8vw, 98px);
  font-weight: 920;
  line-height: 0.96;
}

.store-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.quick-strip,
.store-section,
.store-cta {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  transform: translateY(-34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  min-height: 104px;
  padding: 20px;
  background: #fff;
}

.quick-strip span,
.visit-card span,
.menu-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.store-section {
  padding: 72px 0;
}

.story-layout,
.nearby-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.muted-note {
  padding: 16px 18px;
  border-left: 4px solid var(--rust);
  border-radius: 0 8px 8px 0;
  background: #fff5f2;
}

.section-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(13, 40, 65, 0.1);
}

.section-photo img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.story-layout p {
  margin: 22px 0 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.visit-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.visit-card strong {
  display: block;
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.visit-card p {
  margin: 14px 0 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-grid img {
  height: 260px;
  object-fit: cover;
}

.menu-grid article div {
  padding: 20px;
}

.menu-grid h3 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.2;
}

.nearby-section ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.nearby-section li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  color: var(--muted);
}

.faq-section {
  max-width: 840px;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
}

.faq-section details p {
  margin: 12px 0 0;
}

.store-cta {
  margin-bottom: 72px;
  padding: 46px;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
}

.store-cta h2 {
  color: #fff;
}

.column-page {
  background: #fff;
}

.column-main,
.article-main {
  padding: 72px 0 40px;
}

.column-list-hero {
  width: min(100% - 40px, 1040px);
  margin: 0 auto 48px;
  padding-top: 28px;
}

.column-list-hero h1,
.article-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 920;
  line-height: 1.04;
}

.column-list-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.column-feature,
.column-grid {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
}

.column-feature {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.column-feature-link {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.column-feature figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.column-feature img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

.column-feature span,
.column-grid span,
.article-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.column-feature h2 {
  margin: 10px 0 12px;
  font-size: clamp(24px, 3.2vw, 35px);
  line-height: 1.12;
}

.column-feature p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.column-feature small {
  color: var(--muted);
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 72px;
}

.column-grid article {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.column-grid h3 {
  margin: 10px 0 12px;
  font-size: 19px;
  line-height: 1.24;
}

.column-grid p {
  margin: 0;
  color: var(--muted);
}

.article-shell {
  padding-top: 28px;
}

.article-header {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.article-meta span + span::before {
  content: "/";
  margin-right: 9px;
  color: var(--line);
}

.article-cover {
  width: min(100% - 40px, 1040px);
  margin: 46px auto 58px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.article-cover img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.food-article-brief {
  width: min(100% - 40px, 1040px);
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  margin: -18px auto 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 40, 65, 0.08);
}

.food-article-brief span,
.food-menu-cards span,
.related-columns span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.food-article-brief h2 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.18;
}

.food-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.food-quick-grid div {
  border-left: 3px solid var(--line);
  padding-left: 14px;
}

.food-quick-grid dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.food-quick-grid dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.article-layout {
  width: min(100% - 40px, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 720px) 240px;
  gap: 80px;
  align-items: start;
  margin: 0 auto 80px;
}

.article-body {
  grid-column: 1;
  grid-row: 1;
}

.article-body p,
.article-body li {
  color: #26394d;
  font-size: 16px;
  line-height: 1.78;
}

.article-body .lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.72;
}

.article-body h2 {
  margin: 54px 0 16px;
  font-size: 27px;
  line-height: 1.22;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--rust);
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.55;
}

.notion-callout {
  margin: 30px 0;
  border-left: 4px solid var(--rust);
  padding: 2px 0 2px 18px;
}

.notion-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
}

.notion-callout ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.notion-callout li {
  font-size: 14px;
  line-height: 1.62;
}

.notion-menu-list,
.notion-numbered-list {
  display: grid;
  gap: 0;
  margin: 24px 0 38px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.notion-menu-list {
  list-style: none;
}

.notion-menu-list li,
.notion-numbered-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.notion-menu-list strong,
.notion-numbered-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.notion-menu-list span,
.notion-numbered-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.notion-numbered-list {
  padding-left: 24px;
}

.notion-numbered-list strong {
  display: inline;
  margin-right: 6px;
}

.notion-image {
  margin: 34px 0 44px;
}

.notion-image img {
  width: min(100%, 520px);
  border-radius: 6px;
}

.notion-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.notion-info-list {
  margin: 24px 0 42px;
  border-top: 1px solid var(--line);
}

.notion-info-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.notion-info-list dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.notion-info-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.notion-faq {
  margin: 24px 0 42px;
  border-top: 1px solid var(--line);
}

.notion-faq details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}

.notion-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.notion-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.article-reservation-callout p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.notion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notion-related {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.notion-related a {
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.food-context-box {
  margin: 32px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff9f7;
}

.food-context-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
}

.food-context-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.food-context-box li {
  font-size: 17px;
  line-height: 1.6;
}

.food-menu-cards {
  display: grid;
  gap: 16px;
  margin: 30px 0 46px;
}

.food-menu-cards article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.food-menu-cards img {
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.food-menu-cards div {
  padding: 20px 20px 20px 0;
}

.food-menu-cards h3 {
  margin: 8px 0 8px;
  font-size: 25px;
  line-height: 1.2;
}

.food-menu-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.64;
}

.food-route {
  display: grid;
  gap: 14px;
  margin: 28px 0 48px;
  padding: 0;
  list-style: none;
}

.food-route li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.food-route li > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.food-route strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.food-route p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.food-check-list {
  display: grid;
  gap: 0;
  margin: 26px 0 50px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.food-check-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.food-check-list strong {
  color: var(--ink);
  font-size: 17px;
}

.food-check-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.article-faq {
  display: grid;
  gap: 0;
  margin: 24px 0 50px;
  border-top: 1px solid var(--line);
}

.article-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.article-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}

.article-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.article-toc {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 110px;
  display: grid;
  gap: 13px;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.article-toc strong {
  color: var(--ink);
  font-size: 12px;
}

.article-toc a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-inline-image {
  margin: 40px 0;
}

.article-inline-image img {
  width: min(100%, 520px);
  border-radius: 8px;
}

.article-inline-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-note {
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
}

.article-note strong {
  display: block;
  font-size: 20px;
}

.article-note p {
  margin: 8px 0 18px;
  font-size: 17px;
  line-height: 1.65;
}

.food-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-columns {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.related-columns h2 {
  margin-top: 0;
}

.related-columns a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.related-columns strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.32;
}

.related-columns.notion-related a {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

@media (max-width: 920px) {
  .site-header,
  .store-header {
    height: auto;
    flex-wrap: wrap;
    padding: 14px;
  }

  .nav-links,
  .store-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .home-hero {
    min-height: 820px;
    padding-top: 170px;
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .owner-section,
  .story-layout,
  .nearby-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .restaurant-grid,
  .city-grid,
  .quick-strip,
  .visit-grid,
  .menu-grid,
  .column-feature-link,
  .column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .food-article-brief {
    grid-template-columns: 1fr;
  }

  .article-toc,
  .article-body {
    grid-column: 1;
    grid-row: auto;
  }

  .article-toc {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .store-hero {
    margin-top: -118px;
    padding-top: 220px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header,
  .store-header,
  .section,
  .plain-main,
  .column-list-hero,
  .column-feature,
  .column-grid,
  .article-header,
  .article-cover,
  .article-layout,
  .quick-strip,
  .store-section,
  .store-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .store-header {
    gap: 10px;
  }

  .store-nav a,
  .language-switcher button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .home-hero {
    min-height: 820px;
    padding: 150px 14px 32px;
  }

  .hero-content {
    padding-bottom: 360px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-copy,
  .store-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    flex: 1 1 132px;
    padding: 0 14px;
  }

  .search-panel {
    width: calc(100% - 28px);
    bottom: 28px;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .plain-main h1,
  .store-section h2,
  .store-cta h2 {
    font-size: 31px;
  }

  .restaurant-grid,
  .city-grid,
  .owner-list,
  .quick-strip,
  .visit-grid,
  .menu-grid,
  .column-feature-link,
  .column-grid {
    grid-template-columns: 1fr;
  }

  .column-list-hero h1,
  .article-header h1 {
    font-size: 31px;
  }

  .column-list-hero p,
  .article-body p,
  .article-body li {
    font-size: 15px;
  }

  .article-body .lead {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 22px;
  }

  .article-body blockquote {
    font-size: 17px;
  }

  .food-quick-grid,
  .food-menu-cards article,
  .food-route li,
  .food-check-list li,
  .notion-info-list div {
    grid-template-columns: 1fr;
  }

  .food-menu-cards div {
    padding: 0 18px 20px;
  }

  .food-menu-cards img {
    min-height: 210px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
  }

  .business-info {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  .store-hero {
    min-height: 660px;
    margin-top: -154px;
    padding: 248px 14px 56px;
  }

  .store-hero h1 {
    font-size: 44px;
  }

  .quick-strip {
    transform: translateY(-20px);
  }

  .quick-strip div {
    min-height: 92px;
    padding: 16px;
  }

  .quick-strip strong {
    font-size: 16px;
  }

  .store-section {
    padding: 54px 0;
  }

  .menu-grid img {
    height: 220px;
  }

  .store-cta {
    padding: 28px;
  }
}

@media (max-width: 380px) {
  .store-hero h1 {
    font-size: 38px;
  }

  .store-subtitle {
    font-size: 16px;
  }

  .button {
    min-height: 44px;
  }
}
