/* Shared structural styles for every meat detail page.

   Page-specific exceptions stay in each document and menu-system.css remains the final visual layer. */

:root {
  --canvas: #f9f6f0;
  --canvas-soft: #efe9df;
  --canvas-softer: #f3eee6;
  --surface-pressed: #e2dbcf;
  --ink: #443d33;
  --ink-elevated: #574e42;
  --body: #6b6459;
  --hairline-mid: #857b6d;
  --mute: #a89f92;
  --on-dark: #f9f6f0;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-pill: 999px;
  --sp-xxs: 4px;
  --sp-xs: 6px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 20px;
  --sp-2xl: 24px;
  --sp-3xl: 32px;
  --font-display: 'Inter', 'Pretendard Variable', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Pretendard Variable', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-brand: 'ChosunCentennial', serif;
  --shadow-1: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
  --shadow-2: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
  --shadow-pill: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
}



@font-face {
      font-family: 'ChosunCentennial';
      src: url('/fonts/ChosunCentennial.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

html {
      font-size: 16px;
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

body {
      font-family: var(--font-body);
      background-color: var(--canvas);
      color: var(--ink);
      min-height: 100dvh;
      line-height: 1.5;
      font-weight: 400;
    }

:where(h1, h2, h3, p, span, a, strong, em, li) {
      word-break: keep-all;
    }

/* === 상단 네비 === */
    .topnav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--canvas);
      border-bottom: 1px solid var(--canvas-soft);
    }

.topnav-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: var(--sp-lg) var(--sp-3xl);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

.topnav a {
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      color: var(--ink);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0;
      transition: color 0.15s;
    }

.topnav a:hover { color: var(--body); }

.topnav-brand {
      font-family: var(--font-brand);
      font-size: 18px;
      color: var(--ink);
      font-weight: 700;
    }

/* === 빵가루 === */
    .breadcrumb-nav {
      max-width: 1120px;
      margin: 0 auto;
      padding: 16px 24px 0;
    }

.breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 13px;
      color: var(--mute, #afafaf);
    }

.breadcrumb-list li {
      display: flex;
      align-items: center;
      gap: 6px;
    }

.breadcrumb-list li + li::before {
      content: "›";
      color: var(--mute, #afafaf);
    }

.breadcrumb-list a {
      color: var(--body, #5e5e5e);
      text-decoration: none;
    }

.breadcrumb-list a:hover { color: var(--ink, #443d33); }

.breadcrumb-list [aria-current] {
      color: var(--ink, #443d33);
      font-weight: 500;
    }

/* === 컨테이너 === */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 var(--sp-3xl);
    }

/* === Hero === */
    .hero {
      padding-top: 64px;
      padding-bottom: 64px;
      text-align: left;
      max-width: 800px;
    }

.hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 6vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: var(--sp-2xl);
      letter-spacing: -0.01em;
    }

.hero-sub {
      font-size: 18px;
      font-weight: 400;
      color: var(--body);
      max-width: 640px;
      margin: 0 0 var(--sp-3xl);
      line-height: 1.5;
    }

.hero-image {
      width: 100%;
      height: auto;
      border-radius: var(--r-xl);
      display: block;
    }

/* === 섹션 === */
    .section {
      padding: 72px 0;
      position: relative;
    }

.section + .section {
      border-top: 1px solid var(--canvas-soft);
    }

.section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4.4vw, 36px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink);
      margin-bottom: var(--sp-3xl);
      letter-spacing: -0.01em;
    }

.section-body p {
      font-size: 18px;
      color: var(--body);
      line-height: 1.55;
      margin-bottom: var(--sp-lg);
      font-weight: 400;
    }

.section-body p:last-child { margin-bottom: 0; }

.section-body strong {
      color: var(--ink);
      font-weight: 500;
    }

.section-body em {
      color: var(--ink);
      font-style: normal;
      font-weight: 500;
      background: var(--canvas-soft);
      padding: 0 4px;
      border-radius: 2px;
    }

.section-image {
      width: 100%;
      height: auto;
      border-radius: var(--r-xl);
      display: block;
      margin: var(--sp-3xl) 0;
    }

.image-caption {
      display: block;
      text-align: center;
      font-size: 14px;
      color: var(--body);
      margin-top: -16px;
      margin-bottom: var(--sp-3xl);
      letter-spacing: 0;
    }

/* === 비교 표 === */
    .compare-table-wrap {
      margin: var(--sp-3xl) 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border-radius: var(--r-xl);
      border: 1px solid var(--canvas-soft);
      background: var(--canvas);
    }

.compare-table thead th {
      padding: var(--sp-lg);
      text-align: left;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      background: var(--canvas-soft);
      border-bottom: 1px solid var(--surface-pressed);
    }

.compare-table thead th:first-child {
      background: var(--canvas-soft);
      width: 96px;
    }

.compare-table tbody th {
      padding: var(--sp-lg);
      text-align: left;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: var(--body);
      border-bottom: 1px solid var(--canvas-soft);
      background: var(--canvas);
      white-space: nowrap;
      vertical-align: top;
    }

.compare-table tbody td {
      padding: var(--sp-lg);
      border-bottom: 1px solid var(--canvas-soft);
      line-height: 1.5;
      vertical-align: top;
      color: var(--body);
    }

.compare-table tbody td:nth-child(2) {
      color: var(--ink);
      font-weight: 500;
      background: var(--canvas-softer);
    }

.compare-table tbody tr:last-child th,
    .compare-table tbody tr:last-child td {
      border-bottom: none;
    }

.compare-caption {
      display: block;
      font-size: 12px;
      color: var(--mute);
      text-align: center;
      margin-top: -16px;
      margin-bottom: var(--sp-2xl);
    }

/* === 굽는 법 카드 === */
    .grill-card {
      background: var(--canvas-soft);
      border: none;
      border-radius: var(--r-xl);
      padding: var(--sp-3xl);
      margin: var(--sp-3xl) 0;
    }

.grill-card h3 {
      font-family: var(--font-display);
      font-size: 14px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--body);
      font-weight: 500;
      margin-bottom: var(--sp-2xl);
    }

.grill-steps {
      list-style: none;
      counter-reset: step;
    }

.grill-steps li {
      counter-increment: step;
      position: relative;
      padding-left: 44px;
      padding-bottom: var(--sp-xl);
      color: var(--body);
      font-size: 16px;
      line-height: 1.5;
      font-weight: 400;
    }

.grill-steps li::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: 0;
      width: 28px;
      height: 28px;
      border-radius: var(--r-pill);
      background: var(--ink);
      color: var(--on-dark);
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.grill-steps li:last-child { padding-bottom: 0; }

.pairing-note {
      margin-top: var(--sp-2xl);
      padding-top: var(--sp-2xl);
      border-top: 1px solid var(--surface-pressed);
      font-size: 16px;
      color: var(--body);
      line-height: 1.6;
      font-weight: 400;
    }

.pairing-note strong {
      color: var(--ink);
      font-weight: 500;
    }

/* === 푸터 CTA (Uber hero-band-dark) === */
    .footer-cta {
      margin-top: 72px;
      margin-bottom: 56px;
      padding: 56px var(--sp-3xl);
      background: var(--ink);
      border: none;
      border-radius: var(--r-xl);
      text-align: center;
      color: var(--on-dark);
    }

.footer-cta-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 36px);
      font-weight: 700;
      color: var(--on-dark);
      margin-bottom: var(--sp-md);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

.footer-cta-sub {
      font-size: 16px;
      color: var(--on-dark);
      opacity: 0.7;
      margin-bottom: var(--sp-3xl);
      line-height: 1.5;
      font-weight: 400;
    }

.cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--sp-md);
      max-width: 560px;
      margin: 0 auto;
    }

.cta-btn {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: var(--sp-lg) var(--sp-2xl);
      background: var(--canvas);
      border: none;
      border-radius: var(--r-pill);
      color: var(--ink);
      text-decoration: none;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 500;
      transition: background 0.15s, transform 0.15s;
    }

.cta-btn:hover { background: var(--canvas-soft); }

.cta-btn:active { background: var(--surface-pressed); }

.cta-btn small {
      font-size: 12px;
      color: var(--body);
      font-weight: 400;
      letter-spacing: 0;
    }

/* === 사이트 푸터 === */
    .site-footer {
      text-align: center;
      padding: 48px var(--sp-3xl) 32px;
      max-width: 1120px;
      margin: 0 auto;
    }

.instagram-link {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-sm);
      color: var(--body);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: var(--sp-md) var(--sp-xl);
      border-radius: var(--r-pill);
      background: var(--canvas-soft);
      transition: background 0.15s;
    }

.instagram-link:hover { background: var(--surface-pressed); }

.instagram-icon {
      width: 18px;
      height: 18px;
    }

.footer-divider {
      height: 1px;
      background: var(--canvas-soft);
      margin: var(--sp-2xl) 0;
    }

.copyright {
      font-size: 12px;
      color: var(--mute);
      font-weight: 400;
      margin: 0;
    }

/* === Type tweak: letter-spacing -20% (누적), line-height +10% === */
    body { letter-spacing: -0.024em; line-height: 1.65; }

.hero-title,
    .section-title,
    .footer-cta-title { letter-spacing: -0.034em; line-height: 1.32; }

.grill-card h3 { letter-spacing: 0.13em; }

/* === FAQ (본문 노출 · 아코디언) === */
    .faq-list { margin-top: var(--sp-lg); }

.faq-item { border-top: 1px solid var(--canvas-soft); }

.faq-item:last-child { border-bottom: 1px solid var(--canvas-soft); }

.faq-q {
      font-family: var(--font-display);
      font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.45;
      padding: var(--sp-xl) 36px var(--sp-xl) 0;
      cursor: pointer; list-style: none; position: relative;
    }

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--body); line-height: 1; }

.faq-item[open] .faq-q::after { content: "\2212"; }

.faq-a { font-size: 16px; color: var(--body); line-height: 1.7; margin: 0; padding: 0 0 var(--sp-xl); }

.store-info > div:last-child { border-bottom: 1px solid var(--canvas-soft); }

.store-info dd a { color: var(--ink); }

/* === Other menus (다른 메뉴 구경하기) === */
    .other-menus {
      margin: 72px 0 24px;
      padding-top: 56px;
      border-top: 1px solid var(--canvas-soft);
    }

.other-menus-title {
      font-family: var(--font-display);
      font-size: clamp(20px, 3vw, 24px);
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 var(--sp-2xl);
      letter-spacing: -0.02em;
      text-align: center;
    }

.other-menus-grid {
      display: flex;
      gap: var(--sp-lg);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      padding-bottom: var(--sp-sm);
      scrollbar-width: thin;
    }

.other-menu-card {
      flex: 0 0 240px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      background: var(--canvas);
      border: 1px solid var(--canvas-soft);
      border-radius: var(--r-xl);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

.other-menu-card:hover,
    .other-menu-card:focus-visible {
      transform: translateY(-2px);
      border-color: var(--ink);
    }

.other-menu-card-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--canvas-soft);
    }

.other-menu-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

.other-menu-card:hover .other-menu-card-img img {
      transform: scale(1.04);
    }

.other-menu-card-body {
      padding: var(--sp-lg) var(--sp-xl) var(--sp-xl);
    }

.other-menu-card h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      margin: 0 0 4px;
      letter-spacing: -0.01em;
    }

.other-menu-card p {
      font-size: 13px;
      color: var(--body);
      margin: 0;
      line-height: 1.5;
    }

@media (max-width: 540px) {
      .other-menus { margin-top: 56px; padding-top: 40px; }
      .other-menus-grid { gap: var(--sp-md); }
      .other-menu-card { flex-basis: 200px; }
      .other-menu-card-body { padding: var(--sp-md) var(--sp-lg) var(--sp-lg); }
    }


@media (max-width: 540px) {
  .topnav-inner { padding: var(--sp-md) var(--sp-lg); }

  .container { padding: 0 var(--sp-lg); }

  .hero { padding-top: 40px; padding-bottom: 40px; }

  .section { padding: 56px 0; }

  .grill-card { padding: var(--sp-2xl); }

  .footer-cta { padding: 40px var(--sp-2xl); }

  .site-footer { padding: 32px var(--sp-lg) 24px; }

  .cta-buttons { flex-direction: column; }

  .cta-btn { width: 100%; }
}


/* Store information shares structure according to the existing DOM shape. */
.store-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  margin-top: var(--sp-2xl);
}
.store-branch-name {
  margin: 0 0 var(--sp-sm);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
.store-branches .store-info { margin: 0 0 var(--sp-md); }
.store-branches .store-info > div {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--canvas-soft);
}
.store-branches .store-info dt {
  flex: 0 0 72px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.store-branches .store-info dd {
  flex: 1;
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.6;
}
.store-branches .store-map-link {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.meat-section > .store-info { margin: var(--sp-2xl) 0 var(--sp-lg); }
.meat-section > .store-info > div {
  display: flex;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--canvas-soft);
}
.meat-section > .store-info dt {
  flex: 0 0 80px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.meat-section > .store-info dd {
  flex: 1;
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}
.meat-section > .store-map-link {
  display: inline-block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 540px) {
  .store-branches { grid-template-columns: 1fr; }
}


/* Optional detail components reused by two or more menu pages. */

/* === Uber Design Tokens === */
    :root {
      --shadow-up: 0 -4px 16px 0 rgba(0, 0, 0, 0.12);
    }

.section-image.diagram {
          background: var(--canvas-soft);
          padding: var(--sp-2xl);
          box-shadow: none;
        }

.compare-table {
          width: 100%;
          min-width: 520px;
          border-collapse: collapse;
          font-size: 14px;
          color: var(--body);
        }

.compare-table thead th:nth-child(2) {
          background: var(--ink);
          color: var(--on-dark);
        }

/* === 그라데이션 키 (A/B/C 부위 — Uber feature list 형태) === */
        .gradient-keys {
          display: grid;
          gap: var(--sp-md);
          margin-top: var(--sp-2xl);
        }

.gradient-key {
          display: flex;
          gap: var(--sp-lg);
          align-items: flex-start;
          padding: var(--sp-xl);
          background: var(--canvas-soft);
          border: none;
          border-radius: var(--r-xl);
        }

.gradient-key .marker {
          flex-shrink: 0;
          width: 32px;
          height: 32px;
          border-radius: var(--r-pill);
          background: var(--ink);
          color: var(--on-dark);
          font-family: var(--font-display);
          font-size: 14px;
          font-weight: 500;
          display: flex;
          align-items: center;
          justify-content: center;
        }

/* A/B/C 모두 검정 — 우버는 단일 컬러 시스템 */
        .gradient-key.b .marker { background: var(--ink); }

.gradient-key.c .marker { background: var(--ink); }

.gradient-key .text {
          flex: 1;
          font-size: 16px;
          color: var(--body);
          line-height: 1.5;
          font-weight: 400;
        }

.gradient-key .text strong {
          color: var(--ink);
          font-weight: 500;
          display: inline-block;
          margin-right: 4px;
        }

.hero-sub,
        .section-body p,
        .pairing-note,
        .footer-cta-sub,
        .grill-steps li,
        .compare-table tbody td,
        .gradient-key .text { line-height: 1.7; letter-spacing: -0.024em; }

/* === 모바일 === */
        @media (max-width: 540px) {

    }

/* === 모바일 sticky 전화 바 === */
        .mobile-call-bar { display: none; }

/* === 모바일 === */
        @media (max-width: 540px) {
  .mobile-call-bar {
              display: flex;
              position: fixed;
              left: 0;
              right: 0;
              bottom: 0;
              z-index: 100;
              background: rgba(249, 246, 240, 0.52);
              -webkit-backdrop-filter: blur(18px) saturate(1.6);
              backdrop-filter: blur(18px) saturate(1.6);
              border-top: 1px solid var(--canvas-soft);
              box-shadow: var(--shadow-up);
            }

  .mobile-call-bar a {
              flex: 1 1 0;
              min-height: 52px;
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: center;
              gap: 2px;
              background: var(--ink);
              color: var(--on-dark);
              text-decoration: none;
              font-family: var(--font-display);
              font-size: 15px;
              font-weight: 600;
              letter-spacing: -0.01em;
            }

  .mobile-call-bar a:active { background: var(--ink-elevated); }

  .mobile-call-bar a small {
              font-size: 12.8px;
              font-weight: 400;
              opacity: 0.75;
            }

    }
